Changeset 1326 in tailor
- Timestamp:
- 03/05/07 23:14:37 (6 years ago)
- Hash name:
- 20070305221437-c2a52-88150f4d16b62ec14b6be49b4b0b23b3b659e35b
- 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) (1 diff)
-
repository/darcs/target.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/repository/cvsps.py
r1301 r1326 702 702 703 703 704 def _commit(self, date, author, patchname, changelog=None, entries=None): 704 def _commit(self, date, author, patchname, changelog=None, entries=None, 705 tags = []): 705 706 """ 706 707 Commit the changeset. -
vcpx/target.py
r1229 r1326 124 124 try: 125 125 self._commit(changeset.date, changeset.author, patchname, log, 126 entries )126 entries, tags = changeset.tags) 127 127 if changeset.tags: 128 128 for tag in changeset.tags: … … 388 388 for df in subdirs + files]) 389 389 390 def _commit(self, date, author, patchname, changelog=None, entries=None): 390 def _commit(self, date, author, patchname, changelog=None, entries=None, 391 tags = []): 391 392 """ 392 393 Commit the changeset. -
vcpx/repository/svn.py
r1315 r1326 519 519 ExternalCommand(cwd=self.repository.basedir, command=cmd).execute(names) 520 520 521 def _commit(self, date, author, patchname, changelog=None, entries=None): 521 def _commit(self, date, author, patchname, changelog=None, entries=None, 522 tags = []): 522 523 """ 523 524 Commit the changeset. -
vcpx/repository/monotone.py
r1316 r1326 752 752 (str(add),add.exit_status)) 753 753 754 def _commit(self, date, author, patchname, changelog=None, entries=None): 754 def _commit(self, date, author, patchname, changelog=None, entries=None, 755 tags = []): 755 756 """ 756 757 Commit the changeset. -
vcpx/repository/cdv.py
r1216 r1326 68 68 ExternalCommand(cwd=self.repository.basedir, command=cmd).execute(names) 69 69 70 def _commit(self, date, author, patchname, changelog=None, entries=None): 70 def _commit(self, date, author, patchname, changelog=None, entries=None, 71 tags = []): 71 72 """ 72 73 Commit the changeset. -
vcpx/repository/arx.py
r1209 r1326 39 39 ExternalCommand(cwd=self.repository.basedir, command=cmd).execute(names) 40 40 41 def _commit(self, date, author, patchname, changelog=None, entries=None): 41 def _commit(self, date, author, patchname, changelog=None, entries=None, 42 tags = []): 42 43 """ 43 44 Commit the changeset. -
vcpx/repository/bzr.py
r1282 r1326 245 245 self._addPathnames(f) 246 246 247 def _commit(self, date, author, patchname, changelog=None, entries=None): 247 def _commit(self, date, author, patchname, changelog=None, entries=None, 248 tags = []): 248 249 """ 249 250 Commit the changeset. -
vcpx/repository/cg.py
r1216 r1326 82 82 return (name, email) 83 83 84 def _commit(self, date, author, patchname, changelog=None, entries=None): 84 def _commit(self, date, author, patchname, changelog=None, entries=None, 85 tags = []): 85 86 """ 86 87 Commit the changeset. -
vcpx/repository/hg.py
r1325 r1326 257 257 self._hg.add(notdirs) 258 258 259 def _commit(self, date, author, patchname, changelog=None, names=[]): 259 def _commit(self, date, author, patchname, changelog=None, names=[], 260 tags = []): 260 261 from calendar import timegm # like mktime(), but returns UTC timestamp 261 262 from os.path import exists, join, normpath -
vcpx/repository/darcs/target.py
r1244 r1326 49 49 ExternalCommand(cwd=self.repository.basedir, command=cmd).execute(subdir) 50 50 51 def _commit(self, date, author, patchname, changelog=None, entries=None): 51 def _commit(self, date, author, patchname, changelog=None, entries=None, 52 tags = []): 52 53 """ 53 54 Commit the changeset.
Note: See TracChangeset
for help on using the changeset viewer.
