MIMETypes.st
changeset 1216 26fe79e724d0
parent 1188 bea6424548e3
child 1221 1436ca154fe0
equal deleted inserted replaced
1215:e40392a58092 1216:26fe79e724d0
    75     "/ setup file-suffix to mimeType mapping ...
    75     "/ setup file-suffix to mimeType mapping ...
    76 
    76 
    77     #(
    77     #(
    78         "/ image formats ...
    78         "/ image formats ...
    79 
    79 
    80         'jpg'           'image/jpeg'
    80         ('jpg' 'jpeg')  'image/jpeg'
    81         'gif'           'image/gif'
    81         'gif'           'image/gif'
    82         ('tif' 'tiff')  'image/tiff'
    82         ('tif' 'tiff')  'image/tiff'
    83         'xbm'           'image/x-xbitmap'
    83         'xbm'           'image/x-xbitmap'
    84         'xpm'           'image/x-xpixmap'
    84         'xpm'           'image/x-xpixmap'
    85         'png'           'image/x-png'
    85         'png'           'image/x-png'
    90         'pgm'           'image/x-portable-graymap'
    90         'pgm'           'image/x-portable-graymap'
    91         'pbm'           'image/x-portable-bitmap'
    91         'pbm'           'image/x-portable-bitmap'
    92         'pnm'           'image/x-portable-anymap'
    92         'pnm'           'image/x-portable-anymap'
    93         'xwd'           'image/x-xwindowdump'
    93         'xwd'           'image/x-xwindowdump'
    94         'ras'           'image/x-cmu-raster'
    94         'ras'           'image/x-cmu-raster'
       
    95         'tga'           'image/x-targa'
    95 
    96 
    96         "/ misc text ...
    97         "/ misc text ...
    97 
    98 
    98         ('htm' 'html')  'text/html'
    99         ('htm' 'html')  'text/html'
    99         ('txt' 'text')  'text/plain'
   100         ('txt' 'text')  'text/plain'
   343 ! !
   344 ! !
   344 
   345 
   345 !MIMETypes class methodsFor:'documentation'!
   346 !MIMETypes class methodsFor:'documentation'!
   346 
   347 
   347 version
   348 version
   348     ^ '$Header: /cvs/stx/stx/libview2/MIMETypes.st,v 1.15 1999-06-18 22:44:59 cg Exp $'
   349     ^ '$Header: /cvs/stx/stx/libview2/MIMETypes.st,v 1.16 1999-08-10 10:18:47 cg Exp $'
   349 ! !
   350 ! !
   350 MIMETypes initialize!
   351 MIMETypes initialize!