tar.bz2 suffix
authorClaus Gittinger <cg@exept.de>
Tue, 20 Jan 2004 15:07:01 +0100
changeset 1891 1b53c21c64c5
parent 1890 ccf118af49ce
child 1892 4c38a0c4369b
tar.bz2 suffix
MIMETypes.st
--- a/MIMETypes.st	Tue Jan 20 15:01:27 2004 +0100
+++ b/MIMETypes.st	Tue Jan 20 15:07:01 2004 +0100
@@ -269,7 +269,8 @@
     ^ #(
         'tar'                       'application/x-tar'
         'gtar'                      'application/x-gtar'
-        ('tgz' 'tar.gz' 'tar.bz2')  'application/x-tar-compressed'
+        ('tgz' 'tar.gz')            'application/x-tar-gzip-compressed'   "/ 'application/x-tar-compressed'
+        ('tar.bz2')                 'application/x-tar-bzip2-compressed'
         'zip'                       'application/x-zip-compressed'
         'bz2'                       'application/x-bzip2-compressed'
         ('gz' 'z')                  'application/x-gzip-compressed'
@@ -915,7 +916,7 @@
 !MIMETypes class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/MIMETypes.st,v 1.70 2004-01-20 14:01:27 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/MIMETypes.st,v 1.71 2004-01-20 14:07:01 cg Exp $'
 ! !
 
 MIMETypes initialize!