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

svn at svn.open-ils.org svn at svn.open-ils.org
Fri Feb 4 15:29:08 EST 2011


Author: miker
Date: 2011-02-04 15:29:03 -0500 (Fri, 04 Feb 2011)
New Revision: 19397

Modified:
   tags/rel_1_6_1_7/ChangeLog
   tags/rel_1_6_1_7/Open-ILS/src/perlmods/OpenILS/Application.pm
   tags/rel_1_6_1_7/Open-ILS/src/sql/Pg/002.schema.config.sql
   tags/rel_1_6_1_7/README
Log:
version bumps

Modified: tags/rel_1_6_1_7/ChangeLog
===================================================================
--- tags/rel_1_6_1_7/ChangeLog	2011-02-04 20:25:54 UTC (rev 19396)
+++ tags/rel_1_6_1_7/ChangeLog	2011-02-04 20:29:03 UTC (rev 19397)
@@ -1 +1,85 @@
-#ChangeLog
+2011-01-11  phasefx
+
+	* fix regression with org selector when specifying ?ol= and the org
+	  unit hiding setting is unset
+
+2011-01-14  dbs
+
+	* Enable truncation attribute in Z39.50 queries to be left out
+	  entirely
+	  
+	  Per https://bugs.launchpad.net/evergreen/+bug/702695, some Z39.50
+	  servers hate the truncation attribute (@attr 5=anything) and
+	  always
+	  return 0 hits.
+	  
+	  This gives you the ability to specify a negative value for the
+	  truncation attribute and thereby prevent the truncation attribute
+	  from being included in the Z39.50 query for a given server.
+
+2011-01-19  miker
+
+	* Build and flatten a tree, correcting a sorting issue in some OU
+	  dropdowns.
+	  
+	  The previous code assumed that work org units would be delivered
+	  in hierarchical order, but alas, they are not. Thus, we build the
+	  hierarchy and then flatten it, sorting at each level.
+	  This will be non-fast with many work OUs, but the common case is
+	  a small set, which is not painful.
+	  
+	  Further improvement is warranted when the above proves false.
+
+2011-01-19  phasefx
+
+	* some interfaces (or at least org_unit_settings.js) was not
+	  infering the identifier value here. This helps the filtering org
+	  select dijit in that interface
+
+2011-01-19  senator
+
+	* Backport r19214 from trunk
+	  
+	  Booking: Robert Soulliere spotted and fixed a bug in processing
+	  reservation-
+	  related overdue fines. See
+	  https://bugs.launchpad.net/evergreen/+bug/705061
+
+2011-01-20  senator
+
+	* Backport r19229 from trunk
+	  
+	  Booking: these lines don't belong; they were erroneously copied
+	  and pasted
+	  from a neighboring section of the file
+
+2011-01-20  phasefx
+
+	* don't offer to cancel related transits that have already
+	  completed when canceling holds. related to 19234, but data
+	  structure is different
+
+2011-02-01  dbwells
+
+	* Backport r19288 : Fix checkin backdate assumptions
+	  
+	  checkin_handle_backdate() did not properly interpret bill data
+	  (voided too much), so lets use void_overdues() instead
+
+2011-02-02  phasefx
+
+	* backport r19364 from trunk for stat cat field value removal in
+	  patron editor
+
+2011-02-04  dbwells
+
+	* Fix ModsParser.pm bug involving invalid ISBNs. See bug #697398.
+
+2011-02-04  miker
+
+	* upgrade scripts
+
+	* upgrade scripts
+
+	* .: Tagging 1.6.1.7
+

Modified: tags/rel_1_6_1_7/Open-ILS/src/perlmods/OpenILS/Application.pm
===================================================================
--- tags/rel_1_6_1_7/Open-ILS/src/perlmods/OpenILS/Application.pm	2011-02-04 20:25:54 UTC (rev 19396)
+++ tags/rel_1_6_1_7/Open-ILS/src/perlmods/OpenILS/Application.pm	2011-02-04 20:29:03 UTC (rev 19397)
@@ -6,7 +6,7 @@
 sub ils_version {
     # version format is "x-y-z-p", for example "1-2-1-0" for Evergreen 1.2.1.0
     # For branches, format is "x-y-z"
-    return "1-6-1";
+    return "1-6-1-7";
 }
 
 __PACKAGE__->register_method(

Modified: tags/rel_1_6_1_7/Open-ILS/src/sql/Pg/002.schema.config.sql
===================================================================
--- tags/rel_1_6_1_7/Open-ILS/src/sql/Pg/002.schema.config.sql	2011-02-04 20:25:54 UTC (rev 19396)
+++ tags/rel_1_6_1_7/Open-ILS/src/sql/Pg/002.schema.config.sql	2011-02-04 20:29:03 UTC (rev 19397)
@@ -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.1.7');
 
 CREATE TABLE config.bib_source (
 	id		SERIAL	PRIMARY KEY,

Modified: tags/rel_1_6_1_7/README
===================================================================
--- tags/rel_1_6_1_7/README	2011-02-04 20:25:54 UTC (rev 19396)
+++ tags/rel_1_6_1_7/README	2011-02-04 20:29:03 UTC (rev 19397)
@@ -1,4 +1,4 @@
-README for Evergreen 1.6
+README for Evergreen 1.6.1.7
 
 Installing prerequisites:
 ========================
@@ -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_1_7 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