Commit 184e7ae7 authored by Jim Fulton's avatar Jim Fulton

Added call to class initilizer

parent dc72b463
"""Document object"""
__version__='$Revision: 1.41 $'[11:-2]
__version__='$Revision: 1.42 $'[11:-2]
from Globals import HTML, HTMLFile, MessageDialog
from string import join,split,strip,rfind,atoi
from AccessControl.Role import RoleManager
from SimpleItem import Item_w__name__
from Acquisition import Explicit
import regex
import regex, Globals
class Document(HTML, Explicit, RoleManager, Item_w__name__):
......@@ -160,6 +160,7 @@ class DocumentHandler:
t.append((n,getattr(self,n)))
return t
Globals.default__class_init__(DocumentHandler)
def decapitate(html, RESPONSE=None,
......
"""Image object"""
__version__='$Revision: 1.25 $'[11:-2]
__version__='$Revision: 1.26 $'[11:-2]
import Globals
from Globals import HTMLFile, MessageDialog
from AccessControl.Role import RoleManager
from SimpleItem import Item_w__name__
......@@ -166,3 +167,7 @@ class ImageHandler:
n=i['id']
t.append((n,getattr(self,n)))
return t
Globals.default__class_init__(ImageHandler)
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