--- OSAS/OSA_system/OSAS_Root.py 2003/10/01 08:20:46 1.2 +++ OSAS/OSA_system/OSAS_Root.py 2004/04/02 07:57:25 1.6 @@ -6,25 +6,32 @@ from Products.PageTemplates.PageTemplate class OSAS_Root(Folder,Implicit): """Implicit Folder of the Storage Systems""" - def __init__(self,id,RootFolderName): + def __init__(self,id,RootFolderName,DigILibURL): """initialize a new instance""" self.id = id self.RootFolderName = RootFolderName - + self.DigILibURL=DigILibURL + meta_type="OSAS_Root" manage_options = Folder.manage_options+( {'label':'Main Config','action':'Root_config'}, ) + def setDigILibURL(self): + """set""" + self.DigILibURL="" + def Root_config(self): """Main configuration""" - pt=PageTemplateFile('products/OSA_system/ConfigOSAS_Root.zpt').__of__(self) + pt=PageTemplateFile('Products/OSA_system/zpt/ConfigOSAS_Root.zpt').__of__(self) return pt() - def change_OSAS_Root(self,RootFolderName,RESPONSE=None): + def change_OSAS_Root(self,RootFolderName,DigILibURL,RESPONSE=None): """Change RootFolderName""" self.RootFolderName=RootFolderName + self.DigILibURL=DigILibURL + if RESPONSE is not None: RESPONSE.redirect('manage_main') @@ -34,12 +41,12 @@ class OSAS_Root(Folder,Implicit): def manage_AddOSAS_RootForm(self): """interface for adding the OSAS_root""" - pt=PageTemplateFile('products/OSA_system/AddOSAS_Root.zpt').__of__(self) + pt=PageTemplateFile('Products/OSA_system/zpt/AddOSAS_Root.zpt').__of__(self) return pt() -def manage_AddOSAS_Root(self,id,RootFolderName,RESPONSE=None): +def manage_AddOSAS_Root(self,id,RootFolderName,DigILibURL,RESPONSE=None): """add the OSAS_root""" - newObj=OSAS_Root(id,RootFolderName) + newObj=OSAS_Root(id,RootFolderName,DigILibURL) self._setObject(id,newObj) if RESPONSE is not None: RESPONSE.redirect('manage_main')