changed:
authorClaus Gittinger <cg@exept.de>
Fri, 20 Jan 2012 16:19:11 +0100
changeset 2740 a034603fd812
parent 2739 ec6ef52ebb5d
child 2741 3914394ee4dd
changed: #initialize #streamForClass:fileName:revision:directory:module:cache:
CVSSourceCodeManager.st
--- a/CVSSourceCodeManager.st	Fri Jan 20 16:15:28 2012 +0100
+++ b/CVSSourceCodeManager.st	Fri Jan 20 16:19:11 2012 +0100
@@ -209,7 +209,7 @@
     DisabledModules := nil.
     CVSModuleRoots isNil ifTrue:[
         CVSModuleRoots := Dictionary new.
-        "/ CVSModuleRoots at:'stx' put:':pserver:cvs@cvs.smalltalk-x.de:/cvs/stx'.
+        CVSModuleRoots at:'stx' put:':pserver:cvs@cvs.smalltalk-x.de:/cvs/stx'.
     ].
 
     "/
@@ -296,7 +296,7 @@
 
     "Created: / 04-11-1995 / 19:14:38 / cg"
     "Modified: / 19-12-1995 / 14:25:46 / stefan"
-    "Modified: / 20-01-2012 / 16:07:25 / cg"
+    "Modified: / 20-01-2012 / 16:18:23 / cg"
 !
 
 initializeForRepository:aDirectoryName
@@ -2714,7 +2714,8 @@
 
    (cacheIt and:[revision ~~ #newest and:[revision notNil]]) ifTrue:[
         (cacheDir := self sourceCacheDirectory) isNil ifTrue:[
-            ('CVSSourceCodeManager [warning]: no source cache directory for %1' bindWith:cachedSourceFilename) infoPrintCR
+            ('CVSSourceCodeManager [warning]: no source cache directory for %1' bindWith:cachedSourceFilename) infoPrintCR.
+thisContext fullPrintAll.
         ]
     ].
 
@@ -2858,7 +2859,7 @@
 
     "Created: / 04-11-1995 / 19:46:20 / cg"
     "Modified: / 20-08-1997 / 16:37:11 / stefan"
-    "Modified: / 20-01-2012 / 16:15:19 / cg"
+    "Modified: / 20-01-2012 / 16:19:03 / cg"
 ! !
 
 !CVSSourceCodeManager class methodsFor:'source code administration'!
@@ -5071,11 +5072,11 @@
 !CVSSourceCodeManager class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.425 2012-01-20 15:15:28 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.426 2012-01-20 15:19:11 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.425 2012-01-20 15:15:28 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.426 2012-01-20 15:19:11 cg Exp $'
 ! !
 
 CVSSourceCodeManager initialize!