*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Wed, 01 Dec 1999 11:29:12 +0100
changeset 1275 cf421c7dfeec
parent 1274 4b7fe76f7243
child 1276 37f3ed4a959b
*** empty log message ***
MIMETypes.st
--- a/MIMETypes.st	Wed Dec 01 11:26:22 1999 +0100
+++ b/MIMETypes.st	Wed Dec 01 11:29:12 1999 +0100
@@ -342,9 +342,9 @@
         "/ the special value #unknown is returned as nil;
         "/ this avoids constant retry if a mimeType is not known in
         "/ the OS.
-        type isNil ifTrue:[
-            FilenameToTypeMapping at:lcFilename put:#unknown
-        ].
+"/        type isNil ifTrue:[
+"/            FilenameToTypeMapping at:lcFilename put:#unknown
+"/        ].
     ].
 
     type == #unknown ifTrue:[
@@ -384,9 +384,9 @@
         "/ the special value #unknown is returned as nil;
         "/ this avoids constant retry if a mimeType is not known in
         "/ the OS.
-        type isNil ifTrue:[
-            FileSuffixToTypeMapping at:lcSuffix put:#unknown
-        ].
+"/        type isNil ifTrue:[
+"/            FileSuffixToTypeMapping at:lcSuffix put:#unknown
+"/        ].
     ].
     type == #unknown ifTrue:[
         type := nil
@@ -412,6 +412,6 @@
 !MIMETypes class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/MIMETypes.st,v 1.21 1999-12-01 10:26:22 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/MIMETypes.st,v 1.22 1999-12-01 10:29:12 cg Exp $'
 ! !
 MIMETypes initialize!