[open-ils-commits] [GIT] Evergreen ILS branch master updated. e7042035792377649f5862b8adce7820f29aebf7

Evergreen Git git at git.evergreen-ils.org
Fri Mar 8 14:19:09 EST 2019


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, master has been updated
       via  e7042035792377649f5862b8adce7820f29aebf7 (commit)
       via  3f6da84f8fea8f0ba6579f7b05929260a5c37168 (commit)
       via  22acfe230b10564bc3bc9e3e515da6c296448f5b (commit)
      from  f098f38804e33b4c056290335b3efe39117419d9 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit e7042035792377649f5862b8adce7820f29aebf7
Author: Chris Sharp <csharp at georgialibraries.org>
Date:   Fri Mar 8 14:19:02 2019 -0500

    LP#1759238: stamping upgrade script
    
    Signed-off-by: Chris Sharp <csharp at georgialibraries.org>

diff --git a/Open-ILS/src/sql/Pg/002.schema.config.sql b/Open-ILS/src/sql/Pg/002.schema.config.sql
index b6f266531c..460735907f 100644
--- a/Open-ILS/src/sql/Pg/002.schema.config.sql
+++ b/Open-ILS/src/sql/Pg/002.schema.config.sql
@@ -92,7 +92,7 @@ CREATE TRIGGER no_overlapping_deps
     BEFORE INSERT OR UPDATE ON config.db_patch_dependencies
     FOR EACH ROW EXECUTE PROCEDURE evergreen.array_overlap_check ('deprecates');
 
-INSERT INTO config.upgrade_log (version, applied_to) VALUES ('1157', :eg_version); -- berick/sandbergja/Dyrcona
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('1158', :eg_version); -- bshum/stompro/csharp
 
 CREATE TABLE config.bib_source (
 	id		SERIAL	PRIMARY KEY,
diff --git a/Open-ILS/src/sql/Pg/upgrade/XXXX.data.fix-typo-in-seed-data.sql b/Open-ILS/src/sql/Pg/upgrade/1158.data.fix-typo-in-seed-data.sql
similarity index 75%
rename from Open-ILS/src/sql/Pg/upgrade/XXXX.data.fix-typo-in-seed-data.sql
rename to Open-ILS/src/sql/Pg/upgrade/1158.data.fix-typo-in-seed-data.sql
index 5e77249cd6..294a990ae6 100644
--- a/Open-ILS/src/sql/Pg/upgrade/XXXX.data.fix-typo-in-seed-data.sql
+++ b/Open-ILS/src/sql/Pg/upgrade/1158.data.fix-typo-in-seed-data.sql
@@ -1,6 +1,6 @@
 BEGIN;
 
---SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version);
+SELECT evergreen.upgrade_deps_block_check('1158', :eg_version);
 
 --LP#1759238: Fix typo in seed data for Physical Description
 

commit 3f6da84f8fea8f0ba6579f7b05929260a5c37168
Author: Ben Shum <ben at evergreener.net>
Date:   Tue May 1 10:38:39 2018 -0400

    LP#1759238: Add upgrade script to fix typo for Physical Description in DB
    
    This upgrade script will check and update the typo if it is present in
    an existing installation.
    
    Signed-off-by: Ben Shum <ben at evergreener.net>
    Signed-off-by: Josh Stompro <stompro at stompro.org>
    Signed-off-by: Chris Sharp <csharp at georgialibraries.org>

diff --git a/Open-ILS/src/sql/Pg/upgrade/XXXX.data.fix-typo-in-seed-data.sql b/Open-ILS/src/sql/Pg/upgrade/XXXX.data.fix-typo-in-seed-data.sql
new file mode 100644
index 0000000000..5e77249cd6
--- /dev/null
+++ b/Open-ILS/src/sql/Pg/upgrade/XXXX.data.fix-typo-in-seed-data.sql
@@ -0,0 +1,11 @@
+BEGIN;
+
+--SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version);
+
+--LP#1759238: Fix typo in seed data for Physical Description
+
+UPDATE config.metabib_field
+    SET label = 'Physical Description'
+    WHERE id = 39 AND label = 'Physical Descrption';
+
+COMMIT;

commit 22acfe230b10564bc3bc9e3e515da6c296448f5b
Author: Ben Shum <ben at evergreener.net>
Date:   Tue May 1 10:29:25 2018 -0400

    LP#1769238: fix typo in 950.data.seed-values.sql for Physical Description
    
    Instead of "Physical Description", "Physical Descrption" is used by mistake.
    Fix the seed data and all related PO files for translation.
    
    Signed-off-by: Ben Shum <ben at evergreener.net>
    Signed-off-by: Josh Stompro <stompro at stompro.org>
    
    Conflicts:
            build/i18n/po/db.seed/cs-CZ.po
    
    Signed-off-by: Chris Sharp <csharp at georgialibraries.org>

diff --git a/Open-ILS/src/sql/Pg/950.data.seed-values.sql b/Open-ILS/src/sql/Pg/950.data.seed-values.sql
index 4815b28461..184d80c411 100644
--- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql
+++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql
@@ -224,7 +224,7 @@ INSERT INTO config.metabib_field (id, field_class, name,
     label, xpath, display_field, search_field, browse_field)
 VALUES (
     39, 'keyword', 'physical_description',
-    oils_i18n_gettext(39, 'Physical Descrption', 'cmf', 'label'),
+    oils_i18n_gettext(39, 'Physical Description', 'cmf', 'label'),
     $$(//mods33:mods/mods33:physicalDescription/mods33:form|//mods33:mods/mods33:physicalDescription/mods33:extent|//mods33:mods/mods33:physicalDescription/mods33:reformattingQuality|//mods33:mods/mods33:physicalDescription/mods33:internetMediaType|//mods33:mods/mods33:physicalDescription/mods33:digitalOrigin)$$,
     TRUE, TRUE, FALSE
 );
diff --git a/build/i18n/po/db.seed/ar-JO.po b/build/i18n/po/db.seed/ar-JO.po
index f833e96f67..c26f426f72 100644
--- a/build/i18n/po/db.seed/ar-JO.po
+++ b/build/i18n/po/db.seed/ar-JO.po
@@ -3445,7 +3445,7 @@ msgid "notated music"
 msgstr "نوتة موسيقية مدونة"
 
 #: 950.data.seed-values.sql:227
-msgid "Physical Descrption"
+msgid "Physical Description"
 msgstr ""
 
 #: 950.data.seed-values.sql:7217
diff --git a/build/i18n/po/db.seed/cs-CZ.po b/build/i18n/po/db.seed/cs-CZ.po
index 34454f30fb..5a0ae7449f 100644
--- a/build/i18n/po/db.seed/cs-CZ.po
+++ b/build/i18n/po/db.seed/cs-CZ.po
@@ -3631,7 +3631,7 @@ msgid "notated music"
 msgstr "hudební zápis"
 
 #: 950.data.seed-values.sql:227
-msgid "Physical Descrption"
+msgid "Physical Description"
 msgstr "Fyzický popis"
 
 #: 950.data.seed-values.sql:7217
diff --git a/build/i18n/po/db.seed/db.seed.pot b/build/i18n/po/db.seed/db.seed.pot
index 40c62691f3..3802f55f21 100644
--- a/build/i18n/po/db.seed/db.seed.pot
+++ b/build/i18n/po/db.seed/db.seed.pot
@@ -4134,7 +4134,7 @@ msgstr ""
 
 # id::cmf.label__39
 #: 950.data.seed-values.sql:227
-msgid "Physical Descrption"
+msgid "Physical Description"
 msgstr ""
 
 # id::ccvm.value__400
diff --git a/build/i18n/po/db.seed/de-DE.po b/build/i18n/po/db.seed/de-DE.po
index a3238f8027..b0568ae830 100644
--- a/build/i18n/po/db.seed/de-DE.po
+++ b/build/i18n/po/db.seed/de-DE.po
@@ -3276,7 +3276,7 @@ msgid "notated music"
 msgstr ""
 
 #: 950.data.seed-values.sql:227
-msgid "Physical Descrption"
+msgid "Physical Description"
 msgstr ""
 
 #: 950.data.seed-values.sql:7217
diff --git a/build/i18n/po/db.seed/en-CA.po b/build/i18n/po/db.seed/en-CA.po
index a429965995..37dde582dc 100644
--- a/build/i18n/po/db.seed/en-CA.po
+++ b/build/i18n/po/db.seed/en-CA.po
@@ -3285,7 +3285,7 @@ msgid "notated music"
 msgstr ""
 
 #: 950.data.seed-values.sql:227
-msgid "Physical Descrption"
+msgid "Physical Description"
 msgstr ""
 
 #: 950.data.seed-values.sql:7217
diff --git a/build/i18n/po/db.seed/en-GB.po b/build/i18n/po/db.seed/en-GB.po
index b41b06c228..415639f1e8 100644
--- a/build/i18n/po/db.seed/en-GB.po
+++ b/build/i18n/po/db.seed/en-GB.po
@@ -3288,7 +3288,7 @@ msgid "notated music"
 msgstr ""
 
 #: 950.data.seed-values.sql:227
-msgid "Physical Descrption"
+msgid "Physical Description"
 msgstr ""
 
 #: 950.data.seed-values.sql:7217
diff --git a/build/i18n/po/db.seed/es-ES.po b/build/i18n/po/db.seed/es-ES.po
index 8d6199ac97..091e5405d6 100644
--- a/build/i18n/po/db.seed/es-ES.po
+++ b/build/i18n/po/db.seed/es-ES.po
@@ -3564,7 +3564,7 @@ msgid "notated music"
 msgstr "música anotada"
 
 #: 950.data.seed-values.sql:227
-msgid "Physical Descrption"
+msgid "Physical Description"
 msgstr ""
 
 #: 950.data.seed-values.sql:7217
diff --git a/build/i18n/po/db.seed/fi-FI.po b/build/i18n/po/db.seed/fi-FI.po
index 26ed5f8124..15d7a1b04b 100644
--- a/build/i18n/po/db.seed/fi-FI.po
+++ b/build/i18n/po/db.seed/fi-FI.po
@@ -3517,7 +3517,7 @@ msgid "notated music"
 msgstr ""
 
 #: 950.data.seed-values.sql:227
-msgid "Physical Descrption"
+msgid "Physical Description"
 msgstr ""
 
 # id::ccvm.value__400
diff --git a/build/i18n/po/db.seed/fr-CA.po b/build/i18n/po/db.seed/fr-CA.po
index bc1586d4a0..0be0395834 100644
--- a/build/i18n/po/db.seed/fr-CA.po
+++ b/build/i18n/po/db.seed/fr-CA.po
@@ -3542,7 +3542,7 @@ msgid "notated music"
 msgstr ""
 
 #: 950.data.seed-values.sql:227
-msgid "Physical Descrption"
+msgid "Physical Description"
 msgstr ""
 
 # id::clm.value__son
diff --git a/build/i18n/po/db.seed/he-IL.po b/build/i18n/po/db.seed/he-IL.po
index 2fc95289a0..2a16d50a75 100644
--- a/build/i18n/po/db.seed/he-IL.po
+++ b/build/i18n/po/db.seed/he-IL.po
@@ -3269,7 +3269,7 @@ msgid "notated music"
 msgstr ""
 
 #: 950.data.seed-values.sql:227
-msgid "Physical Descrption"
+msgid "Physical Description"
 msgstr ""
 
 #: 950.data.seed-values.sql:7217
diff --git a/build/i18n/po/db.seed/hu-HU.po b/build/i18n/po/db.seed/hu-HU.po
index 2fc95289a0..2a16d50a75 100644
--- a/build/i18n/po/db.seed/hu-HU.po
+++ b/build/i18n/po/db.seed/hu-HU.po
@@ -3269,7 +3269,7 @@ msgid "notated music"
 msgstr ""
 
 #: 950.data.seed-values.sql:227
-msgid "Physical Descrption"
+msgid "Physical Description"
 msgstr ""
 
 #: 950.data.seed-values.sql:7217
diff --git a/build/i18n/po/db.seed/hy-AM.po b/build/i18n/po/db.seed/hy-AM.po
index 69ae77b237..126c79eedb 100644
--- a/build/i18n/po/db.seed/hy-AM.po
+++ b/build/i18n/po/db.seed/hy-AM.po
@@ -3803,7 +3803,7 @@ msgid "notated music"
 msgstr "նոտագրված երաժշտություն"
 
 #: 950.data.seed-values.sql:227
-msgid "Physical Descrption"
+msgid "Physical Description"
 msgstr ""
 
 # id::clm.value__son
diff --git a/build/i18n/po/db.seed/oc-FR.po b/build/i18n/po/db.seed/oc-FR.po
index a2d44f0307..fd981ff036 100644
--- a/build/i18n/po/db.seed/oc-FR.po
+++ b/build/i18n/po/db.seed/oc-FR.po
@@ -3274,7 +3274,7 @@ msgid "notated music"
 msgstr ""
 
 #: 950.data.seed-values.sql:227
-msgid "Physical Descrption"
+msgid "Physical Description"
 msgstr ""
 
 #: 950.data.seed-values.sql:7217
diff --git a/build/i18n/po/db.seed/pt-BR.po b/build/i18n/po/db.seed/pt-BR.po
index 1d10658337..b9b2e6475a 100644
--- a/build/i18n/po/db.seed/pt-BR.po
+++ b/build/i18n/po/db.seed/pt-BR.po
@@ -3420,7 +3420,7 @@ msgid "notated music"
 msgstr ""
 
 #: 950.data.seed-values.sql:227
-msgid "Physical Descrption"
+msgid "Physical Description"
 msgstr ""
 
 # id::clm.value__son
diff --git a/build/i18n/po/db.seed/ru-RU.po b/build/i18n/po/db.seed/ru-RU.po
index a0c2e96309..39ed2ec70c 100644
--- a/build/i18n/po/db.seed/ru-RU.po
+++ b/build/i18n/po/db.seed/ru-RU.po
@@ -3413,7 +3413,7 @@ msgid "notated music"
 msgstr ""
 
 #: 950.data.seed-values.sql:227
-msgid "Physical Descrption"
+msgid "Physical Description"
 msgstr ""
 
 # id::clm.value__son
diff --git a/build/i18n/po/db.seed/sv-SE.po b/build/i18n/po/db.seed/sv-SE.po
index 6e2422af18..c9e0e4d19c 100644
--- a/build/i18n/po/db.seed/sv-SE.po
+++ b/build/i18n/po/db.seed/sv-SE.po
@@ -3269,7 +3269,7 @@ msgid "notated music"
 msgstr ""
 
 #: 950.data.seed-values.sql:227
-msgid "Physical Descrption"
+msgid "Physical Description"
 msgstr ""
 
 #: 950.data.seed-values.sql:7217
diff --git a/build/i18n/po/db.seed/tr-TR.po b/build/i18n/po/db.seed/tr-TR.po
index 391533f7de..e9e32c7916 100644
--- a/build/i18n/po/db.seed/tr-TR.po
+++ b/build/i18n/po/db.seed/tr-TR.po
@@ -3274,7 +3274,7 @@ msgid "notated music"
 msgstr ""
 
 #: 950.data.seed-values.sql:227
-msgid "Physical Descrption"
+msgid "Physical Description"
 msgstr ""
 
 #: 950.data.seed-values.sql:7217

-----------------------------------------------------------------------

Summary of changes:
 Open-ILS/src/sql/Pg/002.schema.config.sql                     |  2 +-
 Open-ILS/src/sql/Pg/950.data.seed-values.sql                  |  2 +-
 .../src/sql/Pg/upgrade/1158.data.fix-typo-in-seed-data.sql    | 11 +++++++++++
 build/i18n/po/db.seed/ar-JO.po                                |  2 +-
 build/i18n/po/db.seed/cs-CZ.po                                |  2 +-
 build/i18n/po/db.seed/db.seed.pot                             |  2 +-
 build/i18n/po/db.seed/de-DE.po                                |  2 +-
 build/i18n/po/db.seed/en-CA.po                                |  2 +-
 build/i18n/po/db.seed/en-GB.po                                |  2 +-
 build/i18n/po/db.seed/es-ES.po                                |  2 +-
 build/i18n/po/db.seed/fi-FI.po                                |  2 +-
 build/i18n/po/db.seed/fr-CA.po                                |  2 +-
 build/i18n/po/db.seed/he-IL.po                                |  2 +-
 build/i18n/po/db.seed/hu-HU.po                                |  2 +-
 build/i18n/po/db.seed/hy-AM.po                                |  2 +-
 build/i18n/po/db.seed/oc-FR.po                                |  2 +-
 build/i18n/po/db.seed/pt-BR.po                                |  2 +-
 build/i18n/po/db.seed/ru-RU.po                                |  2 +-
 build/i18n/po/db.seed/sv-SE.po                                |  2 +-
 build/i18n/po/db.seed/tr-TR.po                                |  2 +-
 20 files changed, 30 insertions(+), 19 deletions(-)
 create mode 100644 Open-ILS/src/sql/Pg/upgrade/1158.data.fix-typo-in-seed-data.sql


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list