checkin from browser
authorClaus Gittinger <cg@exept.de>
Tue, 17 Dec 2002 12:10:19 +0100
changeset 1680 d34932ed0e86
parent 1679 cbff43d2fe2a
child 1681 2ba809d67f16
checkin from browser
MIMETypes.st
--- a/MIMETypes.st	Tue Dec 10 12:03:11 2002 +0100
+++ b/MIMETypes.st	Tue Dec 17 12:10:19 2002 +0100
@@ -161,12 +161,13 @@
 
     ^ #(
         ('ra' 'ram')            'audio/x-pn-realaudio'
+        'rpm'                   'audio/x-pn-realaudio-plugin'
         ('mpa' 'mpega')         'audio/x-mpeg'
-        ('mp3' )                'audio/x-mp3'
+        'mp3'                   'audio/x-mp3'
         'wav'                   'audio/x-wav'
         ('aif' 'aiff' 'aifc')   'audio/x-aiff'
         ('au' 'snd')            'audio/basic'
-        ('swf')                 'audio/x-shockwave-flash'
+        'swf'                   'audio/x-shockwave-flash'
     )
 !
 
@@ -307,9 +308,9 @@
 
     ^ #(
         ('htm' 'html')          'text/html'
-        ('shtml')               'text/html'
+        'shtml'                 'text/html'
         ('txt' 'text')          'text/plain'
-        ('xml')                 'text/xml'
+        'xml'                   'text/xml'
     )
 !
 
@@ -322,6 +323,8 @@
         ('qt' 'mov' 'moov')                'video/quicktime'
         ('mpv2' 'mp2v' 'mp2' 'mpeg2')      'video/x-mpeg2'
         ('mpv' 'mpegv' 'mpg' 'mpeg' 'mpe') 'video/mpeg'
+        'rm'                               'application/vnd.rn-realmedia'
+        'rv'                               'video/x-pn-realvideo'
     )
 ! !
 
@@ -747,7 +750,7 @@
 !MIMETypes class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/MIMETypes.st,v 1.45 2002-11-14 21:25:38 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/MIMETypes.st,v 1.46 2002-12-17 11:10:19 cg Exp $'
 ! !
 
 MIMETypes initialize!