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

svn at svn.open-ils.org svn at svn.open-ils.org
Tue Jan 4 21:47:59 EST 2011


Author: miker
Date: 2011-01-04 21:47:57 -0500 (Tue, 04 Jan 2011)
New Revision: 19120

Added:
   tags/rel_1_6_2_1/Open-ILS/src/sql/Pg/1.6.2.0-1.6.2.1-db-upgrade.sql
Modified:
   tags/rel_1_6_2_1/ChangeLog
   tags/rel_1_6_2_1/Open-ILS/src/perlmods/OpenILS/Application.pm
   tags/rel_1_6_2_1/Open-ILS/src/sql/Pg/002.schema.config.sql
   tags/rel_1_6_2_1/README
Log:
version bumps and upgrade script

Modified: tags/rel_1_6_2_1/ChangeLog
===================================================================
--- tags/rel_1_6_2_1/ChangeLog	2011-01-05 02:41:57 UTC (rev 19119)
+++ tags/rel_1_6_2_1/ChangeLog	2011-01-05 02:47:57 UTC (rev 19120)
@@ -1 +1,62 @@
-#ChangeLog
+2010-12-23  miker
+
+	* correcting upgrade script for recent vandelay.replace_field
+	  improvements
+
+2010-12-23  gmc
+
+	* addressing two Breaker-format issues: 1) supply an "empty"
+	  (space) value for indicators in the internal format if they are
+	  left out and 2) add indicator placeholders to incoming Breaker
+	  datafield lines if they seem to be missing. Addresses
+	  https://bugs.launchpad.net/evergreen/+bug/693468
+	  
+	  Signed-off-by: Galen Charlton <gmc at esilibrary.com>
+
+	* When the subfield delimiter is configured as "$" (the default),
+	  use {dollar} to represent a literal dollar sign. This is
+	  apparently in line with other Breaker-format tools. Fix suggested
+	  by Galen Charlton, thanks gmc!
+	  
+	  Signed-off-by: Galen Charlton <gmc at esilibrary.com>
+
+	* commit 620f5d756619b84200add4c534a7cf22e1c0d037
+	  further fixes to null indicator handling in flat-text MARC editor
+	  
+	  [1] ensure that null indicators are converted to blanks
+	  [2] fix glitch when supplying default indicator values
+	  
+	  Signed-off-by: Galen Charlton <gmc at esilibrary.com>
+	  
+	  Signed-off-by: Galen Charlton <gmc at esilibrary.com>
+
+2011-01-01  dbs
+
+	* Fix exception thrown in MARC editor searching for bib sources
+	  
+	  As reported in https://bugs.launchpad.net/evergreen/+bug/695526,
+	  the attempt to retrieve all of the config.bib_source values using
+	  openils.PermaCrud was failing because the retrieveAll() method
+	  relies on fieldmapper.IDL's setting of the
+	  fieldmapper[hint].Identifier property for each class - but in the
+	  1.6 releases, we're still using fmclasses in XUL instead of
+	  fieldmapper.AutoIDL.
+	  
+	  So, to fix the direct problem, we can simply set the property
+	  ourselves on the desired class before invoking retrieveAll();
+	  this avoids touching code paths that might have wider unintended
+	  consequences.
+
+2011-01-04  miker
+
+	* Patch from Robert Soulliere to backport Class::DBI version
+	  checking from 2.0:
+	  https://bugs.launchpad.net/evergreen/+bug/692717
+
+	* Addressing https://bugs.launchpad.net/evergreen/+bug/696078 where
+	  deleted/inactive records are included in the freshmeat feed.
+
+2011-01-05  miker
+
+	* .: tagging 1.6.2.1
+

Modified: tags/rel_1_6_2_1/Open-ILS/src/perlmods/OpenILS/Application.pm
===================================================================
--- tags/rel_1_6_2_1/Open-ILS/src/perlmods/OpenILS/Application.pm	2011-01-05 02:41:57 UTC (rev 19119)
+++ tags/rel_1_6_2_1/Open-ILS/src/perlmods/OpenILS/Application.pm	2011-01-05 02:47:57 UTC (rev 19120)
@@ -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-6";
+    return "1-6-2-1";
 }
 
 __PACKAGE__->register_method(

Modified: tags/rel_1_6_2_1/Open-ILS/src/sql/Pg/002.schema.config.sql
===================================================================
--- tags/rel_1_6_2_1/Open-ILS/src/sql/Pg/002.schema.config.sql	2011-01-05 02:41:57 UTC (rev 19119)
+++ tags/rel_1_6_2_1/Open-ILS/src/sql/Pg/002.schema.config.sql	2011-01-05 02:47:57 UTC (rev 19120)
@@ -51,7 +51,7 @@
     install_date    TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW()
 );
 
-INSERT INTO config.upgrade_log (version) VALUES ('1.6'); -- miker
+INSERT INTO config.upgrade_log (version) VALUES ('1.6.2.1');
 
 CREATE TABLE config.bib_source (
 	id		SERIAL	PRIMARY KEY,

Added: tags/rel_1_6_2_1/Open-ILS/src/sql/Pg/1.6.2.0-1.6.2.1-db-upgrade.sql
===================================================================
--- tags/rel_1_6_2_1/Open-ILS/src/sql/Pg/1.6.2.0-1.6.2.1-db-upgrade.sql	                        (rev 0)
+++ tags/rel_1_6_2_1/Open-ILS/src/sql/Pg/1.6.2.0-1.6.2.1-db-upgrade.sql	2011-01-05 02:47:57 UTC (rev 19120)
@@ -0,0 +1,18 @@
+/*
+ * Copyright (C) 2011  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.6.2.1');
+

Modified: tags/rel_1_6_2_1/README
===================================================================
--- tags/rel_1_6_2_1/README	2011-01-05 02:41:57 UTC (rev 19119)
+++ tags/rel_1_6_2_1/README	2011-01-05 02:47:57 UTC (rev 19120)
@@ -1,11 +1,11 @@
-README for Evergreen 1.6
+README for Evergreen 1.6.2.1
 
 Installing prerequisites:
 ========================
 Evergreen has a number of prerequisite packages that must be installed
 before you can successfully configure, compile, and install Evergreen.
 
-1. Begin by installing the most recent version of OpenSRF (1.1 or later).
+1. Begin by installing the most recent version of OpenSRF (1.6 or later).
 You can download OpenSRF releases from
 http://evergreen-ils.org/downloads
 
@@ -40,7 +40,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_6_0_0 install
+make STAFF_CLIENT_BUILD_ID=rel_1_6_2_1 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