Changeset 564 in tailor
- Timestamp:
- 08/15/05 02:29:57 (8 years ago)
- Hash name:
- 20050815002957-97f81-18d8b5f937688041998a01280cb505f5cea8d51f
- File:
-
- 1 edited
-
vcpx/cvs.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/cvs.py
r560 r564 291 291 branch=tag[1:-1] 292 292 293 if not sincerev: 294 # We are bootstrapping, trying to collimate the 295 # actual revision on disk with the changesets. 293 cmd = [self.repository.CVS_CMD, "-f", "-d", "%(repository)s", "rlog", 294 "-N"] 295 296 if not sincerev or sincerev in ("INITIAL", "HEAD"): 297 # We are bootstrapping, trying to collimate the actual 298 # revision on disk with the changesets, or figuring out 299 # the first revision 296 300 since = None 301 if sincerev == "HEAD": 302 if branch and branch<>'HEAD': 303 cmd.append("-r%(branch)s.") 304 else: 305 cmd.append("-rHEAD:HEAD") 306 else: 307 cmd.append("-r:HEAD") 297 308 else: 298 309 # Assume this is from __getGlobalRevision() 299 310 since, author = sincerev.split(' by ') 300 301 cmd = [self.repository.cvs, "-f", "-d", "%(repository)s", "rlog", "-N", 302 "-r:%(branch)s"] 303 if since: 304 cmd.extend(["-d", "%(since)s UTC<"]) 311 cmd.extend(["-d", "%(since)s UTC<", "-r:%(branch)s"]) 305 312 306 313 cvslog = ExternalCommand(command=cmd)
Note: See TracChangeset
for help on using the changeset viewer.
