[open-ils-commits] [GIT] Evergreen ILS branch rel_2_3 updated. d6b8a74cfb51bbf84fc2e1d2906d018ccf598f30
Evergreen Git
git at git.evergreen-ils.org
Wed Jul 10 12:12:00 EDT 2013
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_2_3 has been updated
via d6b8a74cfb51bbf84fc2e1d2906d018ccf598f30 (commit)
via 91be8b48a44d0472f4f3551660505a9355bbd2f7 (commit)
via 391191a2b7dae2d539927bc28ee1ec0e31e2f840 (commit)
via 2c781e60d634bd813152166ec674d15a3d58dc1e (commit)
from f6509132b0cbc352ce0e9abced1392086680d0ef (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 d6b8a74cfb51bbf84fc2e1d2906d018ccf598f30
Author: Dan Wells <dbw2 at calvin.edu>
Date: Wed Jul 10 11:39:08 2013 -0400
Add missing oils_i18n call #2 to upgrade script
Simple thinko fix for missing translation function call.
Signed-off-by: Dan Wells <dbw2 at calvin.edu>
Signed-off-by: Remington Steed <rjs7 at calvin.edu>
diff --git a/Open-ILS/src/sql/Pg/upgrade/0804.data.gwichin-typo-fix.sql b/Open-ILS/src/sql/Pg/upgrade/0804.data.gwichin-typo-fix.sql
index 27bfb51..05b0fa5 100644
--- a/Open-ILS/src/sql/Pg/upgrade/0804.data.gwichin-typo-fix.sql
+++ b/Open-ILS/src/sql/Pg/upgrade/0804.data.gwichin-typo-fix.sql
@@ -3,7 +3,7 @@ BEGIN;
SELECT evergreen.upgrade_deps_block_check('0804', :eg_version);
UPDATE config.coded_value_map
-SET value = 'Gwich''in'
+SET value = oils_i18n_gettext('169', 'Gwich''in', 'ccvm', 'value')
WHERE ctype = 'item_lang' AND code = 'gwi';
COMMIT;
commit 91be8b48a44d0472f4f3551660505a9355bbd2f7
Author: Dan Wells <dbw2 at calvin.edu>
Date: Wed Jul 10 11:26:07 2013 -0400
Stamping upgrade for Gwich'in language typo
Signed-off-by: Dan Wells <dbw2 at calvin.edu>
diff --git a/Open-ILS/src/sql/Pg/002.schema.config.sql b/Open-ILS/src/sql/Pg/002.schema.config.sql
index bcc0878..9de4664 100644
--- a/Open-ILS/src/sql/Pg/002.schema.config.sql
+++ b/Open-ILS/src/sql/Pg/002.schema.config.sql
@@ -87,7 +87,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 ('0803', :eg_version); -- paxed/remingtron/dbwells
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('0804', :eg_version); -- paxed/remingtron/bshum/dbwells
CREATE TABLE config.bib_source (
id SERIAL PRIMARY KEY,
diff --git a/Open-ILS/src/sql/Pg/upgrade/XXXX.data.gwichin-typo-fix.sql b/Open-ILS/src/sql/Pg/upgrade/0804.data.gwichin-typo-fix.sql
similarity index 64%
rename from Open-ILS/src/sql/Pg/upgrade/XXXX.data.gwichin-typo-fix.sql
rename to Open-ILS/src/sql/Pg/upgrade/0804.data.gwichin-typo-fix.sql
index 4b61142..27bfb51 100644
--- a/Open-ILS/src/sql/Pg/upgrade/XXXX.data.gwichin-typo-fix.sql
+++ b/Open-ILS/src/sql/Pg/upgrade/0804.data.gwichin-typo-fix.sql
@@ -1,6 +1,6 @@
BEGIN;
-SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version);
+SELECT evergreen.upgrade_deps_block_check('0804', :eg_version);
UPDATE config.coded_value_map
SET value = 'Gwich''in'
commit 391191a2b7dae2d539927bc28ee1ec0e31e2f840
Author: Ben Shum <bshum at biblio.org>
Date: Tue Jul 9 20:47:20 2013 -0400
LP1158206 - include upgrade script to fix Gwich'in typo
Signed-off-by: Ben Shum <bshum at biblio.org>
Signed-off-by: Dan Wells <dbw2 at calvin.edu>
diff --git a/Open-ILS/src/sql/Pg/upgrade/XXXX.data.gwichin-typo-fix.sql b/Open-ILS/src/sql/Pg/upgrade/XXXX.data.gwichin-typo-fix.sql
new file mode 100644
index 0000000..4b61142
--- /dev/null
+++ b/Open-ILS/src/sql/Pg/upgrade/XXXX.data.gwichin-typo-fix.sql
@@ -0,0 +1,9 @@
+BEGIN;
+
+SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version);
+
+UPDATE config.coded_value_map
+SET value = 'Gwich''in'
+WHERE ctype = 'item_lang' AND code = 'gwi';
+
+COMMIT;
commit 2c781e60d634bd813152166ec674d15a3d58dc1e
Author: Pasi Kallinen <pasi.kallinen at pttk.fi>
Date: Thu Jun 13 09:06:26 2013 +0300
Fix LP1158206 - The language is Gwich'in.
Signed-off-by: Pasi Kallinen <pasi.kallinen at pttk.fi>
Signed-off-by: Remington Steed <rjs7 at calvin.edu>
Signed-off-by: Ben Shum <bshum at biblio.org>
Signed-off-by: Dan Wells <dbw2 at calvin.edu>
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 53cb875..96bd3c7 100644
--- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql
+++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql
@@ -5980,7 +5980,7 @@ INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES
(166, 'item_lang', 'grn', oils_i18n_gettext('166', 'Guarani', 'ccvm', 'value')),
(167, 'item_lang', '-gua', oils_i18n_gettext('167', 'Guarani', 'ccvm', 'value')),
(168, 'item_lang', 'guj', oils_i18n_gettext('168', 'Gujarati', 'ccvm', 'value')),
- (169, 'item_lang', 'gwi', oils_i18n_gettext('169', 'Gwich', 'ccvm', 'value''in')),
+ (169, 'item_lang', 'gwi', oils_i18n_gettext('169', 'Gwich''in', 'ccvm', 'value')),
(170, 'item_lang', 'hai', oils_i18n_gettext('170', 'Haida', 'ccvm', 'value')),
(171, 'item_lang', 'hat', oils_i18n_gettext('171', 'Haitian French Creole', 'ccvm', 'value')),
(172, 'item_lang', 'hau', oils_i18n_gettext('172', 'Hausa', 'ccvm', 'value')),
-----------------------------------------------------------------------
Summary of changes:
Open-ILS/src/sql/Pg/002.schema.config.sql | 2 +-
Open-ILS/src/sql/Pg/950.data.seed-values.sql | 2 +-
.../sql/Pg/upgrade/0804.data.gwichin-typo-fix.sql | 9 +++++++++
3 files changed, 11 insertions(+), 2 deletions(-)
create mode 100644 Open-ILS/src/sql/Pg/upgrade/0804.data.gwichin-typo-fix.sql
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list