CVSSourceCodeManager.st
changeset 1779 ded4528d9ac1
parent 1778 5c84a32c9fe4
child 1781 88b05e77dab1
--- a/CVSSourceCodeManager.st	Tue Aug 29 13:21:47 2006 +0200
+++ b/CVSSourceCodeManager.st	Tue Aug 29 15:05:32 2006 +0200
@@ -1334,7 +1334,7 @@
     "/
     "/ synchronize i.e. merge in any changes
     "/
-    self activityNotification:'merging ' , containerFilename , ' with repository version ...'.
+    self activityNotification:'merging ' , containerFilename , ' with repository version...'.
 
     cmd := 'update ', containerFilename, ' >', '"' , cmdOut name , '"'.
     (self 
@@ -1657,7 +1657,7 @@
     "/
     "/ now check it in again
     "/
-    self activityNotification:'saving ' , containerFilename , ' in repository ...'.
+    self activityNotification:'saving ' , containerFilename , ' in repository...'.
 
     logMsg := logMsg replChar:$"  withString:'\"'.
 
@@ -1730,7 +1730,7 @@
     ].
     ^ true
 
-    "Modified: / 29-08-2006 / 13:17:10 / cg"
+    "Modified: / 29-08-2006 / 14:55:42 / cg"
 !
 
 checkinClass:cls fileName:classFileName directory:packageDir module:moduleDir source:sourceFileName logMessage:logMessage force:forceArg
@@ -1841,7 +1841,7 @@
     "/
     "/ synchronize i.e. merge in any changes
     "/
-    self activityNotification:'merging ' , cls name , ' with repository version ...'.
+    self activityNotification:'merging ' , cls name , ' with repository version...'.
 
     cmd := 'update ', classFileName, ' >', '"' , cmdOut name , '"'.
     (self 
@@ -2247,7 +2247,7 @@
     "/
     "/ now check it in again
     "/
-    self activityNotification:'saving ' , cls name , ' in repository ...'.
+    self activityNotification:'saving ' , cls name , ' in repository...'.
 
     logMsg := logMsg replChar:$"  withString:'\"'.
 
@@ -2376,7 +2376,7 @@
 
     "Created: / 11-09-1996 / 16:16:11 / cg"
     "Modified: / 26-02-1998 / 17:34:16 / stefan"
-    "Modified: / 29-08-2006 / 13:17:18 / cg"
+    "Modified: / 29-08-2006 / 14:55:53 / cg"
 !
 
 checkoutModule:aModule directory:aPackage andDo:aBlock
@@ -2396,7 +2396,7 @@
         dirName := aModule.
     ].
 
-    self activityNotification:'checking out everything in ' , dirName , ' ...'.
+    self activityNotification:'checking out everything in ' , dirName , '...'.
 
     tempdir := self createTempDirectory:nil forModule:nil.
 
@@ -2443,7 +2443,7 @@
     ^ true
 
     "Created: / 23-08-2006 / 14:07:05 / cg"
-    "Modified: / 29-08-2006 / 13:17:24 / cg"
+    "Modified: / 29-08-2006 / 14:55:58 / cg"
 !
 
 streamForClass:cls fileName:fileName revision:revision directory:packageDir module:moduleDir cache:cacheItArg
@@ -3974,7 +3974,7 @@
         ] ifFalse:[
             msg := msg , 'of ', clsOrNil name.
         ].
-        self activityNotification:msg.
+        self activityNotification:msg,'...'.
 
         self use_rlog ifTrue:[
             cmd := ('rlog ' , revArg , ' ' , fullName).
@@ -4078,6 +4078,7 @@
                 tempDir recursiveRemove
             ].
         ].
+        self activityNotification:nil.
     ].
     ^ info
 
@@ -4092,7 +4093,7 @@
 
     "Created: / 16-11-1995 / 13:25:30 / cg"
     "Modified: / 29-01-1997 / 16:51:30 / stefan"
-    "Modified: / 29-08-2006 / 13:17:55 / cg"
+    "Modified: / 29-08-2006 / 14:57:26 / cg"
 !
 
 revisionLogOf:clsOrNil numberOfRevisions:numRevisions fileName:classFileName directory:packageDir module:moduleDir
@@ -4268,7 +4269,7 @@
 !CVSSourceCodeManager class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.319 2006-08-29 11:21:47 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.320 2006-08-29 13:05:32 cg Exp $'
 ! !
 
 CVSSourceCodeManager initialize!