[open-ils-commits] r8326 - in branches/acq-experiment/Open-ILS/src:
python/oils/utils sql/Pg
svn at svn.open-ils.org
svn at svn.open-ils.org
Sun Jan 6 14:06:09 EST 2008
Author: dbs
Date: 2008-01-06 13:41:54 -0500 (Sun, 06 Jan 2008)
New Revision: 8326
Modified:
branches/acq-experiment/Open-ILS/src/python/oils/utils/idl.py
branches/acq-experiment/Open-ILS/src/sql/Pg/build-db.sh
Log:
Typo fix in the Python IDL module (virtul->virtual).
Create acquisitions schema as part of build-db.sh.
Modified: branches/acq-experiment/Open-ILS/src/python/oils/utils/idl.py
===================================================================
--- branches/acq-experiment/Open-ILS/src/python/oils/utils/idl.py 2008-01-06 01:13:11 UTC (rev 8325)
+++ branches/acq-experiment/Open-ILS/src/python/oils/utils/idl.py 2008-01-06 18:41:54 UTC (rev 8326)
@@ -155,7 +155,7 @@
self.links = []
if self.virtual and self.virtual.lower() == 'true':
- self.virtul = True
+ self.virtual = True
else:
self.virtual = False
@@ -182,7 +182,7 @@
self.position = kwargs.get('position')
if self.virtual and self.virtual.lower() == 'true':
- self.virtul = True
+ self.virtual = True
else:
self.virtual = False
Modified: branches/acq-experiment/Open-ILS/src/sql/Pg/build-db.sh
===================================================================
--- branches/acq-experiment/Open-ILS/src/sql/Pg/build-db.sh 2008-01-06 01:13:11 UTC (rev 8325)
+++ branches/acq-experiment/Open-ILS/src/sql/Pg/build-db.sh 2008-01-06 18:41:54 UTC (rev 8326)
@@ -17,6 +17,7 @@
PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 070.schema.container.sql
PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 080.schema.money.sql
PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 090.schema.action.sql
+PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 200.schema.acq.sql
PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 500.view.cross-schema.sql
More information about the open-ils-commits
mailing list