Changeset 1260 in tailor for vcpx/repository/darcs/source.py
- Timestamp:
- 08/20/06 03:50:28 (7 years ago)
- Hash name:
- 20060820015028-97f81-06433d81390c4cd02ac7fefc3ecd464b283799df
- File:
-
- 1 edited
-
vcpx/repository/darcs/source.py (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/repository/darcs/source.py
r1259 r1260 43 43 """ 44 44 Fixup darcs idiosyncrasies: 45 45 46 46 - collapse "add A; rename A B" into "add B" 47 47 - annihilate "add A; remove A" … … 57 57 # known: if this is an add, and there's a rename (such as "add 58 58 # A; rename A B; ") then... 59 59 60 60 if entry.action_kind == entry.ADDED: 61 61 # ... we have to check existings, because of a bug in … … 70 70 71 71 dirname = entry.name+'/' # darcs hopefully use forward slashes also under win 72 72 73 73 for i,e in enumerate(self.entries): 74 74 if e.action_kind == e.RENAMED and e.old_name == entry.name: … … 123 123 return entry 124 124 125 125 126 126 def changesets_from_darcschanges(changes, unidiff=False, repodir=None, 127 127 chunksize=2**15):
Note: See TracChangeset
for help on using the changeset viewer.
