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

svn at svn.open-ils.org svn at svn.open-ils.org
Thu Jun 10 15:47:37 EDT 2010


Author: miker
Date: 2010-06-10 15:47:32 -0400 (Thu, 10 Jun 2010)
New Revision: 16664

Modified:
   tags/rel_1_6_0_5/ChangeLog
   tags/rel_1_6_0_5/Open-ILS/src/perlmods/OpenILS/Application.pm
   tags/rel_1_6_0_5/Open-ILS/src/sql/Pg/002.schema.config.sql
   tags/rel_1_6_0_5/README
Log:
version stamping and changelog

Modified: tags/rel_1_6_0_5/ChangeLog
===================================================================
--- tags/rel_1_6_0_5/ChangeLog	2010-06-10 19:36:35 UTC (rev 16663)
+++ tags/rel_1_6_0_5/ChangeLog	2010-06-10 19:47:32 UTC (rev 16664)
@@ -1 +1,95 @@
-#ChangeLog
+2010-05-03  erickson
+
+	* backporting 16376: fixed bug where updating the email address
+	  resulted in updating the username instead of the email address on
+	  the local copy of the user object in the opac. this bug likely
+	  affected nothing.
+
+2010-05-10  phasefx
+
+	* backport changesets 16411 and 16393 for authoritative methods
+
+2010-05-16  miker
+
+	* adjust upgrade script in case there is ever a
+	  1.6.0.5Open-ILS/src/sql/Pg/1.6.0.4-1.6.0.5-upgrade-db.sql
+
+2010-05-21  miker
+
+	* Patch from Dan Wells to fix the bookbag menu not showing up in
+	  Craftsman.
+
+2010-05-25  erickson
+
+	* Patch from Bill Ott to add missing apostrophe in rdetail.js
+
+2010-06-01  dbs
+
+	* Fix regression in date formatting for purposes other than due
+	  dates
+	  
+	  Thanks to #atheos in IRC for pointing out this problem
+
+2010-06-02  dbs
+
+	* Backport r16558 from rel_1_6: Avoid schema creation failure by
+	  ensuring metabib exists before referencing rule is created
+
+2010-06-08  erickson
+
+	* back-porting: protect against empty results from bib searches
+	  caused by search timeouts. This allows the API call to log the
+	  error and return reasonable results
+
+2010-06-10  erickson
+
+	* updated report param editor to handle join types embedded in the
+	  field name. this bug caused sporadic failed rendering of the
+	  report editor params widgets
+
+2010-06-10  miker
+
+	* Patch from James Fournie of SITKA:
+	  
+	  There was some discussion about problems with holds fulfillment
+	  at the holds roundtable at EG2010. I am pleased to share this patch with
+	  the community which has been thoroughly tested by the folks at
+	  Thompson-Nicola Regional District Library. (thanks guys!)
+	  
+	  Background:
+	  
+	  Evergreen's default out-of-the-box behaviour for holds fulfillment is
+	  a gas-saving method. Holds are fulfilled by proximity. In a
+	  multibranch library, holds are fulfilled at the local branch first.
+	  Many libraries, particularly single branch libraries may be ok with
+	  this, but it may be problematic for other libraries.
+	  
+	  Imagine a scenario where you have a large central branch and a small
+	  rural branch of the same library system. At the large branch, there
+	  are many copies of Popular New DVD with lots of holds. There are no
+	  copies at the rural branch. Patrons at the small rural branch who
+	  want to pick up Popular New DVD at their home branch may never get
+	  their hold fulfilled because the copies will stay at the large branch
+	  as long as there are holds for pickup there.
+	  
+	  This patch adds an org unit setting that changes the opportunistic
+	  check-in so that items checked in will be assigned to holds by request
+	  date first, rather than proximity. This setting can be applied to
+	  any level of the org tree, so in some situations you may even want to
+	  activate FIFO for large libraries, but leave the original setting for
+	  smaller libraries with less traffic who want to keep their copies more
+	  local.
+	  
+	  Also credit to Jeff Godin who thought of the same patch and
+	  contributed the setting name "holds FIFO" for the setting
+	  
+	  [ NOTE: Implications of mixed FIFO and non-FIFO environments that are
+	  not sufficiently segregated by the use of Hard Boundaries for Holds
+	  present a potenial for user confusion. Beware that mixing FIFO and
+	  non-FIFO settings within a resource-sharing group will likely result in
+	  severe imbalance of hold fulfillment, though further configuration,
+	  development, tuning and testing may be able to mitigate these issues.
+	    --miker ]
+
+	* .: Tagging 1.6.0.5
+

Modified: tags/rel_1_6_0_5/Open-ILS/src/perlmods/OpenILS/Application.pm
===================================================================
--- tags/rel_1_6_0_5/Open-ILS/src/perlmods/OpenILS/Application.pm	2010-06-10 19:36:35 UTC (rev 16663)
+++ tags/rel_1_6_0_5/Open-ILS/src/perlmods/OpenILS/Application.pm	2010-06-10 19:47:32 UTC (rev 16664)
@@ -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-5";
+    return "1-6-0-5";
 }
 
 __PACKAGE__->register_method(

Modified: tags/rel_1_6_0_5/Open-ILS/src/sql/Pg/002.schema.config.sql
===================================================================
--- tags/rel_1_6_0_5/Open-ILS/src/sql/Pg/002.schema.config.sql	2010-06-10 19:36:35 UTC (rev 16663)
+++ tags/rel_1_6_0_5/Open-ILS/src/sql/Pg/002.schema.config.sql	2010-06-10 19:47:32 UTC (rev 16664)
@@ -51,7 +51,7 @@
     install_date    TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW()
 );
 
-INSERT INTO config.upgrade_log (version) VALUES ('1.6.0.4'); -- dbs
+INSERT INTO config.upgrade_log (version) VALUES ('1.6.0.5'); -- miker
 
 CREATE TABLE config.bib_source (
 	id		SERIAL	PRIMARY KEY,

Modified: tags/rel_1_6_0_5/README
===================================================================
--- tags/rel_1_6_0_5/README	2010-06-10 19:36:35 UTC (rev 16663)
+++ tags/rel_1_6_0_5/README	2010-06-10 19:47:32 UTC (rev 16664)
@@ -1,4 +1,4 @@
-README for Evergreen 1.6
+README for Evergreen 1.6.0.5
 
 Installing prerequisites:
 ========================
@@ -40,15 +40,15 @@
 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_0_5 install
 
 This will install Evergreen, including example configuration files in
 /openils/conf/ that you can use as templates for your own configuration files.
 The STAFF_CLIENT_BUILD_ID variable stamps the server-side and client-side files
 for the staff client to ensure that they match.
 
-Install Dojo Toolkit:
-====================
+Install Dojo Toolkit (installing Evergreen from SVN):
+====================================================
 
 Evergreen uses the Dojo Toolkit to support its Web and staff client interfaces.
 



More information about the open-ils-commits mailing list