Kiln » Dependencies » Dulwich Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in master-1, master-0, and 0.9.4

Support author_time

Changeset 7e7474bd737e

Parent 46e46e15efb2

by Jelmer Vernooij

Changes to one file · Browse files at 7e7474bd737e Showing diff from parent 46e46e15efb2 Diff from another changeset...

 
435
436
437
 
438
439
440
 
468
469
470
471
 
472
473
474
 
505
506
507
 
 
 
 
 
 
 
 
 
508
509
510
 
435
436
437
438
439
440
441
 
469
470
471
 
472
473
474
475
 
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
@@ -435,6 +435,7 @@
  count += 1   self._author += text[count]   count += 1 + self._author_time = int(text[count:count+10])   while text[count] != '\n':   count += 1   count += 1 @@ -468,7 +469,7 @@
  self._text += "%s %s\n" % (TREE_ID, self._tree)   for p in self._parents:   self._text += "%s %s\n" % (PARENT_ID, p) - self._text += "%s %s %s +0000\n" % (AUTHOR_ID, self._author, str(self._commit_time)) + self._text += "%s %s %s +0000\n" % (AUTHOR_ID, self._author, str(self._author_time))   self._text += "%s %s %s +0000\n" % (COMMITTER_ID, self._committer, str(self._commit_time))   self._text += "\n" # There must be a new line after the headers   self._text += self._message @@ -505,6 +506,15 @@
  Returns it as the number of seconds since the epoch.   """   return self._commit_time + + @property + def author_time(self): + """Returns the timestamp the commit was written. + + Returns it as the number of seconds since the epoch. + """ + return self._author_time +      type_map = {