Diff for /OSAS/OSA_system/OSAS_archiver.py between versions 1.8 and 1.9

version 1.8, 2004/01/07 15:29:01 version 1.9, 2004/01/08 17:00:39
Line 34  class OSAS_archiveInbox(SimpleItem,Persi Line 34  class OSAS_archiveInbox(SimpleItem,Persi
     def addPath(self,path,RESPONSE=None):      def addPath(self,path,RESPONSE=None):
         """add a path"""          """add a path"""
         today=time.localtime()          today=time.localtime()
         self.pathes.append([path,today])          temp=self.pathes[0:]
           temp.append([path,today])
           self.pathes=temp[0:]
         if RESPONSE:          if RESPONSE:
             RESPONSE.redirect("index_html")              RESPONSE.redirect("index_html")
   

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


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