# HG changeset patch # User Stefan Vogel # Date 1501577288 -7200 # Node ID b5a59ffdd8d8cd92ed462dff23048314cecf7187 # Parent f694f25e1989626b1bc2500c726c1544c1a09373 #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 diff -r f694f25e1989 -r b5a59ffdd8d8 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 " @@ -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 + ^ 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 + "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 + 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 " !