[open-ils-commits] [GIT] Evergreen ILS branch master updated. d4751e023dd75c0aa4e945a4866aff8393cb81f8

Evergreen Git git at git.evergreen-ils.org
Tue Mar 27 15:21:39 EDT 2012


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, master has been updated
       via  d4751e023dd75c0aa4e945a4866aff8393cb81f8 (commit)
       via  762167349a83a951b124e0544132a1a1b4ba1ad4 (commit)
      from  c21ad6192ea00305f5a293bf4917294bcf3213df (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 d4751e023dd75c0aa4e945a4866aff8393cb81f8
Author: Dan Scott <dscott at laurentian.ca>
Date:   Tue Mar 27 15:07:14 2012 -0400

    Fix NULL interval for action_trigger.event_definition.delay
    
    The delay column in action_trigger.event_definition is defined as NOT
    NULL, therefore we should not try to push a NULL into it as that makes
    PostgreSQL unhappy.
    
    Signed-off-by: Dan Scott <dscott at laurentian.ca>
    Signed-off-by: Thomas Berezansky <tsbere at mvlc.org>

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 4d24da1..953c02e 100644
--- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql
+++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql
@@ -8568,7 +8568,7 @@ $$
         'DeleteTempBiblioBucket',
         'owner',
         'print-on-demand',
-        NULL,
+        '00:00:00',
 $$
 <div>
     <style> li { padding: 8px; margin 5px; }</style>

commit 762167349a83a951b124e0544132a1a1b4ba1ad4
Author: Dan Scott <dscott at laurentian.ca>
Date:   Tue Mar 27 14:40:49 2012 -0400

    Fix seed data script syntax errors
    
    Commas were missing at the end of some lines. Fix that so that the
    database can be created relatively cleanly again.
    
    Signed-off-by: Dan Scott <dscott at laurentian.ca>
    Signed-off-by: Thomas Berezansky <tsbere at mvlc.org>

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 d8037f3..4d24da1 100644
--- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql
+++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql
@@ -4417,7 +4417,7 @@ INSERT into config.org_unit_setting_type
         'Require prefix field on patron registration',
         'coust', 'label'),
     oils_i18n_gettext('ui.patron.edit.au.prefix.require',
-        'The prefix field will be required on the patron registration screen.'
+        'The prefix field will be required on the patron registration screen.',
         'coust', 'description'),
     'bool', null)
 	
@@ -4426,7 +4426,7 @@ INSERT into config.org_unit_setting_type
         'Show prefix field on patron registration',
         'coust', 'label'),
     oils_i18n_gettext('ui.patron.edit.au.prefix.show',
-        'The prefix field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.'
+        'The prefix field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.',
         'coust', 'description'),
     'bool', null)
 
@@ -4435,7 +4435,7 @@ INSERT into config.org_unit_setting_type
         'Suggest prefix field on patron registration',
         'coust', 'label'),
     oils_i18n_gettext('ui.patron.edit.au.prefix.suggest',
-        'The prefix field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.'
+        'The prefix field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.',
         'coust', 'description'),
     'bool', null)
 

-----------------------------------------------------------------------

Summary of changes:
 Open-ILS/src/sql/Pg/950.data.seed-values.sql |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list