#DOCUMENTATION by stefan
authorStefan Vogel <sv@exept.de>
Tue, 01 Aug 2017 10:48:08 +0200
changeset 22136 b5a59ffdd8d8
parent 22132 f694f25e1989
child 22137 444e7818131e
#DOCUMENTATION by stefan class: UnixOperatingSystem::FileStatusInfo changed: #at: #type:mode:uid:gid:size:id:accessed:modified:statusChanged:path:numLinks: class: UnixOperatingSystem::FileStatusInfo class changed: #type:mode:uid:gid:size:id:accessed:modified:statusChanged:path:numLinks: mark obsolete mathods
UnixOperatingSystem.st
--- a/UnixOperatingSystem.st	Mon Jul 31 16:38:39 2017 +0200
+++ b/UnixOperatingSystem.st	Tue Aug 01 10:48:08 2017 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1988 by Claus Gittinger
               All Rights Reserved
@@ -9535,7 +9537,7 @@
      Codeset := #'utf8-mac'.
      CodesetEncoder := nil.
      OperatingSystem getCodesetEncoder
-     OperatingSystem encodePath:'äöü'
+     OperatingSystem encodePath:'äöü'
     "
 
     "Modified: / 23-01-2013 / 10:00:11 / Jan Vrany <jan.vrany@fit.cvut.cz>"
@@ -12322,6 +12324,7 @@
 !UnixOperatingSystem::FileStatusInfo class methodsFor:'instance creation'!
 
 type:t mode:m uid:u gid:g size:s id:i accessed:aT modified:mT statusChanged:sT path:lP numLinks:nL
+    <resource: #obsolete>
     ^ self basicNew
         type:t mode:m uid:u gid:g size:s id:i accessed:aT modified:mT statusChanged:sT path:lP numLinks:nL
 !
@@ -12478,11 +12481,15 @@
 !
 
 at:key
+    <resource: #obsolete>
     "backward compatibility access: in previous releases, IdentityDictionaries
      were used to hold my information. Allow access via key messages.
      This method will vanish - use the proper access protocol."
 
+    self obsoleteMethodWarning:'use ', key.
     ^ self perform:key
+
+    "Modified: / 01-08-2017 / 10:08:07 / stefan"
 !
 
 modified
@@ -12506,6 +12513,7 @@
 !
 
 type:t mode:m uid:u gid:g size:s id:i accessed:aT modified:mT statusChanged:sT path:lP numLinks:nL
+    <resource: #obsolete>
     type := t.
     mode := m.
     uid := u.
@@ -13069,9 +13077,9 @@
             domain:#'AF_INET' type:nil protocol:nil flags:nil
      self getAddressInfo:'www.exept.de' serviceName:nil
             domain:#'AF_INET6' type:nil protocol:nil flags:nil
-     self getAddressInfo:'www.baden-württemberg.de' serviceName:nil
+     self getAddressInfo:'www.baden-württemberg.de' serviceName:nil
             domain:#'AF_INET' type:#stream protocol:nil flags:nil
-     self getAddressInfo:'www.baden-württemberg.de' serviceName:nil
+     self getAddressInfo:'www.baden-württemberg.de' serviceName:nil
             domain:#'AF_INET6' type:#stream protocol:nil flags:nil
     "
 !