Changeset 1191 in tailor
- Timestamp:
- 06/25/06 21:13:45 (7 years ago)
- Hash name:
- 20060625191345-97f81-63f4040dea67f9d7794ea604299b0f3f75209226
- Location:
- vcpx
- Files:
-
- 2 edited
-
target.py (modified) (2 diffs)
-
repository/git.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/target.py
r1180 r1191 296 296 ChangesetEntry.DELETED: self._removeEntries, 297 297 ChangesetEntry.RENAMED: self._renameEntries, 298 ChangesetEntry.UPDATED: self._ recordUpdatedEntries298 ChangesetEntry.UPDATED: self._editEntries 299 299 } 300 300 … … 409 409 raise "%s should override this method" % self.__class__ 410 410 411 def _ recordUpdatedEntries(self, entries):411 def _editEntries(self, entries): 412 412 """ 413 413 Records a sequence of entries as updated. 414 414 """ 415 415 416 self._ recordUpdatedPathnames([e.name for e in entries])417 418 def _ recordUpdatedPathnames(self, names):416 self._editPathnames([e.name for e in entries]) 417 418 def _editPathnames(self, names): 419 419 """ 420 420 Records a sequence of filesystem objects as updated. -
vcpx/repository/git.py
r1189 r1191 190 190 self._tryCommand(['update-index', '--add'] + notdirs) 191 191 192 def _ recordUpdatedPathnames(self, names):192 def _editPathnames(self, names): 193 193 """ 194 194 Records a sequence of filesystem objects as updated.
Note: See TracChangeset
for help on using the changeset viewer.
