コード例 #1
0
ファイル: bugbranch.py プロジェクト: tcondit/bugbranch
 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
ファイル: bugbranch.py プロジェクト: tcondit/bugbranch
 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