[open-ils-commits] r12116 - in tags/rel_1_4_0_2: . Open-ILS/src/perlmods/OpenILS Open-ILS/src/sql/Pg (miker)

svn at svn.open-ils.org svn at svn.open-ils.org
Mon Feb 9 10:45:51 EST 2009


Author: miker
Date: 2009-02-09 10:45:49 -0500 (Mon, 09 Feb 2009)
New Revision: 12116

Added:
   tags/rel_1_4_0_2/Open-ILS/src/sql/Pg/1.4.0.1-1.4.0.2-upgrade-db.sql
Modified:
   tags/rel_1_4_0_2/Open-ILS/src/perlmods/OpenILS/Application.pm
   tags/rel_1_4_0_2/Open-ILS/src/sql/Pg/1.2.3-1.4-upgrade-db.sql
   tags/rel_1_4_0_2/Open-ILS/src/sql/Pg/1.2.4-1.4-upgrade-db.sql
   tags/rel_1_4_0_2/README
Log:
bumping version numbers for new release

Modified: tags/rel_1_4_0_2/Open-ILS/src/perlmods/OpenILS/Application.pm
===================================================================
--- tags/rel_1_4_0_2/Open-ILS/src/perlmods/OpenILS/Application.pm	2009-02-09 15:40:19 UTC (rev 12115)
+++ tags/rel_1_4_0_2/Open-ILS/src/perlmods/OpenILS/Application.pm	2009-02-09 15:45:49 UTC (rev 12116)
@@ -5,7 +5,7 @@
 
 sub ils_version {
     # version format is "x-y-z-p", for example "1-2-1-0" for Evergreen 1.2.1.0
-    return "1-4-0";
+    return "1-4-0-2";
 }
 
 __PACKAGE__->register_method(

Modified: tags/rel_1_4_0_2/Open-ILS/src/sql/Pg/1.2.3-1.4-upgrade-db.sql
===================================================================
--- tags/rel_1_4_0_2/Open-ILS/src/sql/Pg/1.2.3-1.4-upgrade-db.sql	2009-02-09 15:40:19 UTC (rev 12115)
+++ tags/rel_1_4_0_2/Open-ILS/src/sql/Pg/1.2.3-1.4-upgrade-db.sql	2009-02-09 15:45:49 UTC (rev 12116)
@@ -26,7 +26,7 @@
     version         TEXT    PRIMARY KEY,
     install_date    TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW()
 );
-INSERT INTO config.upgrade_log (version) VALUES ('1.4.0.0');
+INSERT INTO config.upgrade_log (version) VALUES ('1.4.0.2');
 
 SELECT set_curcfg('default');
 

Modified: tags/rel_1_4_0_2/Open-ILS/src/sql/Pg/1.2.4-1.4-upgrade-db.sql
===================================================================
--- tags/rel_1_4_0_2/Open-ILS/src/sql/Pg/1.2.4-1.4-upgrade-db.sql	2009-02-09 15:40:19 UTC (rev 12115)
+++ tags/rel_1_4_0_2/Open-ILS/src/sql/Pg/1.2.4-1.4-upgrade-db.sql	2009-02-09 15:45:49 UTC (rev 12116)
@@ -26,7 +26,7 @@
     version         TEXT    PRIMARY KEY,
     install_date    TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW()
 );
-INSERT INTO config.upgrade_log (version) VALUES ('1.4.0.0');
+INSERT INTO config.upgrade_log (version) VALUES ('1.4.0.2');
 
 SELECT set_curcfg('default');
 

Added: tags/rel_1_4_0_2/Open-ILS/src/sql/Pg/1.4.0.1-1.4.0.2-upgrade-db.sql
===================================================================
--- tags/rel_1_4_0_2/Open-ILS/src/sql/Pg/1.4.0.1-1.4.0.2-upgrade-db.sql	                        (rev 0)
+++ tags/rel_1_4_0_2/Open-ILS/src/sql/Pg/1.4.0.1-1.4.0.2-upgrade-db.sql	2009-02-09 15:45:49 UTC (rev 12116)
@@ -0,0 +1,36 @@
+/*
+ * Copyright (C) 2009  Equinox Software, Inc.
+ * Mike Rylander <miker at esilibrary.com>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ */
+
+
+INSERT INTO config.upgrade_log (version) VALUES ('1.4.0.2');
+
+-- In case this was an earlier 1.2 upgrade...
+BEGIN;
+
+CREATE TABLE config.bib_level_map (
+        code    TEXT    PRIMARY KEY,
+        value   TEXT    NOT NULL
+);
+INSERT INTO config.bib_level_map (code, value) VALUES ('a', oils_i18n_gettext('a', 'Monographic component part', 'cblvl', 'value'));
+INSERT INTO config.bib_level_map (code, value) VALUES ('b', oils_i18n_gettext('b', 'Serial component part', 'cblvl', 'value'));
+INSERT INTO config.bib_level_map (code, value) VALUES ('c', oils_i18n_gettext('c', 'Collection', 'cblvl', 'value'));
+INSERT INTO config.bib_level_map (code, value) VALUES ('d', oils_i18n_gettext('d', 'Subunit', 'cblvl', 'value'));
+INSERT INTO config.bib_level_map (code, value) VALUES ('i', oils_i18n_gettext('i', 'Integrating resource', 'cblvl', 'value'));
+INSERT INTO config.bib_level_map (code, value) VALUES ('m', oils_i18n_gettext('m', 'Monograph/Item', 'cblvl', 'value'));
+INSERT INTO config.bib_level_map (code, value) VALUES ('s', oils_i18n_gettext('s', 'Serial', 'cblvl', 'value'));
+
+COMMIT;
+

Modified: tags/rel_1_4_0_2/README
===================================================================
--- tags/rel_1_4_0_2/README	2009-02-09 15:40:19 UTC (rev 12115)
+++ tags/rel_1_4_0_2/README	2009-02-09 15:45:49 UTC (rev 12116)
@@ -1,4 +1,4 @@
-README for Evergreen 1.4.0
+README for Evergreen 1.4.0.2
 
 Installing prerequisites:
 ========================
@@ -6,8 +6,8 @@
 before you can successfully configure, compile, and install Evergreen.
 
 1. Begin by installing the most recent version of OpenSRF (1.0 or later).
-You can download OpenSRF 1.0.2 from
-http://evergreen-ils.org/downloads/OpenSRF-1.0.2.tar.gz
+You can download OpenSRF 1.0.4 from
+http://evergreen-ils.org/downloads/OpenSRF-1.0.4.tar.gz
 
 2. On Debian and Ubuntu, the easiest way to install the rest of the
 prerequisites for Evergreen is to use the Makefile.install prerequisite
@@ -42,7 +42,7 @@
 Once you have configured and compiled Evergreen, issue the following
 command as the root user to install Evergreen:
 
-make STAFF_CLIENT_BUILD_ID=rel_1_4_0_0 install
+make STAFF_CLIENT_BUILD_ID=rel_1_4_0_2 install
 
 This will install Evergreen, including example configuration files in
 /openils/conf/ that you can use as templates for your own configuration files.



More information about the open-ils-commits mailing list