Changeset 1329 in tailor
- Timestamp:
- 03/06/07 04:28:54 (6 years ago)
- Hash name:
- 20070306032854-c2a52-a48f6e04d9c114e4b2bd3f935c3a8c5b35eb75f8
- Location:
- vcpx
- Files:
-
- 10 edited
-
repository/cvsps.py (modified) (1 diff)
-
target.py (modified) (2 diffs)
-
repository/svn.py (modified) (1 diff)
-
repository/monotone.py (modified) (1 diff)
-
repository/cdv.py (modified) (1 diff)
-
repository/arx.py (modified) (1 diff)
-
repository/bzr.py (modified) (1 diff)
-
repository/cg.py (modified) (1 diff)
-
repository/hg.py (modified) (2 diffs)
-
repository/darcs/target.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/repository/cvsps.py
r1326 r1329 703 703 704 704 def _commit(self, date, author, patchname, changelog=None, entries=None, 705 tags = [] ):705 tags = [], isinitialcommit = False): 706 706 """ 707 707 Commit the changeset. -
vcpx/target.py
r1326 r1329 389 389 390 390 def _commit(self, date, author, patchname, changelog=None, entries=None, 391 tags = [] ):391 tags = [], isinitialcommit = False): 392 392 """ 393 393 Commit the changeset. … … 546 546 patchname = BOOTSTRAP_PATCHNAME 547 547 log = BOOTSTRAP_CHANGELOG % locals() 548 self._commit(changeset.date, author, patchname, log) 548 self._commit(changeset.date, author, patchname, log, 549 isinitialcommit = True) 549 550 550 551 if changeset.tags: -
vcpx/repository/svn.py
r1326 r1329 520 520 521 521 def _commit(self, date, author, patchname, changelog=None, entries=None, 522 tags = [] ):522 tags = [], isinitialcommit = False): 523 523 """ 524 524 Commit the changeset. -
vcpx/repository/monotone.py
r1326 r1329 753 753 754 754 def _commit(self, date, author, patchname, changelog=None, entries=None, 755 tags = [] ):755 tags = [], isinitialcommit = False): 756 756 """ 757 757 Commit the changeset. -
vcpx/repository/cdv.py
r1326 r1329 69 69 70 70 def _commit(self, date, author, patchname, changelog=None, entries=None, 71 tags = [] ):71 tags = [], isinitialcommit = False): 72 72 """ 73 73 Commit the changeset. -
vcpx/repository/arx.py
r1326 r1329 40 40 41 41 def _commit(self, date, author, patchname, changelog=None, entries=None, 42 tags = [] ):42 tags = [], isinitialcommit = False): 43 43 """ 44 44 Commit the changeset. -
vcpx/repository/bzr.py
r1326 r1329 246 246 247 247 def _commit(self, date, author, patchname, changelog=None, entries=None, 248 tags = [] ):248 tags = [], isinitialcommit = False): 249 249 """ 250 250 Commit the changeset. -
vcpx/repository/cg.py
r1326 r1329 83 83 84 84 def _commit(self, date, author, patchname, changelog=None, entries=None, 85 tags = [] ):85 tags = [], isinitialcommit = False): 86 86 """ 87 87 Commit the changeset. -
vcpx/repository/hg.py
r1328 r1329 258 258 259 259 def _commit(self, date, author, patchname, changelog=None, names=[], 260 tags = [] ):260 tags = [], isinitialcommit = False): 261 261 from calendar import timegm # like mktime(), but returns UTC timestamp 262 262 from os.path import exists, join, normpath … … 284 284 opts['date'] = '%d %d' % (timestamp, -timezone) # note the minus sign! 285 285 notdirs = self._removeDirs(names) 286 if len(notdirs) == 0 and (tags is None or len(tags) == 0): 286 if (not isinitialcommit) and len(notdirs) == 0 and \ 287 (tags is None or len(tags) == 0): 287 288 # Empty changeset; make sure we still see it 288 289 empty = open(join(self.repository.basedir, '.hgempty'), 'a') -
vcpx/repository/darcs/target.py
r1326 r1329 50 50 51 51 def _commit(self, date, author, patchname, changelog=None, entries=None, 52 tags = [] ):52 tags = [], isinitialcommit = False): 53 53 """ 54 54 Commit the changeset.
Note: See TracChangeset
for help on using the changeset viewer.
