Changeset 680 in tailor
- Timestamp:
- 08/23/05 15:19:48 (8 years ago)
- Hash name:
- 20050823131948-97f81-665f659159d62610be40b547e8f24006b28d2374
- Files:
-
- 3 edited
-
vcpx/cvsps.py (modified) (1 diff)
-
README (modified) (1 diff)
-
vcpx/repository.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/cvsps.py
r671 r680 310 310 self.log_info("Using existing %s" % self.basedir) 311 311 312 self.__forceTagOnEachEntry() 312 if self.repository.tag_entries: 313 self.__forceTagOnEachEntry() 313 314 314 315 entries = CvsEntries(self.basedir) -
README
r662 r680 464 464 changeset. 465 465 466 CVS and CVSPS repositories may turn of automatic tagging of entries, 467 that tailor does by default to prevent manual interventions in the 468 CVS working copy, using ``tag_entries = False``. 469 466 470 467 471 Using a Python script as configuration file -
vcpx/repository.py
r664 r680 149 149 Repository._load(self, config, which) 150 150 self.CVS_CMD = config.get(self.name, 'cvs-command', self.CVS_CMD) 151 self.tag_entries = config.get(self.name, 'tag-entries', True) 151 152 152 153 def _validateConfiguration(self): … … 154 155 from config import ConfigurationError 155 156 156 157 157 if not self.module and self.repository: 158 158 self.module = split(self.repository)[1] … … 167 167 CvsRepository._load(self, config, which) 168 168 self.CVSPS_CMD = config.get(self.name, 'cvsps-command', self.CVSPS_CMD) 169 self.tag_entries = config.get(self.name, 'tag-entries', True) 169 170 170 171
Note: See TracChangeset
for help on using the changeset viewer.
