changed: #streamForClass:fileName:revision:directory:module:cache:
authorClaus Gittinger <cg@exept.de>
Wed, 07 Sep 2011 14:34:03 +0200
changeset 2511 6bd0081d93bb
parent 2510 45b4c466a799
child 2512 9caca2c0b8ed
changed: #streamForClass:fileName:revision:directory:module:cache:
CVSSourceCodeManager.st
--- a/CVSSourceCodeManager.st	Wed Sep 07 04:42:35 2011 +0200
+++ b/CVSSourceCodeManager.st	Wed Sep 07 14:34:03 2011 +0200
@@ -2757,7 +2757,11 @@
             stream := fullCachedName asFilename readStream.
         ].
     ] ifFalse:[
-        self activityNotification:'Not cached - please check your settings.'.
+        fileName = 'extensions.st' ifTrue:[
+            self activityNotification:'Not cached - please check your settings and/or the version method in the projectDefinition.'.
+        ] ifFalse:[
+            self activityNotification:'Not cached - please check your settings.'.
+        ].
         OperatingSystem isUNIXlike ifFalse:[
             "/ cannot remove files which are still open ...
             "/ sigh - need a delete-on-close flag in FileStream.
@@ -2778,7 +2782,7 @@
 
     "Created: / 04-11-1995 / 19:46:20 / cg"
     "Modified: / 20-08-1997 / 16:37:11 / stefan"
-    "Modified: / 12-11-2010 / 11:09:28 / cg"
+    "Modified: / 07-09-2011 / 09:58:06 / cg"
 ! !
 
 !CVSSourceCodeManager class methodsFor:'source code administration'!
@@ -5003,11 +5007,11 @@
 !CVSSourceCodeManager class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.402 2011-09-05 06:41:16 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.403 2011-09-07 12:34:03 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.402 2011-09-05 06:41:16 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.403 2011-09-07 12:34:03 cg Exp $'
 ! !
 
 CVSSourceCodeManager initialize!