Issue #239: Fix all Smalltak/X source files to be in unicode (UTF8 without BOM) and prefixed by "{ Encoding: utf8 }" when any unicode character is present jv
authorPatrik Svestka <patrik.svestka@gmail.com>
Wed, 14 Nov 2018 11:58:00 +0100
branchjv
changeset 18532 cccb41254edf
parent 18446 84498b441bc0
child 18822 07d66af18f0d
Issue #239: Fix all Smalltak/X source files to be in unicode (UTF8 without BOM) and prefixed by "{ Encoding: utf8 }" when any unicode character is present - All source *.st files are now Unicode UTF8 without BOM Files are in two groups (fileOut works this way in Smalltalk/X): - containing a unicode character have "{ Encoding: utf8 }" at the header - ASCII only are without the header
AbstractFileBrowser.st
Bookmark.st
BookmarkEditor.st
BookmarkToolbarMenuBuilder.st
BookmarkVisitor.st
BrowserView.st
ChangesBrowser.st
ClassInspectorView.st
ColorInspectorView.st
Diff3TextView.st
DiffTextView.st
EditFieldWithCompletionSpec.st
FilenameEditFieldV2.st
InspectorView.st
SetInspectorView.st
SettingsDialog.st
SmalltalkInspectorView.st
SystemBrowser.st
Tools__BackgroundSourceProcessingService.st
Tools__CachedTags.st
Tools__ChangeList.st
Tools__ChangeSetDiffTool.st
Tools__ClassSorter.st
Tools__CodeCritics.st
Tools__CodeHighlightingService.st
Tools__CodeView2DemoApp.st
Tools__DiffCodeView2.st
Tools__LintHighlighter.st
Tools__LintRuleSettingsApplication.st
Tools__MethodCategoryCache.st
Tools__NamespaceFilter.st
Tools__NavigationHistoryTests.st
Tools__Profiler.st
Tools__ProfilerInfoBuilder.st
Tools__ProfilerInfoItem.st
Tools__ProjectCheckerBrowser.st
Tools__SendersBrowslet.st
Tools__SpecialCodeView.st
VersionDiffBrowser.st
Win32FileDialog.st
--- a/AbstractFileBrowser.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/AbstractFileBrowser.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2002 by eXept Software AG
               All Rights Reserved
@@ -2885,7 +2887,7 @@
                                 "/ are perfect here, but usually not available in the font
                                 "/ and we have currently no way of knowing if they are...
                                 "/ (could let the font draw into abitmap and check if there is something...)
-                                "/ therefore, for now, write a dot.·
+                                "/ therefore, for now, write a dot.·
                                 "/ asciiLineStream nextPut:(Character value:(byte + 16r2400))
                                 asciiLineStream nextPut:replacementForUnprintable.
                             ] ifFalse:[
@@ -8391,7 +8393,7 @@
             ] ifFalse:[sig == HaltInterrupt ifTrue:[ |sender|
                 label := msg := 'Breakpoint/Halt in fileIn'.
                 sender := ex suspendedContext.
-                msg := msg , ('\\in %1 » %2' bindWith:(sender receiver class name) with:(sender sender selector))
+                msg := msg , ('\\in %1 » %2' bindWith:(sender receiver class name) with:(sender sender selector))
             ] ifFalse:[
                 label := 'Error in fileIn'.
                 msg := 'error in fileIn: %1'
--- a/Bookmark.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/Bookmark.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  Copyright (c) 2007-2010 Jan Vrany, SWING Research Group, Czech Technical University in Prague
  Copyright (c) 2009-2010 eXept Software AG
@@ -792,7 +794,7 @@
 
     label :=
         (className copyFrom: ((className lastIndexOf: $:) + 1)) allBold ,
-        ' » ' , (selector "asText allItalic")
+        ' » ' , (selector "asText allItalic")
 
     "Created: / 05-05-2011 / 23:04:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified: / 02-06-2011 / 22:00:08 / Jan Vrany <jan.vrany@fit.cvut.cz>"
--- a/BookmarkEditor.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/BookmarkEditor.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  Copyright (c) 2007-2010 Jan Vrany, SWING Research Group, Czech Technical University in Prague
  Copyright (c) 2009-2010 eXept Software AG
@@ -65,7 +67,7 @@
 !BookmarkEditor class methodsFor:'documentation'!
 
 version_CVS
-    ^ '§Header: /cvs/stx/stx/libtool/BookmarkEditor.st,v 1.2 2011/07/03 18:00:45 cg Exp §'
+    ^ '§Header: /cvs/stx/stx/libtool/BookmarkEditor.st,v 1.2 2011/07/03 18:00:45 cg Exp §'
 !
 
 version_HG
--- a/BookmarkToolbarMenuBuilder.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/BookmarkToolbarMenuBuilder.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  Copyright (c) 2007-2010 Jan Vrany, SWING Research Group, Czech Technical University in Prague
  Copyright (c) 2009-2010 eXept Software AG
@@ -85,7 +87,7 @@
 !BookmarkToolbarMenuBuilder class methodsFor:'documentation'!
 
 version_CVS
-    ^ '§Header: /cvs/stx/stx/libtool/BookmarkToolbarMenuBuilder.st,v 1.2 2011/07/03 18:01:01 cg Exp §'
+    ^ '§Header: /cvs/stx/stx/libtool/BookmarkToolbarMenuBuilder.st,v 1.2 2011/07/03 18:01:01 cg Exp §'
 !
 
 version_HG
--- a/BookmarkVisitor.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/BookmarkVisitor.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  Copyright (c) 2007-2010 Jan Vrany, SWING Research Group, Czech Technical University in Prague
  Copyright (c) 2009-2010 eXept Software AG
@@ -131,7 +133,7 @@
 !BookmarkVisitor class methodsFor:'documentation'!
 
 version_CVS
-    ^ '§Header: /cvs/stx/stx/libtool/BookmarkVisitor.st,v 1.2 2011/07/03 18:00:43 cg Exp §'
+    ^ '§Header: /cvs/stx/stx/libtool/BookmarkVisitor.st,v 1.2 2011/07/03 18:00:43 cg Exp §'
 !
 
 version_HG
--- a/BrowserView.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/BrowserView.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1989 by Claus Gittinger
 	      All Rights Reserved
@@ -12471,7 +12473,7 @@
 
 extractClassAndSelectorFromSelectionInto:aBlock
     "given a string which can be either 
-        'class>>sel', 'class » sel'  or 'class sel', 
+        'class>>sel', 'class » sel'  or 'class sel', 
     extract className and selector, 
     and call aBlock with the result."
 
--- a/ChangesBrowser.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/ChangesBrowser.st	Wed Nov 14 11:58:00 2018 +0100
@@ -3605,7 +3605,7 @@
     "/ does not care for VW qualified names
     "/ ^ Parser parseExpression:text inNameSpace:nameSpace.
 
-(text includesString:'§') ifTrue:[self halt].
+(text includesString:'§') ifTrue:[self halt].
 
     "/ new:
     parser := Parser for:(ReadStream on:text).
@@ -6581,7 +6581,7 @@
     "
     clsName := nil.
 
-(chunkText includesString:'§') ifTrue:[self halt].
+(chunkText includesString:'§') ifTrue:[self halt].
 
     p := browser parseExpression:chunkText inNameSpace:(self nameSpaceForApply).
     (p notNil and:[p ~~ #Error and:[p isMessage]]) ifTrue:[
--- a/ClassInspectorView.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/ClassInspectorView.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1994 by Claus Gittinger
               All Rights Reserved
--- a/ColorInspectorView.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/ColorInspectorView.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1994 by Claus Gittinger
 	      All Rights Reserved
@@ -128,7 +130,7 @@
 !ColorInspectorView class methodsFor:'documentation'!
 
 version_CVS
-    ^ '§Header: /cvs/stx/stx/libtool/ColorInspectorView.st,v 1.14 2011/07/05 12:04:32 cg Exp §'
+    ^ '§Header: /cvs/stx/stx/libtool/ColorInspectorView.st,v 1.14 2011/07/05 12:04:32 cg Exp §'
 !
 
 version_HG
--- a/Diff3TextView.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/Diff3TextView.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1995 by Claus Gittinger
 	      All Rights Reserved
--- a/DiffTextView.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/DiffTextView.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1994 by Claus Gittinger
 	      All Rights Reserved
--- a/EditFieldWithCompletionSpec.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/EditFieldWithCompletionSpec.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2006 by eXept Software AG
 	      All Rights Reserved
@@ -68,7 +70,7 @@
 !EditFieldWithCompletionSpec class methodsFor:'documentation'!
 
 version_CVS
-    ^ '§Header: /cvs/stx/stx/libtool/EditFieldWithCompletionSpec.st,v 1.1 2011/07/01 13:30:32 cg Exp §'
+    ^ '§Header: /cvs/stx/stx/libtool/EditFieldWithCompletionSpec.st,v 1.1 2011/07/01 13:30:32 cg Exp §'
 !
 
 version_HG
--- a/FilenameEditFieldV2.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/FilenameEditFieldV2.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 2002 by eXept Software AG
               All Rights Reserved
--- a/InspectorView.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/InspectorView.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1989 by Claus Gittinger
               All Rights Reserved
@@ -3267,8 +3269,8 @@
     d := self derivedFields.
     (d isDictionary) ifTrue:[
         actionItems := d keys select:[:k | k first == $!!] as:OrderedCollection .
-        valueItems := d keys select:[:k | '-¤' includes:k first] as:OrderedCollection.
-        otherItems := d keys select:[:k | ('!!-¤' includes: k first) not] as:OrderedCollection.
+        valueItems := d keys select:[:k | '-¤' includes:k first] as:OrderedCollection.
+        otherItems := d keys select:[:k | ('!!-¤' includes: k first) not] as:OrderedCollection.
         ^ ((actionItems sort , valueItems sort) collect:[:k | (k copyTo:1),(k copyFrom:2) allItalic])
           ,
           otherItems sort
@@ -3892,7 +3894,7 @@
             ^ self valueForSpecialLine:lineEntry
         ].
     ].
-    (lineEntry startsWith:$¤) ifTrue:[
+    (lineEntry startsWith:$¤) ifTrue:[
         ^ self valueForSpecialLine:lineEntry
     ].
 
@@ -4290,7 +4292,7 @@
 !
 
 tryToSelectKeyNamed:aString
-    "called from the debugger to try to select the previousöy selected
+    "called from the debugger to try to select the previously selected
      field (by name)"
      
     |list idx aStringWithSpace|
--- a/SetInspectorView.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/SetInspectorView.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1996 by Claus Gittinger / eXept Software AG
               All Rights Reserved
--- a/SettingsDialog.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/SettingsDialog.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 2002 by eXept Software AG
  COPYRIGHT (c) 2016 Jan Vrany
--- a/SmalltalkInspectorView.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/SmalltalkInspectorView.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2006 by eXept Software AG
               All Rights Reserved
@@ -76,7 +78,7 @@
 !
 
 version_CVS
-    ^ '§Header: /cvs/stx/stx/libtool/SmalltalkInspectorView.st,v 1.4 2010/03/03 11:16:38 cg Exp §'
+    ^ '§Header: /cvs/stx/stx/libtool/SmalltalkInspectorView.st,v 1.4 2010/03/03 11:16:38 cg Exp §'
 !
 
 version_HG
--- a/SystemBrowser.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/SystemBrowser.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1989 by Claus Gittinger
               All Rights Reserved
@@ -120,7 +122,7 @@
 
 openInClass:aClass selector:aSelector
     "launch a standard browser which immediately switches
-     to aClass » aSelector. Returns the browser"
+     to aClass » aSelector. Returns the browser"
 
     |brwsr classesName|
 
@@ -7108,8 +7110,8 @@
         ('*>>*' match:sel) ifTrue:[
             sep := $>
         ] ifFalse:[
-            ('*»*' match:sel) ifTrue:[
-                sep := $»
+            ('*»*' match:sel) ifTrue:[
+                sep := $»
             ] ifFalse:[
                 ('* *' match:sel) ifTrue:[
                     sep := Character space
@@ -7148,7 +7150,7 @@
 
     aString isEmptyOrNil ifTrue:[^ nil].
 
-    (idx := aString indexOf:$») ~~ 0 ifTrue:[
+    (idx := aString indexOf:$») ~~ 0 ifTrue:[
         s := (aString copyFrom:idx+1) withoutSeparators.
         s isEmpty ifTrue:[^ nil]. 
     ] ifFalse:[    
@@ -7198,7 +7200,7 @@
      self extractSelectorFrom:'self at:something put:someValue'
      self extractSelectorFrom:'(self at:something put:someValue)' 
      self extractSelectorFrom:'[self at:something put:someValue] value' 
-     self extractSelectorFrom:'Array » at:put:' 
+     self extractSelectorFrom:'Array » at:put:' 
      self extractSelectorFrom:'Array>>at:put:' 
      self extractSelectorFrom:'Array>>#at:put:' 
      self extractSelectorFrom:'Array>>#''at:put:''' 
@@ -7371,7 +7373,7 @@
     ].
     selector notNil ifTrue:[ 
         aGCOrStream
-            nextPutAll:' » ';
+            nextPutAll:' » ';
             emphasis:#bold;
             nextPutAll:selector;
             emphasis:nil.
--- a/Tools__BackgroundSourceProcessingService.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/Tools__BackgroundSourceProcessingService.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 2006 by eXept Software AG
               All Rights Reserved
--- a/Tools__CachedTags.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/Tools__CachedTags.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2002 by eXept Software AG 
 	      All Rights Reserved
@@ -67,7 +69,7 @@
 !CachedTags class methodsFor:'documentation'!
 
 version_CVS
-    ^ '§Header: /cvs/stx/stx/libtool/Tools__CachedTags.st,v 1.1 2011/05/06 08:34:57 cg Exp §'
+    ^ '§Header: /cvs/stx/stx/libtool/Tools__CachedTags.st,v 1.1 2011/05/06 08:34:57 cg Exp §'
 !
 
 version_HG
--- a/Tools__ChangeList.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/Tools__ChangeList.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 2010 by Jan Vrany, SWING Research Group. CTU in Prague
  COPYRIGHT (c) 2015 Jan Vrany
--- a/Tools__ChangeSetDiffTool.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/Tools__ChangeSetDiffTool.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  Copyright (c) 2007-2010 Jan Vrany
  Copyright (c) 2009-2010 eXept Software AG
@@ -2827,7 +2829,7 @@
             Dialog warn: (self class resources at: 'Oops, class is gone')
         ]
     ] ifFalse:[
-        Dialog error: 'Not yet implemented (Tools::ChangeSetDiffTool » listMenuBrowse)'.                        
+        Dialog error: 'Not yet implemented (Tools::ChangeSetDiffTool » listMenuBrowse)'.                        
     ]
 
     "Created: / 30-11-2011 / 11:30:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
--- a/Tools__ClassSorter.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/Tools__ClassSorter.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2006 by eXept Software AG
 	      All Rights Reserved
@@ -95,7 +97,7 @@
 !ClassSorter class methodsFor:'documentation'!
 
 version_CVS
-    ^ '§Header: /cvs/stx/stx/libtool/Tools__ClassSorter.st,v 1.1 2011/07/01 13:28:45 cg Exp §'
+    ^ '§Header: /cvs/stx/stx/libtool/Tools__ClassSorter.st,v 1.1 2011/07/01 13:28:45 cg Exp §'
 !
 
 version_HG
--- a/Tools__CodeCritics.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/Tools__CodeCritics.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2007 by eXept Software AG
               All Rights Reserved
@@ -102,7 +104,7 @@
 !CodeCritics class methodsFor:'documentation'!
 
 version_CVS
-    ^ '§Header: /cvs/stx/stx/libtool/Tools__CodeCritics.st,v 1.3 2011/07/03 13:31:36 cg Exp §'
+    ^ '§Header: /cvs/stx/stx/libtool/Tools__CodeCritics.st,v 1.3 2011/07/03 13:31:36 cg Exp §'
 !
 
 version_HG
--- a/Tools__CodeHighlightingService.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/Tools__CodeHighlightingService.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 2010 by Jan Vrany, SWING Research Group. CTU in Prague
  COPYRIGHT (c) 2016 Jan Vrany
--- a/Tools__CodeView2DemoApp.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/Tools__CodeView2DemoApp.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2010 by Jan Vrany, SWING Research Group. CTU in Prague
               All Rights Reserved
@@ -147,7 +149,7 @@
 !CodeView2DemoApp class methodsFor:'documentation'!
 
 version_CVS
-    ^ '§Header: /cvs/stx/stx/libtool/Tools__CodeView2DemoApp.st,v 1.2 2011/07/03 17:50:09 cg Exp §'
+    ^ '§Header: /cvs/stx/stx/libtool/Tools__CodeView2DemoApp.st,v 1.2 2011/07/03 17:50:09 cg Exp §'
 !
 
 version_HG
--- a/Tools__DiffCodeView2.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/Tools__DiffCodeView2.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 2010 by Jan Vrany, SWING Research Group. CTU in Prague
               All Rights Reserved
--- a/Tools__LintHighlighter.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/Tools__LintHighlighter.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 2006 by eXept Software AG
               All Rights Reserved
--- a/Tools__LintRuleSettingsApplication.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/Tools__LintRuleSettingsApplication.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 2006 by eXept Software AG
               All Rights Reserved
--- a/Tools__MethodCategoryCache.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/Tools__MethodCategoryCache.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  Copyright (c) 2007-2010 Jan Vrany, SWING Research Group, Czech Technical University in Prague
  Copyright (c) 2009-2010 eXept Software AG
@@ -151,7 +153,7 @@
 !MethodCategoryCache class methodsFor:'documentation'!
 
 version_CVS
-    ^ '§Header: /cvs/stx/stx/libtool/Tools__MethodCategoryCache.st,v 1.4 2011/07/03 13:33:26 cg Exp §'
+    ^ '§Header: /cvs/stx/stx/libtool/Tools__MethodCategoryCache.st,v 1.4 2011/07/03 13:33:26 cg Exp §'
 !
 
 version_HG
--- a/Tools__NamespaceFilter.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/Tools__NamespaceFilter.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  Copyright (c) 2007-2010 Jan Vrany, SWING Research Group, Czech Technical University in Prague
  Copyright (c) 2009-2010 eXept Software AG
@@ -105,7 +107,7 @@
 !NamespaceFilter class methodsFor:'documentation'!
 
 version_CVS
-    ^ '§Header: /cvs/stx/stx/libtool/Tools__NamespaceFilter.st,v 1.2 2011/07/03 13:37:47 cg Exp §'
+    ^ '§Header: /cvs/stx/stx/libtool/Tools__NamespaceFilter.st,v 1.2 2011/07/03 13:37:47 cg Exp §'
 !
 
 version_HG
--- a/Tools__NavigationHistoryTests.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/Tools__NavigationHistoryTests.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2006 by eXept Software AG
  COPYRIGHT (c) 2015 Jan Vrany
@@ -204,6 +206,6 @@
 !
 
 version_SVN
-    ^ '§Id: Tools__NavigationHistoryTests.st 7486 2009-10-26 22:06:24Z vranyj1 §'
+    ^ '§Id: Tools__NavigationHistoryTests.st 7486 2009-10-26 22:06:24Z vranyj1 §'
 ! !
 
--- a/Tools__Profiler.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/Tools__Profiler.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2010 by Jan Vrany, SWING Research Group. CTU in Prague
               All Rights Reserved
@@ -241,6 +243,6 @@
 !
 
 version_SVN
-    ^ '§Id: Tools__Profiler.st 7486 2009-10-26 22:06:24Z vranyj1 §'
+    ^ '§Id: Tools__Profiler.st 7486 2009-10-26 22:06:24Z vranyj1 §'
 ! !
 
--- a/Tools__ProfilerInfoBuilder.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/Tools__ProfilerInfoBuilder.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2010 by Jan Vrany, SWING Research Group. CTU in Prague
               All Rights Reserved
@@ -189,7 +191,7 @@
 !ProfilerInfoBuilder class methodsFor:'documentation'!
 
 version_CVS
-    ^ '§Header: /cvs/stx/stx/libtool/Tools__ProfilerInfoBuilder.st,v 1.2 2011/07/03 17:46:45 cg Exp §'
+    ^ '§Header: /cvs/stx/stx/libtool/Tools__ProfilerInfoBuilder.st,v 1.2 2011/07/03 17:46:45 cg Exp §'
 !
 
 version_HG
--- a/Tools__ProfilerInfoItem.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/Tools__ProfilerInfoItem.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2010 by Jan Vrany, SWING Research Group. CTU in Prague
               All Rights Reserved
@@ -212,6 +214,6 @@
 !
 
 version_SVN
-    ^ '§Id: Tools__ProfilerInfoItem.st 7486 2009-10-26 22:06:24Z vranyj1 §'
+    ^ '§Id: Tools__ProfilerInfoItem.st 7486 2009-10-26 22:06:24Z vranyj1 §'
 ! !
 
--- a/Tools__ProjectCheckerBrowser.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/Tools__ProjectCheckerBrowser.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 2006 by eXept Software AG
               All Rights Reserved
--- a/Tools__SendersBrowslet.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/Tools__SendersBrowslet.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  Copyright (c) 2007-2010 Jan Vrany, SWING Research Group, Czech Technical University in Prague
  Copyright (c) 2009-2010 eXept Software AG
@@ -85,7 +87,7 @@
 !SendersBrowslet class methodsFor:'documentation'!
 
 version_CVS
-    ^ '§Header: /cvs/stx/stx/libtool/Tools__SendersBrowslet.st,v 1.2 2011/07/03 13:40:50 cg Exp §'
+    ^ '§Header: /cvs/stx/stx/libtool/Tools__SendersBrowslet.st,v 1.2 2011/07/03 13:40:50 cg Exp §'
 !
 
 version_HG
--- a/Tools__SpecialCodeView.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/Tools__SpecialCodeView.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2000 by eXept Software AG
 	      All Rights Reserved
@@ -77,7 +79,7 @@
 !
 
 version_CVS
-    ^ '§Header: /cvs/stx/stx/libtool/Tools_SpecialCodeView.st,v 1.3 2010/05/07 12:27:43 cg Exp §'
+    ^ '§Header: /cvs/stx/stx/libtool/Tools_SpecialCodeView.st,v 1.3 2010/05/07 12:27:43 cg Exp §'
 !
 
 version_HG
--- a/VersionDiffBrowser.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/VersionDiffBrowser.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2000 by eXept Software AG
 	      All Rights Reserved
@@ -2208,7 +2210,7 @@
             ].
         ].
         changeClassName notEmptyOrNil ifTrue:[
-            selectorString := ' » ',selectorString
+            selectorString := ' » ',selectorString
         ]
     ].
 
--- a/Win32FileDialog.st	Thu Oct 11 14:14:49 2018 +0200
+++ b/Win32FileDialog.st	Wed Nov 14 11:58:00 2018 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 2008 by eXept Software AG
 	      All Rights Reserved