MIMETypes.st
changeset 4279 0c07b6f38d45
parent 4245 f70d2cc0e016
child 4388 20e3d76cf3aa
equal deleted inserted replaced
4277:4d081794c98c 4279:0c07b6f38d45
     1 "{ Encoding: utf8 }"
       
     2 
       
     3 "
     1 "
     4  COPYRIGHT (c) 1997 by eXept Software AG 
     2  COPYRIGHT (c) 1997 by eXept Software AG 
     5 	      All Rights Reserved
     3 	      All Rights Reserved
     6 
     4 
     7  This software is furnished under a license and may be used
     5  This software is furnished under a license and may be used
   707         'sldx'                       'application/vnd.openxmlformats-officedocument.presentationml.slide'
   705         'sldx'                       'application/vnd.openxmlformats-officedocument.presentationml.slide'
   708         'docx'                       'application/vnd.openxmlformats-officedocument.wordprocessingml.document'
   706         'docx'                       'application/vnd.openxmlformats-officedocument.wordprocessingml.document'
   709         'dotx'                       'application/vnd.openxmlformats-officedocument.wordprocessingml.template'
   707         'dotx'                       'application/vnd.openxmlformats-officedocument.wordprocessingml.template'
   710         'xlam'                       'application/vnd.ms-excel.addin.macroEnabled.12'
   708         'xlam'                       'application/vnd.ms-excel.addin.macroEnabled.12'
   711         'xlsb'                       'application/vnd.ms-excel.sheet.binary.macroEnabled.12'
   709         'xlsb'                       'application/vnd.ms-excel.sheet.binary.macroEnabled.12'
       
   710         'chm'                        'application/vnd.ms-htmlhelp'
   712         'xhtml'                      'application/xhtml+xml'
   711         'xhtml'                      'application/xhtml+xml'
   713 
   712 
   714         'edi'                        'application/EDIFACT'
   713         'edi'                        'application/EDIFACT'
   715         'json'                       'application/json'
   714         'json'                       'application/json'
   716     )
   715     )
   717 
   716 
   718     "Modified: / 26-05-2012 / 15:27:30 / cg"
   717     "Modified: / 26-05-2012 / 15:27:30 / cg"
   719     "Modified: / 18-05-2015 / 09:46:47 / sr"
   718     "Modified: / 18-05-2015 / 09:46:47 / sr"
   720     "Modified (format): / 05-02-2017 / 19:37:20 / cg"
   719     "Modified (format): / 05-02-2017 / 19:37:20 / cg"
   721     "Modified (comment): / 01-03-2018 / 19:07:51 / mawalch"
   720     "Modified (comment): / 01-03-2018 / 19:07:51 / mawalch"
   722     "Modified: / 25-06-2018 / 19:15:57 / Claus Gittinger"
   721     "Modified: / 27-06-2019 / 16:31:45 / Claus Gittinger"
   723 !
   722 !
   724 
   723 
   725 applicationTypeList
   724 applicationTypeList
   726     "applications"
   725     "applications"
   727 
   726 
  1199                 #'application/x-waltop-digital-notepad' )
  1198                 #'application/x-waltop-digital-notepad' )
  1200         ('PK'                       
  1199         ('PK'                       
  1201                 #'application/x-zip-compressed')
  1200                 #'application/x-zip-compressed')
  1202         ('LZIP'
  1201         ('LZIP'
  1203                 #'application/lzip')
  1202                 #'application/lzip')
       
  1203         ('ITSF'
       
  1204                 #'application/vnd.ms-htmlhelp'
       
  1205         )
  1204         ('<?xml'                       
  1206         ('<?xml'                       
  1205                 #'text/xml')
  1207                 #'text/xml')
  1206      ) pairsDo:[:pattern :what |
  1208      ) pairsDo:[:pattern :what |
  1207         |patternString|
  1209         |patternString|
  1208 
  1210 
  1275     ].
  1277     ].
  1276     ^ nil
  1278     ^ nil
  1277 
  1279 
  1278     "Modified: / 12-07-2011 / 19:08:17 / cg"
  1280     "Modified: / 12-07-2011 / 19:08:17 / cg"
  1279     "Modified (comment): / 01-03-2018 / 18:50:36 / mawalch"
  1281     "Modified (comment): / 01-03-2018 / 18:50:36 / mawalch"
  1280     "Modified: / 12-03-2019 / 16:08:00 / Claus Gittinger"
  1282     "Modified: / 27-06-2019 / 16:33:41 / Claus Gittinger"
  1281 !
  1283 !
  1282 
  1284 
  1283 suffixForMimeType:mimeType
  1285 suffixForMimeType:mimeType
  1284     "given a file suffix, return the MIME type"
  1286     "given a file suffix, return the MIME type"
  1285 
  1287