changed:
authorClaus Gittinger <cg@exept.de>
Mon, 14 Feb 2011 17:20:18 +0100
changeset 2891 9aee109c1c1c
parent 2890 e7ac796279d7
child 2892 3da4b1884487
changed: #mimeTypeForSuffix: #mimeTypeOfData:
MIMETypes.st
--- a/MIMETypes.st	Thu Feb 10 22:08:29 2011 +0100
+++ b/MIMETypes.st	Mon Feb 14 17:20:18 2011 +0100
@@ -755,10 +755,11 @@
     "
      self mimeTypeForSuffix:'gif'     
      self mimeTypeForSuffix:'rpm'     
+     self mimeTypeForSuffix:'zip'     
     "
 
-    "Created: / 30.6.1997 / 21:55:51 / cg"
-    "Modified: / 23.12.1999 / 22:30:55 / cg"
+    "Created: / 30-06-1997 / 21:55:51 / cg"
+    "Modified: / 14-02-2011 / 17:14:34 / cg"
 !
 
 mimeTypeForSuffix:suffix put:mimeType
@@ -846,6 +847,7 @@
             "/ ('#!! /bin/bash'              'application/x-bash')
             "/ ('#!!/bin/bash'               'application/x-bash')
             ('<?xml version='           #'text/xml')
+            ('PK'                       #'application/x-zip-compressed')
 
             ('from dolphin'             #'application/x-smalltalk-source')
             ('from visualworks'         #'application/x-smalltalk-source')
@@ -883,6 +885,8 @@
         ^ MIMEType fromString:'text/plain'
     ].
     ^ nil
+
+    "Modified: / 14-02-2011 / 17:14:42 / cg"
 !
 
 suffixForMimeType:mimeType
@@ -1305,11 +1309,11 @@
 !MIMETypes class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/MIMETypes.st,v 1.109 2011-02-03 13:13:17 sr Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/MIMETypes.st,v 1.110 2011-02-14 16:20:18 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview2/MIMETypes.st,v 1.109 2011-02-03 13:13:17 sr Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/MIMETypes.st,v 1.110 2011-02-14 16:20:18 cg Exp $'
 ! !
 
 MIMETypes initialize!