Пример #1
0
 def log(self):
     '''Returns the entire SVN log message (private method)'''
     tmp = fs.svn_fs_txn_prop(self.txn, "svn:log")
     if DEBUG == "True":
         write_debug("[log]:", tmp)
     return tmp
Пример #2
0
 def __getitem__(self, name):
     """
     Return the value of a given property.
     """
     return svn_fs_txn_prop(self.txn, name)
Пример #3
0
 def __author(self):
     '''Returns the author of this transaction'''
     tmp = fs.svn_fs_txn_prop(self.txn, "svn:author")
     if DEBUG == "True":
         write_debug("[author]: ", tmp)
     return tmp