mercurial/extensions.st
changeset 288 577f8935661d
parent 286 4914c40a1a67
child 302 e078bdcef149
equal deleted inserted replaced
287:c3e542755abd 288:577f8935661d
   813 
   813 
   814     "Created: / 26-11-2012 / 13:06:06 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   814     "Created: / 26-11-2012 / 13:06:06 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   815     "Modified: / 27-11-2012 / 22:14:41 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   815     "Modified: / 27-11-2012 / 22:14:41 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   816 ! !
   816 ! !
   817 
   817 
       
   818 !ProjectDefinition class methodsFor:'accessing - hg'!
       
   819 
       
   820 hgRemoveContainesForDeletedClasses
       
   821     "If true, then containers for removed classes are __AUTOMATICALLY__ removed from the
       
   822      repositoru. If false, obsolete containes are kept.
       
   823 
       
   824      Default is true (remove obsolete containers) but if the repository is mirror of CVS and
       
   825      you want to merge back to CVS at some point, you may want to return false to avoid deletions
       
   826      of obsolete files. Usefull when branching off an old CVS repo with loads of mess."
       
   827 
       
   828     ^true "default"
       
   829 
       
   830     "Created: / 21-05-2013 / 16:44:36 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
   831 ! !
       
   832 
   818 !String methodsFor:'converting'!
   833 !String methodsFor:'converting'!
   819 
   834 
   820 asHGChangesetId
   835 asHGChangesetId
   821     ^ HGChangesetId fromString:self.
   836     ^ HGChangesetId fromString:self.
   822 
   837