mime-types-data 3.2015.1120
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +15 -0
- data/.hoerc +16 -0
- data/Code-of-Conduct.md +43 -0
- data/Contributing.md +156 -0
- data/History.md +296 -0
- data/Licence.md +25 -0
- data/Manifest.txt +20 -0
- data/README.md +61 -0
- data/Rakefile +77 -0
- data/data/mime-types.json +1 -0
- data/data/mime.content_type.column +1935 -0
- data/data/mime.docs.column +1935 -0
- data/data/mime.encoding.column +1935 -0
- data/data/mime.flags.column +1935 -0
- data/data/mime.friendly.column +1935 -0
- data/data/mime.pext.column +1935 -0
- data/data/mime.use_instead.column +1935 -0
- data/data/mime.xrefs.column +1935 -0
- data/lib/mime-types-data.rb +1 -0
- data/lib/mime/types/data.rb +19 -0
- metadata +203 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 8019c22df10fb74742b68ba3150dc999e05272fd
|
4
|
+
data.tar.gz: d080290bd6ff77e569f286f6b1e08fd6b45ceda7
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: aa2fd323ec7b07cd3319e8f585b1f1b7989dee7a1e970100c19861e3c9b3f1eb43b867d620decfcbe1ab09818ce69170431ffeab4fcd619c1c7752223ea8ccf1
|
7
|
+
data.tar.gz: 4cb89350012aac62e0d8ef810fcc2ad8f94f4c0790d2d22cfa65e5866f98e619aa46ec42194517fb49c52ce0883ea1929119c51f44cb46bc92f85aff11a05665
|
data/.gitignore
ADDED
data/.hoerc
ADDED
data/Code-of-Conduct.md
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
## Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, and in the interest of
|
4
|
+
fostering an open and welcoming community, we pledge to respect all people who
|
5
|
+
contribute through reporting issues, posting feature requests, updating
|
6
|
+
documentation, submitting pull requests or patches, and other activities.
|
7
|
+
|
8
|
+
We are committed to making participation in this project a harassment-free
|
9
|
+
experience for everyone, regardless of level of experience, gender, gender
|
10
|
+
identity and expression, sexual orientation, disability, personal appearance,
|
11
|
+
body size, race, ethnicity, age, religion, or nationality.
|
12
|
+
|
13
|
+
Examples of unacceptable behavior by participants include:
|
14
|
+
|
15
|
+
* The use of sexualized language or imagery
|
16
|
+
* Personal attacks
|
17
|
+
* Trolling or insulting/derogatory comments
|
18
|
+
* Public or private harassment
|
19
|
+
* Publishing other's private information, such as physical or electronic
|
20
|
+
addresses, without explicit permission
|
21
|
+
* Other unethical or unprofessional conduct.
|
22
|
+
|
23
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
24
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
25
|
+
that are not aligned to this Code of Conduct. By adopting this Code of Conduct,
|
26
|
+
project maintainers commit themselves to fairly and consistently applying these
|
27
|
+
principles to every aspect of managing this project. Project maintainers who do
|
28
|
+
not follow or enforce the Code of Conduct may be permanently removed from the
|
29
|
+
project team.
|
30
|
+
|
31
|
+
This code of conduct applies both within project spaces and in public spaces
|
32
|
+
when an individual is representing the project or its community.
|
33
|
+
|
34
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
35
|
+
reported by opening an issue or contacting one or more of the project
|
36
|
+
maintainers.
|
37
|
+
|
38
|
+
This Code of Conduct is adapted from the [Contributor Covenant][covenant],
|
39
|
+
version 1.2.0, available at
|
40
|
+
[http://contributor-covenant.org/version/1/2/0/][covenant 1.2.0].
|
41
|
+
|
42
|
+
[covenant]: http://contributor-covenant.org
|
43
|
+
[covenant 1.2.0]: http://contributor-covenant.org/version/1/2/0/
|
data/Contributing.md
ADDED
@@ -0,0 +1,156 @@
|
|
1
|
+
## Contributing
|
2
|
+
|
3
|
+
Contributions to mime-types-data is encouraged in any form: a bug report, new
|
4
|
+
MIME type defintions, or additional code to help manage the MIME types. As with
|
5
|
+
many of my projects, I have a few suggestions for improving the chance of
|
6
|
+
acceptance of your code contributions:
|
7
|
+
|
8
|
+
* The support files are written in Ruby and should remain in the coding style
|
9
|
+
that already exists, and I use hoe for releasing the mime-types-data RubyGem.
|
10
|
+
* Use a thoughtfully-named topic branch that contains your change. Rebase your
|
11
|
+
commits into logical chunks as necessary.
|
12
|
+
* Use [quality commit messages][qcm].
|
13
|
+
* Do not change the version number; when your patch is accepted and a release
|
14
|
+
is made, the version will be updated at that point.
|
15
|
+
* Submit a GitHub pull request with your changes.
|
16
|
+
* New or changed behaviours require new or updated documentation.
|
17
|
+
|
18
|
+
Although mime-types-data was extracted from the [Ruby mime-types][rmt] gem and
|
19
|
+
the support files are written in Ruby, the *target* of mime-types-data is any
|
20
|
+
implementation that wishes to use the data as a MIME types registry, so I am
|
21
|
+
particularly interested in tools that will create a mime-types-data package for
|
22
|
+
other languages.
|
23
|
+
|
24
|
+
### Adding or Modifying MIME Types
|
25
|
+
|
26
|
+
The Ruby mime-types gem loads its data from files encoded in the `data`
|
27
|
+
directory in this gem by loading `mime-types-data` and reading
|
28
|
+
MIME::Types::Data::PATH. These files are compiled files from the collection of
|
29
|
+
data in the `types` directory. Pull requests that include changes to these
|
30
|
+
files will require amendment to revert these files.
|
31
|
+
|
32
|
+
New or modified MIME types should be edited in the appropriate YAML file under
|
33
|
+
`type`. The format is as shown below for the `application/xml` MIME type
|
34
|
+
in `type-lists/application.yml`.
|
35
|
+
|
36
|
+
```yaml
|
37
|
+
- !ruby/object:MIME::Type
|
38
|
+
content-type: application/xml
|
39
|
+
encoding: 8bit
|
40
|
+
extensions:
|
41
|
+
- xml
|
42
|
+
- xsl
|
43
|
+
references:
|
44
|
+
- IANA
|
45
|
+
- RFC3023
|
46
|
+
xrefs: !ruby/hash:MIME::Types::Container
|
47
|
+
rfc:
|
48
|
+
- rfc3023
|
49
|
+
registered: true
|
50
|
+
```
|
51
|
+
|
52
|
+
There are other fields that can be added, matching the fields discussed in the
|
53
|
+
documentation for MIME::Type. Pull requests for MIME types should just contain
|
54
|
+
the changes to the YAML files for the new or modified MIME types; I will
|
55
|
+
convert the YAML files to JSON prior to a new release. I would rather not have
|
56
|
+
to verify that the JSON matches the YAML changes, which is why it is not
|
57
|
+
necessary to convert for the pull request.
|
58
|
+
|
59
|
+
If you are making a change for a private fork, use `rake convert:yaml:json` to
|
60
|
+
convert the YAML to JSON, or `rake convert:yaml:columnar` to convert it to the
|
61
|
+
new columnar format.
|
62
|
+
|
63
|
+
#### Updating Types from the IANA or Apache Lists
|
64
|
+
|
65
|
+
If you are maintaining a private fork and wish to update your copy of the MIME
|
66
|
+
types registry used by this gem, you can do this with the rake tasks:
|
67
|
+
|
68
|
+
$ rake mime:iana
|
69
|
+
$ rake mime:apache
|
70
|
+
|
71
|
+
### Test Dependencies
|
72
|
+
|
73
|
+
mime-types-data uses Ryan Davis’s {Hoe}[https://github.com/seattlerb/hoe] to
|
74
|
+
manage the release process, and it adds a number of rake tasks. You will mostly
|
75
|
+
be interested in:
|
76
|
+
|
77
|
+
$ rake
|
78
|
+
|
79
|
+
which runs the tests the same way that:
|
80
|
+
|
81
|
+
$ rake test
|
82
|
+
$ rake travis
|
83
|
+
|
84
|
+
will do.
|
85
|
+
|
86
|
+
To assist with the installation of the development dependencies for
|
87
|
+
mime-types-data, I have provided the simplest possible Gemfile pointing to the
|
88
|
+
(generated) `mime-types-data.gemspec` file. This will permit you to do:
|
89
|
+
|
90
|
+
$ bundle install
|
91
|
+
|
92
|
+
to get the development dependencies. If you aleady have `hoe` installed, you
|
93
|
+
can accomplish the same thing with:
|
94
|
+
|
95
|
+
$ rake newb
|
96
|
+
|
97
|
+
This task will install any missing dependencies, run the tests/specs, and
|
98
|
+
generate the RDoc.
|
99
|
+
|
100
|
+
You can run tests with code coverage analysis by running:
|
101
|
+
|
102
|
+
$ rake test:coverage
|
103
|
+
|
104
|
+
### Workflow
|
105
|
+
|
106
|
+
Here's the most direct way to get your work merged into the project:
|
107
|
+
|
108
|
+
* Fork the project.
|
109
|
+
* Clone down your fork (`git clone
|
110
|
+
git://github.com/<username>/mime-types-data.git`).
|
111
|
+
* Create a topic branch to contain your change (`git checkout -b
|
112
|
+
my\_awesome\_feature`).
|
113
|
+
* Hack away, add tests. Not necessarily in that order.
|
114
|
+
* Make sure everything still passes by running `rake`.
|
115
|
+
* If necessary, rebase your commits into logical chunks, without errors.
|
116
|
+
* Push the branch up (`git push origin my\_awesome\_feature`).
|
117
|
+
* Create a pull request against mime-types/mime-types-data and describe what
|
118
|
+
your change does and the why you think it should be merged.
|
119
|
+
|
120
|
+
### Contributors
|
121
|
+
|
122
|
+
* Austin Ziegler created mime-types.
|
123
|
+
|
124
|
+
Thanks to everyone else who has contributed to mime-types:
|
125
|
+
|
126
|
+
* Aaron Patterson
|
127
|
+
* Aggelos Avgerinos
|
128
|
+
* Andre Pankratz
|
129
|
+
* Andy Brody
|
130
|
+
* Arnaud Meuret
|
131
|
+
* Brandon Galbraith
|
132
|
+
* Chris Gat
|
133
|
+
* David Genord
|
134
|
+
* Eric Marden
|
135
|
+
* Garret Alfert
|
136
|
+
* Godfrey Chan
|
137
|
+
* Greg Brockman
|
138
|
+
* Hans de Graaff
|
139
|
+
* Henrik Hodne
|
140
|
+
* Jeremy Evans
|
141
|
+
* Juanito Fatas
|
142
|
+
* Łukasz Śliwa
|
143
|
+
* Keerthi Siva
|
144
|
+
* Ken Ip
|
145
|
+
* Martin d'Allens
|
146
|
+
* Mauricio Linhares
|
147
|
+
* nycvotes-dev
|
148
|
+
* Postmodern
|
149
|
+
* Richard Hirner
|
150
|
+
* Richard Hurt
|
151
|
+
* Richard Schneeman
|
152
|
+
* Tibor Szolár
|
153
|
+
* Todd Carrico
|
154
|
+
|
155
|
+
[qcm]: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
|
156
|
+
[rmt]: https://github.com/mime-types/ruby-mime-types/
|
data/History.md
ADDED
@@ -0,0 +1,296 @@
|
|
1
|
+
# MIME Types Changes by Version
|
2
|
+
|
3
|
+
## 3.2015.1120 / 2015-11-20
|
4
|
+
|
5
|
+
* Extracted from [ruby-mime-types][rmt].
|
6
|
+
* Added a [Code of Conduct][].
|
7
|
+
* The versioning has changed to be semantic on format plus date in two parts.
|
8
|
+
|
9
|
+
* All registry formats have been updated to remove deprecated data.
|
10
|
+
* The columnar format has been updated to store three boolean flags in a
|
11
|
+
single flags file.
|
12
|
+
|
13
|
+
* Updated the conversion and management utilities to work with
|
14
|
+
ruby-mime-types 3.x.
|
15
|
+
|
16
|
+
* Updated the IANA media registry entries as of release date:
|
17
|
+
|
18
|
+
* Updated metadata for application/scim+json, audio/G711-0, text/markdown.
|
19
|
+
|
20
|
+
* Added application/cdni, application/csvm+json, application/rfc+xml,
|
21
|
+
application/vnd.3gpp.access-transfer-events+xml,
|
22
|
+
application/vnd.3gpp.srvcc-ext+xml, application/vnd.3gpp.SRVCC-info+xml,
|
23
|
+
application/vnd.ms-windows.devicepairing,
|
24
|
+
application/vnd.ms-windows.wsd.oob, application/vnd.oxli.countgraph,
|
25
|
+
application/vnd.pagerduty+json, video/VP8.
|
26
|
+
|
27
|
+
## 2.6.2 / 2015-09-13
|
28
|
+
|
29
|
+
* Updated the IANA media registry entries as of release date:
|
30
|
+
|
31
|
+
* Updated metadata for application/cals-1840, application/index.obj,
|
32
|
+
application/ocsp-response, application/vnd.dtg.local.html,
|
33
|
+
application/vnd.pwg-multiplexed, audio/G7221, audio/opus.
|
34
|
+
|
35
|
+
* Added application/pkcs12, application/scim+json, multipart/form-data.
|
36
|
+
application/vnd.3gpp-prose+xml, application/vnd.3gpp-prose-pc3ch+xml,
|
37
|
+
application/vnd.3gpp.mid-call+xml,
|
38
|
+
application/vnd.3gpp-state-and-event-info+xml,
|
39
|
+
application.3gpp.ussd+xml, application/vnd.anki,
|
40
|
+
application/vnd.biopax.rdf+xml, application/vnd.drive+json,
|
41
|
+
application/vnd.firemonkeys.cloudcell,
|
42
|
+
application/vnd.hyperdrive+json, application/vnd.openblox.game+xml,
|
43
|
+
application/vnd.openblox.game-binary, application/vnd.uri-map,
|
44
|
+
audio/G711-0, image/vnd.mozilla.apng.
|
45
|
+
|
46
|
+
## 2.6 / 2015-05-25
|
47
|
+
|
48
|
+
* Steven Michael Thomas (@stevenmichaelthomas) added `woff2` as an extension
|
49
|
+
to application/font-woff,
|
50
|
+
[ruby-mime-types#99](https://github.com/mime-types/ruby-mime-types/pull/99).
|
51
|
+
* Updated the IANA media registry entries as of release date:
|
52
|
+
* Updated metadata for application/jose, application/jose+json,
|
53
|
+
application/jwk+json, application/jwk-set+json, application/jwt to
|
54
|
+
reflect the adoption of RFC7519.
|
55
|
+
* Added application/vnd.balsamiq.bmpr.
|
56
|
+
|
57
|
+
## 2.5 / 2015-04-25
|
58
|
+
|
59
|
+
* Updated the IANA media registry entries as of release date:
|
60
|
+
* Added MIME types: application/A2L, application/AML, application/ATFX,
|
61
|
+
application/ATXML, application/CDFX+XML, application/CEA,
|
62
|
+
application/DII, application/DIT, application/jose,
|
63
|
+
application/jose+json, application/json-seq, application/jwk+json,
|
64
|
+
application/jwk-set+json, application/jwt, application/LXF,
|
65
|
+
application/MF4, application/rdap+json,
|
66
|
+
application/vnd.apache.thrift.compact, vnd.apache.thrift.json,
|
67
|
+
application/vnd.citationstyles.style+xml, application/vnd.coffeescript,
|
68
|
+
application/vnd.enphase.envoy, application/vnd.fastcopy-disk-image,
|
69
|
+
application/vnd.gerber, application/vnd.gov.sk.e-form+xml,
|
70
|
+
application/vnd.gov.sk.e-form+zip,
|
71
|
+
application/vnd.gov.sk.xmldatacontainer+xml,
|
72
|
+
application/vnd.ims.imsccv1p1, application/vnd.ims.imsccv1p2,
|
73
|
+
application/vnd.ims.imsccv1p3, application/vnd.micro+json,
|
74
|
+
application/vnd.microsoft.portable-executable,
|
75
|
+
application/vnd.msa-disk-image, application/vnd.oracle.resource+json,
|
76
|
+
application/vnd.tmd.mediaflex.api+xml, audio/opus,
|
77
|
+
image/vnd.zbrush.pcx, text/csv-schema, text/markdown (marked as
|
78
|
+
TEMPORARY).
|
79
|
+
* Updated metadata for application/coap-group+json (RFC7390),
|
80
|
+
application/epub+zip (now registered), application/merge-patch+json
|
81
|
+
(RFC7396), application/smil, application/vnd.arastra.swi,
|
82
|
+
application/vnd.geocube+xml, application/vnd.gmx,
|
83
|
+
application/xhtml+xml, text/directory.
|
84
|
+
* Andy Brody (@ab) fixed a pair of embarrassing typos in text/csv and
|
85
|
+
text/tab-separated-values,
|
86
|
+
[ruby-mime-types#89](https://github.com/mime-types/ruby-mime-types/pull/89).
|
87
|
+
* Aggelos Avgerinos (@eavgerinos) added the unregistered MIME type
|
88
|
+
image/x-ms-bmp with the extension `bmp`,
|
89
|
+
[ruby-mime-types#90](https://github.com/mime-types/ruby-mime-types/pull/90).
|
90
|
+
|
91
|
+
## 2.4.2 / 2014-10-15
|
92
|
+
|
93
|
+
* Added application/vnd.ms-outlook as an unregistered MIME type with the
|
94
|
+
extension `msg`. Provided by @keerthisiv in
|
95
|
+
[ruby-mime-types#72](https://github.com/mime-types/ruby-mime-types/pull/72).
|
96
|
+
|
97
|
+
## 2.4.1 / 2014-10-07
|
98
|
+
|
99
|
+
* Changed the sort order of many of the extensions to restore behaviour from
|
100
|
+
mime-types 1.25.1.
|
101
|
+
* Added `friendly` MIME::Type descriptions where known.
|
102
|
+
* Added `reg`, `ps1`, and `vbs` extensions to application/x-msdos-program and
|
103
|
+
application/x-msdownload.
|
104
|
+
* Updated the IANA media registry entries as of release date.
|
105
|
+
* Several MIME types had updated metadata (application/alto-*, RFC7285;
|
106
|
+
application/calendar+json, RFC7265; application/http, RFC7230;
|
107
|
+
application/xml, RFC7303; application/xml-dtd, RFC7303;
|
108
|
+
application/xml-external-parsed-entity, RFC7303; audio/AMR-WB, RFC4867;
|
109
|
+
audio/aptx, RFC7310; message/http, RFC7230; multipart/byteranges,
|
110
|
+
RFC7233; text/xml, RFC7303; text/xml-external-parsed-entity, RFC7303)
|
111
|
+
* MIME::Type application/EDI-Consent was renamed to
|
112
|
+
application/EDI-consent.
|
113
|
+
* Obsoleted application/vnd.informix-visionary in favour of
|
114
|
+
application/vnd.visionary. Obsoleted
|
115
|
+
application/vnd.nokia.n-gage.symbian.install with no replacement.
|
116
|
+
* Added MIME types: application/ATF, application/coap-group+json,
|
117
|
+
application/DCD, application/merge-patch+json, application/scaip+xml,
|
118
|
+
application/vnd.apache.thrift.binary, application/vnd.artsquare,
|
119
|
+
application/vnd.doremir.scorecloud-binary-document,
|
120
|
+
application/vnd.dzr, application/vnd.maxmind.maxmind-db,
|
121
|
+
application/vnd.ntt-local.ogw_remote-access, application/xml-patch+xml,
|
122
|
+
image/vnd.tencent.tap.
|
123
|
+
|
124
|
+
## 2.3 / 2014-05-23
|
125
|
+
|
126
|
+
* Updated the IANA media registry entries as of release date.
|
127
|
+
* Several MIME types had additional metadata added on the most recent
|
128
|
+
import.
|
129
|
+
* MIME::Type application/pidfxml was renamed to application/pidf+xml.
|
130
|
+
* Added MIME types: application/3gpdash-qoe-report+xml,
|
131
|
+
application/alto-costmap+json, application/alto-costmapfilter+json,
|
132
|
+
application/alto-directory+json, application/alto-endpointcost+json,
|
133
|
+
application/alto-endpointcostparams+json,
|
134
|
+
application/alto-endpointprop+json,
|
135
|
+
application/alto-endpointpropparams+json, application/alto-error+json,
|
136
|
+
application/alto-networkmap+json,
|
137
|
+
application/alto-networkmapfilter+json, application/calendar+json,
|
138
|
+
application/vnd.debian.binary-package, application/vnd.geo+json,
|
139
|
+
application/vnd.ims.lis.v2.result+json,
|
140
|
+
application/vnd.ims.lti.v2.toolconsumerprofile+json,
|
141
|
+
application/vnd.ims.lti.v2.toolproxy+json,
|
142
|
+
application/vnd.ims.lti.v2.toolproxy.id+json,
|
143
|
+
application/vnd.ims.lti.v2.toolsettings+json,
|
144
|
+
application/vnd.ims.lti.v2.toolsettings.simple+json,
|
145
|
+
application/vnd.mason+json, application/vnd.miele+json,
|
146
|
+
application/vnd.ms-3mfdocument, application/vnd.panoply,
|
147
|
+
application/vnd.valve.source.material, application/vnd.yaoweme,
|
148
|
+
audio/aptx, image/vnd.valve.source.texture, model/vnd.opengex,
|
149
|
+
model/vnd.valve.source.compiled-map, model/x3d+fastinfoset,
|
150
|
+
text/cache-manifest
|
151
|
+
|
152
|
+
## 2.2 / 2014-03-14
|
153
|
+
* Added <tt>.sj</tt> to `application/javascript` as provided by Brandon
|
154
|
+
Galbraith (@brandongalbraith) in
|
155
|
+
[ruby-mime-types#58](https://github.com/mime-types/ruby-mime-types/pull/58).
|
156
|
+
* Marked application/excel and application/x-excel as obsolete in favour of
|
157
|
+
application/vnd.ms-excel per
|
158
|
+
[ruby-mime-types#60](https://github.com/mime-types/ruby-mime-types/pull/60).
|
159
|
+
* Merged duplicate MIME types into the registered MIME type. The only
|
160
|
+
difference between the MIME types was capitalization; the MIME type
|
161
|
+
registry is case-preserving.
|
162
|
+
* Affected MIME types: application/vnd.3M.Post-it-Notes,
|
163
|
+
application/vnd.FloGraphIt, application/vnd.HandHeld-Entertainment+xml,
|
164
|
+
application/vnd.hp-HPGL, application/vnd.hp-PCL,
|
165
|
+
application/vnd.hp-PCLXL, application/vnd.ibm.MiniPay,
|
166
|
+
application/vnd.Kinar, application/vnd.MFER,
|
167
|
+
application/vnd.Mobius.DAF, application/vnd.Mobius.DIS,
|
168
|
+
application/vnd.Mobius.MBK, application/vnd.Mobius.MSL,
|
169
|
+
application/vnd.Mobius.MQY, application/vnd.Mobius.PLC,
|
170
|
+
application/vnd.Mobius.TXF,
|
171
|
+
application/vnd.ms-excel.addin.macroEnabled.12,
|
172
|
+
application/vnd.ms-excel.sheet.binary.macroEnabled.12,
|
173
|
+
application/vnd.ms-excel.sheet.macroEnabled.12,
|
174
|
+
application/vnd.ms-excel.template.macroEnabled.12,
|
175
|
+
application/vnd.ms-powerpoint.addin.macroEnabled.12,
|
176
|
+
application/vnd.ms-powerpoint.presentation.macroEnabled.12,
|
177
|
+
application/vnd.ms-powerpoint.slide.macroEnabled.12,
|
178
|
+
application/vnd.ms-powerpoint.slideshow.macroEnabled.12,
|
179
|
+
application/vnd.ms-powerpoint.template.macroEnabled.12,
|
180
|
+
application/vnd.ms-word.document.macroEnabled.12,
|
181
|
+
application/vnd.ms-word.template.macroEnabled.12,
|
182
|
+
application/vnd.novadigm.EDM, application/vnd.novadigm.EDX,
|
183
|
+
application/vnd.novadigm.EXT, application/vnd.Quark.QuarkXPress,
|
184
|
+
application/vnd.SimTech-MindMapper, audio/AMR-WB, video/H261,
|
185
|
+
video/H263, video/H264, video/JPEG, video/MJ2.
|
186
|
+
|
187
|
+
* Updated the IANA media registry entries as of release date.
|
188
|
+
* Registered type person names have been updated from surname only to
|
189
|
+
full name.
|
190
|
+
* Several types had updated RFC or draft RFC references.
|
191
|
+
* Added application/bacnet-xdd+zip, application/cms,
|
192
|
+
application/load-control+xml, application/PDX, application/ttml+xml,
|
193
|
+
application/vnd.collection.doc+json,
|
194
|
+
application/vnd.iptc.g2.catalogitem+xml, application/vnd.pcos,
|
195
|
+
text/parameters, text/vnd.a, video/iso.segment
|
196
|
+
|
197
|
+
## 2.1 / 2014-01-25
|
198
|
+
|
199
|
+
* The IANA media type registry format changed, resulting in updates to most
|
200
|
+
of the 1,427 registered MIME types.
|
201
|
+
* Many registered MIME types have had some metadata updates due to the
|
202
|
+
change in the IANA registry format.
|
203
|
+
* MIME types having a publicly available registry application now
|
204
|
+
include a link to that file in references.
|
205
|
+
* Added `xrefs` data as discovered (see the API changes noted above).
|
206
|
+
* The Apache mime types configuration has been added to track additional
|
207
|
+
common but unregistered MIME types and known extensions for those MIME
|
208
|
+
types. This has affected many of the available MIME types.
|
209
|
+
* Added newly registered MIME types:
|
210
|
+
* application/emotionml+xml, application/ODX, application/prs.hpub+zip,
|
211
|
+
application/vcard+json, application/vnd.bekitzur-stech+json,
|
212
|
+
application/vnd.etsi.timestamp-token,
|
213
|
+
application/vnd.oma.cab-feature-handler+xml,
|
214
|
+
application/vnd.openeye.oeb, application/vnd.tcpdump.pcap,
|
215
|
+
audio/amr-wb, model/x3d+xml, model/x3d-vrml
|
216
|
+
* Added 180 unregistered MIME types from the Apache list:
|
217
|
+
* application/applixware, application/cu-seeme, application/docbook+xml,
|
218
|
+
application/gml+xml, application/gpx+xml, application/gxf,
|
219
|
+
application/java-archive, application/java-serialized-object,
|
220
|
+
application/java-vm, application/jsonml+json, application/metalink+xml,
|
221
|
+
application/omdoc+xml, application/onenote, application/pics-rules,
|
222
|
+
application/rsd+xml, application/ssdl+xml,
|
223
|
+
application/vnd.3m.post-it-notes, application/vnd.amazon.ebook,
|
224
|
+
application/vnd.anser-web-funds-transfer-initiation,
|
225
|
+
application/vnd.curl.car, application/vnd.curl.pcurl,
|
226
|
+
application/vnd.dolby.mlp, application/vnd.ds-keypoint,
|
227
|
+
application/vnd.flographit, application/vnd.handheld-entertainment+xml,
|
228
|
+
application/vnd.hp-hpgl, application/vnd.hp-pcl,
|
229
|
+
application/vnd.hp-pclxl, application/vnd.ibm.minipay,
|
230
|
+
application/vnd.kinar, application/vnd.mfer,
|
231
|
+
application/vnd.mobius.daf, application/vnd.mobius.dis,
|
232
|
+
application/vnd.mobius.mbk, application/vnd.mobius.mqy,
|
233
|
+
application/vnd.mobius.msl, application/vnd.mobius.plc,
|
234
|
+
application/vnd.mobius.txf,
|
235
|
+
application/vnd.ms-excel.addin.macroenabled.12,
|
236
|
+
application/vnd.ms-excel.sheet.binary.macroenabled.12,
|
237
|
+
application/vnd.ms-excel.sheet.macroenabled.12,
|
238
|
+
application/vnd.ms-excel.template.macroenabled.12,
|
239
|
+
application/vnd.ms-pki.seccat, application/vnd.ms-pki.stl,
|
240
|
+
application/vnd.ms-powerpoint.addin.macroenabled.12,
|
241
|
+
application/vnd.ms-powerpoint.presentation.macroenabled.12,
|
242
|
+
application/vnd.ms-powerpoint.slide.macroenabled.12,
|
243
|
+
application/vnd.ms-powerpoint.slideshow.macroenabled.12,
|
244
|
+
application/vnd.ms-powerpoint.template.macroenabled.12,
|
245
|
+
application/vnd.ms-word.document.macroenabled.12,
|
246
|
+
application/vnd.ms-word.template.macroenabled.12,
|
247
|
+
application/vnd.novadigm.edm, application/vnd.novadigm.edx,
|
248
|
+
application/vnd.novadigm.ext, application/vnd.quark.quarkxpress,
|
249
|
+
application/vnd.rim.cod, application/vnd.rn-realmedia-vbr,
|
250
|
+
application/vnd.simtech-mindmapper, application/vnd.symbian.install,
|
251
|
+
application/winhlp, application/x-abiword,
|
252
|
+
application/x-ace-compressed, application/x-authorware-bin,
|
253
|
+
application/x-authorware-map, application/x-authorware-seg,
|
254
|
+
application/x-bittorrent, application/x-blorb, application/x-bzip,
|
255
|
+
application/x-cbr, application/x-cfs-compressed, application/x-chat,
|
256
|
+
application/x-conference, application/x-dgc-compressed,
|
257
|
+
application/x-doom, application/x-dtbncx+xml, application/x-dtbook+xml,
|
258
|
+
application/x-dtbresource+xml, application/x-envoy, application/x-eva,
|
259
|
+
application/x-font-bdf, application/x-font-ghostscript,
|
260
|
+
application/x-font-linux-psf, application/x-font-otf,
|
261
|
+
application/x-font-pcf, application/x-font-snf, application/x-font-ttf,
|
262
|
+
application/x-font-type1, application/x-freearc,
|
263
|
+
application/x-gca-compressed, application/x-glulx,
|
264
|
+
application/x-gnumeric, application/x-gramps-xml,
|
265
|
+
application/x-install-instructions, application/x-iso9660-image,
|
266
|
+
application/x-lzh-compressed, application/x-mie,
|
267
|
+
application/x-ms-application, application/x-ms-shortcut,
|
268
|
+
application/x-ms-xbap, application/x-msbinder,
|
269
|
+
application/x-mscardfile, application/x-msclip,
|
270
|
+
application/x-msmediaview, application/x-msmetafile,
|
271
|
+
application/x-msmoney, application/x-mspublisher,
|
272
|
+
application/x-msschedule, application/x-msterminal,
|
273
|
+
application/x-mswrite, application/x-nzb, application/x-pkcs12,
|
274
|
+
application/x-pkcs7-certificates, application/x-pkcs7-certreqresp,
|
275
|
+
application/x-research-info-systems, application/x-silverlight-app,
|
276
|
+
application/x-sql, application/x-stuffitx, application/x-subrip,
|
277
|
+
application/x-t3vm-image, application/x-tads, application/x-tex-tfm,
|
278
|
+
application/x-tgif, application/x-xfig, application/x-xliff+xml,
|
279
|
+
application/x-xz, application/x-zmachine, application/xaml+xml,
|
280
|
+
application/xproc+xml, application/xspf+xml, audio/adpcm, audio/amr-wb,
|
281
|
+
audio/AMR-WB, audio/midi, audio/s3m, audio/silk, audio/x-caf,
|
282
|
+
audio/x-flac, audio/x-matroska, audio/x-mpegurl, audio/xm,
|
283
|
+
chemical/x-cdx, chemical/x-cif, chemical/x-cmdf, chemical/x-cml,
|
284
|
+
chemical/x-csml, image/sgi, image/vnd.ms-photo, image/x-3ds,
|
285
|
+
image/x-cmx, image/x-freehand, image/x-icon, image/x-mrsid-image,
|
286
|
+
image/x-pcx, image/x-tga, model/x3d+binary, model/x3d+vrml, text/plain,
|
287
|
+
text/vnd.curl.dcurl, text/vnd.curl.mcurl, text/vnd.curl.scurl,
|
288
|
+
text/x-asm, text/x-c, text/x-fortran, text/x-java-source, text/x-nfo,
|
289
|
+
text/x-opml, text/x-pascal, text/x-sfv, text/x-uuencode, video/h261,
|
290
|
+
video/h263, video/h264, video/jpeg, video/jpm, video/mj2, video/x-f4v,
|
291
|
+
video/x-m4v, video/x-mng, video/x-ms-vob, video/x-smv
|
292
|
+
* Merged the non-standard VMS platform text/plain with the standard
|
293
|
+
text/plain.
|
294
|
+
|
295
|
+
[rmt]: https://github.com/mime-types/ruby-mime-types
|
296
|
+
[Code of Conduct]: Code-of-Conduct.md
|