jdk/src/java.base/unix/classes/sun/net/www/content-types.properties
author martin
Wed, 02 Sep 2015 14:11:50 -0700
changeset 32427 c22b7e41adf3
parent 25859 3317bb8137f4
child 40208 4554a9ae19ef
permissions -rw-r--r--
8134984: Text files should end in exactly one newline Summary: automated fixup of newlines at end-of-file via the usual perl one-liner Reviewed-by: chegar, sherman
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#sun.net.www MIME content-types table
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
# Property fields:
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
#   <description> ::= 'description' '=' <descriptive string>
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
#    <extensions> ::= 'file_extensions' '=' <comma-delimited list, include '.'>
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
#         <image> ::= 'icon' '=' <filename of icon image>
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
#        <action> ::= 'browser' | 'application' | 'save' | 'unknown'
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
#   <application> ::= 'application' '=' <command line template>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
# The "we don't know anything about this data" type(s).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
# Used internally to mark unrecognized types.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
content/unknown: description=Unknown Content
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
unknown/unknown: description=Unknown Data Type
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
# The template we should use for temporary files when launching an application
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
# to view a document of given type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
temp.file.template: /tmp/%s
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
# The "real" types.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
application/octet-stream: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
	description=Generic Binary Stream;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
	file_extensions=.saveme,.dump,.hqx,.arc,.o,.a,.bin,.exe,.z,.gz
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
application/oda: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
	description=ODA Document;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
	file_extensions=.oda
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
application/pdf: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
	description=Adobe PDF Format;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
	file_extensions=.pdf
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
application/postscript: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
	description=Postscript File;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
	file_extensions=.eps,.ai,.ps;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
	icon=ps;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
	action=application;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
	application=imagetool %s
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
application/x-dvi: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
	description=TeX DVI File;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
	file_extensions=.dvi;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
	action=application;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
	application=xdvi %s
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
application/x-hdf: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
	description=Hierarchical Data Format;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
	file_extensions=.hdf;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
	action=save
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
application/x-latex: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
	description=LaTeX Source;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
	file_extensions=.latex
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
application/x-netcdf: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
	description=Unidata netCDF Data Format;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
	file_extensions=.nc,.cdf;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
	action=save
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
application/x-tex: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
	description=TeX Source;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
	file_extensions=.tex
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
application/x-texinfo: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
	description=Gnu Texinfo;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
	file_extensions=.texinfo,.texi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
application/x-troff: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
	description=Troff Source;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
	file_extensions=.t,.tr,.roff;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
	action=application;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
	application=xterm -title troff -e sh -c \"nroff %s | col | more -w\"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
application/x-troff-man: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
	description=Troff Manpage Source;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
	file_extensions=.man;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
	action=application;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
	application=xterm -title troff -e sh -c \"nroff -man %s | col | more -w\"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
application/x-troff-me: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
	description=Troff ME Macros;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
	file_extensions=.me;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
	action=application;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
	application=xterm -title troff -e sh -c \"nroff -me %s | col | more -w\"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
application/x-troff-ms: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
	description=Troff MS Macros;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
	file_extensions=.ms;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
	action=application;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
	application=xterm -title troff -e sh -c \"nroff -ms %s | col | more -w\"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
application/x-wais-source: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
	description=Wais Source;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
	file_extensions=.src,.wsrc
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
application/zip: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
	description=Zip File;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
	file_extensions=.zip;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
	icon=zip;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
	action=save
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
application/x-bcpio: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
	description=Old Binary CPIO Archive;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
	file_extensions=.bcpio; action=save
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
application/x-cpio: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
	description=Unix CPIO Archive;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
	file_extensions=.cpio; action=save
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
application/x-gtar: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
	description=Gnu Tar Archive;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
	file_extensions=.gtar;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
	icon=tar;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
	action=save
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
application/x-shar: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
	description=Shell Archive;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
	file_extensions=.sh,.shar;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
	action=save
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
application/x-sv4cpio: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
	description=SVR4 CPIO Archive;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
	file_extensions=.sv4cpio; action=save
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
application/x-sv4crc: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
	description=SVR4 CPIO with CRC;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
	file_extensions=.sv4crc; action=save
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
application/x-tar: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
	description=Tar Archive;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
	file_extensions=.tar;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
	icon=tar;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
	action=save
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
application/x-ustar: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
	description=US Tar Archive;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
	file_extensions=.ustar;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
	action=save
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
audio/basic: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
	description=Basic Audio;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
	file_extensions=.snd,.au;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
	icon=audio;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
	action=application;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
	application=audiotool %s
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
audio/x-aiff: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
	description=Audio Interchange Format File;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
	file_extensions=.aifc,.aif,.aiff;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
	icon=aiff
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
audio/x-wav: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
	description=Wav Audio;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
	file_extensions=.wav;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
	icon=wav
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
image/gif: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
	description=GIF Image;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
	file_extensions=.gif;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
	icon=gif;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
	action=browser
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
image/ief: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
	description=Image Exchange Format;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
	file_extensions=.ief
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
image/jpeg: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
	description=JPEG Image;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
	file_extensions=.jfif,.jfif-tbnl,.jpe,.jpg,.jpeg;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
	icon=jpeg;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
	action=browser;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
	application=imagetool %s
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
image/tiff: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
	description=TIFF Image;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
	file_extensions=.tif,.tiff;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
	icon=tiff
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
image/vnd.fpx: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
	description=FlashPix Image;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
	file_extensions=.fpx,.fpix
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
image/x-cmu-rast: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
	description=CMU Raster Image;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
	file_extensions=.ras
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
image/x-portable-anymap: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
	description=PBM Anymap Format;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
	file_extensions=.pnm
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
image/x-portable-bitmap: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
	description=PBM Bitmap Format;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
	file_extensions=.pbm
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
image/x-portable-graymap: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
	description=PBM Graymap Format;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
	file_extensions=.pgm
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
image/x-portable-pixmap: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
	description=PBM Pixmap Format;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
	file_extensions=.ppm
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
image/x-rgb: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
	description=RGB Image;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
	file_extensions=.rgb
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
image/x-xbitmap: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
	description=X Bitmap Image;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
	file_extensions=.xbm,.xpm
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
image/x-xwindowdump: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
	description=X Window Dump Image;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
	file_extensions=.xwd
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
image/png: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
	description=PNG Image;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
	file_extensions=.png;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
	icon=png;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
	action=browser
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
10349
1ae249943d88 7025938: Add bitmap mime type to content-types.properties
chegar
parents: 2
diff changeset
   228
image/bmp: \
1ae249943d88 7025938: Add bitmap mime type to content-types.properties
chegar
parents: 2
diff changeset
   229
	description=Bitmap Image;\
1ae249943d88 7025938: Add bitmap mime type to content-types.properties
chegar
parents: 2
diff changeset
   230
	file_extensions=.bmp;
1ae249943d88 7025938: Add bitmap mime type to content-types.properties
chegar
parents: 2
diff changeset
   231
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
text/html: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
	description=HTML Document;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
	file_extensions=.htm,.html;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
	icon=html
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
text/plain: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
	description=Plain Text;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
	file_extensions=.text,.c,.cc,.c++,.h,.pl,.txt,.java,.el;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
	icon=text;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
	action=browser
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
text/tab-separated-values: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
	description=Tab Separated Values Text;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
	file_extensions=.tsv
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
text/x-setext: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
	description=Structure Enhanced Text;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
	file_extensions=.etx
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
video/mpeg: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
	description=MPEG Video Clip;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
	file_extensions=.mpg,.mpe,.mpeg;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
	icon=mpeg;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
	action=application;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
	application=mpeg_play %s
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
video/quicktime: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
	description=QuickTime Video Clip;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
	file_extensions=.mov,.qt
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
application/x-troff-msvideo: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
	description=AVI Video;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
	file_extensions=.avi;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
	icon=avi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
video/x-sgi-movie: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
	description=SGI Movie;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
	file_extensions=.movie,.mv
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
message/rfc822: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
	description=Internet Email Message;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
	file_extensions=.mime
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
application/xml: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
	description=XML document;\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
	file_extensions=.xml