Diff for /OSAS/OSA_system/OSAS_addfiles.py between versions 1.9 and 1.11

version 1.9, 2003/10/09 09:57:50 version 1.11, 2003/10/11 16:44:23
Line 184  class OSAS_add_contextData(Folder): Line 184  class OSAS_add_contextData(Folder):
             if depth < enddepth:              if depth < enddepth:
                 tmp=tmp+spaces(depth)                  tmp=tmp+spaces(depth)
                                   
                 tmp= tmp+retLink(child[1])+"<br>"+self.printChilds(child[1],depth,items,enddepth)+"<br>"                  tmp= tmp+retLink(child[1])+"<br>"+self.printChilds(child[1],depth,items,enddepth)
             else:              else:
                 tmp=tmp+spaces(2*depth)                  tmp=tmp+spaces(2*depth)
                 tmp = tmp+retLink(child[1])+"<br>"                  tmp = tmp+retLink(child[1])
   
         return tmp          return tmp
                                           
     def generateTree(self,depth=3):      def generateTree(self,depth=10):
         """Erzeugt HTML-Tree der Collection"""          """Erzeugt HTML-Tree der Collection"""
           
         exec("items=self.getPhysicalRoot()."+self.collection+".getCollectionTree()")          exec("items=self.getPhysicalRoot()."+self.collection+".getCollectionTree()")
         #print items[0][0]          #print items[0][0]
   
         childs=self.printChilds(items[0][0],0,items,3)          childs=self.printChilds(items[0][0],0,items,depth)
                   
         return childs          return childs
   
Line 213  class OSAS_add_contextData(Folder): Line 213  class OSAS_add_contextData(Folder):
         except:          except:
             return "index.meta file has to exist!"              return "index.meta file has to exist!"
   
         links=[path,'standard storage']          links=[(path,'standard storage')]
         links=OSAS_show.readContexts(path) # auslesen von contexten für den link          
           links+=OSAS_show.readContexts(path) # auslesen von contexten für den link
           #print "LINK",links
         self.REQUEST.SESSION['links']=links          self.REQUEST.SESSION['links']=links
         pt=PageTemplateFile('Products/OSA_system/contextDataMain.zpt').__of__(self)          pt=PageTemplateFile('Products/OSA_system/contextDataMain.zpt').__of__(self)
         return pt()          return pt()

Removed from v.1.9  
changed lines
  Added in v.1.11


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>