mime-types-data 3.2019.1009 → 3.2020.0425
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Code-of-Conduct.md +10 -10
- data/Contributing.md +60 -60
- data/History.md +356 -333
- data/Licence.md +1 -1
- data/README.md +27 -27
- data/data/mime-types.json +1 -1
- data/data/mime.content_type.column +62 -1
- data/data/mime.docs.column +61 -0
- data/data/mime.encoding.column +61 -0
- data/data/mime.flags.column +62 -1
- data/data/mime.friendly.column +61 -0
- data/data/mime.pext.column +61 -0
- data/data/mime.use_instead.column +61 -0
- data/data/mime.xrefs.column +70 -9
- data/lib/mime/types/data.rb +1 -1
- data/types/application.yaml +342 -10
- data/types/audio.yaml +34 -0
- data/types/image.yaml +136 -0
- data/types/model.yaml +20 -0
- data/types/text.yaml +11 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5eedf9c35efa32e88cbe6d24befdc3abcb2cfeae6e95703be66c18f32486e930
|
|
4
|
+
data.tar.gz: ccae9e61b6aff790f0f5643ff16d36972966193a3f9243c49ff1164f877fa493
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bfe69b9540aeb57f7cd5677d5e48b27c25ee22ae86e13d26f63754188e0e882e2ec9a0d72b844a0c27b6d454c745af455849837fa62a6aadfe3729944e8d2654
|
|
7
|
+
data.tar.gz: fd53274e636142e12a51e09d732c91f3159527c9daf0cd77f4a4f8bc6b0562df9ec6974f35f511c4698e265c967a43178ebd99026e59dd3f35b53f40453c3c87
|
data/Code-of-Conduct.md
CHANGED
|
@@ -14,21 +14,21 @@ identity and orientation.
|
|
|
14
14
|
Examples of behavior that contributes to creating a positive environment
|
|
15
15
|
include:
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
17
|
+
- Using welcoming and inclusive language
|
|
18
|
+
- Being respectful of differing viewpoints and experiences
|
|
19
|
+
- Gracefully accepting constructive criticism
|
|
20
|
+
- Focusing on what is best for the community
|
|
21
|
+
- Showing empathy towards other community members
|
|
22
22
|
|
|
23
23
|
Examples of unacceptable behavior by participants include:
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
- The use of sexualized language or imagery and unwelcome sexual attention or
|
|
26
26
|
advances
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
27
|
+
- Trolling, insulting/derogatory comments, and personal or political attacks
|
|
28
|
+
- Public or private harassment
|
|
29
|
+
- Publishing others' private information, such as a physical or electronic
|
|
30
30
|
address, without explicit permission
|
|
31
|
-
|
|
31
|
+
- Other conduct which could reasonably be considered inappropriate in a
|
|
32
32
|
professional setting
|
|
33
33
|
|
|
34
34
|
## Our Responsibilities
|
data/Contributing.md
CHANGED
|
@@ -5,18 +5,18 @@ MIME type defintions, or additional code to help manage the MIME types. As with
|
|
|
5
5
|
many of my projects, I have a few suggestions for improving the chance of
|
|
6
6
|
acceptance of your code contributions:
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
- The support files are written in Ruby and should remain in the coding style
|
|
9
9
|
that already exists, and I use hoe for releasing the mime-types-data RubyGem.
|
|
10
|
-
|
|
10
|
+
- Use a thoughtfully-named topic branch that contains your change. Rebase your
|
|
11
11
|
commits into logical chunks as necessary.
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
- Use [quality commit messages][qcm].
|
|
13
|
+
- Do not change the version number; when your patch is accepted and a release
|
|
14
14
|
is made, the version will be updated at that point.
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
- Submit a GitHub pull request with your changes.
|
|
16
|
+
- New or changed behaviours require new or updated documentation.
|
|
17
17
|
|
|
18
18
|
Although mime-types-data was extracted from the [Ruby mime-types][rmt] gem and
|
|
19
|
-
the support files are written in Ruby, the
|
|
19
|
+
the support files are written in Ruby, the _target_ of mime-types-data is any
|
|
20
20
|
implementation that wishes to use the data as a MIME types registry, so I am
|
|
21
21
|
particularly interested in tools that will create a mime-types-data package for
|
|
22
22
|
other languages.
|
|
@@ -34,19 +34,19 @@ New or modified MIME types should be edited in the appropriate YAML file under
|
|
|
34
34
|
in `types/application.yml`.
|
|
35
35
|
|
|
36
36
|
```yaml
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
37
|
+
- !ruby/object:MIME::Type
|
|
38
|
+
content-type: application/xml
|
|
39
|
+
encoding: 8bit
|
|
40
|
+
extensions:
|
|
41
41
|
- xml
|
|
42
42
|
- xsl
|
|
43
|
-
|
|
43
|
+
references:
|
|
44
44
|
- IANA
|
|
45
45
|
- RFC3023
|
|
46
|
-
|
|
47
|
-
|
|
46
|
+
xrefs: !ruby/hash:MIME::Types::Container
|
|
47
|
+
rfc:
|
|
48
48
|
- rfc3023
|
|
49
|
-
|
|
49
|
+
registered: true
|
|
50
50
|
```
|
|
51
51
|
|
|
52
52
|
There are other fields that can be added, matching the fields discussed in the
|
|
@@ -105,58 +105,58 @@ You can run tests with code coverage analysis by running:
|
|
|
105
105
|
|
|
106
106
|
Here's the most direct way to get your work merged into the project:
|
|
107
107
|
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
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
|
|
108
|
+
- Fork the project.
|
|
109
|
+
- Clone down your fork (`git clone git://github.com/<username>/mime-types-data.git`).
|
|
110
|
+
- Create a topic branch to contain your change (`git checkout -b my\_awesome\_feature`).
|
|
111
|
+
- Hack away, add tests. Not necessarily in that order.
|
|
112
|
+
- Make sure everything still passes by running `rake`.
|
|
113
|
+
- If necessary, rebase your commits into logical chunks, without errors.
|
|
114
|
+
- Push the branch up (`git push origin my\_awesome\_feature`).
|
|
115
|
+
- Create a pull request against mime-types/mime-types-data and describe what
|
|
118
116
|
your change does and the why you think it should be merged.
|
|
119
117
|
|
|
120
118
|
### Contributors
|
|
121
119
|
|
|
122
|
-
|
|
120
|
+
- Austin Ziegler created mime-types.
|
|
123
121
|
|
|
124
122
|
Thanks to everyone else who has contributed to mime-types:
|
|
125
123
|
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
124
|
+
- Aaron Patterson
|
|
125
|
+
- Aggelos Avgerinos
|
|
126
|
+
- Alessio Parma
|
|
127
|
+
- Andre Pankratz
|
|
128
|
+
- Andrey Eremin
|
|
129
|
+
- Andy Brody
|
|
130
|
+
- Arnaud Meuret
|
|
131
|
+
- Bradley Meck
|
|
132
|
+
- Brandon Galbraith
|
|
133
|
+
- Chris Gat
|
|
134
|
+
- David Genord
|
|
135
|
+
- Eric Marden
|
|
136
|
+
- Garret Alfert
|
|
137
|
+
- Godfrey Chan
|
|
138
|
+
- Greg Brockman
|
|
139
|
+
- Hans de Graaff
|
|
140
|
+
- Henrik Hodne
|
|
141
|
+
- Jeremy Evans
|
|
142
|
+
- John Gardner
|
|
143
|
+
- Juanito Fatas
|
|
144
|
+
- Łukasz Śliwa
|
|
145
|
+
- Keerthi Siva
|
|
146
|
+
- Ken Ip
|
|
147
|
+
- Martin d'Allens
|
|
148
|
+
- Mauricio Linhares
|
|
149
|
+
- nycvotes-dev
|
|
150
|
+
- Postmodern
|
|
151
|
+
- Richard Hirner
|
|
152
|
+
- Richard Hurt
|
|
153
|
+
- Richard Schneeman
|
|
154
|
+
- Sergio Baptista
|
|
155
|
+
- Tao Guo
|
|
156
|
+
- Thomas Leese
|
|
157
|
+
- Tibor Szolár
|
|
158
|
+
- Todd Carrico
|
|
159
|
+
- Yoren Brondsema
|
|
160
160
|
|
|
161
161
|
[qcm]: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
|
|
162
162
|
[rmt]: https://github.com/mime-types/ruby-mime-types/
|
data/History.md
CHANGED
|
@@ -1,397 +1,414 @@
|
|
|
1
1
|
# MIME Types Changes by Version
|
|
2
2
|
|
|
3
|
+
## 3.2020.04.25 / 2020-04-25
|
|
4
|
+
|
|
5
|
+
- Updated the IANA media registry entires as of release date.
|
|
6
|
+
|
|
7
|
+
- Added several RAW image types based on data from GNOME RAW Thumbnailer.
|
|
8
|
+
[#33][] fixing [#32][].
|
|
9
|
+
|
|
10
|
+
- Added `audio/wav`. [#31][].
|
|
11
|
+
|
|
12
|
+
- Added a type for Smarttech notebook files. [#30][].
|
|
13
|
+
|
|
14
|
+
- Added an alias for audio/m4a files. [#29][].
|
|
15
|
+
|
|
16
|
+
- Added application/x-ms-dos-executable. [#28][].
|
|
17
|
+
|
|
3
18
|
## 3.2019.10.09 / 2019-10-09
|
|
4
19
|
|
|
5
|
-
|
|
20
|
+
- Updated the IANA media registry entries as of release date.
|
|
6
21
|
|
|
7
|
-
|
|
8
|
-
|
|
22
|
+
- Reordered the `.ai` extension so that it is not the preferred extension for
|
|
23
|
+
`application/pdf` [#24][].
|
|
9
24
|
|
|
10
25
|
## 3.2019.0904 / 2019-09-04
|
|
11
26
|
|
|
12
|
-
|
|
27
|
+
- Updated the IANA media registry entries as of release date.
|
|
13
28
|
|
|
14
|
-
|
|
15
|
-
|
|
29
|
+
- Moved the `.ai` extension from `application/postscript` to `application/pdf`.
|
|
30
|
+
[#23][] fixing [#22][].
|
|
16
31
|
|
|
17
32
|
## 3.2019.0331 / 2019-03-31
|
|
18
33
|
|
|
19
|
-
|
|
34
|
+
- Updated the IANA media registry entries as of release date.
|
|
20
35
|
|
|
21
|
-
|
|
36
|
+
- Added support for `application/wasm` with extension `.wasm`. [#21][]
|
|
22
37
|
|
|
23
|
-
|
|
38
|
+
- Fixed `application/ecmascript` extensions. [#20][]
|
|
24
39
|
|
|
25
40
|
## 3.2018.0812 / 2018-08-12
|
|
26
41
|
|
|
27
|
-
|
|
42
|
+
- Added `.xsd` extension to `text/xml`. [#10][]
|
|
28
43
|
|
|
29
|
-
|
|
30
|
-
|
|
44
|
+
- Added `.js` and `.mjs` extensions to `text/ecmascript` and
|
|
45
|
+
`text/javascript`. [#11][]
|
|
31
46
|
|
|
32
|
-
|
|
47
|
+
- Added `.ipa` extension to `application/octet-stream`. [#12][]
|
|
33
48
|
|
|
34
|
-
|
|
35
|
-
|
|
49
|
+
- Moved extensions `.markdown` and `.md` and added `.mkd` extension to
|
|
50
|
+
`text/markdown`. [#13][]
|
|
36
51
|
|
|
37
|
-
|
|
38
|
-
|
|
52
|
+
- Because of a bug found with mime-types 3 before 3.2.1, this version
|
|
53
|
+
requires mime-types 3.1 or later to manage data.
|
|
39
54
|
|
|
40
|
-
|
|
41
|
-
|
|
55
|
+
- Updated the IANA media registry entries as of release date. The biggest
|
|
56
|
+
major change here is the addition of the `font/` top-level media type.
|
|
42
57
|
|
|
43
|
-
|
|
44
|
-
|
|
58
|
+
- MIME type changes not introduced by pull requests will no longer be
|
|
59
|
+
individually tracked.
|
|
45
60
|
|
|
46
|
-
|
|
47
|
-
|
|
61
|
+
- Clarified that the YAML editable format is not shipped with the Ruby gem
|
|
62
|
+
for size considerations.
|
|
48
63
|
|
|
49
64
|
## 3.2016.0521 / 2016-05-21
|
|
50
65
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
66
|
+
- Updated the known extension list for application/octet-stream and
|
|
67
|
+
application/pgp-encrypted to include gpg as an extension. Fixes
|
|
68
|
+
[#3](https://github.com/mime-types/mime-types-data/pull/3) by Tao Guo
|
|
69
|
+
(@taoza).
|
|
70
|
+
- Updated the IANA media registry entries as of release date:
|
|
71
|
+
|
|
72
|
+
- Updated metadata for application/EmergencyCallData.Comment+xml,
|
|
73
|
+
application/EmergencyCallData.DeviceInfo+xml,
|
|
74
|
+
application/EmergencyCallData.ProviderInfo+xml,
|
|
75
|
+
application/EmergencyCallData.ServiceInfo+xml,
|
|
76
|
+
application/EmergencyCallData.SubscriberInfo+xml,
|
|
77
|
+
application/ogg, application/problem+json, application/problem+xml,
|
|
78
|
+
audio/ogg, text/markdown, video/H265, video/ogg.
|
|
79
|
+
- Added application/efi, application/vnd.3gpp.sms+xml,
|
|
80
|
+
application/vnd.3lightssoftware.imagescal,
|
|
81
|
+
application/vnd.coreos.ignition+json, application/vnd.oma.lwm2m+json,
|
|
82
|
+
application/vnd.onepager, application/vnd.quarantainenet,
|
|
83
|
+
application/vnd.vel+json, image/emf, image/wmf, text/prs.prop.logic.
|
|
84
|
+
- image/bmp has a draft RFC which would make it official; it has been
|
|
85
|
+
finally been registered. As such, this version _reverses_ the
|
|
86
|
+
use-instead relationship of image/bmp and image/x-bmp.
|
|
87
|
+
|
|
88
|
+
- This version requires mime-types 3.1 or later to manage data because of an
|
|
89
|
+
issue with JSON data encoding for the `xrefs` field.
|
|
75
90
|
|
|
76
91
|
## 3.2016.0221 / 2016-02-21
|
|
77
92
|
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
93
|
+
- Updated the known extensions list for audio/mp4.
|
|
94
|
+
- Updated the IANA media registry entries as of release date:
|
|
95
|
+
|
|
96
|
+
- Updated metadata for 3GPP-defined types (there are many),
|
|
97
|
+
application/cdni, and application/rfc+xml.
|
|
98
|
+
- Added application/EmergencyCallData.Comment+xml,
|
|
99
|
+
application/EmergencyCallData.DeviceInfo+xml,
|
|
100
|
+
application/EmergencyCallData.ProviderInfo+xml,
|
|
101
|
+
application/EmergencyCallData.ServiceInfo+xml,
|
|
102
|
+
application/ppsp-tracker+json, application/problem+json,
|
|
103
|
+
application/problem+xml, application/vnd.filmit.zfc,
|
|
104
|
+
application/vnd.hdt, application/vnd.mapbox-vector-tile,
|
|
105
|
+
application/vnd.ms-PrintDeviceCapabilities+xml,
|
|
106
|
+
application/vnd.ms-PrintSchemaTicket+xml,
|
|
107
|
+
application/vnd.ms-windows.nwprinting.oob, application/vnd.tml,
|
|
108
|
+
model/vnd.rosette.annotated-data-model, and video/H265.
|
|
109
|
+
|
|
110
|
+
- Updated to [Contributor Covenant 1.4][code of conduct].
|
|
111
|
+
- Shift the support code in this repository to be developed with Ruby 2.3.
|
|
112
|
+
This involves:
|
|
113
|
+
|
|
114
|
+
- Adding `frozen_string_literal: true` to all Ruby files.
|
|
115
|
+
- Applied some recommended readability and performance suggestions from
|
|
116
|
+
Rubocop. Ignored some style recommendations, too.
|
|
117
|
+
- Replaced some cases of `foo.bar rescue nil` with `foo&.bar`.
|
|
103
118
|
|
|
104
119
|
## 3.2015.1120 / 2015-11-20
|
|
105
120
|
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
121
|
+
- Extracted from [ruby-mime-types][rmt].
|
|
122
|
+
- Added a [Code of Conduct][].
|
|
123
|
+
- The versioning has changed to be semantic on format plus date in two parts.
|
|
109
124
|
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
125
|
+
- All registry formats have been updated to remove deprecated data.
|
|
126
|
+
- The columnar format has been updated to store three boolean flags in a
|
|
127
|
+
single flags file.
|
|
113
128
|
|
|
114
|
-
|
|
115
|
-
|
|
129
|
+
- Updated the conversion and management utilities to work with
|
|
130
|
+
ruby-mime-types 3.x.
|
|
116
131
|
|
|
117
|
-
|
|
132
|
+
- Updated the IANA media registry entries as of release date:
|
|
118
133
|
|
|
119
|
-
|
|
134
|
+
- Updated metadata for application/scim+json, audio/G711-0, text/markdown.
|
|
120
135
|
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
136
|
+
- Added application/cdni, application/csvm+json, application/rfc+xml,
|
|
137
|
+
application/vnd.3gpp.access-transfer-events+xml,
|
|
138
|
+
application/vnd.3gpp.srvcc-ext+xml, application/vnd.3gpp.SRVCC-info+xml,
|
|
139
|
+
application/vnd.ms-windows.devicepairing,
|
|
140
|
+
application/vnd.ms-windows.wsd.oob, application/vnd.oxli.countgraph,
|
|
141
|
+
application/vnd.pagerduty+json, video/VP8.
|
|
127
142
|
|
|
128
143
|
## 2.6.2 / 2015-09-13
|
|
129
144
|
|
|
130
|
-
|
|
145
|
+
- Updated the IANA media registry entries as of release date:
|
|
131
146
|
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
147
|
+
- Updated metadata for application/cals-1840, application/index.obj,
|
|
148
|
+
application/ocsp-response, application/vnd.dtg.local.html,
|
|
149
|
+
application/vnd.pwg-multiplexed, audio/G7221, audio/opus.
|
|
135
150
|
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
151
|
+
- Added application/pkcs12, application/scim+json, multipart/form-data.
|
|
152
|
+
application/vnd.3gpp-prose+xml, application/vnd.3gpp-prose-pc3ch+xml,
|
|
153
|
+
application/vnd.3gpp.mid-call+xml,
|
|
154
|
+
application/vnd.3gpp-state-and-event-info+xml,
|
|
155
|
+
application.3gpp.ussd+xml, application/vnd.anki,
|
|
156
|
+
application/vnd.biopax.rdf+xml, application/vnd.drive+json,
|
|
157
|
+
application/vnd.firemonkeys.cloudcell,
|
|
158
|
+
application/vnd.hyperdrive+json, application/vnd.openblox.game+xml,
|
|
159
|
+
application/vnd.openblox.game-binary, application/vnd.uri-map,
|
|
160
|
+
audio/G711-0, image/vnd.mozilla.apng.
|
|
146
161
|
|
|
147
162
|
## 2.6 / 2015-05-25
|
|
148
163
|
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
164
|
+
- Steven Michael Thomas (@stevenmichaelthomas) added `woff2` as an extension
|
|
165
|
+
to application/font-woff,
|
|
166
|
+
[ruby-mime-types#99](https://github.com/mime-types/ruby-mime-types/pull/99).
|
|
167
|
+
- Updated the IANA media registry entries as of release date:
|
|
168
|
+
- Updated metadata for application/jose, application/jose+json,
|
|
169
|
+
application/jwk+json, application/jwk-set+json, application/jwt to
|
|
170
|
+
reflect the adoption of RFC7519.
|
|
171
|
+
- Added application/vnd.balsamiq.bmpr.
|
|
157
172
|
|
|
158
173
|
## 2.5 / 2015-04-25
|
|
159
174
|
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
175
|
+
- Updated the IANA media registry entries as of release date:
|
|
176
|
+
- Added MIME types: application/A2L, application/AML, application/ATFX,
|
|
177
|
+
application/ATXML, application/CDFX+XML, application/CEA,
|
|
178
|
+
application/DII, application/DIT, application/jose,
|
|
179
|
+
application/jose+json, application/json-seq, application/jwk+json,
|
|
180
|
+
application/jwk-set+json, application/jwt, application/LXF,
|
|
181
|
+
application/MF4, application/rdap+json,
|
|
182
|
+
application/vnd.apache.thrift.compact, vnd.apache.thrift.json,
|
|
183
|
+
application/vnd.citationstyles.style+xml, application/vnd.coffeescript,
|
|
184
|
+
application/vnd.enphase.envoy, application/vnd.fastcopy-disk-image,
|
|
185
|
+
application/vnd.gerber, application/vnd.gov.sk.e-form+xml,
|
|
186
|
+
application/vnd.gov.sk.e-form+zip,
|
|
187
|
+
application/vnd.gov.sk.xmldatacontainer+xml,
|
|
188
|
+
application/vnd.ims.imsccv1p1, application/vnd.ims.imsccv1p2,
|
|
189
|
+
application/vnd.ims.imsccv1p3, application/vnd.micro+json,
|
|
190
|
+
application/vnd.microsoft.portable-executable,
|
|
191
|
+
application/vnd.msa-disk-image, application/vnd.oracle.resource+json,
|
|
192
|
+
application/vnd.tmd.mediaflex.api+xml, audio/opus,
|
|
193
|
+
image/vnd.zbrush.pcx, text/csv-schema, text/markdown (marked as
|
|
194
|
+
TEMPORARY).
|
|
195
|
+
- Updated metadata for application/coap-group+json (RFC7390),
|
|
196
|
+
application/epub+zip (now registered), application/merge-patch+json
|
|
197
|
+
(RFC7396), application/smil, application/vnd.arastra.swi,
|
|
198
|
+
application/vnd.geocube+xml, application/vnd.gmx,
|
|
199
|
+
application/xhtml+xml, text/directory.
|
|
200
|
+
- Andy Brody (@ab) fixed a pair of embarrassing typos in text/csv and
|
|
201
|
+
text/tab-separated-values,
|
|
202
|
+
[ruby-mime-types#89](https://github.com/mime-types/ruby-mime-types/pull/89).
|
|
203
|
+
- Aggelos Avgerinos (@eavgerinos) added the unregistered MIME type
|
|
204
|
+
image/x-ms-bmp with the extension `bmp`,
|
|
205
|
+
[ruby-mime-types#90](https://github.com/mime-types/ruby-mime-types/pull/90).
|
|
191
206
|
|
|
192
207
|
## 2.4.2 / 2014-10-15
|
|
193
208
|
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
209
|
+
- Added application/vnd.ms-outlook as an unregistered MIME type with the
|
|
210
|
+
extension `msg`. Provided by @keerthisiv in
|
|
211
|
+
[ruby-mime-types#72](https://github.com/mime-types/ruby-mime-types/pull/72).
|
|
197
212
|
|
|
198
213
|
## 2.4.1 / 2014-10-07
|
|
199
214
|
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
215
|
+
- Changed the sort order of many of the extensions to restore behaviour from
|
|
216
|
+
mime-types 1.25.1.
|
|
217
|
+
- Added `friendly` MIME::Type descriptions where known.
|
|
218
|
+
- Added `reg`, `ps1`, and `vbs` extensions to application/x-msdos-program and
|
|
219
|
+
application/x-msdownload.
|
|
220
|
+
- Updated the IANA media registry entries as of release date.
|
|
221
|
+
- Several MIME types had updated metadata (application/alto-\*, RFC7285;
|
|
222
|
+
application/calendar+json, RFC7265; application/http, RFC7230;
|
|
223
|
+
application/xml, RFC7303; application/xml-dtd, RFC7303;
|
|
224
|
+
application/xml-external-parsed-entity, RFC7303; audio/AMR-WB, RFC4867;
|
|
225
|
+
audio/aptx, RFC7310; message/http, RFC7230; multipart/byteranges,
|
|
226
|
+
RFC7233; text/xml, RFC7303; text/xml-external-parsed-entity, RFC7303)
|
|
227
|
+
- MIME::Type application/EDI-Consent was renamed to
|
|
228
|
+
application/EDI-consent.
|
|
229
|
+
- Obsoleted application/vnd.informix-visionary in favour of
|
|
230
|
+
application/vnd.visionary. Obsoleted
|
|
231
|
+
application/vnd.nokia.n-gage.symbian.install with no replacement.
|
|
232
|
+
- Added MIME types: application/ATF, application/coap-group+json,
|
|
233
|
+
application/DCD, application/merge-patch+json, application/scaip+xml,
|
|
234
|
+
application/vnd.apache.thrift.binary, application/vnd.artsquare,
|
|
235
|
+
application/vnd.doremir.scorecloud-binary-document,
|
|
236
|
+
application/vnd.dzr, application/vnd.maxmind.maxmind-db,
|
|
237
|
+
application/vnd.ntt-local.ogw_remote-access, application/xml-patch+xml,
|
|
238
|
+
image/vnd.tencent.tap.
|
|
224
239
|
|
|
225
240
|
## 2.3 / 2014-05-23
|
|
226
241
|
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
242
|
+
- Updated the IANA media registry entries as of release date.
|
|
243
|
+
- Several MIME types had additional metadata added on the most recent
|
|
244
|
+
import.
|
|
245
|
+
- MIME::Type application/pidfxml was renamed to application/pidf+xml.
|
|
246
|
+
- Added MIME types: application/3gpdash-qoe-report+xml,
|
|
247
|
+
application/alto-costmap+json, application/alto-costmapfilter+json,
|
|
248
|
+
application/alto-directory+json, application/alto-endpointcost+json,
|
|
249
|
+
application/alto-endpointcostparams+json,
|
|
250
|
+
application/alto-endpointprop+json,
|
|
251
|
+
application/alto-endpointpropparams+json, application/alto-error+json,
|
|
252
|
+
application/alto-networkmap+json,
|
|
253
|
+
application/alto-networkmapfilter+json, application/calendar+json,
|
|
254
|
+
application/vnd.debian.binary-package, application/vnd.geo+json,
|
|
255
|
+
application/vnd.ims.lis.v2.result+json,
|
|
256
|
+
application/vnd.ims.lti.v2.toolconsumerprofile+json,
|
|
257
|
+
application/vnd.ims.lti.v2.toolproxy+json,
|
|
258
|
+
application/vnd.ims.lti.v2.toolproxy.id+json,
|
|
259
|
+
application/vnd.ims.lti.v2.toolsettings+json,
|
|
260
|
+
application/vnd.ims.lti.v2.toolsettings.simple+json,
|
|
261
|
+
application/vnd.mason+json, application/vnd.miele+json,
|
|
262
|
+
application/vnd.ms-3mfdocument, application/vnd.panoply,
|
|
263
|
+
application/vnd.valve.source.material, application/vnd.yaoweme,
|
|
264
|
+
audio/aptx, image/vnd.valve.source.texture, model/vnd.opengex,
|
|
265
|
+
model/vnd.valve.source.compiled-map, model/x3d+fastinfoset,
|
|
266
|
+
text/cache-manifest
|
|
252
267
|
|
|
253
268
|
## 2.2 / 2014-03-14
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
269
|
+
|
|
270
|
+
- Added <tt>.sj</tt> to `application/javascript` as provided by Brandon
|
|
271
|
+
Galbraith (@brandongalbraith) in
|
|
272
|
+
[ruby-mime-types#58](https://github.com/mime-types/ruby-mime-types/pull/58).
|
|
273
|
+
- Marked application/excel and application/x-excel as obsolete in favour of
|
|
274
|
+
application/vnd.ms-excel per
|
|
275
|
+
[ruby-mime-types#60](https://github.com/mime-types/ruby-mime-types/pull/60).
|
|
276
|
+
- Merged duplicate MIME types into the registered MIME type. The only
|
|
277
|
+
difference between the MIME types was capitalization; the MIME type
|
|
278
|
+
registry is case-preserving.
|
|
279
|
+
|
|
280
|
+
- Affected MIME types: application/vnd.3M.Post-it-Notes,
|
|
281
|
+
application/vnd.FloGraphIt, application/vnd.HandHeld-Entertainment+xml,
|
|
282
|
+
application/vnd.hp-HPGL, application/vnd.hp-PCL,
|
|
283
|
+
application/vnd.hp-PCLXL, application/vnd.ibm.MiniPay,
|
|
284
|
+
application/vnd.Kinar, application/vnd.MFER,
|
|
285
|
+
application/vnd.Mobius.DAF, application/vnd.Mobius.DIS,
|
|
286
|
+
application/vnd.Mobius.MBK, application/vnd.Mobius.MSL,
|
|
287
|
+
application/vnd.Mobius.MQY, application/vnd.Mobius.PLC,
|
|
288
|
+
application/vnd.Mobius.TXF,
|
|
289
|
+
application/vnd.ms-excel.addin.macroEnabled.12,
|
|
290
|
+
application/vnd.ms-excel.sheet.binary.macroEnabled.12,
|
|
291
|
+
application/vnd.ms-excel.sheet.macroEnabled.12,
|
|
292
|
+
application/vnd.ms-excel.template.macroEnabled.12,
|
|
293
|
+
application/vnd.ms-powerpoint.addin.macroEnabled.12,
|
|
294
|
+
application/vnd.ms-powerpoint.presentation.macroEnabled.12,
|
|
295
|
+
application/vnd.ms-powerpoint.slide.macroEnabled.12,
|
|
296
|
+
application/vnd.ms-powerpoint.slideshow.macroEnabled.12,
|
|
297
|
+
application/vnd.ms-powerpoint.template.macroEnabled.12,
|
|
298
|
+
application/vnd.ms-word.document.macroEnabled.12,
|
|
299
|
+
application/vnd.ms-word.template.macroEnabled.12,
|
|
300
|
+
application/vnd.novadigm.EDM, application/vnd.novadigm.EDX,
|
|
301
|
+
application/vnd.novadigm.EXT, application/vnd.Quark.QuarkXPress,
|
|
302
|
+
application/vnd.SimTech-MindMapper, audio/AMR-WB, video/H261,
|
|
303
|
+
video/H263, video/H264, video/JPEG, video/MJ2.
|
|
304
|
+
|
|
305
|
+
- Updated the IANA media registry entries as of release date.
|
|
306
|
+
- Registered type person names have been updated from surname only to
|
|
307
|
+
full name.
|
|
308
|
+
- Several types had updated RFC or draft RFC references.
|
|
309
|
+
- Added application/bacnet-xdd+zip, application/cms,
|
|
310
|
+
application/load-control+xml, application/PDX, application/ttml+xml,
|
|
311
|
+
application/vnd.collection.doc+json,
|
|
312
|
+
application/vnd.iptc.g2.catalogitem+xml, application/vnd.pcos,
|
|
313
|
+
text/parameters, text/vnd.a, video/iso.segment
|
|
297
314
|
|
|
298
315
|
## 2.1 / 2014-01-25
|
|
299
316
|
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
317
|
+
- The IANA media type registry format changed, resulting in updates to most
|
|
318
|
+
of the 1,427 registered MIME types.
|
|
319
|
+
- Many registered MIME types have had some metadata updates due to the
|
|
320
|
+
change in the IANA registry format.
|
|
321
|
+
- MIME types having a publicly available registry application now
|
|
322
|
+
include a link to that file in references.
|
|
323
|
+
- Added `xrefs` data as discovered (see the API changes noted above).
|
|
324
|
+
- The Apache mime types configuration has been added to track additional
|
|
325
|
+
common but unregistered MIME types and known extensions for those MIME
|
|
326
|
+
types. This has affected many of the available MIME types.
|
|
327
|
+
- Added newly registered MIME types:
|
|
328
|
+
- application/emotionml+xml, application/ODX, application/prs.hpub+zip,
|
|
329
|
+
application/vcard+json, application/vnd.bekitzur-stech+json,
|
|
330
|
+
application/vnd.etsi.timestamp-token,
|
|
331
|
+
application/vnd.oma.cab-feature-handler+xml,
|
|
332
|
+
application/vnd.openeye.oeb, application/vnd.tcpdump.pcap,
|
|
333
|
+
audio/amr-wb, model/x3d+xml, model/x3d-vrml
|
|
334
|
+
- Added 180 unregistered MIME types from the Apache list:
|
|
335
|
+
- application/applixware, application/cu-seeme, application/docbook+xml,
|
|
336
|
+
application/gml+xml, application/gpx+xml, application/gxf,
|
|
337
|
+
application/java-archive, application/java-serialized-object,
|
|
338
|
+
application/java-vm, application/jsonml+json, application/metalink+xml,
|
|
339
|
+
application/omdoc+xml, application/onenote, application/pics-rules,
|
|
340
|
+
application/rsd+xml, application/ssdl+xml,
|
|
341
|
+
application/vnd.3m.post-it-notes, application/vnd.amazon.ebook,
|
|
342
|
+
application/vnd.anser-web-funds-transfer-initiation,
|
|
343
|
+
application/vnd.curl.car, application/vnd.curl.pcurl,
|
|
344
|
+
application/vnd.dolby.mlp, application/vnd.ds-keypoint,
|
|
345
|
+
application/vnd.flographit, application/vnd.handheld-entertainment+xml,
|
|
346
|
+
application/vnd.hp-hpgl, application/vnd.hp-pcl,
|
|
347
|
+
application/vnd.hp-pclxl, application/vnd.ibm.minipay,
|
|
348
|
+
application/vnd.kinar, application/vnd.mfer,
|
|
349
|
+
application/vnd.mobius.daf, application/vnd.mobius.dis,
|
|
350
|
+
application/vnd.mobius.mbk, application/vnd.mobius.mqy,
|
|
351
|
+
application/vnd.mobius.msl, application/vnd.mobius.plc,
|
|
352
|
+
application/vnd.mobius.txf,
|
|
353
|
+
application/vnd.ms-excel.addin.macroenabled.12,
|
|
354
|
+
application/vnd.ms-excel.sheet.binary.macroenabled.12,
|
|
355
|
+
application/vnd.ms-excel.sheet.macroenabled.12,
|
|
356
|
+
application/vnd.ms-excel.template.macroenabled.12,
|
|
357
|
+
application/vnd.ms-pki.seccat, application/vnd.ms-pki.stl,
|
|
358
|
+
application/vnd.ms-powerpoint.addin.macroenabled.12,
|
|
359
|
+
application/vnd.ms-powerpoint.presentation.macroenabled.12,
|
|
360
|
+
application/vnd.ms-powerpoint.slide.macroenabled.12,
|
|
361
|
+
application/vnd.ms-powerpoint.slideshow.macroenabled.12,
|
|
362
|
+
application/vnd.ms-powerpoint.template.macroenabled.12,
|
|
363
|
+
application/vnd.ms-word.document.macroenabled.12,
|
|
364
|
+
application/vnd.ms-word.template.macroenabled.12,
|
|
365
|
+
application/vnd.novadigm.edm, application/vnd.novadigm.edx,
|
|
366
|
+
application/vnd.novadigm.ext, application/vnd.quark.quarkxpress,
|
|
367
|
+
application/vnd.rim.cod, application/vnd.rn-realmedia-vbr,
|
|
368
|
+
application/vnd.simtech-mindmapper, application/vnd.symbian.install,
|
|
369
|
+
application/winhlp, application/x-abiword,
|
|
370
|
+
application/x-ace-compressed, application/x-authorware-bin,
|
|
371
|
+
application/x-authorware-map, application/x-authorware-seg,
|
|
372
|
+
application/x-bittorrent, application/x-blorb, application/x-bzip,
|
|
373
|
+
application/x-cbr, application/x-cfs-compressed, application/x-chat,
|
|
374
|
+
application/x-conference, application/x-dgc-compressed,
|
|
375
|
+
application/x-doom, application/x-dtbncx+xml, application/x-dtbook+xml,
|
|
376
|
+
application/x-dtbresource+xml, application/x-envoy, application/x-eva,
|
|
377
|
+
application/x-font-bdf, application/x-font-ghostscript,
|
|
378
|
+
application/x-font-linux-psf, application/x-font-otf,
|
|
379
|
+
application/x-font-pcf, application/x-font-snf, application/x-font-ttf,
|
|
380
|
+
application/x-font-type1, application/x-freearc,
|
|
381
|
+
application/x-gca-compressed, application/x-glulx,
|
|
382
|
+
application/x-gnumeric, application/x-gramps-xml,
|
|
383
|
+
application/x-install-instructions, application/x-iso9660-image,
|
|
384
|
+
application/x-lzh-compressed, application/x-mie,
|
|
385
|
+
application/x-ms-application, application/x-ms-shortcut,
|
|
386
|
+
application/x-ms-xbap, application/x-msbinder,
|
|
387
|
+
application/x-mscardfile, application/x-msclip,
|
|
388
|
+
application/x-msmediaview, application/x-msmetafile,
|
|
389
|
+
application/x-msmoney, application/x-mspublisher,
|
|
390
|
+
application/x-msschedule, application/x-msterminal,
|
|
391
|
+
application/x-mswrite, application/x-nzb, application/x-pkcs12,
|
|
392
|
+
application/x-pkcs7-certificates, application/x-pkcs7-certreqresp,
|
|
393
|
+
application/x-research-info-systems, application/x-silverlight-app,
|
|
394
|
+
application/x-sql, application/x-stuffitx, application/x-subrip,
|
|
395
|
+
application/x-t3vm-image, application/x-tads, application/x-tex-tfm,
|
|
396
|
+
application/x-tgif, application/x-xfig, application/x-xliff+xml,
|
|
397
|
+
application/x-xz, application/x-zmachine, application/xaml+xml,
|
|
398
|
+
application/xproc+xml, application/xspf+xml, audio/adpcm, audio/amr-wb,
|
|
399
|
+
audio/AMR-WB, audio/midi, audio/s3m, audio/silk, audio/x-caf,
|
|
400
|
+
audio/x-flac, audio/x-matroska, audio/x-mpegurl, audio/xm,
|
|
401
|
+
chemical/x-cdx, chemical/x-cif, chemical/x-cmdf, chemical/x-cml,
|
|
402
|
+
chemical/x-csml, image/sgi, image/vnd.ms-photo, image/x-3ds,
|
|
403
|
+
image/x-cmx, image/x-freehand, image/x-icon, image/x-mrsid-image,
|
|
404
|
+
image/x-pcx, image/x-tga, model/x3d+binary, model/x3d+vrml, text/plain,
|
|
405
|
+
text/vnd.curl.dcurl, text/vnd.curl.mcurl, text/vnd.curl.scurl,
|
|
406
|
+
text/x-asm, text/x-c, text/x-fortran, text/x-java-source, text/x-nfo,
|
|
407
|
+
text/x-opml, text/x-pascal, text/x-sfv, text/x-uuencode, video/h261,
|
|
408
|
+
video/h263, video/h264, video/jpeg, video/jpm, video/mj2, video/x-f4v,
|
|
409
|
+
video/x-m4v, video/x-mng, video/x-ms-vob, video/x-smv
|
|
410
|
+
- Merged the non-standard VMS platform text/plain with the standard
|
|
411
|
+
text/plain.
|
|
395
412
|
|
|
396
413
|
[#10]: https://github.com/mime-types/mime-types-data/pull/10
|
|
397
414
|
[#11]: https://github.com/mime-types/mime-types-data/pull/11
|
|
@@ -399,8 +416,14 @@
|
|
|
399
416
|
[#13]: https://github.com/mime-types/mime-types-data/pull/13
|
|
400
417
|
[#20]: https://github.com/mime-types/mime-types-data/pull/20
|
|
401
418
|
[#21]: https://github.com/mime-types/mime-types-data/pull/21
|
|
402
|
-
[#22]: https://github.com/mime-types/mime-types-data/
|
|
419
|
+
[#22]: https://github.com/mime-types/mime-types-data/issues/22
|
|
403
420
|
[#23]: https://github.com/mime-types/mime-types-data/pull/23
|
|
404
421
|
[#24]: https://github.com/mime-types/mime-types-data/pull/24
|
|
422
|
+
[#28]: https://github.com/mime-types/mime-types-data/pull/28
|
|
423
|
+
[#29]: https://github.com/mime-types/mime-types-data/pull/29
|
|
424
|
+
[#30]: https://github.com/mime-types/mime-types-data/pull/30
|
|
425
|
+
[#31]: https://github.com/mime-types/mime-types-data/pull/31
|
|
426
|
+
[#32]: https://github.com/mime-types/mime-types-data/issues/32
|
|
427
|
+
[#33]: https://github.com/mime-types/mime-types-data/pull/33
|
|
405
428
|
[rmt]: https://github.com/mime-types/ruby-mime-types
|
|
406
|
-
[
|
|
429
|
+
[code of conduct]: Code-of-Conduct.md
|