[Zope3-checkins] CVS: Zope3/src/zope/app/sqlscript -
configure.zcml:1.7 interfaces.py:1.6
Stephan Richter
srichter at cosmos.phy.tufts.edu
Mon Apr 26 19:58:38 EDT 2004
Update of /cvs-repository/Zope3/src/zope/app/sqlscript
In directory cvs.zope.org:/tmp/cvs-serv9078/src/zope/app/sqlscript
Modified Files:
configure.zcml interfaces.py
Log Message:
The SQL script only stores the name of the connection, not the utility itself.
=== Zope3/src/zope/app/sqlscript/configure.zcml 1.6 => 1.7 ===
--- Zope3/src/zope/app/sqlscript/configure.zcml:1.6 Sat Apr 24 19:20:10 2004
+++ Zope3/src/zope/app/sqlscript/configure.zcml Mon Apr 26 19:58:37 2004
@@ -17,7 +17,7 @@
/>
<vocabulary
- name="Connections"
+ name="Connection Names"
factory="zope.app.utility.vocabulary.UtilityVocabulary"
interface="zope.app.rdb.interfaces.IZopeDatabaseAdapter" />
=== Zope3/src/zope/app/sqlscript/interfaces.py 1.5 => 1.6 ===
--- Zope3/src/zope/app/sqlscript/interfaces.py:1.5 Sat Apr 24 19:20:10 2004
+++ Zope3/src/zope/app/sqlscript/interfaces.py Mon Apr 26 19:58:37 2004
@@ -29,7 +29,7 @@
connectionName = zope.schema.Choice(
title=_(u"Connection Name"),
description=_(u"The Connection Name for the connection to be used."),
- vocabulary="Connections",
+ vocabulary="Connection Names",
required=False)
arguments = zope.schema.BytesLine(
More information about the Zope3-Checkins
mailing list