Commit 2a600bb2 authored by Chris McDonough's avatar Chris McDonough

Changed things which used HTMLFile to use DTMLFile.

parent 4a71358e
......@@ -89,8 +89,8 @@ Aqueduct database adapters, etc.
This module can also be used as a simple template for implementing new
item types.
$Id: SimpleItem.py,v 1.82 2001/01/08 22:46:58 brian Exp $'''
__version__='$Revision: 1.82 $'[11:-2]
$Id: SimpleItem.py,v 1.83 2001/01/11 21:44:44 chrism Exp $'''
__version__='$Revision: 1.83 $'[11:-2]
import ts_regex, sys, Globals, App.Management, Acquisition, App.Undo
import AccessControl.Role, AccessControl.Owned, App.Common
......@@ -203,7 +203,7 @@ class Item(Base, Resource, CopySource, App.Management.Tabs, Traversable,
# My sub-objects as used by the tree tag
return ()
_manage_editedDialog=Globals.HTMLFile('dtml/editedDialog', globals())
_manage_editedDialog=Globals.DTMLFile('dtml/editedDialog', globals())
def manage_editedDialog(self, REQUEST, **args):
return apply(self._manage_editedDialog,(self, REQUEST), args)
......
......@@ -109,7 +109,7 @@ class BrokenClass(Acquisition.Explicit, SimpleItem.Item,
return BrokenClass.inheritedAttribute('__getattr__')(self, name)
raise AttributeError, name
manage=manage_main=Globals.HTMLFile('dtml/brokenEdit',globals())
manage=manage_main=Globals.DTMLFile('dtml/brokenEdit',globals())
manage_workspace=manage
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment