Diff for /OSAS/OSA_system/archive.py between versions 1.9 and 1.10

version 1.9, 2004/03/03 13:02:54 version 1.10, 2005/03/14 11:11:56
Line 583  class archive(Implicit, Persistent, Role Line 583  class archive(Implicit, Persistent, Role
                         
             if type(path)==StringType:              if type(path)==StringType:
                   self.filenames[path]=tempfile.mktemp()                    self.filenames[path]=tempfile.mktemp()
                   f = os.popen("/usr/local/mpiwg/archive/archiver "+path+" > "+self.filenames[path]+" &","r")                    f = os.popen("/usr/local/mpiwg/archive/archiver "+path+" -premigrate > "+self.filenames[path]+" &","r")
             else:              else:
                   for singlepath in path:                    for singlepath in path:
                         self.filenames[singlepath]=tempfile.mktemp()                          self.filenames[singlepath]=tempfile.mktemp()
                         f = os.popen("/usr/local/mpiwg/archive/archiver "+singlepath+" > "+self.filenames[singlepath]+" &","r")                          f = os.popen("/usr/local/mpiwg/archive/archiver "+singlepath+" -premigrate > "+self.filenames[singlepath]+" &","r")
                                                           
       security.declarePublic('messages')        security.declarePublic('messages')
       def messages(self):        def messages(self):

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


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