CVSSourceCodeManager.st
changeset 3977 b99486fe7447
parent 3949 0514468a25e4
child 3980 8c574e894f77
child 4044 4103a12f0c6d
--- a/CVSSourceCodeManager.st	Thu Apr 07 19:41:50 2016 +0200
+++ b/CVSSourceCodeManager.st	Thu Apr 07 19:42:09 2016 +0200
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1995 by Claus Gittinger
               All Rights Reserved
@@ -257,12 +255,12 @@
 
     UseWorkTree := false.
 
-    CacheDirectoryName isNil ifTrue:[
-        self initCacheDirPath.
-    ].
-    CachingSources isNil ifTrue:[
-        CachingSources := true.
-    ].
+"/    CacheDirectoryName isNil ifTrue:[
+"/        self initCacheDirPath.
+"/    ].
+"/    CachingSources isNil ifTrue:[
+"/        CachingSources := true.
+"/    ].
 
     "/
     "/ check if there is an stx directory there
@@ -4697,17 +4695,17 @@
             "/ The repair code will be removed at some time in the future...
 
             "/ temporary fix Felix' bad string translation:
-            (aString startsWith:'§Header:') ifTrue:[
-                (aString endsWith:'Exp §') ifTrue:[
+            (aString startsWith:'§Header:') ifTrue:[
+                (aString endsWith:'Exp §') ifTrue:[
                     fixedString := '$' , (aString copyFrom:3 to:(aString size - 2)) , '$'.
 
                     aClass isNil ifTrue:[
                         autoFixHolder value ifFalse:[
-                            Dialog information:'Attention: the CVS version string is corrupted (§-bug). Please fix it manually'.
+                            Dialog information:'Attention: the CVS version string is corrupted (§-bug). Please fix it manually'.
                         ]
                     ] ifFalse:[
                         (autoFixHolder value 
-                            or:[ Dialog confirm:('Attention: the CVS version string is corrupted in "%1" (§-bug). Fix it?' withCRs bindWith:aClass name) ]
+                            or:[ Dialog confirm:('Attention: the CVS version string is corrupted in "%1" (§-bug). Fix it?' withCRs bindWith:aClass name) ]
                         ) ifTrue:[
                             self updateVersionMethodOf:aClass for:fixedString.
                         ].
@@ -4715,7 +4713,7 @@
                 ].
             ].
 
-            "/ temporary fix Jan's bad Umlaut-removal (which results in Felix's bad § being removed):
+            "/ temporary fix Jan's bad Umlaut-removal (which results in Felix's bad § being removed):
             (aString startsWith:'Header: ') ifTrue:[
                 (aString endsWith:'Exp ') ifTrue:[
                     fixedString := '$' , aString , '$'.