MCSourceCodeManager.st
changeset 1047 71460ee79b0f
parent 683 f49abb4e0c46
equal deleted inserted replaced
1046:2c62588b53ed 1047:71460ee79b0f
       
     1 "{ Encoding: utf8 }"
       
     2 
     1 "{ Package: 'stx:goodies/monticello' }"
     3 "{ Package: 'stx:goodies/monticello' }"
       
     4 
       
     5 "{ NameSpace: Smalltalk }"
     2 
     6 
     3 AbstractSourceCodeManager subclass:#MCSourceCodeManager
     7 AbstractSourceCodeManager subclass:#MCSourceCodeManager
     4 	instanceVariableNames:''
     8 	instanceVariableNames:''
     5 	classVariableNames:''
     9 	classVariableNames:''
     6 	poolDictionaries:''
    10 	poolDictionaries:''
   123     info := anMCVersion info.
   127     info := anMCVersion info.
   124 
   128 
   125     ^ '%1 %2 %3 %4'
   129     ^ '%1 %2 %3 %4'
   126         bindWith:info name
   130         bindWith:info name
   127         with:info id       
   131         with:info id       
   128         with:info timeStamp printStringIso8601Format
   132         with:info timeStamp printStringIso8601
   129         with:info author
   133         with:info author
   130 
   134 
   131     "Created: / 02-12-2011 / 14:25:05 / cg"
   135     "Created: / 02-12-2011 / 14:25:05 / cg"
   132 !
   136 !
   133 
   137 
   228 ! !
   232 ! !
   229 
   233 
   230 !MCSourceCodeManager class methodsFor:'documentation'!
   234 !MCSourceCodeManager class methodsFor:'documentation'!
   231 
   235 
   232 version
   236 version
   233     ^ '$Header: /cvs/stx/stx/goodies/monticello/MCSourceCodeManager.st,v 1.7 2012-09-11 21:28:57 cg Exp $'
   237     ^ '$Header$'
   234 !
   238 !
   235 
   239 
   236 version_CVS
   240 version_CVS
   237     ^ '$Header: /cvs/stx/stx/goodies/monticello/MCSourceCodeManager.st,v 1.7 2012-09-11 21:28:57 cg Exp $'
   241     ^ '$Header$'
   238 !
   242 !
   239 
   243 
   240 version_SVN
   244 version_SVN
   241     ^ '§Id: MCSourceCodeManager.st 31 2011-07-20 15:52:38Z vranyj1 §'
   245     ^ '$Id$'
   242 ! !
   246 ! !
       
   247