From 95619bf9c8260027fc2680c440ae1da6bbff115e Mon Sep 17 00:00:00 2001 From: ubc-tuehoang Date: Mon, 22 Jan 2024 10:44:18 -0800 Subject: [PATCH] re-test previous build --- batch/banaldocstore.php | 2 +- batch/s3test.php | 2 +- batch/s3verifyall.php | 2 +- batch/savepapers.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/batch/banaldocstore.php b/batch/banaldocstore.php index 119f6794a..99b5619c7 100644 --- a/batch/banaldocstore.php +++ b/batch/banaldocstore.php @@ -22,7 +22,7 @@ function __construct(Conf $conf, $arg) { $this->count = $arg["count"] ?? 10; if (!($dp = $this->conf->docstore())) { - throw new ErrorException("Program has no document store"); + throw new ErrorException("Conference has no document store"); } $matcher = new DocumentHashMatcher($arg["match"] ?? null); $matcher->set_extension(".pdf"); diff --git a/batch/s3test.php b/batch/s3test.php index 4844e4da7..80f36c540 100644 --- a/batch/s3test.php +++ b/batch/s3test.php @@ -89,7 +89,7 @@ static function make_args($argv) { $conf = initialize_conf($arg["config"] ?? null, $arg["name"] ?? null); if (!$conf->s3_client()) { - throw new ErrorException("S3 is not configured for this program"); + throw new ErrorException("S3 is not configured for this conference"); } return new S3Test_Batch($conf, $arg); } diff --git a/batch/s3verifyall.php b/batch/s3verifyall.php index f1373845d..d289132c8 100644 --- a/batch/s3verifyall.php +++ b/batch/s3verifyall.php @@ -141,7 +141,7 @@ static function make_args($argv) { $conf = initialize_conf($arg["config"] ?? null, $arg["name"] ?? null); if (!$conf->s3_client()) { - throw new ErrorException("S3 is not configured for this program"); + throw new ErrorException("S3 is not configured for this conference"); } return new S3VerifyAll_Batch($conf, $arg); } diff --git a/batch/savepapers.php b/batch/savepapers.php index 7a2f9d24e..420c8a040 100644 --- a/batch/savepapers.php +++ b/batch/savepapers.php @@ -402,7 +402,7 @@ static function run_args($argv) { "any-content-file Allow any `content_file` in documents", "ignore-pid Ignore `pid` JSON elements", "match-title Match papers by title if no `pid`", - "add-topics Add all referenced topics to program", + "add-topics Add all referenced topics to conference", "skip-document-verify Do not verify document hashes", "skip-document-content Avoid storing document content", "json5,5 Allow JSON5 extensions",