[open-ils-commits] [GIT] Evergreen ILS branch rel_3_2 updated. d0a8024de9331542c83120d8fddacbe13b08d7d7

Evergreen Git git at git.evergreen-ils.org
Fri Mar 8 14:22:40 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, rel_3_2 has been updated
       via  d0a8024de9331542c83120d8fddacbe13b08d7d7 (commit)
       via  acdce777c319edcae4810697fa99b209775864eb (commit)
       via  f7afe0c718760b780421eb5ea38cdfe40521ff7b (commit)
      from  d731c233112b6ebdf8fde12f80a3b7916f608539 (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 d0a8024de9331542c83120d8fddacbe13b08d7d7
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 acdce777c319edcae4810697fa99b209775864eb
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 f7afe0c718760b780421eb5ea38cdfe40521ff7b
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 87a7c5fee9..6c390641a2 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 70aefaa371..c4db853aa7 100644
--- a/build/i18n/po/db.seed/ar-JO.po
+++ b/build/i18n/po/db.seed/ar-JO.po
@@ -3440,7 +3440,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 cd4a50b63d..bef03762e9 100644
--- a/build/i18n/po/db.seed/cs-CZ.po
+++ b/build/i18n/po/db.seed/cs-CZ.po
@@ -3623,7 +3623,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 f4a19cba93..9d8beca18a 100644
--- a/build/i18n/po/db.seed/db.seed.pot
+++ b/build/i18n/po/db.seed/db.seed.pot
@@ -4054,7 +4054,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 0529ebcec2..4ac2209a59 100644
--- a/build/i18n/po/db.seed/de-DE.po
+++ b/build/i18n/po/db.seed/de-DE.po
@@ -3273,7 +3273,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 1de38abd6b..cdac74c53a 100644
--- a/build/i18n/po/db.seed/en-CA.po
+++ b/build/i18n/po/db.seed/en-CA.po
@@ -3282,7 +3282,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 f8a03cbd80..684e87a9d2 100644
--- a/build/i18n/po/db.seed/en-GB.po
+++ b/build/i18n/po/db.seed/en-GB.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/es-ES.po b/build/i18n/po/db.seed/es-ES.po
index d4f9d90d0a..30c3a556ee 100644
--- a/build/i18n/po/db.seed/es-ES.po
+++ b/build/i18n/po/db.seed/es-ES.po
@@ -3558,7 +3558,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 4c8fe03aea..eeb4737bf8 100644
--- a/build/i18n/po/db.seed/fi-FI.po
+++ b/build/i18n/po/db.seed/fi-FI.po
@@ -3514,7 +3514,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 b67220ea0e..834b3b6135 100644
--- a/build/i18n/po/db.seed/fr-CA.po
+++ b/build/i18n/po/db.seed/fr-CA.po
@@ -3539,7 +3539,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 23e7ba8986..1c2c7fc989 100644
--- a/build/i18n/po/db.seed/he-IL.po
+++ b/build/i18n/po/db.seed/he-IL.po
@@ -3266,7 +3266,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 23e7ba8986..1c2c7fc989 100644
--- a/build/i18n/po/db.seed/hu-HU.po
+++ b/build/i18n/po/db.seed/hu-HU.po
@@ -3266,7 +3266,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 0bac6e04ed..99ffe5e632 100644
--- a/build/i18n/po/db.seed/hy-AM.po
+++ b/build/i18n/po/db.seed/hy-AM.po
@@ -3793,7 +3793,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 4815f220b8..52737728da 100644
--- a/build/i18n/po/db.seed/oc-FR.po
+++ b/build/i18n/po/db.seed/oc-FR.po
@@ -3271,7 +3271,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 88119525e2..d521f231c7 100644
--- a/build/i18n/po/db.seed/pt-BR.po
+++ b/build/i18n/po/db.seed/pt-BR.po
@@ -3417,7 +3417,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 a971819f8f..37a370ab1e 100644
--- a/build/i18n/po/db.seed/ru-RU.po
+++ b/build/i18n/po/db.seed/ru-RU.po
@@ -3410,7 +3410,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 611b381c23..941d8238ff 100644
--- a/build/i18n/po/db.seed/sv-SE.po
+++ b/build/i18n/po/db.seed/sv-SE.po
@@ -3266,7 +3266,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 0973d22121..a05843f08f 100644
--- a/build/i18n/po/db.seed/tr-TR.po
+++ b/build/i18n/po/db.seed/tr-TR.po
@@ -3271,7 +3271,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