mime-types 1.19 → 1.20
Sign up to get free protection for your applications and to get access to all the features.
- data.tar.gz.sig +0 -0
- data/.travis.yml +21 -0
- data/Contributing.rdoc +67 -0
- data/Gemfile +21 -0
- data/History.rdoc +18 -0
- data/Licence.rdoc +33 -8
- data/Manifest.txt +6 -0
- data/README.rdoc +43 -1
- data/Rakefile +23 -16
- data/docs/COPYING.txt +339 -0
- data/docs/artistic.txt +127 -0
- data/lib/mime-types.rb +3 -0
- data/lib/mime/types.rb +21 -14
- data/lib/mime/types/application +93 -43
- data/lib/mime/types/application.mac +1 -0
- data/lib/mime/types/application.nonstandard +16 -7
- data/lib/mime/types/application.obsolete +2 -1
- data/lib/mime/types/audio +8 -2
- data/lib/mime/types/audio.nonstandard +5 -4
- data/lib/mime/types/image +2 -0
- data/lib/mime/types/message +4 -5
- data/lib/mime/types/message.obsolete +1 -0
- data/lib/mime/types/model +1 -1
- data/lib/mime/types/multipart +1 -1
- data/lib/mime/types/multipart.obsolete +1 -1
- data/lib/mime/types/text +13 -7
- data/lib/mime/types/text.nonstandard +1 -1
- data/lib/mime/types/text.obsolete +1 -0
- data/lib/mime/types/video +7 -3
- data/lib/mime/types/video.nonstandard +1 -1
- data/mime-types.gemspec +30 -21
- data/test/test_mime_type.rb +2 -0
- data/test/test_mime_types.rb +12 -0
- metadata +137 -16
- metadata.gz.sig +0 -0
data/docs/artistic.txt
ADDED
@@ -0,0 +1,127 @@
|
|
1
|
+
The "Artistic License"
|
2
|
+
|
3
|
+
Preamble
|
4
|
+
|
5
|
+
The intent of this document is to state the conditions under which a
|
6
|
+
Package may be copied, such that the Copyright Holder maintains some
|
7
|
+
semblance of artistic control over the development of the package,
|
8
|
+
while giving the users of the package the right to use and distribute
|
9
|
+
the Package in a more-or-less customary fashion, plus the right to make
|
10
|
+
reasonable modifications.
|
11
|
+
|
12
|
+
Definitions:
|
13
|
+
|
14
|
+
"Package" refers to the collection of files distributed by the
|
15
|
+
Copyright Holder, and derivatives of that collection of files
|
16
|
+
created through textual modification.
|
17
|
+
|
18
|
+
"Standard Version" refers to such a Package if it has not been
|
19
|
+
modified, or has been modified in accordance with the wishes
|
20
|
+
of the Copyright Holder as specified below.
|
21
|
+
|
22
|
+
"Copyright Holder" is whoever is named in the copyright or
|
23
|
+
copyrights for the package.
|
24
|
+
|
25
|
+
"You" is you, if you're thinking about copying or distributing
|
26
|
+
this Package.
|
27
|
+
|
28
|
+
"Reasonable copying fee" is whatever you can justify on the
|
29
|
+
basis of media cost, duplication charges, time of people involved,
|
30
|
+
and so on. (You will not be required to justify it to the
|
31
|
+
Copyright Holder, but only to the computing community at large
|
32
|
+
as a market that must bear the fee.)
|
33
|
+
|
34
|
+
"Freely Available" means that no fee is charged for the item
|
35
|
+
itself, though there may be fees involved in handling the item.
|
36
|
+
It also means that recipients of the item may redistribute it
|
37
|
+
under the same conditions they received it.
|
38
|
+
|
39
|
+
1. You may make and give away verbatim copies of the source form of the
|
40
|
+
Standard Version of this Package without restriction, provided that you
|
41
|
+
duplicate all of the original copyright notices and associated disclaimers.
|
42
|
+
|
43
|
+
2. You may apply bug fixes, portability fixes and other modifications
|
44
|
+
derived from the Public Domain or from the Copyright Holder. A Package
|
45
|
+
modified in such a way shall still be considered the Standard Version.
|
46
|
+
|
47
|
+
3. You may otherwise modify your copy of this Package in any way, provided
|
48
|
+
that you insert a prominent notice in each changed file stating how and
|
49
|
+
when you changed that file, and provided that you do at least ONE of the
|
50
|
+
following:
|
51
|
+
|
52
|
+
a) place your modifications in the Public Domain or otherwise make them
|
53
|
+
Freely Available, such as by posting said modifications to Usenet or
|
54
|
+
an equivalent medium, or placing the modifications on a major archive
|
55
|
+
site such as uunet.uu.net, or by allowing the Copyright Holder to include
|
56
|
+
your modifications in the Standard Version of the Package.
|
57
|
+
|
58
|
+
b) use the modified Package only within your corporation or organization.
|
59
|
+
|
60
|
+
c) rename any non-standard executables so the names do not conflict
|
61
|
+
with standard executables, which must also be provided, and provide
|
62
|
+
a separate manual page for each non-standard executable that clearly
|
63
|
+
documents how it differs from the Standard Version.
|
64
|
+
|
65
|
+
d) make other distribution arrangements with the Copyright Holder.
|
66
|
+
|
67
|
+
4. You may distribute the programs of this Package in object code or
|
68
|
+
executable form, provided that you do at least ONE of the following:
|
69
|
+
|
70
|
+
a) distribute a Standard Version of the executables and library files,
|
71
|
+
together with instructions (in the manual page or equivalent) on where
|
72
|
+
to get the Standard Version.
|
73
|
+
|
74
|
+
b) accompany the distribution with the machine-readable source of
|
75
|
+
the Package with your modifications.
|
76
|
+
|
77
|
+
c) give non-standard executables non-standard names, and clearly
|
78
|
+
document the differences in manual pages (or equivalent), together
|
79
|
+
with instructions on where to get the Standard Version.
|
80
|
+
|
81
|
+
d) make other distribution arrangements with the Copyright Holder.
|
82
|
+
|
83
|
+
5. You may charge a reasonable copying fee for any distribution of this
|
84
|
+
Package. You may charge any fee you choose for support of this
|
85
|
+
Package. You may not charge a fee for this Package itself. However,
|
86
|
+
you may distribute this Package in aggregate with other (possibly
|
87
|
+
commercial) programs as part of a larger (possibly commercial) software
|
88
|
+
distribution provided that you do not advertise this Package as a
|
89
|
+
product of your own. You may embed this Package's interpreter within
|
90
|
+
an executable of yours (by linking); this shall be construed as a mere
|
91
|
+
form of aggregation, provided that the complete Standard Version of the
|
92
|
+
interpreter is so embedded.
|
93
|
+
|
94
|
+
6. The scripts and library files supplied as input to or produced as
|
95
|
+
output from the programs of this Package do not automatically fall
|
96
|
+
under the copyright of this Package, but belong to whoever generated
|
97
|
+
them, and may be sold commercially, and may be aggregated with this
|
98
|
+
Package. If such scripts or library files are aggregated with this
|
99
|
+
Package via the so-called "undump" or "unexec" methods of producing a
|
100
|
+
binary executable image, then distribution of such an image shall
|
101
|
+
neither be construed as a distribution of this Package nor shall it
|
102
|
+
fall under the restrictions of Paragraphs 3 and 4, provided that you do
|
103
|
+
not represent such an executable image as a Standard Version of this
|
104
|
+
Package.
|
105
|
+
|
106
|
+
7. C subroutines (or comparably compiled subroutines in other
|
107
|
+
languages) supplied by you and linked into this Package in order to
|
108
|
+
emulate subroutines and variables of the language defined by this
|
109
|
+
Package shall not be considered part of this Package, but are the
|
110
|
+
equivalent of input as in Paragraph 6, provided these subroutines do
|
111
|
+
not change the language in any way that would cause it to fail the
|
112
|
+
regression tests for the language.
|
113
|
+
|
114
|
+
8. Aggregation of this Package with a commercial distribution is always
|
115
|
+
permitted provided that the use of this Package is embedded; that is,
|
116
|
+
when no overt attempt is made to make this Package's interfaces visible
|
117
|
+
to the end user of the commercial distribution. Such use shall not be
|
118
|
+
construed as a distribution of this Package.
|
119
|
+
|
120
|
+
9. The name of the Copyright Holder may not be used to endorse or promote
|
121
|
+
products derived from this software without specific prior written permission.
|
122
|
+
|
123
|
+
10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
|
124
|
+
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
125
|
+
WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
126
|
+
|
127
|
+
The End
|
data/lib/mime-types.rb
ADDED
data/lib/mime/types.rb
CHANGED
@@ -25,7 +25,7 @@ module MIME
|
|
25
25
|
#
|
26
26
|
class Type
|
27
27
|
# The released version of Ruby MIME::Types
|
28
|
-
VERSION = '1.
|
28
|
+
VERSION = '1.20'
|
29
29
|
|
30
30
|
include Comparable
|
31
31
|
|
@@ -270,7 +270,7 @@ module MIME
|
|
270
270
|
DRAFT_URL % $1
|
271
271
|
when %r{^LTSW$}
|
272
272
|
LTSW_URL % @media_type
|
273
|
-
when %r
|
273
|
+
when %r{^\{([^=]+)=([^\}]+)\}}
|
274
274
|
[$1, $2]
|
275
275
|
when %r{^\[([^=]+)=([^\]]+)\]}
|
276
276
|
[$1, CONTACT_URL % $2]
|
@@ -565,14 +565,10 @@ module MIME
|
|
565
565
|
# This is originally based on Perl MIME::Types by Mark Overmeer.
|
566
566
|
#
|
567
567
|
# = Author
|
568
|
-
# Copyright:: Copyright 2002–
|
568
|
+
# Copyright:: Copyright 2002–2013 by Austin Ziegler
|
569
569
|
# <austin@rubyforge.org>
|
570
|
-
# Version:: 1.
|
571
|
-
#
|
572
|
-
# MIME::Types[http://search.cpan.org/author/MARKOV/MIME-Types-1.27/MIME/Types.pm],
|
573
|
-
# Copyright 2001–2009 by Mark Overmeer
|
574
|
-
# <mimetypes@overmeer.net>.
|
575
|
-
# Licence:: Ruby's, Perl Artistic, or GPL version 2 (or later)
|
570
|
+
# Version:: 1.20
|
571
|
+
# Licence:: See Licence.rdoc
|
576
572
|
# See Also:: http://www.iana.org/assignments/media-types/
|
577
573
|
# http://www.ltsw.se/knbase/internet/mime.htp
|
578
574
|
#
|
@@ -704,18 +700,19 @@ module MIME
|
|
704
700
|
# The regular expression used to match a file-based MIME type
|
705
701
|
# definition.
|
706
702
|
TEXT_FORMAT_RE = %r{
|
707
|
-
|
703
|
+
\A
|
708
704
|
\s*
|
709
705
|
([*])? # 0: Unregistered?
|
710
706
|
(!)? # 1: Obsolete?
|
711
707
|
(?:(\w+):)? # 2: Platform marker
|
712
|
-
#{MIME::Type::MEDIA_TYPE_RE}
|
708
|
+
#{MIME::Type::MEDIA_TYPE_RE}? # 3,4: Media type
|
713
709
|
(?:\s+@([^\s]+))? # 5: Extensions
|
714
710
|
(?:\s+:(#{MIME::Type::ENCODING_RE}))? # 6: Encoding
|
715
711
|
(?:\s+'(.+))? # 7: URL list
|
716
712
|
(?:\s+=(.+))? # 8: Documentation
|
713
|
+
(?:\s*([#].*)?)?
|
717
714
|
\s*
|
718
|
-
|
715
|
+
\z
|
719
716
|
}x
|
720
717
|
|
721
718
|
# Build the type list from a file in the format:
|
@@ -763,7 +760,7 @@ module MIME
|
|
763
760
|
data = data.split($/)
|
764
761
|
mime = MIME::Types.new
|
765
762
|
data.each_with_index { |line, index|
|
766
|
-
item = line.chomp.strip
|
763
|
+
item = line.chomp.strip
|
767
764
|
next if item.empty?
|
768
765
|
|
769
766
|
begin
|
@@ -775,7 +772,17 @@ module MIME
|
|
775
772
|
end
|
776
773
|
|
777
774
|
unregistered, obsolete, platform, mediatype, subtype, extensions,
|
778
|
-
encoding, urls, docs = *m
|
775
|
+
encoding, urls, docs, comment = *m
|
776
|
+
|
777
|
+
if mediatype.nil?
|
778
|
+
if comment.nil?
|
779
|
+
puts "#{filename}:#{index}: Parsing error in MIME type definitions."
|
780
|
+
puts "=> #{line}"
|
781
|
+
raise RuntimeError
|
782
|
+
end
|
783
|
+
|
784
|
+
next
|
785
|
+
end
|
779
786
|
|
780
787
|
extensions &&= extensions.split(/,/)
|
781
788
|
urls &&= urls.split(/,/)
|
data/lib/mime/types/application
CHANGED
@@ -1,15 +1,11 @@
|
|
1
1
|
application/1d-interleaved-parityfec 'IANA,RFC6015
|
2
2
|
application/3gpp-ims+xml 'IANA,[Meredith]
|
3
|
-
application/CSTAdata+xml 'IANA,[Ecma International Helpdesk]
|
4
|
-
application/EDI-Consent 'IANA,RFC1767
|
5
|
-
application/EDI-X12 'IANA,RFC1767
|
6
|
-
application/EDIFACT 'IANA,RFC1767
|
7
|
-
application/H224 'IANA,RFC4573
|
8
3
|
application/activemessage 'IANA,[Shapiro]
|
9
4
|
application/andrew-inset 'IANA,[Borenstein]
|
10
5
|
application/applefile :base64 'IANA,[Faltstrom]
|
11
6
|
application/atom+xml @atom :8bit 'IANA,RFC4287,RFC5023
|
12
7
|
application/atomcat+xml :8bit 'IANA,RFC5023
|
8
|
+
application/atomdeleted+xml :8bit 'IANA,RFC6721
|
13
9
|
application/atomicmail 'IANA,[Borenstein]
|
14
10
|
application/atomsvc+xml :8bit 'IANA,RFC5023
|
15
11
|
application/auth-policy+xml :8bit 'IANA,RFC4745
|
@@ -17,7 +13,7 @@ application/batch-SMTP 'IANA,RFC2442
|
|
17
13
|
application/beep+xml 'IANA,RFC3080
|
18
14
|
application/calendar+xml 'IANA,RFC6321
|
19
15
|
application/cals-1840 'IANA,RFC1895
|
20
|
-
application/ccmp+xml 'IANA,
|
16
|
+
application/ccmp+xml 'IANA,RFC6503
|
21
17
|
application/ccxml+xml 'IANA,RFC4267
|
22
18
|
application/cdmi-capability 'IANA,RFC6208
|
23
19
|
application/cdmi-container 'IANA,RFC6208
|
@@ -32,6 +28,7 @@ application/commonground 'IANA,[Glazer]
|
|
32
28
|
application/conference-info+xml 'IANA,RFC4575
|
33
29
|
application/cpl+xml 'IANA,RFC3880
|
34
30
|
application/csta+xml 'IANA,[Ecma International Helpdesk]
|
31
|
+
application/CSTAdata+xml 'IANA,[Ecma International Helpdesk]
|
35
32
|
application/cybercash 'IANA,[Eastlake]
|
36
33
|
application/davmount+xml 'IANA,RFC4709
|
37
34
|
application/dca-rft 'IANA,[Campbell]
|
@@ -44,17 +41,24 @@ application/dssc+der 'IANA,RFC5698
|
|
44
41
|
application/dssc+xml 'IANA,RFC5698
|
45
42
|
application/dvcs 'IANA,RFC3029
|
46
43
|
application/ecmascript 'IANA,RFC4329
|
44
|
+
application/EDI-Consent 'IANA,RFC1767
|
45
|
+
application/EDI-X12 'IANA,RFC1767
|
46
|
+
application/EDIFACT 'IANA,RFC1767
|
47
47
|
application/emma+xml 'IANA,[W3C]
|
48
|
+
application/encaprtp 'IANA,{RFC-ietf-mmusic-media-loopback-27=http://tools.ietf.org/html/draft-ietf-mmusic-media-loopback}
|
48
49
|
application/epp+xml 'IANA,RFC5730
|
49
50
|
application/eshop 'IANA,[Katz]
|
50
51
|
application/example 'IANA,RFC4735
|
51
52
|
application/exi 'IANA,[W3C]
|
52
53
|
application/fastinfoset 'IANA,[ITU-T ASN.1 Rapporteur]
|
53
54
|
application/fastsoap 'IANA,[ITU-T ASN.1 Rapporteur]
|
55
|
+
application/fdt+xml 'IANA,RFC6726
|
54
56
|
application/fits 'IANA,RFC4047
|
55
57
|
application/font-tdpfr @pfr 'IANA,RFC3073
|
56
|
-
application/font-woff @woff :base64 'W3C,{WOFF=http://www.w3.org/TR/WOFF/#appendix-b}
|
58
|
+
application/font-woff @woff :base64 'IANA,[W3C],{WOFF=http://www.w3.org/TR/WOFF/#appendix-b}
|
57
59
|
application/framework-attributes+xml 'IANA,RFC6230
|
60
|
+
application/gzip 'IANA,RFC6713
|
61
|
+
application/H224 'IANA,RFC4573
|
58
62
|
application/held+xml 'IANA,RFC5985
|
59
63
|
application/http 'IANA,RFC2616
|
60
64
|
application/hyperstudio @stk 'IANA,[Domino]
|
@@ -75,9 +79,12 @@ application/ipp 'IANA,RFC2910
|
|
75
79
|
application/isup 'IANA,RFC3204
|
76
80
|
application/javascript @js :8bit 'IANA,RFC4329
|
77
81
|
application/json @json :8bit 'IANA,RFC4627
|
82
|
+
application/json-patch+json 'IANA,{RFC-ietf-appsawg-json-patch-10=http://tools.ietf.org/html/draft-ietf-appsawg-json-patch}
|
78
83
|
application/kpml-request+xml 'IANA,RFC4730
|
79
84
|
application/kpml-response+xml 'IANA,RFC4730
|
85
|
+
application/link-format 'IANA,RFC6690
|
80
86
|
application/lost+xml 'IANA,RFC5222
|
87
|
+
application/lostsync+xml 'IANA,RFC6739
|
81
88
|
application/mac-binhex40 @hqx :8bit 'IANA,[Faltstrom]
|
82
89
|
application/macwriteii 'IANA,[Lindner]
|
83
90
|
application/mads+xml 'IANA,RFC6207
|
@@ -98,6 +105,7 @@ application/mbms-register+xml 'IANA,[3GPP]
|
|
98
105
|
application/mbms-register-response+xml 'IANA,[3GPP]
|
99
106
|
application/mbms-user-service-description+xml 'IANA,[3GPP]
|
100
107
|
application/mbox 'IANA,RFC4155
|
108
|
+
application/media-policy-dataset+xml 'IANA,RFC6796
|
101
109
|
application/media_control+xml 'IANA,RFC5168
|
102
110
|
application/mediaservercontrol+xml 'IANA,RFC5022
|
103
111
|
application/metalink4+xml 'IANA,RFC5854
|
@@ -109,22 +117,23 @@ application/moss-signature 'IANA,RFC1848
|
|
109
117
|
application/mosskey-data 'IANA,RFC1848
|
110
118
|
application/mosskey-request 'IANA,RFC1848
|
111
119
|
application/mp21 'IANA,RFC6381,[Singer]
|
112
|
-
application/mp4 @mp4,mpg4 'IANA,RFC4337
|
120
|
+
application/mp4 @mp4,mpg4 'IANA,RFC4337,RFC6381
|
113
121
|
application/mpeg4-generic 'IANA,RFC3640
|
114
122
|
application/mpeg4-iod 'IANA,RFC4337
|
115
123
|
application/mpeg4-iod-xmt 'IANA,RFC4337
|
116
124
|
application/msc-ivr+xml 'IANA,RFC6231
|
117
|
-
application/msc-mixer+xml 'IANA,
|
125
|
+
application/msc-mixer+xml 'IANA,RFC6505
|
118
126
|
application/msword @doc,dot,wrd :base64 'IANA,[Lindner]
|
119
127
|
application/mxf @mxf 'IANA,RFC4539
|
120
128
|
application/nasdata 'IANA,RFC4707
|
121
129
|
application/news-checkgroups 'IANA,RFC5537
|
122
130
|
application/news-groupinfo 'IANA,RFC5537
|
123
|
-
application/news-transmission 'IANA,RFC5537
|
131
|
+
application/news-transmission 'IANA,RFC5537
|
132
|
+
application/nlsml+xml 'IANA,RFC6787
|
124
133
|
application/nss 'IANA,[Hammer]
|
125
134
|
application/ocsp-request 'IANA,RFC2560
|
126
135
|
application/ocsp-response 'IANA,RFC2560
|
127
|
-
application/octet-stream @bin,dms,lha,lzh,exe,class,ani,pgp,so,dll,
|
136
|
+
application/octet-stream @bin,dms,lha,lzh,exe,class,ani,pgp,so,dll,dylib :base64 'IANA,RFC2045,RFC2046
|
128
137
|
application/oda @oda 'IANA,RFC2045,RFC2046
|
129
138
|
application/oebps-package+xml 'IANA,RFC4839
|
130
139
|
application/ogg @ogx 'IANA,RFC5334
|
@@ -139,7 +148,7 @@ application/pidf+xml 'IANA,RFC3863
|
|
139
148
|
application/pidf-diff+xml 'IANA,RFC5262
|
140
149
|
application/pkcs10 @p10 'IANA,RFC5967
|
141
150
|
application/pkcs7-mime @p7m,p7c 'IANA,RFC5751
|
142
|
-
application/pkcs7-signature @p7s 'IANA,
|
151
|
+
application/pkcs7-signature @p7s 'IANA,RFC5751
|
143
152
|
application/pkcs8 'IANA,RFC5958
|
144
153
|
application/pkix-attr-cert 'IANA,RFC5877
|
145
154
|
application/pkix-cert @cer 'IANA,RFC2585
|
@@ -157,6 +166,7 @@ application/prs.rdf-xml-crypt 'IANA,[Inkster]
|
|
157
166
|
application/prs.xsf+xml 'IANA,[Stührenberg=Stuhrenberg]
|
158
167
|
application/pskc+xml 'IANA,RFC6030
|
159
168
|
application/qsig 'IANA,RFC3204
|
169
|
+
application/raptorfec 'IANA,RFC6682
|
160
170
|
application/rdf+xml @rdf :8bit 'IANA,RFC3870
|
161
171
|
application/reginfo+xml 'IANA,RFC3680
|
162
172
|
application/relax-ng-compact-syntax 'IANA,{ISO/IEC 19757-2:2003/FDAM-1=http://www.jtc1sc34.org/repository/0661.pdf}
|
@@ -166,10 +176,12 @@ application/resource-lists-diff+xml 'IANA,RFC5362
|
|
166
176
|
application/riscos 'IANA,[Smith]
|
167
177
|
application/rlmi+xml 'IANA,RFC4662
|
168
178
|
application/rls-services+xml 'IANA,RFC4826
|
169
|
-
application/rpki-
|
170
|
-
application/rpki-
|
171
|
-
application/rpki-
|
179
|
+
application/rpki-ghostbusters 'IANA,RFC6493
|
180
|
+
application/rpki-manifest 'IANA,RFC6481
|
181
|
+
application/rpki-roa 'IANA,RFC6481
|
182
|
+
application/rpki-updown 'IANA,RFC6492
|
172
183
|
application/rtf @rtf 'IANA,[Lindner]
|
184
|
+
application/rtploopback 'IANA,{RFC-ietf-mmusic-media-loopback-27=http://tools.ietf.org/html/draft-ietf-mmusic-media-loopback}
|
173
185
|
application/rtx 'IANA,RFC4588
|
174
186
|
application/samlassertion+xml 'IANA,[OASIS Security Services Technical Committee (SSTC)]
|
175
187
|
application/samlmetadata+xml 'IANA,[OASIS Security Services Technical Committee (SSTC)]
|
@@ -179,6 +191,8 @@ application/scvp-cv-response 'IANA,RFC5055
|
|
179
191
|
application/scvp-vp-request 'IANA,RFC5055
|
180
192
|
application/scvp-vp-response 'IANA,RFC5055
|
181
193
|
application/sdp 'IANA,RFC4566
|
194
|
+
application/sep+xml 'IANA,[Robby_Simpson=RoSimpson],[ZigBee_Alliance=ZigBee]
|
195
|
+
application/sep-exi 'IANA,[Robby_Simpson=RoSimpson],[ZigBee_Alliance=ZigBee]
|
182
196
|
application/set-payment 'IANA,[Korver]
|
183
197
|
application/set-payment-initiation 'IANA,[Korver]
|
184
198
|
application/set-registration 'IANA,[Korver]
|
@@ -192,6 +206,7 @@ application/simple-message-summary 'IANA,RFC3842
|
|
192
206
|
application/simpleSymbolContainer 'IANA,[3GPP]
|
193
207
|
application/slate 'IANA,[Crowley]
|
194
208
|
application/smil+xml @smi,smil :8bit 'IANA,RFC4536
|
209
|
+
application/smpte336m 'IANA,RFC6597
|
195
210
|
application/soap+fastinfoset 'IANA,[ITU-T ASN.1 Rapporteur]
|
196
211
|
application/soap+xml 'IANA,RFC3902
|
197
212
|
application/sparql-query 'IANA,[W3C]
|
@@ -221,7 +236,6 @@ application/tve-trigger 'IANA,[Welsh]
|
|
221
236
|
application/ulpfec 'IANA,RFC5109
|
222
237
|
application/vcard+xml 'IANA,RFC6351
|
223
238
|
application/vemmi 'IANA,RFC2122
|
224
|
-
application/vnd.3M.Post-it-Notes 'IANA,[O'Brien]
|
225
239
|
application/vnd.3gpp.bsf+xml 'IANA,[Meredith]
|
226
240
|
application/vnd.3gpp.pic-bw-large @plb 'IANA,[Meredith]
|
227
241
|
application/vnd.3gpp.pic-bw-small @psb 'IANA,[Meredith]
|
@@ -230,25 +244,12 @@ application/vnd.3gpp.sms @sms 'IANA,[Meredith]
|
|
230
244
|
application/vnd.3gpp2.bcmcsinfo+xml 'IANA,[Dryden]
|
231
245
|
application/vnd.3gpp2.sms 'IANA,[Mahendran]
|
232
246
|
application/vnd.3gpp2.tcap 'IANA,[Mahendran]
|
233
|
-
application/vnd.
|
234
|
-
application/vnd.HandHeld-Entertainment+xml 'IANA,[Hamilton]
|
235
|
-
application/vnd.Kinar @kne,knp,sdf 'IANA,[Thakkar]
|
236
|
-
application/vnd.MFER 'IANA,[Hirai]
|
237
|
-
application/vnd.Mobius.DAF 'IANA,[Kabayama]
|
238
|
-
application/vnd.Mobius.DIS 'IANA,[Kabayama]
|
239
|
-
application/vnd.Mobius.MBK 'IANA,[Devasia]
|
240
|
-
application/vnd.Mobius.MQY 'IANA,[Devasia]
|
241
|
-
application/vnd.Mobius.MSL 'IANA,[Kabayama]
|
242
|
-
application/vnd.Mobius.PLC 'IANA,[Kabayama]
|
243
|
-
application/vnd.Mobius.TXF 'IANA,[Kabayama]
|
244
|
-
application/vnd.Quark.QuarkXPress @qxd,qxt,qwd,qwt,qxl,qxb :8bit 'IANA,[Scheidler]
|
245
|
-
application/vnd.RenLearn.rlprint 'IANA,[Wick]
|
246
|
-
application/vnd.SimTech-MindMapper 'IANA,[Koh]
|
247
|
+
application/vnd.3M.Post-it-Notes 'IANA,[O'Brien]
|
247
248
|
application/vnd.accpac.simply.aso 'IANA,[Leow]
|
248
249
|
application/vnd.accpac.simply.imp 'IANA,[Leow]
|
249
250
|
application/vnd.acucobol 'IANA,[Lubin]
|
250
251
|
application/vnd.acucorp @atc,acutc :7bit 'IANA,[Lubin]
|
251
|
-
application/vnd.adobe.
|
252
|
+
application/vnd.adobe.formscentral.fcdt 'IANA,[Solc]
|
252
253
|
application/vnd.adobe.fxp 'IANA,[Brambley],[Heintz]
|
253
254
|
application/vnd.adobe.partial-upload 'IANA,[Otala]
|
254
255
|
application/vnd.adobe.xdp+xml 'IANA,[Brinkman]
|
@@ -261,7 +262,6 @@ application/vnd.airzip.filesecure.azs 'IANA,[Mould],[Clueit]
|
|
261
262
|
application/vnd.americandynamics.acc 'IANA,[Sands]
|
262
263
|
application/vnd.amiga.ami @ami 'IANA,[Blumberg]
|
263
264
|
application/vnd.amundsen.maze+xml 'IANA,[Amundsen]
|
264
|
-
application/vnd.android.package-archive @apk
|
265
265
|
application/vnd.anser-web-certificate-issue-initiation 'IANA,[Mori]
|
266
266
|
application/vnd.antix.game-component 'IANA,[Shelton]
|
267
267
|
application/vnd.apple.installer+xml 'IANA,[Bierman]
|
@@ -271,6 +271,7 @@ application/vnd.astraea-software.iota 'IANA,[Snazell]
|
|
271
271
|
application/vnd.audiograph 'IANA,[Slusanschi]
|
272
272
|
application/vnd.autopackage 'IANA,[Hearn]
|
273
273
|
application/vnd.avistar+xml 'IANA,[Vysotsky]
|
274
|
+
application/vnd.balsamiq.bmml+xml 'IANA,[Giacomo_Guilizzoni]
|
274
275
|
application/vnd.blueice.multipass @mpm 'IANA,[Holmstrom]
|
275
276
|
application/vnd.bluetooth.ep.oob 'IANA,[Foley]
|
276
277
|
application/vnd.bmi 'IANA,[Gotoh]
|
@@ -279,6 +280,7 @@ application/vnd.cab-jscript 'IANA,[Falkenberg]
|
|
279
280
|
application/vnd.canon-cpdl 'IANA,[Muto]
|
280
281
|
application/vnd.canon-lips 'IANA,[Muto]
|
281
282
|
application/vnd.cendio.thinlinc.clientconf 'IANA,[Åstrand=Astrand]
|
283
|
+
application/vnd.century-systems.tcp_stream 'IANA,[Shuji Fujii=Shuji_Fujii]
|
282
284
|
application/vnd.chemdraw+xml 'IANA,[Howes]
|
283
285
|
application/vnd.chipnuts.karaoke-mmd 'IANA,[Xiong]
|
284
286
|
application/vnd.cinderella @cdy 'IANA,[Kortenkamp]
|
@@ -289,6 +291,7 @@ application/vnd.clonk.c4group 'IANA,[Brammer]
|
|
289
291
|
application/vnd.cluetrust.cartomobile-config 'IANA,[Paulsen]
|
290
292
|
application/vnd.cluetrust.cartomobile-config-pkg 'IANA,[Paulsen]
|
291
293
|
application/vnd.collection+json 'IANA,[Amundsen]
|
294
|
+
application/vnd.collection.next+json 'IANA,[Ioseb Dzmanashvili=Ioseb_Dzmanashvili]
|
292
295
|
application/vnd.commerce-battelle 'IANA,[Applebaum]
|
293
296
|
application/vnd.commonspace 'IANA,[Chandhok]
|
294
297
|
application/vnd.contact.cmsg 'IANA,[Patz]
|
@@ -307,7 +310,9 @@ application/vnd.cups-ppd 'IANA,[Sweet]
|
|
307
310
|
application/vnd.cups-raster 'IANA,[Sweet]
|
308
311
|
application/vnd.cups-raw 'IANA,[Sweet]
|
309
312
|
application/vnd.curl @curl 'IANA,[Byrnes]
|
313
|
+
application/vnd.cyan.dean.root+xml 'IANA,[Kern]
|
310
314
|
application/vnd.cybank 'IANA,[Helmee]
|
315
|
+
application/vnd.dart 'IANA,[Sandholm]
|
311
316
|
application/vnd.data-vision.rdz @rdz 'IANA,[Fields]
|
312
317
|
application/vnd.dece.data 'IANA,[Dolan]
|
313
318
|
application/vnd.dece.ttml+xml 'IANA,[Dolan]
|
@@ -315,11 +320,15 @@ application/vnd.dece.unspecified 'IANA,[Dolan]
|
|
315
320
|
application/vnd.dece.zip 'IANA,[Dolan]
|
316
321
|
application/vnd.denovo.fcselayout-link 'IANA,[Dixon]
|
317
322
|
application/vnd.dir-bi.plate-dl-nosuffix 'IANA,[Yamanaka]
|
323
|
+
application/vnd.dm.delegation+xml 'IANA,[Ferrazzini]
|
318
324
|
application/vnd.dna 'IANA,[Searcy]
|
319
325
|
application/vnd.dolby.mobile.1 'IANA,[Hattersley]
|
320
326
|
application/vnd.dolby.mobile.2 'IANA,[Hattersley]
|
321
327
|
application/vnd.dpgraph 'IANA,[Parker]
|
322
328
|
application/vnd.dreamfactory @dfac 'IANA,[Appleton]
|
329
|
+
application/vnd.dtg.local 'IANA,[Ali_Teffahi]
|
330
|
+
application/vnd.dtg.local.flash 'IANA,[Ali_Teffahi]
|
331
|
+
application/vnd.dtg.local.html 'IANA,[Ali_Teffahi]
|
323
332
|
application/vnd.dvb.ait 'IANA,[Siebert],[Lagally]
|
324
333
|
application/vnd.dvb.dvbj 'IANA,[Siebert],[Lagally]
|
325
334
|
application/vnd.dvb.esgcontainer 'IANA,[Heuer]
|
@@ -371,6 +380,7 @@ application/vnd.etsi.iptvservice+xml 'IANA,[Ortega]
|
|
371
380
|
application/vnd.etsi.iptvsync+xml 'IANA,[Ortega]
|
372
381
|
application/vnd.etsi.iptvueprofile+xml 'IANA,[Hu]
|
373
382
|
application/vnd.etsi.mcid+xml 'IANA,[Hu]
|
383
|
+
application/vnd.etsi.mheg5 'IANA,[Ortega],[Medland]
|
374
384
|
application/vnd.etsi.overload-control-policy-dataset+xml 'IANA,[Ortega]
|
375
385
|
application/vnd.etsi.sci+xml 'IANA,[Hu]
|
376
386
|
application/vnd.etsi.simservs+xml 'IANA,[Hu]
|
@@ -385,6 +395,7 @@ application/vnd.fdsn.mseed 'IANA,[Trabant]
|
|
385
395
|
application/vnd.fdsn.seed 'IANA,[Trabant]
|
386
396
|
application/vnd.ffsns 'IANA,[Holstage]
|
387
397
|
application/vnd.fints 'IANA,[Hammann]
|
398
|
+
application/vnd.FloGraphIt 'IANA,[Floersch]
|
388
399
|
application/vnd.fluxtime.clip 'IANA,[Winter]
|
389
400
|
application/vnd.font-fontforge-sfd 'IANA,[Williams]
|
390
401
|
application/vnd.framemaker @frm,maker,frame,fm,fb,book,fbdoc 'IANA,[Wexler]
|
@@ -398,14 +409,13 @@ application/vnd.fujitsu.oasysgp 'IANA,[Sugimoto]
|
|
398
409
|
application/vnd.fujitsu.oasysprs 'IANA,[Ogita]
|
399
410
|
application/vnd.fujixerox.ART-EX 'IANA,[Tanabe]
|
400
411
|
application/vnd.fujixerox.ART4 'IANA,[Tanabe]
|
401
|
-
application/vnd.fujixerox.HBPL 'IANA,[Tanabe]
|
402
412
|
application/vnd.fujixerox.ddd 'IANA,[Onda]
|
403
413
|
application/vnd.fujixerox.docuworks 'IANA,[Taguchi]
|
404
414
|
application/vnd.fujixerox.docuworks.binder 'IANA,[Matsumoto]
|
415
|
+
application/vnd.fujixerox.HBPL 'IANA,[Tanabe]
|
405
416
|
application/vnd.fut-misnet 'IANA,[Pruulmann]
|
406
417
|
application/vnd.fuzzysheet 'IANA,[Birtwistle]
|
407
418
|
application/vnd.genomatix.tuxedo @txd 'IANA,[Frey]
|
408
|
-
application/vnd.geocube+xml 'IANA,[Pirsch]
|
409
419
|
application/vnd.geogebra.file 'IANA,[GeoGebra],[Kreis]
|
410
420
|
application/vnd.geogebra.tool 'IANA,[GeoGebra],[Kreis]
|
411
421
|
application/vnd.geometry-explorer 'IANA,[Hvidsten]
|
@@ -427,25 +437,27 @@ application/vnd.groove-tool-template 'IANA,[Joseph]
|
|
427
437
|
application/vnd.groove-vcard 'IANA,[Joseph]
|
428
438
|
application/vnd.hal+json 'IANA,[Kelly]
|
429
439
|
application/vnd.hal+xml 'IANA,[Kelly]
|
440
|
+
application/vnd.HandHeld-Entertainment+xml 'IANA,[Hamilton]
|
430
441
|
application/vnd.hbci @hbci,hbc,kom,upa,pkd,bpd 'IANA,[Hammann]
|
431
442
|
application/vnd.hcl-bireports 'IANA,[Serres]
|
432
443
|
application/vnd.hhe.lesson-player @les 'IANA,[Jones]
|
433
444
|
application/vnd.hp-HPGL @plt,hpgl 'IANA,[Pentecost]
|
434
|
-
application/vnd.hp-PCL 'IANA,[Pentecost]
|
435
|
-
application/vnd.hp-PCLXL 'IANA,[Pentecost]
|
436
445
|
application/vnd.hp-hpid 'IANA,[Gupta]
|
437
446
|
application/vnd.hp-hps 'IANA,[Aubrey]
|
438
447
|
application/vnd.hp-jlyt 'IANA,[Gaash]
|
448
|
+
application/vnd.hp-PCL 'IANA,[Pentecost]
|
449
|
+
application/vnd.hp-PCLXL 'IANA,[Pentecost]
|
439
450
|
application/vnd.httphone 'IANA,[Lefevre]
|
440
451
|
application/vnd.hydrostatix.sof-data 'IANA,[Gillam]
|
441
452
|
application/vnd.hzn-3d-crossword 'IANA,[Minnis]
|
442
|
-
application/vnd.ibm.MiniPay 'IANA,[Herzberg]
|
443
453
|
application/vnd.ibm.afplinedata 'IANA,[Buis]
|
444
454
|
application/vnd.ibm.electronic-media @emm 'IANA,[Tantlinger]
|
455
|
+
application/vnd.ibm.MiniPay 'IANA,[Herzberg]
|
445
456
|
application/vnd.ibm.modcap 'IANA,[Hohensee]
|
446
457
|
application/vnd.ibm.rights-management @irm 'IANA,[Tantlinger]
|
447
458
|
application/vnd.ibm.secure-container @sc 'IANA,[Tantlinger]
|
448
459
|
application/vnd.iccprofile 'IANA,[Green]
|
460
|
+
application/vnd.ieee.1905 'IANA,[Rajkotia]
|
449
461
|
application/vnd.igloader 'IANA,[Fisher]
|
450
462
|
application/vnd.immervision-ivp 'IANA,[Villegas]
|
451
463
|
application/vnd.immervision-ivu 'IANA,[Villegas]
|
@@ -453,6 +465,7 @@ application/vnd.informedcontrol.rms+xml 'IANA,[Wahl]
|
|
453
465
|
application/vnd.informix-visionary 'IANA,[Gales]
|
454
466
|
application/vnd.infotech.project 'IANA,[Engelke]
|
455
467
|
application/vnd.infotech.project+xml 'IANA,[Engelke]
|
468
|
+
application/vnd.innopath.wamp.notification 'IANA,[Sudo]
|
456
469
|
application/vnd.insors.igm 'IANA,[Swanson]
|
457
470
|
application/vnd.intercon.formnet 'IANA,[Gurak]
|
458
471
|
application/vnd.intergeo 'IANA,[Kreis=Kreis2]
|
@@ -463,7 +476,9 @@ application/vnd.intu.qfx 'IANA,[Scratchley]
|
|
463
476
|
application/vnd.iptc.g2.conceptitem+xml 'IANA,[Steidl]
|
464
477
|
application/vnd.iptc.g2.knowledgeitem+xml 'IANA,[Steidl]
|
465
478
|
application/vnd.iptc.g2.newsitem+xml 'IANA,[Steidl]
|
479
|
+
application/vnd.iptc.g2.newsmessage+xml 'IANA,[Steidl]
|
466
480
|
application/vnd.iptc.g2.packageitem+xml 'IANA,[Steidl]
|
481
|
+
application/vnd.iptc.g2.planningitem+xml 'IANA,[Steidl]
|
467
482
|
application/vnd.ipunplugged.rcprofile @rcprofile 'IANA,[Ersson]
|
468
483
|
application/vnd.irepository.package+xml @irp 'IANA,[Knowles]
|
469
484
|
application/vnd.is-xpr 'IANA,[Natarajan]
|
@@ -480,6 +495,7 @@ application/vnd.japannet-verification-wakeup 'IANA,[Fujii]
|
|
480
495
|
application/vnd.jcp.javame.midlet-rms 'IANA,[Gorshenev]
|
481
496
|
application/vnd.jisp @jisp 'IANA,[Deckers]
|
482
497
|
application/vnd.joost.joda-archive 'IANA,[Joost]
|
498
|
+
application/vnd.jsk.isdn-ngn 'IANA,[Kiyonobu]
|
483
499
|
application/vnd.kahootz 'IANA,[Macdonald]
|
484
500
|
application/vnd.kde.karbon @karbon 'IANA,[Faure]
|
485
501
|
application/vnd.kde.kchart @chrt 'IANA,[Faure]
|
@@ -491,6 +507,7 @@ application/vnd.kde.kspread @ksp 'IANA,[Faure]
|
|
491
507
|
application/vnd.kde.kword @kwd,kwt 'IANA,[Faure]
|
492
508
|
application/vnd.kenameaapp @htke 'IANA,[DiGiorgio-Haag]
|
493
509
|
application/vnd.kidspiration @kia 'IANA,[Bennett]
|
510
|
+
application/vnd.Kinar @kne,knp,sdf 'IANA,[Thakkar]
|
494
511
|
application/vnd.koan 'IANA,[Cole]
|
495
512
|
application/vnd.kodak-descriptor 'IANA,[Donahue]
|
496
513
|
application/vnd.las.las+xml 'IANA,[Bailey=RBailey]
|
@@ -513,12 +530,20 @@ application/vnd.mcd @mcd 'IANA,[Gotoh]
|
|
513
530
|
application/vnd.medcalcdata 'IANA,[Schoonjans]
|
514
531
|
application/vnd.mediastation.cdkey 'IANA,[Flurry]
|
515
532
|
application/vnd.meridian-slingshot 'IANA,[Wedel]
|
533
|
+
application/vnd.MFER 'IANA,[Hirai]
|
516
534
|
application/vnd.mfmp @mfm 'IANA,[Ikeda]
|
517
535
|
application/vnd.micrografx.flo @flo 'IANA,[Prevo]
|
518
536
|
application/vnd.micrografx.igx @igx 'IANA,[Prevo]
|
519
537
|
application/vnd.mif @mif 'IANA,[Wexler]
|
520
538
|
application/vnd.minisoft-hp3000-save 'IANA,[Bartram]
|
521
539
|
application/vnd.mitsubishi.misty-guard.trustweb 'IANA,[Tanaka]
|
540
|
+
application/vnd.Mobius.DAF 'IANA,[Kabayama]
|
541
|
+
application/vnd.Mobius.DIS 'IANA,[Kabayama]
|
542
|
+
application/vnd.Mobius.MBK 'IANA,[Devasia]
|
543
|
+
application/vnd.Mobius.MQY 'IANA,[Devasia]
|
544
|
+
application/vnd.Mobius.MSL 'IANA,[Kabayama]
|
545
|
+
application/vnd.Mobius.PLC 'IANA,[Kabayama]
|
546
|
+
application/vnd.Mobius.TXF 'IANA,[Kabayama]
|
522
547
|
application/vnd.mophun.application @mpn 'IANA,[Wennerstrom]
|
523
548
|
application/vnd.mophun.certificate @mpc 'IANA,[Wennerstrom]
|
524
549
|
application/vnd.motorola.flexsuite 'IANA,[Patton]
|
@@ -535,8 +560,8 @@ application/vnd.ms-asf @asf 'IANA,[Fleischman]
|
|
535
560
|
application/vnd.ms-cab-compressed @cab 'IANA,[Scarborough]
|
536
561
|
application/vnd.ms-excel @xls,xlt :base64 'IANA,[Gill]
|
537
562
|
application/vnd.ms-excel.addin.macroEnabled.12 'IANA,[Rae]
|
538
|
-
application/vnd.ms-excel.sheet.binary.macroEnabled.12 @
|
539
|
-
application/vnd.ms-excel.sheet.macroEnabled.12 @
|
563
|
+
application/vnd.ms-excel.sheet.binary.macroEnabled.12 @xlsb 'IANA,[Rae]
|
564
|
+
application/vnd.ms-excel.sheet.macroEnabled.12 @xlsm 'IANA,[Rae]
|
540
565
|
application/vnd.ms-excel.template.macroEnabled.12 'IANA,[Rae]
|
541
566
|
application/vnd.ms-fontobject 'IANA,[Scarborough]
|
542
567
|
application/vnd.ms-htmlhelp 'IANA,[Techtonik]
|
@@ -546,15 +571,20 @@ application/vnd.ms-office.activeX+xml 'IANA,[Rae]
|
|
546
571
|
application/vnd.ms-officetheme 'IANA,[Rae]
|
547
572
|
application/vnd.ms-playready.initiator+xml 'IANA,[Schneider]
|
548
573
|
application/vnd.ms-powerpoint @ppt,pps,pot :base64 'IANA,[Gill]
|
549
|
-
application/vnd.ms-powerpoint.
|
574
|
+
application/vnd.ms-powerpoint.addin.macroEnabled.12 'IANA,[Rae]
|
575
|
+
application/vnd.ms-powerpoint.presentation.macroEnabled.12 'IANA,[Rae]
|
576
|
+
application/vnd.ms-powerpoint.slide.macroEnabled.12 'IANA,[Rae]
|
550
577
|
application/vnd.ms-powerpoint.slideshow.macroEnabled.12 'IANA,[Rae]
|
551
578
|
application/vnd.ms-powerpoint.template.macroEnabled.12 @potm 'IANA,[Rae]
|
552
579
|
application/vnd.ms-project @mpp :base64 'IANA,[Gill]
|
553
580
|
application/vnd.ms-tnef :base64 'IANA,[Gill]
|
581
|
+
application/vnd.ms-windows.printerpairing 'IANA,[Hutchings]
|
554
582
|
application/vnd.ms-wmdrm.lic-chlg-req 'IANA,[Lau]
|
555
583
|
application/vnd.ms-wmdrm.lic-resp 'IANA,[Lau]
|
556
584
|
application/vnd.ms-wmdrm.meter-chlg-req 'IANA,[Lau]
|
557
585
|
application/vnd.ms-wmdrm.meter-resp 'IANA,[Lau]
|
586
|
+
application/vnd.ms-word.document.macroEnabled.12 'IANA,[Rae]
|
587
|
+
application/vnd.ms-word.template.macroEnabled.12 'IANA,[Rae]
|
558
588
|
application/vnd.ms-works :base64 'IANA,[Gill]
|
559
589
|
application/vnd.ms-wpl @wpl :base64 'IANA,[Plastina]
|
560
590
|
application/vnd.ms-xpsdocument @xps :8bit 'IANA,[McGatha]
|
@@ -571,14 +601,16 @@ application/vnd.ncd.reference 'IANA,[Tarkkala]
|
|
571
601
|
application/vnd.nervana @ent,entity,req,request,bkm,kcm 'IANA,[Judkins]
|
572
602
|
application/vnd.netfpx 'IANA,[Mutz]
|
573
603
|
application/vnd.neurolanguage.nlu 'IANA,[DuFeu]
|
604
|
+
application/vnd.nintendo.nitro.rom 'IANA,[Andersson]
|
605
|
+
application/vnd.nitf 'IANA,[Rogan]
|
574
606
|
application/vnd.noblenet-directory 'IANA,[Solomon]
|
575
607
|
application/vnd.noblenet-sealer 'IANA,[Solomon]
|
576
608
|
application/vnd.noblenet-web 'IANA,[Solomon]
|
577
609
|
application/vnd.nokia.catalogs 'IANA,[Nokia]
|
578
610
|
application/vnd.nokia.conml+wbxml 'IANA,[Nokia]
|
579
611
|
application/vnd.nokia.conml+xml 'IANA,[Nokia]
|
580
|
-
application/vnd.nokia.iSDS-radio-presets 'IANA,[Nokia]
|
581
612
|
application/vnd.nokia.iptv.config+xml 'IANA,[Nokia]
|
613
|
+
application/vnd.nokia.iSDS-radio-presets 'IANA,[Nokia]
|
582
614
|
application/vnd.nokia.landmark+wbxml 'IANA,[Nokia]
|
583
615
|
application/vnd.nokia.landmark+xml 'IANA,[Nokia]
|
584
616
|
application/vnd.nokia.landmarkcollection+xml 'IANA,[Nokia]
|
@@ -593,6 +625,10 @@ application/vnd.nokia.radio-presets @rpss 'IANA,[Nokia]
|
|
593
625
|
application/vnd.novadigm.EDM 'IANA,[Swenson]
|
594
626
|
application/vnd.novadigm.EDX 'IANA,[Swenson]
|
595
627
|
application/vnd.novadigm.EXT 'IANA,[Swenson]
|
628
|
+
application/vnd.ntt-local.content-share 'IANA,[Taya]
|
629
|
+
application/vnd.ntt-local.file-transfer 'IANA,[NTT-local]
|
630
|
+
application/vnd.ntt-local.sip-ta_remote 'IANA,[NTT-local]
|
631
|
+
application/vnd.ntt-local.sip-ta_tcp_stream 'IANA,[NTT-local]
|
596
632
|
application/vnd.oasis.opendocument.chart @odc 'IANA,[Oppermann]
|
597
633
|
application/vnd.oasis.opendocument.chart-template @odc 'IANA,[Oppermann]
|
598
634
|
application/vnd.oasis.opendocument.database @odb 'IANA,[Schubert],[Oasis OpenDocument TC=OASIS OpenDocumentTC]
|
@@ -642,6 +678,8 @@ application/vnd.oma.bcast.sprov+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Nam
|
|
642
678
|
application/vnd.oma.bcast.stkm 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
|
643
679
|
application/vnd.oma.cab-address-book+xml 'IANA,[Wang],[OMA]
|
644
680
|
application/vnd.oma.cab-pcc+xml 'IANA,[Wang],[OMA]
|
681
|
+
application/vnd.oma.cab-subs-invite+xml 'IANA,[Wang],[OMA]
|
682
|
+
application/vnd.oma.cab-user-prefs+xml 'IANA,[Wang],[OMA]
|
645
683
|
application/vnd.oma.dcd 'IANA,[Primo],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
|
646
684
|
application/vnd.oma.dcdc 'IANA,[Primo],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
|
647
685
|
application/vnd.oma.dd2+xml 'IANA,[Sato],[Open Mobile Alliance's BAC DLDRM Working Group]
|
@@ -676,16 +714,16 @@ application/vnd.openxmlformats-officedocument.presentationml.comments+xml 'IANA,
|
|
676
714
|
application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml 'IANA,[Murata]
|
677
715
|
application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml 'IANA,[Murata]
|
678
716
|
application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml 'IANA,[Murata]
|
679
|
-
application/vnd.openxmlformats-officedocument.presentationml.presProps+xml 'IANA,[Murata]
|
680
717
|
application/vnd.openxmlformats-officedocument.presentationml.presentation @pptx 'IANA,[Murata]
|
681
718
|
application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml 'IANA,[Murata]
|
719
|
+
application/vnd.openxmlformats-officedocument.presentationml.presProps+xml 'IANA,[Murata]
|
682
720
|
application/vnd.openxmlformats-officedocument.presentationml.slide 'IANA,[Murata]
|
683
721
|
application/vnd.openxmlformats-officedocument.presentationml.slide+xml 'IANA,[Murata]
|
684
722
|
application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml 'IANA,[Murata]
|
685
723
|
application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml 'IANA,[Murata]
|
686
|
-
application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml 'IANA,[Murata]
|
687
724
|
application/vnd.openxmlformats-officedocument.presentationml.slideshow @ppsx 'IANA,[Murata]
|
688
725
|
application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml 'IANA,[Murata]
|
726
|
+
application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml 'IANA,[Murata]
|
689
727
|
application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml 'IANA,[Murata]
|
690
728
|
application/vnd.openxmlformats-officedocument.presentationml.tags+xml 'IANA,[Murata]
|
691
729
|
application/vnd.openxmlformats-officedocument.presentationml.template @potx 'IANA,[Murata]
|
@@ -735,10 +773,12 @@ application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml '
|
|
735
773
|
application/vnd.openxmlformats-package.core-properties+xml 'IANA,[Murata]
|
736
774
|
application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml 'IANA,[Murata]
|
737
775
|
application/vnd.openxmlformats-package.relationships+xml 'IANA,[Murata]
|
776
|
+
application/vnd.orange.indata 'IANA,[CHATRAS_Bruno]
|
738
777
|
application/vnd.osa.netdeploy 'IANA,[Klos]
|
739
778
|
application/vnd.osgeo.mapguide.package 'IANA,[Birch]
|
740
779
|
application/vnd.osgi.bundle 'IANA,[Kriens]
|
741
780
|
application/vnd.osgi.dp 'IANA,[Kriens]
|
781
|
+
application/vnd.osgi.subsystem 'IANA,[Kriens]
|
742
782
|
application/vnd.otps.ct-kip+xml 'IANA,[Nyström=Nystrom]
|
743
783
|
application/vnd.palm @prc,pdb,pqa,oprc :base64 'IANA,[Peacock]
|
744
784
|
application/vnd.paos.xml 'IANA,[Kemp]
|
@@ -764,6 +804,7 @@ application/vnd.pvi.ptid1 @pti,ptid 'IANA,[Lamb]
|
|
764
804
|
application/vnd.pwg-multiplexed 'IANA,RFC3391
|
765
805
|
application/vnd.pwg-xhtml-print+xml 'IANA,[Wright]
|
766
806
|
application/vnd.qualcomm.brew-app-res 'IANA,[Forrester]
|
807
|
+
application/vnd.Quark.QuarkXPress @qxd,qxt,qwd,qwt,qxl,qxb :8bit 'IANA,[Scheidler]
|
767
808
|
application/vnd.quobject-quoxdocument 'IANA,[Ludwig]
|
768
809
|
application/vnd.radisys.moml+xml 'IANA,RFC5707
|
769
810
|
application/vnd.radisys.msml+xml 'IANA,RFC5707
|
@@ -785,8 +826,10 @@ application/vnd.rapid 'IANA,[Szekely]
|
|
785
826
|
application/vnd.realvnc.bed 'IANA,[Reeves]
|
786
827
|
application/vnd.recordare.musicxml 'IANA,[Good]
|
787
828
|
application/vnd.recordare.musicxml+xml 'IANA,[Good]
|
829
|
+
application/vnd.RenLearn.rlprint 'IANA,[Wick]
|
788
830
|
application/vnd.rig.cryptonote 'IANA,[Jibiki]
|
789
831
|
application/vnd.route66.link66+xml 'IANA,[Kikstra]
|
832
|
+
application/vnd.rs-274x 'IANA,[Harding]
|
790
833
|
application/vnd.ruckus.download 'IANA,[Harris]
|
791
834
|
application/vnd.s3sms 'IANA,[Tarkkala]
|
792
835
|
application/vnd.sailingtracker.track 'IANA,[Vesalainen]
|
@@ -812,6 +855,8 @@ application/vnd.shana.informed.formdata 'IANA,[Selzler]
|
|
812
855
|
application/vnd.shana.informed.formtemplate 'IANA,[Selzler]
|
813
856
|
application/vnd.shana.informed.interchange 'IANA,[Selzler]
|
814
857
|
application/vnd.shana.informed.package 'IANA,[Selzler]
|
858
|
+
application/vnd.SimTech-MindMapper 'IANA,[Koh]
|
859
|
+
application/vnd.siren+json 'IANA,[Swiber]
|
815
860
|
application/vnd.smaf @mmf 'IANA,[Takahashi]
|
816
861
|
application/vnd.smart.notebook 'IANA,[Neitz]
|
817
862
|
application/vnd.smart.teacher 'IANA,[Boyle]
|
@@ -834,6 +879,10 @@ application/vnd.syncml+xml 'IANA,[OMA Data Synchronization Working Group]
|
|
834
879
|
application/vnd.syncml.dm+wbxml 'IANA,[OMA-DM Work Group]
|
835
880
|
application/vnd.syncml.dm+xml 'IANA,[Rao],[OMA-DM Work Group]
|
836
881
|
application/vnd.syncml.dm.notification 'IANA,[Thompson],[OMA-DM Work Group]
|
882
|
+
application/vnd.syncml.dmddf+wbxml 'IANA,[OMA-DM Work Group]
|
883
|
+
application/vnd.syncml.dmddf+xml 'IANA,[OMA-DM Work Group]
|
884
|
+
application/vnd.syncml.dmtnds+wbxml 'IANA,[OMA-DM Work Group]
|
885
|
+
application/vnd.syncml.dmtnds+xml 'IANA,[OMA-DM Work Group]
|
837
886
|
application/vnd.syncml.ds.notification 'IANA,[OMA Data Synchronization Working Group]
|
838
887
|
application/vnd.tao.intent-module-archive 'IANA,[Shelton]
|
839
888
|
application/vnd.tmobile-livetv 'IANA,[Helin]
|
@@ -941,3 +990,4 @@ application/xv+xml 'IANA,RFC4374
|
|
941
990
|
application/yang 'IANA,RFC6020
|
942
991
|
application/yin+xml 'IANA,RFC6020
|
943
992
|
application/zip @zip :base64 'IANA,[Lindner]
|
993
|
+
application/zlib 'IANA,RFC6713
|