CVSSourceCodeManager.st
changeset 2814 e93c0aa8c45f
parent 2792 25f99a06b4ff
child 2820 d6e9f3f4621c
equal deleted inserted replaced
2813:a1e82e16d87d 2814:e93c0aa8c45f
   224         ].
   224         ].
   225     ].
   225     ].
   226 
   226 
   227     cvsCmd := self cvsExecutable.
   227     cvsCmd := self cvsExecutable.
   228 
   228 
   229     ok := OperatingSystem canExecuteCommand:cvsCmd.
   229 "/    ok := OperatingSystem canExecuteCommand:cvsCmd.
   230     ok ifFalse:[
   230 "/    ok ifFalse:[
   231         'CVSSourceCodeManager [warning]: disabled because no >>cvs<< command was found' infoPrintCR.
   231 "/        'CVSSourceCodeManager [warning]: disabled because no >>cvs<< command was found' infoPrintCR.
   232         ^ self
   232 "/        ^ self
   233     ].
   233 "/    ].
   234 
   234 
   235     UseWorkTree := false.
   235     UseWorkTree := false.
   236 
   236 
   237     CacheDirectoryName isNil ifTrue:[
   237     CacheDirectoryName isNil ifTrue:[
   238         self initCacheDirPath.
   238         self initCacheDirPath.
   294      SourceCodeManager := CVSSourceCodeManager.
   294      SourceCodeManager := CVSSourceCodeManager.
   295     "
   295     "
   296 
   296 
   297     "Created: / 04-11-1995 / 19:14:38 / cg"
   297     "Created: / 04-11-1995 / 19:14:38 / cg"
   298     "Modified: / 19-12-1995 / 14:25:46 / stefan"
   298     "Modified: / 19-12-1995 / 14:25:46 / stefan"
   299     "Modified: / 20-01-2012 / 16:18:23 / cg"
   299     "Modified: / 20-03-2012 / 19:06:35 / cg"
   300 !
   300 !
   301 
   301 
   302 initializeForRepository:aDirectoryName
   302 initializeForRepository:aDirectoryName
   303     "set the global CVSROOT directory (i.e. the repositories name).
   303     "set the global CVSROOT directory (i.e. the repositories name).
   304      And reinitialize. 
   304      And reinitialize. 
  5066 ! !
  5066 ! !
  5067 
  5067 
  5068 !CVSSourceCodeManager class methodsFor:'documentation'!
  5068 !CVSSourceCodeManager class methodsFor:'documentation'!
  5069 
  5069 
  5070 version
  5070 version
  5071     ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.431 2012-03-06 11:58:06 cg Exp $'
  5071     ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.432 2012-03-20 18:07:48 cg Exp $'
  5072 !
  5072 !
  5073 
  5073 
  5074 version_CVS
  5074 version_CVS
  5075     ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.431 2012-03-06 11:58:06 cg Exp $'
  5075     ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.432 2012-03-20 18:07:48 cg Exp $'
  5076 ! !
  5076 ! !
  5077 
  5077 
  5078 CVSSourceCodeManager initialize!
  5078 CVSSourceCodeManager initialize!