|
|
| version 1.23, 2008/06/27 17:49:17 | version 1.24, 2008/06/27 18:20:40 |
|---|---|
| Line 618 class extVersionedFileObject(ExtFile): | Line 618 class extVersionedFileObject(ExtFile): |
| """modify any of the objects attributes""" | """modify any of the objects attributes""" |
| for arg in args: | for arg in args: |
| if hasattr(self, arg): | if hasattr(self, arg): |
| logging.debug("changeObject %s: %s = %s"%(self,arg,args[arg])) | logging.debug("changeObject %s: %s=%s"%(repr(self),arg,args[arg])) |
| setattr(self, arg, args[arg]) | setattr(self, arg, args[arg]) |
| security.declarePublic('getTitle') | security.declarePublic('getTitle') |