Changeset 1113
- Timestamp:
- 17.07.2010 22:41:53 (19 months ago)
- Location:
- ZMS/trunk
- Files:
-
- 5 edited
-
ZMSMetaobjManager.py (modified) (2 diffs)
-
_filtermanager.py (modified) (1 diff)
-
_mediadb.py (modified) (2 diffs)
-
version.txt (modified) (1 diff)
-
zmssqldb.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ZMS/trunk/ZMSMetaobjManager.py
r1096 r1113 29 29 from Products.PageTemplates import ZopePageTemplate 30 30 from Products.PythonScripts import PythonScript 31 from Products.ZSQLMethods import SQL32 31 from cStringIO import StringIO 33 32 import ZPublisher.HTTPRequest … … 856 855 PythonScript.manage_addPythonScript( container, newObId) 857 856 elif newType == 'Z SQL Method': 858 connection_id = self.SQLConnectionIDs()[0][0] 859 arguments = '' 860 template = '' 861 SQL.manage_addZSQLMethod( container, newObId, newName, connection_id, arguments, template) 857 try: 858 from Products.ZSQLMethods import SQL 859 connection_id = self.SQLConnectionIDs()[0][0] 860 arguments = '' 861 template = '' 862 SQL.manage_addZSQLMethod( container, newObId, newName, connection_id, arguments, template) 863 except: 864 pass 862 865 # Rename Zope-Object. 863 866 elif oldId != newId: -
ZMS/trunk/_filtermanager.py
r1060 r1113 29 29 from Products.PageTemplates import ZopePageTemplate 30 30 from Products.PythonScripts import PythonScript 31 from Products.ZSQLMethods import SQL32 31 import ZPublisher.HTTPRequest 33 32 import copy -
ZMS/trunk/_mediadb.py
r752 r1113 28 28 import OFS.SimpleItem 29 29 import Acquisition 30 import AccessControl.Role31 30 import os 32 31 import urllib … … 208 207 Persistent, 209 208 Acquisition.Implicit, 210 AccessControl.Role.RoleManager211 209 ): 212 210 -
ZMS/trunk/version.txt
r1011 r1113 1 ZMS2 2.1 2.1.REV1 ZMS2 2.13.0a2.REV -
ZMS/trunk/zmssqldb.py
r1003 r1113 25 25 from __future__ import nested_scopes 26 26 from App.special_dtml import HTMLFile 27 from Products.ZSQLMethods.SQL import SQLConnectionIDs28 27 import copy 29 28 import os
Note: See TracChangeset
for help on using the changeset viewer.
