From 0f128cfcef89c1ad644e1c4109dd06af1d061364 Mon Sep 17 00:00:00 2001 From: al-niessner <1130658+al-niessner@users.noreply.github.com> Date: Thu, 1 Feb 2024 14:31:07 -0800 Subject: [PATCH] 145: Fixes to promotion (#223) * some simple fixes There were basic problems when booting and promotion was active. Fixed the order that variables are set etc to boot and run with promotion. Fixed other typos in the promotion processing. * need parents The test for empty parents allow the code to progress, but it was not correct. Instead, dawgie.pl.dag needs to recreate the parents in the trimmed tree. * updates to promotion The original structure was to process the children of a node. Changed to add the children to the queue and process them directly. Those with a consistent data set are being promoted correctly. --- .ci/Dockerfile.ap | 2 +- .ci/Dockerfile.cit | 2 +- .ci/Dockerfile.dit | 2 +- .ci/Dockerfile.ex | 2 +- .ci/Dockerfile.os | 2 +- .ci/Dockerfile.py | 2 +- .ci/check_01.sh | 2 +- .ci/check_02.sh | 2 +- .ci/check_03.sh | 2 +- .ci/check_04.sh | 2 +- .ci/check_05.sh | 2 +- .ci/exercise_00.sh | 2 +- .ci/exercise_01.sh | 2 +- .ci/pypi.sh | 2 +- .ci/release_notes.sh | 2 +- .ci/step_00.sh | 2 +- .ci/step_99.sh | 2 +- .ci/util.sh | 2 +- Bash/crew.sh | 2 +- Bash/sdppiped.sh | 2 +- Bash/worker.sh | 2 +- Python/Coda/aws_lambda.py | 2 +- Python/Coda/build.sh | 2 +- Python/dawgie/__init__.py | 2 +- Python/dawgie/context.py | 2 +- Python/dawgie/db/__init__.py | 2 +- Python/dawgie/db/lockview.py | 2 +- Python/dawgie/db/post.py | 4 +- Python/dawgie/db/shelve/__init__.py | 2 +- Python/dawgie/db/shelve/comms.py | 2 +- Python/dawgie/db/shelve/enums.py | 2 +- Python/dawgie/db/shelve/model.py | 2 +- Python/dawgie/db/shelve/state.py | 2 +- Python/dawgie/db/shelve/util.py | 2 +- Python/dawgie/db/test.py | 2 +- Python/dawgie/db/testdata.py | 2 +- Python/dawgie/db/tools/__init__.py | 2 +- Python/dawgie/db/tools/dbsinfo.py | 2 +- Python/dawgie/db/tools/extract.py | 2 +- Python/dawgie/db/tools/inter.py | 2 +- Python/dawgie/db/tools/list.py | 2 +- Python/dawgie/db/tools/post2shelve.py | 2 +- Python/dawgie/db/tools/purge.py | 2 +- Python/dawgie/db/tools/sandbox.py | 2 +- Python/dawgie/db/tools/util.py | 2 +- Python/dawgie/db/tools/worm.py | 2 +- Python/dawgie/db/util/__init__.py | 2 +- Python/dawgie/db/util/aspect.py | 2 +- Python/dawgie/de/__init__.py | 2 +- Python/dawgie/de/html.py | 2 +- Python/dawgie/fe/__init__.py | 2 +- Python/dawgie/fe/__main__.py | 2 +- Python/dawgie/fe/app.py | 2 +- Python/dawgie/fe/pages/about/index.html | 2 +- Python/dawgie/fe/pages/algorithms/index.html | 2 +- Python/dawgie/fe/pages/command/index.html | 2 +- Python/dawgie/fe/pages/database/index.html | 2 +- .../pages/database/primary_table/index.html | 2 +- .../fe/pages/database/targets/index.html | 2 +- .../dawgie/fe/pages/database/tasks/index.html | 2 +- .../fe/pages/database/versions/index.html | 2 +- .../fe/pages/exoplanet_systems/index.html | 2 +- Python/dawgie/fe/pages/index.html | 2 +- Python/dawgie/fe/pages/logs/index.html | 2 +- Python/dawgie/fe/pages/pipelines/index.html | 2 +- Python/dawgie/fe/pages/schedule/index.html | 2 +- Python/dawgie/fe/pages/search/index.html | 2 +- Python/dawgie/fe/pages/tasks/index.html | 2 +- Python/dawgie/fe/submit.py | 2 +- Python/dawgie/fe/svrender.py | 2 +- Python/dawgie/pl/__init__.py | 2 +- Python/dawgie/pl/__main__.py | 2 +- Python/dawgie/pl/dag.py | 10 +- Python/dawgie/pl/farm.py | 5 +- Python/dawgie/pl/jobinfo.py | 2 +- Python/dawgie/pl/logger/__init__.py | 2 +- Python/dawgie/pl/logger/fe.py | 2 +- Python/dawgie/pl/message.py | 2 +- Python/dawgie/pl/promotion.py | 120 ++++++++++-------- Python/dawgie/pl/resources.py | 2 +- Python/dawgie/pl/scan.py | 2 +- Python/dawgie/pl/schedule.py | 4 +- Python/dawgie/pl/snapshot.py | 2 +- Python/dawgie/pl/state.dot | 2 +- Python/dawgie/pl/state.py | 2 +- Python/dawgie/pl/util.py | 2 +- Python/dawgie/pl/version.py | 2 +- Python/dawgie/pl/worker/__init__.py | 2 +- Python/dawgie/pl/worker/__main__.py | 2 +- Python/dawgie/pl/worker/aws.py | 2 +- Python/dawgie/pl/worker/cluster.py | 2 +- Python/dawgie/security.py | 2 +- Python/dawgie/tools/__init__.py | 2 +- Python/dawgie/tools/compliant.py | 2 +- Python/dawgie/tools/dag.py | 2 +- Python/dawgie/tools/detach.py | 2 +- Python/dawgie/tools/logfile.py | 2 +- Python/dawgie/tools/resources.py | 2 +- Python/dawgie/tools/submit.py | 2 +- Python/dawgie/tools/trace.py | 2 +- Python/dawgie/util.py | 2 +- Python/setup.py | 2 +- Test/Integration/ae/__init__.py | 2 +- Test/Integration/ae/prime/__init__.py | 2 +- Test/Integration/ae/prime/bot.py | 2 +- Test/Integration/ae/second/__init__.py | 2 +- Test/Integration/ae/second/bot.py | 2 +- Test/Integration/ae/third/__init__.py | 2 +- Test/Integration/ae/third/bot.py | 2 +- Test/Integration/check_06.sh | 2 +- Test/ae/__init__.py | 2 +- Test/ae/disk/__init__.py | 2 +- Test/ae/disk/bot.py | 2 +- Test/ae/feedback/__init__.py | 2 +- Test/ae/feedback/bot.py | 2 +- Test/ae/network/__init__.py | 2 +- Test/ae/network/bot.py | 2 +- Test/ae/noio/__init__.py | 2 +- Test/ae/noio/bot.py | 2 +- Test/ae/review/__init__.py | 2 +- Test/ae/review/bot.py | 2 +- Test/bae/__init__.py | 2 +- Test/bae/network/__init__.py | 2 +- Test/bae/network/bot.py | 2 +- Test/mock.py | 2 +- Test/test_01.py | 2 +- Test/test_02.py | 2 +- Test/test_03.py | 2 +- Test/test_04.py | 2 +- Test/test_05.py | 2 +- Test/test_06.py | 2 +- Test/test_07.py | 2 +- Test/test_08.py | 2 +- Test/test_09.py | 2 +- Test/test_10.py | 2 +- Test/test_11.py | 2 +- Test/test_12.py | 29 +++-- Test/test_13.py | 2 +- Test/test_14.py | 2 +- Test/test_15.py | 2 +- install.sh | 2 +- 141 files changed, 240 insertions(+), 202 deletions(-) diff --git a/.ci/Dockerfile.ap b/.ci/Dockerfile.ap index 5650df56..ecf001c1 100644 --- a/.ci/Dockerfile.ap +++ b/.ci/Dockerfile.ap @@ -1,5 +1,5 @@ # COPYRIGHT: -# Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +# Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). # U.S. Government sponsorship acknowledged. # # All rights reserved. diff --git a/.ci/Dockerfile.cit b/.ci/Dockerfile.cit index 62e17d7c..a0c3e13f 100644 --- a/.ci/Dockerfile.cit +++ b/.ci/Dockerfile.cit @@ -1,5 +1,5 @@ # COPYRIGHT: -# Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +# Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). # U.S. Government sponsorship acknowledged. # # All rights reserved. diff --git a/.ci/Dockerfile.dit b/.ci/Dockerfile.dit index 5e517715..0afb06eb 100644 --- a/.ci/Dockerfile.dit +++ b/.ci/Dockerfile.dit @@ -1,5 +1,5 @@ # COPYRIGHT: -# Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +# Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). # U.S. Government sponsorship acknowledged. # # All rights reserved. diff --git a/.ci/Dockerfile.ex b/.ci/Dockerfile.ex index f2be8eff..c7d2529d 100644 --- a/.ci/Dockerfile.ex +++ b/.ci/Dockerfile.ex @@ -1,5 +1,5 @@ # COPYRIGHT: -# Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +# Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). # U.S. Government sponsorship acknowledged. # # All rights reserved. diff --git a/.ci/Dockerfile.os b/.ci/Dockerfile.os index b000cfd0..c7a243e6 100644 --- a/.ci/Dockerfile.os +++ b/.ci/Dockerfile.os @@ -1,5 +1,5 @@ # COPYRIGHT: -# Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +# Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). # U.S. Government sponsorship acknowledged. # # All rights reserved. diff --git a/.ci/Dockerfile.py b/.ci/Dockerfile.py index 995e2c78..70cdc8ce 100644 --- a/.ci/Dockerfile.py +++ b/.ci/Dockerfile.py @@ -1,5 +1,5 @@ # COPYRIGHT: -# Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +# Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). # U.S. Government sponsorship acknowledged. # # All rights reserved. diff --git a/.ci/check_01.sh b/.ci/check_01.sh index f2b4411d..becabed7 100755 --- a/.ci/check_01.sh +++ b/.ci/check_01.sh @@ -1,7 +1,7 @@ #! /usr/bin/env bash # COPYRIGHT: -# Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +# Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). # U.S. Government sponsorship acknowledged. # # All rights reserved. diff --git a/.ci/check_02.sh b/.ci/check_02.sh index 3d117fde..c4fafa6a 100755 --- a/.ci/check_02.sh +++ b/.ci/check_02.sh @@ -1,7 +1,7 @@ #! /usr/bin/env bash # COPYRIGHT: -# Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +# Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). # U.S. Government sponsorship acknowledged. # # All rights reserved. diff --git a/.ci/check_03.sh b/.ci/check_03.sh index 10a0adcc..a4d3d1b1 100755 --- a/.ci/check_03.sh +++ b/.ci/check_03.sh @@ -1,7 +1,7 @@ #! /usr/bin/env bash # COPYRIGHT: -# Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +# Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). # U.S. Government sponsorship acknowledged. # # All rights reserved. diff --git a/.ci/check_04.sh b/.ci/check_04.sh index e69a6469..3782cc10 100755 --- a/.ci/check_04.sh +++ b/.ci/check_04.sh @@ -1,7 +1,7 @@ #! /usr/bin/env bash # COPYRIGHT: -# Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +# Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). # U.S. Government sponsorship acknowledged. # # All rights reserved. diff --git a/.ci/check_05.sh b/.ci/check_05.sh index 5e6c0d23..876050c0 100755 --- a/.ci/check_05.sh +++ b/.ci/check_05.sh @@ -1,7 +1,7 @@ #! /usr/bin/env bash # COPYRIGHT: -# Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +# Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). # U.S. Government sponsorship acknowledged. # # All rights reserved. diff --git a/.ci/exercise_00.sh b/.ci/exercise_00.sh index 0d85ebfa..381bc710 100755 --- a/.ci/exercise_00.sh +++ b/.ci/exercise_00.sh @@ -1,7 +1,7 @@ #! /usr/bin/env bash # COPYRIGHT: -# Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +# Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). # U.S. Government sponsorship acknowledged. # # All rights reserved. diff --git a/.ci/exercise_01.sh b/.ci/exercise_01.sh index a740ac9d..f485b484 100755 --- a/.ci/exercise_01.sh +++ b/.ci/exercise_01.sh @@ -1,7 +1,7 @@ #! /usr/bin/env bash # COPYRIGHT: -# Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +# Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). # U.S. Government sponsorship acknowledged. # # All rights reserved. diff --git a/.ci/pypi.sh b/.ci/pypi.sh index db0c6850..44b7ee15 100755 --- a/.ci/pypi.sh +++ b/.ci/pypi.sh @@ -1,7 +1,7 @@ #! /usr/bin/env bash # COPYRIGHT: -# Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +# Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). # U.S. Government sponsorship acknowledged. # # All rights reserved. diff --git a/.ci/release_notes.sh b/.ci/release_notes.sh index 33fc977e..518b8eac 100755 --- a/.ci/release_notes.sh +++ b/.ci/release_notes.sh @@ -1,7 +1,7 @@ #! /bin/bash # COPYRIGHT: -# Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +# Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). # U.S. Government sponsorship acknowledged. # # All rights reserved. diff --git a/.ci/step_00.sh b/.ci/step_00.sh index d062709b..8e3338f2 100755 --- a/.ci/step_00.sh +++ b/.ci/step_00.sh @@ -1,7 +1,7 @@ #! /usr/bin/env bash # COPYRIGHT: -# Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +# Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). # U.S. Government sponsorship acknowledged. # # All rights reserved. diff --git a/.ci/step_99.sh b/.ci/step_99.sh index e0bedd38..220f188d 100755 --- a/.ci/step_99.sh +++ b/.ci/step_99.sh @@ -2,7 +2,7 @@ # need to signal the parent Jenkins script of failure if any step fails # COPYRIGHT: -# Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +# Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). # U.S. Government sponsorship acknowledged. # # All rights reserved. diff --git a/.ci/util.sh b/.ci/util.sh index 49dc8b64..092309f0 100644 --- a/.ci/util.sh +++ b/.ci/util.sh @@ -1,6 +1,6 @@ # COPYRIGHT: -# Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +# Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). # U.S. Government sponsorship acknowledged. # # All rights reserved. diff --git a/Bash/crew.sh b/Bash/crew.sh index 7661b0b4..cb188a2c 100755 --- a/Bash/crew.sh +++ b/Bash/crew.sh @@ -1,7 +1,7 @@ #! /usr/bin/env bash # COPYRIGHT: -# Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +# Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). # U.S. Government sponsorship acknowledged. # # All rights reserved. diff --git a/Bash/sdppiped.sh b/Bash/sdppiped.sh index 13cfa5a2..c64237a8 100755 --- a/Bash/sdppiped.sh +++ b/Bash/sdppiped.sh @@ -1,7 +1,7 @@ #!/bin/bash # COPYRIGHT: -# Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +# Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). # U.S. Government sponsorship acknowledged. # # All rights reserved. diff --git a/Bash/worker.sh b/Bash/worker.sh index bbde21d1..7a8c42e4 100755 --- a/Bash/worker.sh +++ b/Bash/worker.sh @@ -1,7 +1,7 @@ #! /usr/bin/env bash # COPYRIGHT: -# Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +# Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). # U.S. Government sponsorship acknowledged. # # All rights reserved. diff --git a/Python/Coda/aws_lambda.py b/Python/Coda/aws_lambda.py index 0d57ab28..65ceafa4 100644 --- a/Python/Coda/aws_lambda.py +++ b/Python/Coda/aws_lambda.py @@ -1,7 +1,7 @@ ''' COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/Coda/build.sh b/Python/Coda/build.sh index 8f3a834d..8b5c66b5 100755 --- a/Python/Coda/build.sh +++ b/Python/Coda/build.sh @@ -1,7 +1,7 @@ #! /usr/bin/env bash # COPYRIGHT: -# Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +# Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). # U.S. Government sponsorship acknowledged. # # All rights reserved. diff --git a/Python/dawgie/__init__.py b/Python/dawgie/__init__.py index a1c563c8..6b54c9f6 100644 --- a/Python/dawgie/__init__.py +++ b/Python/dawgie/__init__.py @@ -1,7 +1,7 @@ ''' -- COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/context.py b/Python/dawgie/context.py index f0aa08a3..eff7fa67 100644 --- a/Python/dawgie/context.py +++ b/Python/dawgie/context.py @@ -1,7 +1,7 @@ ''' -- COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/db/__init__.py b/Python/dawgie/db/__init__.py index ddd877ca..a065f684 100644 --- a/Python/dawgie/db/__init__.py +++ b/Python/dawgie/db/__init__.py @@ -8,7 +8,7 @@ -- COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/db/lockview.py b/Python/dawgie/db/lockview.py index 31575072..f5dba6a2 100644 --- a/Python/dawgie/db/lockview.py +++ b/Python/dawgie/db/lockview.py @@ -1,6 +1,6 @@ ''' COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/db/post.py b/Python/dawgie/db/post.py index c3eceaab..1bb02b41 100644 --- a/Python/dawgie/db/post.py +++ b/Python/dawgie/db/post.py @@ -2,7 +2,7 @@ -- COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. @@ -920,7 +920,7 @@ def consistent (inputs:[REF], outputs:[REF], target_name:str)->(): 'sv_ID = ANY(%s) AND val_ID = ANY(%s);', [tn_ID, task_ID, alg_IDs, sv_IDs, val_IDs]) ridbns[key].append (sorted (cur.fetchall(), key=lambda t:t[0])) - kval = ridbns[key][-1][0][1] + kval = ridbns[key][-1][-1][1] i_runids[key].append ({runid for runid,_bn in filter (lambda t,k=kval:t[1] == k, ridbns[key][-1])}) pass diff --git a/Python/dawgie/db/shelve/__init__.py b/Python/dawgie/db/shelve/__init__.py index 74f3f66f..c69977f6 100644 --- a/Python/dawgie/db/shelve/__init__.py +++ b/Python/dawgie/db/shelve/__init__.py @@ -2,7 +2,7 @@ -- COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/db/shelve/comms.py b/Python/dawgie/db/shelve/comms.py index 2679d826..968169b6 100644 --- a/Python/dawgie/db/shelve/comms.py +++ b/Python/dawgie/db/shelve/comms.py @@ -2,7 +2,7 @@ -- COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/db/shelve/enums.py b/Python/dawgie/db/shelve/enums.py index ca17b5b0..2a62d439 100644 --- a/Python/dawgie/db/shelve/enums.py +++ b/Python/dawgie/db/shelve/enums.py @@ -2,7 +2,7 @@ -- COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/db/shelve/model.py b/Python/dawgie/db/shelve/model.py index dd3eec6d..b3eaadb0 100644 --- a/Python/dawgie/db/shelve/model.py +++ b/Python/dawgie/db/shelve/model.py @@ -2,7 +2,7 @@ -- COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/db/shelve/state.py b/Python/dawgie/db/shelve/state.py index 808b8797..e7e42174 100644 --- a/Python/dawgie/db/shelve/state.py +++ b/Python/dawgie/db/shelve/state.py @@ -2,7 +2,7 @@ -- COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/db/shelve/util.py b/Python/dawgie/db/shelve/util.py index 33b36e03..0d891fc6 100644 --- a/Python/dawgie/db/shelve/util.py +++ b/Python/dawgie/db/shelve/util.py @@ -2,7 +2,7 @@ -- COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/db/test.py b/Python/dawgie/db/test.py index dbbb0e8c..eac065bd 100644 --- a/Python/dawgie/db/test.py +++ b/Python/dawgie/db/test.py @@ -1,7 +1,7 @@ ''' unit testing implementation of dawgie.db COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/db/testdata.py b/Python/dawgie/db/testdata.py index 6cd1400a..2c855607 100644 --- a/Python/dawgie/db/testdata.py +++ b/Python/dawgie/db/testdata.py @@ -1,7 +1,7 @@ '''test data set for test13 and potenitally other uses COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/db/tools/__init__.py b/Python/dawgie/db/tools/__init__.py index a494a965..cb5b8f88 100644 --- a/Python/dawgie/db/tools/__init__.py +++ b/Python/dawgie/db/tools/__init__.py @@ -1,6 +1,6 @@ ''' COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/db/tools/dbsinfo.py b/Python/dawgie/db/tools/dbsinfo.py index 9ee22efc..00f3e79f 100755 --- a/Python/dawgie/db/tools/dbsinfo.py +++ b/Python/dawgie/db/tools/dbsinfo.py @@ -1,7 +1,7 @@ #! /usr/bin/env python3 ''' COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/db/tools/extract.py b/Python/dawgie/db/tools/extract.py index ed43d2ec..6c8724f4 100755 --- a/Python/dawgie/db/tools/extract.py +++ b/Python/dawgie/db/tools/extract.py @@ -1,7 +1,7 @@ #! /usr/bin/env python3 ''' COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/db/tools/inter.py b/Python/dawgie/db/tools/inter.py index 04f89c6c..82ccdd2a 100755 --- a/Python/dawgie/db/tools/inter.py +++ b/Python/dawgie/db/tools/inter.py @@ -2,7 +2,7 @@ '''tool to inter data for a mausoleum COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/db/tools/list.py b/Python/dawgie/db/tools/list.py index a9dcce09..d3cad90e 100755 --- a/Python/dawgie/db/tools/list.py +++ b/Python/dawgie/db/tools/list.py @@ -1,7 +1,7 @@ #! /usr/bin/env python3 ''' COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/db/tools/post2shelve.py b/Python/dawgie/db/tools/post2shelve.py index 9e923ff3..b9447ae0 100755 --- a/Python/dawgie/db/tools/post2shelve.py +++ b/Python/dawgie/db/tools/post2shelve.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 ''' COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/db/tools/purge.py b/Python/dawgie/db/tools/purge.py index 6cbbec42..b2666ada 100755 --- a/Python/dawgie/db/tools/purge.py +++ b/Python/dawgie/db/tools/purge.py @@ -1,7 +1,7 @@ #! /usr/bin/env python3 ''' COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/db/tools/sandbox.py b/Python/dawgie/db/tools/sandbox.py index fe845b17..3815e413 100755 --- a/Python/dawgie/db/tools/sandbox.py +++ b/Python/dawgie/db/tools/sandbox.py @@ -1,7 +1,7 @@ #! /usr/bin/env python3 ''' COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/db/tools/util.py b/Python/dawgie/db/tools/util.py index 551645dd..99f14aba 100644 --- a/Python/dawgie/db/tools/util.py +++ b/Python/dawgie/db/tools/util.py @@ -1,7 +1,7 @@ '''General utility functions for all of the DB tools COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/db/tools/worm.py b/Python/dawgie/db/tools/worm.py index a0272ed5..a9f3b49b 100755 --- a/Python/dawgie/db/tools/worm.py +++ b/Python/dawgie/db/tools/worm.py @@ -1,7 +1,7 @@ #! /usr/bin/env python3 ''' COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/db/util/__init__.py b/Python/dawgie/db/util/__init__.py index 65000710..eb6cd6c2 100644 --- a/Python/dawgie/db/util/__init__.py +++ b/Python/dawgie/db/util/__init__.py @@ -1,6 +1,6 @@ ''' COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/db/util/aspect.py b/Python/dawgie/db/util/aspect.py index 2d866b9f..1391be05 100644 --- a/Python/dawgie/db/util/aspect.py +++ b/Python/dawgie/db/util/aspect.py @@ -1,6 +1,6 @@ ''' COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/de/__init__.py b/Python/dawgie/de/__init__.py index e7453d94..5aadad16 100644 --- a/Python/dawgie/de/__init__.py +++ b/Python/dawgie/de/__init__.py @@ -1,7 +1,7 @@ '''The display engines. COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/de/html.py b/Python/dawgie/de/html.py index d60f9658..248cca54 100644 --- a/Python/dawgie/de/html.py +++ b/Python/dawgie/de/html.py @@ -1,6 +1,6 @@ ''' COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/fe/__init__.py b/Python/dawgie/fe/__init__.py index 11129f59..57e5c62c 100644 --- a/Python/dawgie/fe/__init__.py +++ b/Python/dawgie/fe/__init__.py @@ -1,7 +1,7 @@ '''Built-in Front-End for DAWGIE COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/fe/__main__.py b/Python/dawgie/fe/__main__.py index 2a7b74cd..5e5419d8 100644 --- a/Python/dawgie/fe/__main__.py +++ b/Python/dawgie/fe/__main__.py @@ -1,7 +1,7 @@ '''Built-in Front-End for DAWGIE COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/fe/app.py b/Python/dawgie/fe/app.py index d8e34e1d..5da3c34e 100644 --- a/Python/dawgie/fe/app.py +++ b/Python/dawgie/fe/app.py @@ -1,7 +1,7 @@ '''Define the bits of the front end that require some help from the server COPYRIGHT: -Copyright (c) 2015-2023, California Institute of Technology ("Caltech"). +Copyright (c) 2015-2024, California Institute of Technology ("Caltech"). U.S. Government sponsorship acknowledged. All rights reserved. diff --git a/Python/dawgie/fe/pages/about/index.html b/Python/dawgie/fe/pages/about/index.html index 23dea640..0dfcfa2e 100644 --- a/Python/dawgie/fe/pages/about/index.html +++ b/Python/dawgie/fe/pages/about/index.html @@ -3,7 +3,7 @@