jekyll 1.0.0.beta1 → 1.0.0.beta2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of jekyll might be problematic. Click here for more details.

@@ -1,13 +1,17 @@
1
1
  == HEAD
2
2
  * Major Enhancements
3
+ * Add `jekyll new` subcommand: generate a jekyll scaffold (#764)
3
4
  * Refactored jekyll commands into subcommands: build, serve, and migrate. (#690)
4
5
  * Removed importers/migrators from main project, migrated to jekyll-import sub-gem (#793)
5
6
  * Added ability to render drafts in _drafts folder via command line (#833)
6
7
  * Minor Enhancements
7
- * Load in Apache MIME Types on `jekyll serve` (#847)
8
+ * Expose site.baseurl to Liquid templates (#869)
9
+ * Adds excerpt attribute to posts which contains first paragraph of content (#837)
10
+ * Accept custom configuration file via CLI (#863)
11
+ * Load in GitHub Pages MIME Types on `jekyll serve` (#847, #871)
8
12
  * Improve debugability of error message for a malformed highlight tag (#785)
9
13
  * Allow symlinked files in unsafe mode (#824)
10
- * Add 'gist' liquid tag to core (#822)
14
+ * Add 'gist' Liquid tag to core (#822, #861)
11
15
  * New format of Jekyll output (#795)
12
16
  * Reinstate --limit_posts and --future switches (#788)
13
17
  * Remove ambiguity from command descriptions (#815)
@@ -26,6 +30,10 @@
26
30
  * Add source and destination directory protection (#535)
27
31
  * Better YAML error message (#718)
28
32
  * Bug Fixes
33
+ * Ensure all Post categories are downcase (#842, #872)
34
+ * Force encoding of the rdiscount TOC to UTF8 to avoid conversion errors (#555)
35
+ * Patch for multibyte URI problem with jekyll serve (#723)
36
+ * Order plugin execution by priority (#864)
29
37
  * Fixed Page#dir and Page#url for edge cases (#536)
30
38
  * Fix broken post_url with posts with a time in their YAML Front-Matter (#831)
31
39
  * Look for plugins under the source directory (#654)
@@ -34,7 +42,7 @@
34
42
  * Force Categories to be Strings (#767)
35
43
  * Safe YAML plugin to prevent vulnerability (#777)
36
44
  * Add SVG support to Jekyll/WEBrick. (#407, #406)
37
- * Prevent custom destination from causing continuous regen on watch (#528, #820)
45
+ * Prevent custom destination from causing continuous regen on watch (#528, #820, #862)
38
46
  * Site Enhancements
39
47
  * Bring site into master branch with better preview/deploy (#709)
40
48
  * Redesigned site (#583)
@@ -49,6 +57,14 @@
49
57
  of greater than 1.9 (#771)
50
58
  * Switch to Simplecov for coverage report (#765)
51
59
 
60
+ == 0.12.1 / 2013-02-19
61
+ * Minor Enhancements
62
+ * Update Kramdown version to 0.14.1 (#744)
63
+ * Test Enhancements
64
+ * Update Rake version to 10.0.3 (#744)
65
+ * Update Shoulda version to 3.3.2 (#744)
66
+ * Update Redcarpet version to 2.2.2 (#744)
67
+
52
68
  == 0.12.0 / 2012-12-22
53
69
  * Minor Enhancements
54
70
  * Add ability to explicitly specify included files (#261)
data/bin/jekyll CHANGED
@@ -30,10 +30,20 @@ def normalize_options(options)
30
30
  options
31
31
  end
32
32
 
33
+ command :new do |c|
34
+ c.syntax = 'jekyll new PATH'
35
+ c.description = 'Creates a new Jekyll site scaffold in PATH'
36
+
37
+ c.action do |args, options|
38
+ Jekyll::Commands::New.process(args)
39
+ end
40
+ end
41
+
33
42
  command :build do |c|
34
43
  c.syntax = 'jekyll build [options]'
35
44
  c.description = 'Build your site'
36
45
 
46
+ c.option '--config [CONFIG_FILE]', 'Custom configuration file'
37
47
  c.option '--future', 'Publishes posts with a future date'
38
48
  c.option '--limit_posts MAX_POSTS', 'Limits the number of posts to parse and publish'
39
49
  c.option '-w', '--watch', 'Watch for changes and rebuild'
@@ -52,6 +62,7 @@ command :serve do |c|
52
62
  c.syntax = 'jekyll serve [options]'
53
63
  c.description = 'Serve your site locally'
54
64
 
65
+ c.option '--config [CONFIG_FILE]', 'Custom configuration file'
55
66
  c.option '--future', 'Publishes posts with a future date'
56
67
  c.option '--limit_posts MAX_POSTS', 'Limits the number of posts to parse and publish'
57
68
  c.option '-w', '--watch', 'Watch for changes and rebuild'
@@ -94,6 +94,19 @@ Feature: Post data
94
94
  Then the _site directory should exist
95
95
  And I should see "Post categories: scifi and movies" in "_site/scifi/movies/2009/03/27/star-wars.html"
96
96
 
97
+ Scenario: Use post.categories variable when categories are in folders with mixed case
98
+ Given I have a scifi directory
99
+ And I have a scifi/Movies directory
100
+ And I have a scifi/Movies/_posts directory
101
+ And I have a _layouts directory
102
+ And I have the following post in "scifi/Movies":
103
+ | title | date | layout | content |
104
+ | Star Wars | 3/27/2009 | simple | Luke, I am your father. |
105
+ And I have a simple layout that contains "Post categories: {{ page.categories | array_to_sentence_string }}"
106
+ When I run jekyll
107
+ Then the _site directory should exist
108
+ And I should see "Post categories: scifi and movies" in "_site/scifi/movies/2009/03/27/star-wars.html"
109
+
97
110
  Scenario: Use post.categories variable when category is in YAML
98
111
  Given I have a _posts directory
99
112
  And I have a _layouts directory
@@ -104,17 +117,41 @@ Feature: Post data
104
117
  When I run jekyll
105
118
  Then the _site directory should exist
106
119
  And I should see "Post category: movies" in "_site/movies/2009/03/27/star-wars.html"
107
-
108
- Scenario: Use post.categories variable when categories are in YAML
120
+
121
+ Scenario: Use post.categories variable when category is in YAML and is mixed-case
109
122
  Given I have a _posts directory
110
123
  And I have a _layouts directory
111
124
  And I have the following post:
112
- | title | date | layout | categories | content |
113
- | Star Wars | 3/27/2009 | simple | ['scifi', 'movies'] | Luke, I am your father. |
125
+ | title | date | layout | category | content |
126
+ | Star Wars | 3/27/2009 | simple | Movies | Luke, I am your father. |
127
+ And I have a simple layout that contains "Post category: {{ page.categories }}"
128
+ When I run jekyll
129
+ Then the _site directory should exist
130
+ And I should see "Post category: movies" in "_site/movies/2009/03/27/star-wars.html"
131
+
132
+ Scenario: Use post.categories variable when category is in YAML
133
+ Given I have a _posts directory
134
+ And I have a _layouts directory
135
+ And I have the following post:
136
+ | title | date | layout | category | content |
137
+ | Star Wars | 3/27/2009 | simple | movies | Luke, I am your father. |
138
+ And I have a simple layout that contains "Post category: {{ page.categories }}"
139
+ When I run jekyll
140
+ Then the _site directory should exist
141
+ And I should see "Post category: movies" in "_site/movies/2009/03/27/star-wars.html"
142
+
143
+ Scenario: Use post.categories variable when categories are in YAML with mixed case
144
+ Given I have a _posts directory
145
+ And I have a _layouts directory
146
+ And I have the following posts:
147
+ | title | date | layout | categories | content |
148
+ | Star Wars | 3/27/2009 | simple | ['scifi', 'Movies'] | Luke, I am your father. |
149
+ | Star Trek | 3/17/2013 | simple | ['SciFi', 'movies'] | Jean Luc, I am your father. |
114
150
  And I have a simple layout that contains "Post categories: {{ page.categories | array_to_sentence_string }}"
115
151
  When I run jekyll
116
152
  Then the _site directory should exist
117
153
  And I should see "Post categories: scifi and movies" in "_site/scifi/movies/2009/03/27/star-wars.html"
154
+ And I should see "Post categories: scifi and movies" in "_site/scifi/movies/2013/03/17/star-trek.html"
118
155
 
119
156
  Scenario: Disable a post from being published
120
157
  Given I have a _posts directory
@@ -3,7 +3,7 @@ Feature: Site configuration
3
3
  I want to be able to configure jekyll
4
4
  In order to make setting up a site easier
5
5
 
6
- Scenario: Change destination directory
6
+ Scenario: Change source directory
7
7
  Given I have a blank site in "_sourcedir"
8
8
  And I have an "_sourcedir/index.html" file that contains "Changing source directory"
9
9
  And I have a configuration file with "source" set to "_sourcedir"
@@ -4,9 +4,9 @@ Gem::Specification.new do |s|
4
4
  s.rubygems_version = '1.3.5'
5
5
 
6
6
  s.name = 'jekyll'
7
- s.version = '1.0.0.beta1'
7
+ s.version = '1.0.0.beta2'
8
8
  s.license = 'MIT'
9
- s.date = '2013-03-14'
9
+ s.date = '2013-03-19'
10
10
  s.rubyforge_project = 'jekyll'
11
11
 
12
12
  s.summary = "A simple, blog aware, static site generator."
@@ -70,6 +70,7 @@ Gem::Specification.new do |s|
70
70
  lib/jekyll.rb
71
71
  lib/jekyll/command.rb
72
72
  lib/jekyll/commands/build.rb
73
+ lib/jekyll/commands/new.rb
73
74
  lib/jekyll/commands/serve.rb
74
75
  lib/jekyll/converter.rb
75
76
  lib/jekyll/converters/identity.rb
@@ -93,6 +94,15 @@ Gem::Specification.new do |s|
93
94
  lib/jekyll/tags/highlight.rb
94
95
  lib/jekyll/tags/include.rb
95
96
  lib/jekyll/tags/post_url.rb
97
+ lib/site_template/_config.yml
98
+ lib/site_template/_layouts/default.html
99
+ lib/site_template/_layouts/post.html
100
+ lib/site_template/_posts/0000-00-00-welcome-to-jekyll.markdown.erb
101
+ lib/site_template/css/screen.css
102
+ lib/site_template/css/syntax.css
103
+ lib/site_template/images/.gitkeep
104
+ lib/site_template/images/rss.png
105
+ lib/site_template/index.html
96
106
  script/bootstrap
97
107
  site/.gitignore
98
108
  site/CNAME
@@ -153,6 +163,7 @@ Gem::Specification.new do |s|
153
163
  test/source/_includes/sig.markdown
154
164
  test/source/_layouts/default.html
155
165
  test/source/_layouts/simple.html
166
+ test/source/_plugins/dummy.rb
156
167
  test/source/_posts/2008-02-02-not-published.textile
157
168
  test/source/_posts/2008-02-02-published.textile
158
169
  test/source/_posts/2008-10-18-foo-bar.textile
@@ -178,6 +189,7 @@ Gem::Specification.new do |s|
178
189
  test/source/_posts/2010-01-16-override-data.textile
179
190
  test/source/_posts/2011-04-12-md-extension.md
180
191
  test/source/_posts/2011-04-12-text-extension.text
192
+ test/source/_posts/2013-01-02-post-excerpt.markdown
181
193
  test/source/_posts/2013-01-12-nil-layout.textile
182
194
  test/source/_posts/2013-01-12-no-layout.textile
183
195
  test/source/about.html
@@ -193,12 +205,14 @@ Gem::Specification.new do |s|
193
205
  test/source/win/_posts/2009-05-24-yaml-linebreak.markdown
194
206
  test/source/z_category/_posts/2008-9-23-categories.textile
195
207
  test/suite.rb
208
+ test/test_command.rb
196
209
  test/test_configuration.rb
197
210
  test/test_convertible.rb
198
211
  test/test_core_ext.rb
199
212
  test/test_filters.rb
200
213
  test/test_generated_site.rb
201
214
  test/test_kramdown.rb
215
+ test/test_new_command.rb
202
216
  test/test_page.rb
203
217
  test/test_pager.rb
204
218
  test/test_post.rb
@@ -52,7 +52,7 @@ require_all 'jekyll/tags'
52
52
  SafeYAML::OPTIONS[:suppress_warnings] = true
53
53
 
54
54
  module Jekyll
55
- VERSION = '1.0.0.beta1'
55
+ VERSION = '1.0.0.beta2'
56
56
 
57
57
  # Default options. Overriden by values in _config.yml.
58
58
  # Strings rather than symbols are used for compatability with YAML.
@@ -64,16 +64,19 @@ module Jekyll
64
64
  'keep_files' => ['.git','.svn'],
65
65
 
66
66
  'future' => true, # remove and make true just default
67
- 'pygments' => false, # remove and make true just default
67
+ 'pygments' => true, # remove and make true just default
68
68
 
69
- 'markdown' => 'maruku', # no longer a command option
70
- 'permalink' => 'date', # no longer a command option
71
- 'include' => ['.htaccess'], # no longer a command option
72
- 'paginate_path' => 'page:num', # no longer a command option
69
+ 'markdown' => 'maruku',
70
+ 'permalink' => 'date',
71
+ 'baseurl' => '',
72
+ 'include' => ['.htaccess'],
73
+ 'paginate_path' => 'page:num',
73
74
 
74
75
  'markdown_ext' => 'markdown,mkd,mkdn,md',
75
76
  'textile_ext' => 'textile',
76
77
 
78
+ 'excerpt_separator' => "\n\n",
79
+
77
80
  'maruku' => {
78
81
  'use_tex' => false,
79
82
  'use_divs' => false,
@@ -129,8 +132,10 @@ module Jekyll
129
132
  # then, we need to know where to look for _config.yml
130
133
  source = override['source'] || Jekyll::DEFAULTS['source']
131
134
 
132
- # Get configuration from <source>/_config.yml
133
- config_file = File.join(source, '_config.yml')
135
+ # Get configuration from <source>/_config.yml or <source>/<config_file>
136
+ config_file = override.delete('config')
137
+ config_file = File.join(source, "_config.yml") if config_file.to_s.empty?
138
+
134
139
  begin
135
140
  config = YAML.safe_load_file(config_file)
136
141
  raise "Configuration file: (INVALID) #{config_file}" if !config.is_a?(Hash)
@@ -3,7 +3,7 @@ module Jekyll
3
3
  def self.globs(source, destination)
4
4
  Dir.chdir(source) do
5
5
  dirs = Dir['*'].select { |x| File.directory?(x) }
6
- dirs -= [destination]
6
+ dirs -= [destination, File.expand_path(destination), File.basename(destination)]
7
7
  dirs = dirs.map { |x| "#{x}/**/*" }
8
8
  dirs += ['*']
9
9
  end
@@ -0,0 +1,46 @@
1
+ require 'erb'
2
+
3
+ module Jekyll
4
+ module Commands
5
+ class New < Command
6
+ def self.process(args)
7
+ raise ArgumentError.new('You must specify a path.') if args.empty?
8
+
9
+ new_blog_path = File.expand_path(args.join(" "), Dir.pwd)
10
+ FileUtils.mkdir_p new_blog_path
11
+
12
+ create_sample_files new_blog_path
13
+
14
+ File.open(File.expand_path(self.initialized_post_name, new_blog_path), "w") do |f|
15
+ f.write(self.scaffold_post_content(site_template))
16
+ end
17
+ puts "New jekyll site installed in #{new_blog_path}."
18
+ end
19
+
20
+ def self.scaffold_post_content(template_site)
21
+ ERB.new(File.read(File.expand_path(scaffold_path, site_template))).result
22
+ end
23
+
24
+ # Internal: Gets the filename of the sample post to be created
25
+ #
26
+ # Returns the filename of the sample post, as a String
27
+ def self.initialized_post_name
28
+ "_posts/#{Time.now.strftime('%Y-%m-%d')}-welcome-to-jekyll.markdown"
29
+ end
30
+
31
+ private
32
+ def self.create_sample_files(path)
33
+ FileUtils.cp_r site_template + '/.', path
34
+ FileUtils.rm File.expand_path(scaffold_path, path)
35
+ end
36
+
37
+ def self.site_template
38
+ File.expand_path("../../site_template", File.dirname(__FILE__))
39
+ end
40
+
41
+ def self.scaffold_path
42
+ "_posts/0000-00-00-welcome-to-jekyll.markdown.erb"
43
+ end
44
+ end
45
+ end
46
+ end
@@ -1,3 +1,4 @@
1
+ # -*- coding: utf-8 -*-
1
2
  module Jekyll
2
3
  module Commands
3
4
  class Serve < Command
@@ -12,13 +13,17 @@ module Jekyll
12
13
  mime_types_file = File.expand_path('../mime.types', File.dirname(__FILE__))
13
14
  mime_types = WEBrick::HTTPUtils::load_mime_types(mime_types_file)
14
15
 
16
+ # recreate NondisclosureName under utf-8 circumstance
17
+ fh_option = WEBrick::Config::FileHandler
18
+ fh_option[:NondisclosureName] = ['.ht*','~*']
19
+
15
20
  s = HTTPServer.new(
16
21
  :Port => options['port'],
17
22
  :BindAddress => options['host'],
18
23
  :MimeTypes => mime_types
19
24
  )
20
25
 
21
- s.mount(options['baseurl'], HTTPServlet::FileHandler, destination)
26
+ s.mount(options['baseurl'], HTTPServlet::FileHandler, destination, fh_option)
22
27
  t = Thread.new { s.start }
23
28
  trap("INT") { s.shutdown }
24
29
  t.join()
@@ -137,7 +137,7 @@ module Jekyll
137
137
  rd = RDiscount.new(content, *@rdiscount_extensions)
138
138
  html = rd.to_html
139
139
  if rd.generate_toc and html.include?(@config['rdiscount']['toc_token'])
140
- html.gsub!(@config['rdiscount']['toc_token'], rd.toc_content)
140
+ html.gsub!(@config['rdiscount']['toc_token'], rd.toc_content.force_encoding('utf-8'))
141
141
  end
142
142
  html
143
143
  when 'maruku'
@@ -58,3 +58,11 @@ module Enumerable
58
58
  any? { |exp| File.fnmatch?(exp, e) }
59
59
  end
60
60
  end
61
+
62
+ if RUBY_VERSION < "1.9"
63
+ class String
64
+ def force_encoding(enc)
65
+ self
66
+ end
67
+ end
68
+ end
@@ -1,1588 +1,84 @@
1
- # This file maps Internet media types to unique file extension(s).
2
- # Although created for httpd, this file is used by many software systems
3
- # and has been placed in the public domain for unlimited redisribution.
4
- #
5
- # The table below contains both registered and (common) unregistered types.
6
- # A type that has no unique extension can be ignored -- they are listed
7
- # here to guide configurations toward known types and to make it easier to
8
- # identify "new" types. File extensions are also commonly used to indicate
9
- # content languages and encodings, so choose them carefully.
10
- #
11
- # Internet media types should be registered as described in RFC 4288.
12
- # The registry is at <http://www.iana.org/assignments/media-types/>.
13
- #
14
- # MIME type (lowercased) Extensions
15
- # ============================================ ==========
16
- # application/1d-interleaved-parityfec
17
- # application/3gpp-ims+xml
18
- # application/activemessage
19
- application/andrew-inset ez
20
- # application/applefile
21
- application/applixware aw
22
- application/atom+xml atom
23
- application/atomcat+xml atomcat
24
- # application/atomicmail
25
- application/atomsvc+xml atomsvc
26
- # application/auth-policy+xml
27
- # application/batch-smtp
28
- # application/beep+xml
29
- # application/calendar+xml
30
- # application/cals-1840
31
- # application/ccmp+xml
32
- application/ccxml+xml ccxml
33
- application/cdmi-capability cdmia
34
- application/cdmi-container cdmic
35
- application/cdmi-domain cdmid
36
- application/cdmi-object cdmio
37
- application/cdmi-queue cdmiq
38
- # application/cea-2018+xml
39
- # application/cellml+xml
40
- # application/cfw
41
- # application/cnrp+xml
42
- # application/commonground
43
- # application/conference-info+xml
44
- # application/cpl+xml
45
- # application/csta+xml
46
- # application/cstadata+xml
47
- application/cu-seeme cu
48
- # application/cybercash
49
- application/davmount+xml davmount
50
- # application/dca-rft
51
- # application/dec-dx
52
- # application/dialog-info+xml
53
- # application/dicom
54
- # application/dns
55
- application/docbook+xml dbk
56
- # application/dskpp+xml
57
- application/dssc+der dssc
58
- application/dssc+xml xdssc
59
- # application/dvcs
60
- application/ecmascript ecma
61
- # application/edi-consent
62
- # application/edi-x12
63
- # application/edifact
64
- application/emma+xml emma
65
- # application/epp+xml
66
- application/epub+zip epub
67
- # application/eshop
68
- # application/example
69
- application/exi exi
70
- # application/fastinfoset
71
- # application/fastsoap
72
- # application/fits
73
- application/font-tdpfr pfr
74
- # application/framework-attributes+xml
75
- application/gml+xml gml
76
- application/gpx+xml gpx
77
- application/gxf gxf
78
- # application/h224
79
- # application/held+xml
80
- # application/http
81
- application/hyperstudio stk
82
- # application/ibe-key-request+xml
83
- # application/ibe-pkg-reply+xml
84
- # application/ibe-pp-data
85
- # application/iges
86
- # application/im-iscomposing+xml
87
- # application/index
88
- # application/index.cmd
89
- # application/index.obj
90
- # application/index.response
91
- # application/index.vnd
92
- application/inkml+xml ink inkml
93
- # application/iotp
94
- application/ipfix ipfix
95
- # application/ipp
96
- # application/isup
97
- application/java-archive jar
98
- application/java-serialized-object ser
99
- application/java-vm class
100
- application/javascript js
101
- application/json json
102
- application/jsonml+json jsonml
103
- # application/kpml-request+xml
104
- # application/kpml-response+xml
105
- application/lost+xml lostxml
106
- application/mac-binhex40 hqx
107
- application/mac-compactpro cpt
108
- # application/macwriteii
109
- application/mads+xml mads
110
- application/marc mrc
111
- application/marcxml+xml mrcx
112
- application/mathematica ma nb mb
113
- # application/mathml-content+xml
114
- # application/mathml-presentation+xml
115
- application/mathml+xml mathml
116
- # application/mbms-associated-procedure-description+xml
117
- # application/mbms-deregister+xml
118
- # application/mbms-envelope+xml
119
- # application/mbms-msk+xml
120
- # application/mbms-msk-response+xml
121
- # application/mbms-protection-description+xml
122
- # application/mbms-reception-report+xml
123
- # application/mbms-register+xml
124
- # application/mbms-register-response+xml
125
- # application/mbms-user-service-description+xml
126
- application/mbox mbox
127
- # application/media_control+xml
128
- application/mediaservercontrol+xml mscml
129
- application/metalink+xml metalink
130
- application/metalink4+xml meta4
131
- application/mets+xml mets
132
- # application/mikey
133
- application/mods+xml mods
134
- # application/moss-keys
135
- # application/moss-signature
136
- # application/mosskey-data
137
- # application/mosskey-request
138
- application/mp21 m21 mp21
139
- application/mp4 mp4s
140
- # application/mpeg4-generic
141
- # application/mpeg4-iod
142
- # application/mpeg4-iod-xmt
143
- # application/msc-ivr+xml
144
- # application/msc-mixer+xml
145
- application/msword doc dot
146
- application/mxf mxf
147
- # application/nasdata
148
- # application/news-checkgroups
149
- # application/news-groupinfo
150
- # application/news-transmission
151
- # application/nss
152
- # application/ocsp-request
153
- # application/ocsp-response
154
- application/octet-stream bin dms lrf mar so dist distz pkg bpk dump elc deploy
155
- application/oda oda
156
- application/oebps-package+xml opf
157
- application/ogg ogx
158
- application/omdoc+xml omdoc
159
- application/onenote onetoc onetoc2 onetmp onepkg
160
- application/oxps oxps
161
- # application/parityfec
162
- application/patch-ops-error+xml xer
163
- application/pdf pdf
164
- application/pgp-encrypted pgp
165
- # application/pgp-keys
166
- application/pgp-signature asc sig
167
- application/pics-rules prf
168
- # application/pidf+xml
169
- # application/pidf-diff+xml
170
- application/pkcs10 p10
171
- application/pkcs7-mime p7m p7c
172
- application/pkcs7-signature p7s
173
- application/pkcs8 p8
174
- application/pkix-attr-cert ac
175
- application/pkix-cert cer
176
- application/pkix-crl crl
177
- application/pkix-pkipath pkipath
178
- application/pkixcmp pki
179
- application/pls+xml pls
180
- # application/poc-settings+xml
181
- application/postscript ai eps ps
182
- # application/prs.alvestrand.titrax-sheet
183
- application/prs.cww cww
184
- # application/prs.nprend
185
- # application/prs.plucker
186
- # application/prs.rdf-xml-crypt
187
- # application/prs.xsf+xml
188
- application/pskc+xml pskcxml
189
- # application/qsig
190
- application/rdf+xml rdf
191
- application/reginfo+xml rif
192
- application/relax-ng-compact-syntax rnc
193
- # application/remote-printing
194
- application/resource-lists+xml rl
195
- application/resource-lists-diff+xml rld
196
- # application/riscos
197
- # application/rlmi+xml
198
- application/rls-services+xml rs
199
- application/rpki-ghostbusters gbr
200
- application/rpki-manifest mft
201
- application/rpki-roa roa
202
- # application/rpki-updown
203
- application/rsd+xml rsd
204
- application/rss+xml rss
205
- application/rtf rtf
206
- # application/rtx
207
- # application/samlassertion+xml
208
- # application/samlmetadata+xml
209
- application/sbml+xml sbml
210
- application/scvp-cv-request scq
211
- application/scvp-cv-response scs
212
- application/scvp-vp-request spq
213
- application/scvp-vp-response spp
214
- application/sdp sdp
215
- # application/set-payment
216
- application/set-payment-initiation setpay
217
- # application/set-registration
218
- application/set-registration-initiation setreg
219
- # application/sgml
220
- # application/sgml-open-catalog
221
- application/shf+xml shf
222
- # application/sieve
223
- # application/simple-filter+xml
224
- # application/simple-message-summary
225
- # application/simplesymbolcontainer
226
- # application/slate
227
- # application/smil
228
- application/smil+xml smi smil
229
- # application/soap+fastinfoset
230
- # application/soap+xml
231
- application/sparql-query rq
232
- application/sparql-results+xml srx
233
- # application/spirits-event+xml
234
- application/srgs gram
235
- application/srgs+xml grxml
236
- application/sru+xml sru
237
- application/ssdl+xml ssdl
238
- application/ssml+xml ssml
239
- # application/tamp-apex-update
240
- # application/tamp-apex-update-confirm
241
- # application/tamp-community-update
242
- # application/tamp-community-update-confirm
243
- # application/tamp-error
244
- # application/tamp-sequence-adjust
245
- # application/tamp-sequence-adjust-confirm
246
- # application/tamp-status-query
247
- # application/tamp-status-response
248
- # application/tamp-update
249
- # application/tamp-update-confirm
250
- application/tei+xml tei teicorpus
251
- application/thraud+xml tfi
252
- # application/timestamp-query
253
- # application/timestamp-reply
254
- application/timestamped-data tsd
255
- # application/tve-trigger
256
- # application/ulpfec
257
- # application/vcard+xml
258
- # application/vemmi
259
- # application/vividence.scriptfile
260
- # application/vnd.3gpp.bsf+xml
261
- application/vnd.3gpp.pic-bw-large plb
262
- application/vnd.3gpp.pic-bw-small psb
263
- application/vnd.3gpp.pic-bw-var pvb
264
- # application/vnd.3gpp.sms
265
- # application/vnd.3gpp2.bcmcsinfo+xml
266
- # application/vnd.3gpp2.sms
267
- application/vnd.3gpp2.tcap tcap
268
- application/vnd.3m.post-it-notes pwn
269
- application/vnd.accpac.simply.aso aso
270
- application/vnd.accpac.simply.imp imp
271
- application/vnd.acucobol acu
272
- application/vnd.acucorp atc acutc
273
- application/vnd.adobe.air-application-installer-package+zip air
274
- application/vnd.adobe.formscentral.fcdt fcdt
275
- application/vnd.adobe.fxp fxp fxpl
276
- # application/vnd.adobe.partial-upload
277
- application/vnd.adobe.xdp+xml xdp
278
- application/vnd.adobe.xfdf xfdf
279
- # application/vnd.aether.imp
280
- # application/vnd.ah-barcode
281
- application/vnd.ahead.space ahead
282
- application/vnd.airzip.filesecure.azf azf
283
- application/vnd.airzip.filesecure.azs azs
284
- application/vnd.amazon.ebook azw
285
- application/vnd.americandynamics.acc acc
286
- application/vnd.amiga.ami ami
287
- # application/vnd.amundsen.maze+xml
288
- application/vnd.android.package-archive apk
289
- application/vnd.anser-web-certificate-issue-initiation cii
290
- application/vnd.anser-web-funds-transfer-initiation fti
291
- application/vnd.antix.game-component atx
292
- application/vnd.apple.installer+xml mpkg
293
- application/vnd.apple.mpegurl m3u8
294
- # application/vnd.arastra.swi
295
- application/vnd.aristanetworks.swi swi
296
- application/vnd.astraea-software.iota iota
297
- application/vnd.audiograph aep
298
- # application/vnd.autopackage
299
- # application/vnd.avistar+xml
300
- application/vnd.blueice.multipass mpm
301
- # application/vnd.bluetooth.ep.oob
302
- application/vnd.bmi bmi
303
- application/vnd.businessobjects rep
304
- # application/vnd.cab-jscript
305
- # application/vnd.canon-cpdl
306
- # application/vnd.canon-lips
307
- # application/vnd.cendio.thinlinc.clientconf
308
- application/vnd.chemdraw+xml cdxml
309
- application/vnd.chipnuts.karaoke-mmd mmd
310
- application/vnd.cinderella cdy
311
- # application/vnd.cirpack.isdn-ext
312
- application/vnd.claymore cla
313
- application/vnd.cloanto.rp9 rp9
314
- application/vnd.clonk.c4group c4g c4d c4f c4p c4u
315
- application/vnd.cluetrust.cartomobile-config c11amc
316
- application/vnd.cluetrust.cartomobile-config-pkg c11amz
317
- # application/vnd.collection+json
318
- # application/vnd.commerce-battelle
319
- application/vnd.commonspace csp
320
- application/vnd.contact.cmsg cdbcmsg
321
- application/vnd.cosmocaller cmc
322
- application/vnd.crick.clicker clkx
323
- application/vnd.crick.clicker.keyboard clkk
324
- application/vnd.crick.clicker.palette clkp
325
- application/vnd.crick.clicker.template clkt
326
- application/vnd.crick.clicker.wordbank clkw
327
- application/vnd.criticaltools.wbs+xml wbs
328
- application/vnd.ctc-posml pml
329
- # application/vnd.ctct.ws+xml
330
- # application/vnd.cups-pdf
331
- # application/vnd.cups-postscript
332
- application/vnd.cups-ppd ppd
333
- # application/vnd.cups-raster
334
- # application/vnd.cups-raw
335
- # application/vnd.curl
336
- application/vnd.curl.car car
337
- application/vnd.curl.pcurl pcurl
338
- # application/vnd.cybank
339
- application/vnd.dart dart
340
- application/vnd.data-vision.rdz rdz
341
- application/vnd.dece.data uvf uvvf uvd uvvd
342
- application/vnd.dece.ttml+xml uvt uvvt
343
- application/vnd.dece.unspecified uvx uvvx
344
- application/vnd.dece.zip uvz uvvz
345
- application/vnd.denovo.fcselayout-link fe_launch
346
- # application/vnd.dir-bi.plate-dl-nosuffix
347
- application/vnd.dna dna
348
- application/vnd.dolby.mlp mlp
349
- # application/vnd.dolby.mobile.1
350
- # application/vnd.dolby.mobile.2
351
- application/vnd.dpgraph dpg
352
- application/vnd.dreamfactory dfac
353
- application/vnd.ds-keypoint kpxx
354
- application/vnd.dvb.ait ait
355
- # application/vnd.dvb.dvbj
356
- # application/vnd.dvb.esgcontainer
357
- # application/vnd.dvb.ipdcdftnotifaccess
358
- # application/vnd.dvb.ipdcesgaccess
359
- # application/vnd.dvb.ipdcesgaccess2
360
- # application/vnd.dvb.ipdcesgpdd
361
- # application/vnd.dvb.ipdcroaming
362
- # application/vnd.dvb.iptv.alfec-base
363
- # application/vnd.dvb.iptv.alfec-enhancement
364
- # application/vnd.dvb.notif-aggregate-root+xml
365
- # application/vnd.dvb.notif-container+xml
366
- # application/vnd.dvb.notif-generic+xml
367
- # application/vnd.dvb.notif-ia-msglist+xml
368
- # application/vnd.dvb.notif-ia-registration-request+xml
369
- # application/vnd.dvb.notif-ia-registration-response+xml
370
- # application/vnd.dvb.notif-init+xml
371
- # application/vnd.dvb.pfr
372
- application/vnd.dvb.service svc
373
- # application/vnd.dxr
374
- application/vnd.dynageo geo
375
- # application/vnd.easykaraoke.cdgdownload
376
- # application/vnd.ecdis-update
377
- application/vnd.ecowin.chart mag
378
- # application/vnd.ecowin.filerequest
379
- # application/vnd.ecowin.fileupdate
380
- # application/vnd.ecowin.series
381
- # application/vnd.ecowin.seriesrequest
382
- # application/vnd.ecowin.seriesupdate
383
- # application/vnd.emclient.accessrequest+xml
384
- application/vnd.enliven nml
385
- # application/vnd.eprints.data+xml
386
- application/vnd.epson.esf esf
387
- application/vnd.epson.msf msf
388
- application/vnd.epson.quickanime qam
389
- application/vnd.epson.salt slt
390
- application/vnd.epson.ssf ssf
391
- # application/vnd.ericsson.quickcall
392
- application/vnd.eszigno3+xml es3 et3
393
- # application/vnd.etsi.aoc+xml
394
- # application/vnd.etsi.cug+xml
395
- # application/vnd.etsi.iptvcommand+xml
396
- # application/vnd.etsi.iptvdiscovery+xml
397
- # application/vnd.etsi.iptvprofile+xml
398
- # application/vnd.etsi.iptvsad-bc+xml
399
- # application/vnd.etsi.iptvsad-cod+xml
400
- # application/vnd.etsi.iptvsad-npvr+xml
401
- # application/vnd.etsi.iptvservice+xml
402
- # application/vnd.etsi.iptvsync+xml
403
- # application/vnd.etsi.iptvueprofile+xml
404
- # application/vnd.etsi.mcid+xml
405
- # application/vnd.etsi.overload-control-policy-dataset+xml
406
- # application/vnd.etsi.sci+xml
407
- # application/vnd.etsi.simservs+xml
408
- # application/vnd.etsi.tsl+xml
409
- # application/vnd.etsi.tsl.der
410
- # application/vnd.eudora.data
411
- application/vnd.ezpix-album ez2
412
- application/vnd.ezpix-package ez3
413
- # application/vnd.f-secure.mobile
414
- application/vnd.fdf fdf
415
- application/vnd.fdsn.mseed mseed
416
- application/vnd.fdsn.seed seed dataless
417
- # application/vnd.ffsns
418
- # application/vnd.fints
419
- application/vnd.flographit gph
420
- application/vnd.fluxtime.clip ftc
421
- # application/vnd.font-fontforge-sfd
422
- application/vnd.framemaker fm frame maker book
423
- application/vnd.frogans.fnc fnc
424
- application/vnd.frogans.ltf ltf
425
- application/vnd.fsc.weblaunch fsc
426
- application/vnd.fujitsu.oasys oas
427
- application/vnd.fujitsu.oasys2 oa2
428
- application/vnd.fujitsu.oasys3 oa3
429
- application/vnd.fujitsu.oasysgp fg5
430
- application/vnd.fujitsu.oasysprs bh2
431
- # application/vnd.fujixerox.art-ex
432
- # application/vnd.fujixerox.art4
433
- # application/vnd.fujixerox.hbpl
434
- application/vnd.fujixerox.ddd ddd
435
- application/vnd.fujixerox.docuworks xdw
436
- application/vnd.fujixerox.docuworks.binder xbd
437
- # application/vnd.fut-misnet
438
- application/vnd.fuzzysheet fzs
439
- application/vnd.genomatix.tuxedo txd
440
- # application/vnd.geocube+xml
441
- application/vnd.geogebra.file ggb
442
- application/vnd.geogebra.tool ggt
443
- application/vnd.geometry-explorer gex gre
444
- application/vnd.geonext gxt
445
- application/vnd.geoplan g2w
446
- application/vnd.geospace g3w
447
- # application/vnd.globalplatform.card-content-mgt
448
- # application/vnd.globalplatform.card-content-mgt-response
449
- application/vnd.gmx gmx
450
- application/vnd.google-earth.kml+xml kml
451
- application/vnd.google-earth.kmz kmz
452
- application/vnd.grafeq gqf gqs
453
- # application/vnd.gridmp
454
- application/vnd.groove-account gac
455
- application/vnd.groove-help ghf
456
- application/vnd.groove-identity-message gim
457
- application/vnd.groove-injector grv
458
- application/vnd.groove-tool-message gtm
459
- application/vnd.groove-tool-template tpl
460
- application/vnd.groove-vcard vcg
461
- # application/vnd.hal+json
462
- application/vnd.hal+xml hal
463
- application/vnd.handheld-entertainment+xml zmm
464
- application/vnd.hbci hbci
465
- # application/vnd.hcl-bireports
466
- application/vnd.hhe.lesson-player les
467
- application/vnd.hp-hpgl hpgl
468
- application/vnd.hp-hpid hpid
469
- application/vnd.hp-hps hps
470
- application/vnd.hp-jlyt jlt
471
- application/vnd.hp-pcl pcl
472
- application/vnd.hp-pclxl pclxl
473
- # application/vnd.httphone
474
- application/vnd.hydrostatix.sof-data sfd-hdstx
475
- # application/vnd.hzn-3d-crossword
476
- # application/vnd.ibm.afplinedata
477
- # application/vnd.ibm.electronic-media
478
- application/vnd.ibm.minipay mpy
479
- application/vnd.ibm.modcap afp listafp list3820
480
- application/vnd.ibm.rights-management irm
481
- application/vnd.ibm.secure-container sc
482
- application/vnd.iccprofile icc icm
483
- application/vnd.igloader igl
484
- application/vnd.immervision-ivp ivp
485
- application/vnd.immervision-ivu ivu
486
- # application/vnd.informedcontrol.rms+xml
487
- # application/vnd.informix-visionary
488
- # application/vnd.infotech.project
489
- # application/vnd.infotech.project+xml
490
- # application/vnd.innopath.wamp.notification
491
- application/vnd.insors.igm igm
492
- application/vnd.intercon.formnet xpw xpx
493
- application/vnd.intergeo i2g
494
- # application/vnd.intertrust.digibox
495
- # application/vnd.intertrust.nncp
496
- application/vnd.intu.qbo qbo
497
- application/vnd.intu.qfx qfx
498
- # application/vnd.iptc.g2.conceptitem+xml
499
- # application/vnd.iptc.g2.knowledgeitem+xml
500
- # application/vnd.iptc.g2.newsitem+xml
501
- # application/vnd.iptc.g2.newsmessage+xml
502
- # application/vnd.iptc.g2.packageitem+xml
503
- # application/vnd.iptc.g2.planningitem+xml
504
- application/vnd.ipunplugged.rcprofile rcprofile
505
- application/vnd.irepository.package+xml irp
506
- application/vnd.is-xpr xpr
507
- application/vnd.isac.fcs fcs
508
- application/vnd.jam jam
509
- # application/vnd.japannet-directory-service
510
- # application/vnd.japannet-jpnstore-wakeup
511
- # application/vnd.japannet-payment-wakeup
512
- # application/vnd.japannet-registration
513
- # application/vnd.japannet-registration-wakeup
514
- # application/vnd.japannet-setstore-wakeup
515
- # application/vnd.japannet-verification
516
- # application/vnd.japannet-verification-wakeup
517
- application/vnd.jcp.javame.midlet-rms rms
518
- application/vnd.jisp jisp
519
- application/vnd.joost.joda-archive joda
520
- application/vnd.kahootz ktz ktr
521
- application/vnd.kde.karbon karbon
522
- application/vnd.kde.kchart chrt
523
- application/vnd.kde.kformula kfo
524
- application/vnd.kde.kivio flw
525
- application/vnd.kde.kontour kon
526
- application/vnd.kde.kpresenter kpr kpt
527
- application/vnd.kde.kspread ksp
528
- application/vnd.kde.kword kwd kwt
529
- application/vnd.kenameaapp htke
530
- application/vnd.kidspiration kia
531
- application/vnd.kinar kne knp
532
- application/vnd.koan skp skd skt skm
533
- application/vnd.kodak-descriptor sse
534
- application/vnd.las.las+xml lasxml
535
- # application/vnd.liberty-request+xml
536
- application/vnd.llamagraphics.life-balance.desktop lbd
537
- application/vnd.llamagraphics.life-balance.exchange+xml lbe
538
- application/vnd.lotus-1-2-3 123
539
- application/vnd.lotus-approach apr
540
- application/vnd.lotus-freelance pre
541
- application/vnd.lotus-notes nsf
542
- application/vnd.lotus-organizer org
543
- application/vnd.lotus-screencam scm
544
- application/vnd.lotus-wordpro lwp
545
- application/vnd.macports.portpkg portpkg
546
- # application/vnd.marlin.drm.actiontoken+xml
547
- # application/vnd.marlin.drm.conftoken+xml
548
- # application/vnd.marlin.drm.license+xml
549
- # application/vnd.marlin.drm.mdcf
550
- application/vnd.mcd mcd
551
- application/vnd.medcalcdata mc1
552
- application/vnd.mediastation.cdkey cdkey
553
- # application/vnd.meridian-slingshot
554
- application/vnd.mfer mwf
555
- application/vnd.mfmp mfm
556
- application/vnd.micrografx.flo flo
557
- application/vnd.micrografx.igx igx
558
- application/vnd.mif mif
559
- # application/vnd.minisoft-hp3000-save
560
- # application/vnd.mitsubishi.misty-guard.trustweb
561
- application/vnd.mobius.daf daf
562
- application/vnd.mobius.dis dis
563
- application/vnd.mobius.mbk mbk
564
- application/vnd.mobius.mqy mqy
565
- application/vnd.mobius.msl msl
566
- application/vnd.mobius.plc plc
567
- application/vnd.mobius.txf txf
568
- application/vnd.mophun.application mpn
569
- application/vnd.mophun.certificate mpc
570
- # application/vnd.motorola.flexsuite
571
- # application/vnd.motorola.flexsuite.adsi
572
- # application/vnd.motorola.flexsuite.fis
573
- # application/vnd.motorola.flexsuite.gotap
574
- # application/vnd.motorola.flexsuite.kmr
575
- # application/vnd.motorola.flexsuite.ttc
576
- # application/vnd.motorola.flexsuite.wem
577
- # application/vnd.motorola.iprm
578
- application/vnd.mozilla.xul+xml xul
579
- application/vnd.ms-artgalry cil
580
- # application/vnd.ms-asf
581
- application/vnd.ms-cab-compressed cab
582
- # application/vnd.ms-color.iccprofile
583
- application/vnd.ms-excel xls xlm xla xlc xlt xlw
584
- application/vnd.ms-excel.addin.macroenabled.12 xlam
585
- application/vnd.ms-excel.sheet.binary.macroenabled.12 xlsb
586
- application/vnd.ms-excel.sheet.macroenabled.12 xlsm
587
- application/vnd.ms-excel.template.macroenabled.12 xltm
588
- application/vnd.ms-fontobject eot
589
- application/vnd.ms-htmlhelp chm
590
- application/vnd.ms-ims ims
591
- application/vnd.ms-lrm lrm
592
- # application/vnd.ms-office.activex+xml
593
- application/vnd.ms-officetheme thmx
594
- # application/vnd.ms-opentype
595
- # application/vnd.ms-package.obfuscated-opentype
596
- application/vnd.ms-pki.seccat cat
597
- application/vnd.ms-pki.stl stl
598
- # application/vnd.ms-playready.initiator+xml
599
- application/vnd.ms-powerpoint ppt pps pot
600
- application/vnd.ms-powerpoint.addin.macroenabled.12 ppam
601
- application/vnd.ms-powerpoint.presentation.macroenabled.12 pptm
602
- application/vnd.ms-powerpoint.slide.macroenabled.12 sldm
603
- application/vnd.ms-powerpoint.slideshow.macroenabled.12 ppsm
604
- application/vnd.ms-powerpoint.template.macroenabled.12 potm
605
- # application/vnd.ms-printing.printticket+xml
606
- application/vnd.ms-project mpp mpt
607
- # application/vnd.ms-tnef
608
- # application/vnd.ms-wmdrm.lic-chlg-req
609
- # application/vnd.ms-wmdrm.lic-resp
610
- # application/vnd.ms-wmdrm.meter-chlg-req
611
- # application/vnd.ms-wmdrm.meter-resp
612
- application/vnd.ms-word.document.macroenabled.12 docm
613
- application/vnd.ms-word.template.macroenabled.12 dotm
614
- application/vnd.ms-works wps wks wcm wdb
615
- application/vnd.ms-wpl wpl
616
- application/vnd.ms-xpsdocument xps
617
- application/vnd.mseq mseq
618
- # application/vnd.msign
619
- # application/vnd.multiad.creator
620
- # application/vnd.multiad.creator.cif
621
- # application/vnd.music-niff
622
- application/vnd.musician mus
623
- application/vnd.muvee.style msty
624
- application/vnd.mynfc taglet
625
- # application/vnd.ncd.control
626
- # application/vnd.ncd.reference
627
- # application/vnd.nervana
628
- # application/vnd.netfpx
629
- application/vnd.neurolanguage.nlu nlu
630
- application/vnd.nitf ntf nitf
631
- application/vnd.noblenet-directory nnd
632
- application/vnd.noblenet-sealer nns
633
- application/vnd.noblenet-web nnw
634
- # application/vnd.nokia.catalogs
635
- # application/vnd.nokia.conml+wbxml
636
- # application/vnd.nokia.conml+xml
637
- # application/vnd.nokia.isds-radio-presets
638
- # application/vnd.nokia.iptv.config+xml
639
- # application/vnd.nokia.landmark+wbxml
640
- # application/vnd.nokia.landmark+xml
641
- # application/vnd.nokia.landmarkcollection+xml
642
- # application/vnd.nokia.n-gage.ac+xml
643
- application/vnd.nokia.n-gage.data ngdat
644
- application/vnd.nokia.n-gage.symbian.install n-gage
645
- # application/vnd.nokia.ncd
646
- # application/vnd.nokia.pcd+wbxml
647
- # application/vnd.nokia.pcd+xml
648
- application/vnd.nokia.radio-preset rpst
649
- application/vnd.nokia.radio-presets rpss
650
- application/vnd.novadigm.edm edm
651
- application/vnd.novadigm.edx edx
652
- application/vnd.novadigm.ext ext
653
- # application/vnd.ntt-local.file-transfer
654
- # application/vnd.ntt-local.sip-ta_remote
655
- # application/vnd.ntt-local.sip-ta_tcp_stream
656
- application/vnd.oasis.opendocument.chart odc
657
- application/vnd.oasis.opendocument.chart-template otc
658
- application/vnd.oasis.opendocument.database odb
659
- application/vnd.oasis.opendocument.formula odf
660
- application/vnd.oasis.opendocument.formula-template odft
661
- application/vnd.oasis.opendocument.graphics odg
662
- application/vnd.oasis.opendocument.graphics-template otg
663
- application/vnd.oasis.opendocument.image odi
664
- application/vnd.oasis.opendocument.image-template oti
665
- application/vnd.oasis.opendocument.presentation odp
666
- application/vnd.oasis.opendocument.presentation-template otp
667
- application/vnd.oasis.opendocument.spreadsheet ods
668
- application/vnd.oasis.opendocument.spreadsheet-template ots
669
- application/vnd.oasis.opendocument.text odt
670
- application/vnd.oasis.opendocument.text-master odm
671
- application/vnd.oasis.opendocument.text-template ott
672
- application/vnd.oasis.opendocument.text-web oth
673
- # application/vnd.obn
674
- # application/vnd.oftn.l10n+json
675
- # application/vnd.oipf.contentaccessdownload+xml
676
- # application/vnd.oipf.contentaccessstreaming+xml
677
- # application/vnd.oipf.cspg-hexbinary
678
- # application/vnd.oipf.dae.svg+xml
679
- # application/vnd.oipf.dae.xhtml+xml
680
- # application/vnd.oipf.mippvcontrolmessage+xml
681
- # application/vnd.oipf.pae.gem
682
- # application/vnd.oipf.spdiscovery+xml
683
- # application/vnd.oipf.spdlist+xml
684
- # application/vnd.oipf.ueprofile+xml
685
- # application/vnd.oipf.userprofile+xml
686
- application/vnd.olpc-sugar xo
687
- # application/vnd.oma-scws-config
688
- # application/vnd.oma-scws-http-request
689
- # application/vnd.oma-scws-http-response
690
- # application/vnd.oma.bcast.associated-procedure-parameter+xml
691
- # application/vnd.oma.bcast.drm-trigger+xml
692
- # application/vnd.oma.bcast.imd+xml
693
- # application/vnd.oma.bcast.ltkm
694
- # application/vnd.oma.bcast.notification+xml
695
- # application/vnd.oma.bcast.provisioningtrigger
696
- # application/vnd.oma.bcast.sgboot
697
- # application/vnd.oma.bcast.sgdd+xml
698
- # application/vnd.oma.bcast.sgdu
699
- # application/vnd.oma.bcast.simple-symbol-container
700
- # application/vnd.oma.bcast.smartcard-trigger+xml
701
- # application/vnd.oma.bcast.sprov+xml
702
- # application/vnd.oma.bcast.stkm
703
- # application/vnd.oma.cab-address-book+xml
704
- # application/vnd.oma.cab-feature-handler+xml
705
- # application/vnd.oma.cab-pcc+xml
706
- # application/vnd.oma.cab-user-prefs+xml
707
- # application/vnd.oma.dcd
708
- # application/vnd.oma.dcdc
709
- application/vnd.oma.dd2+xml dd2
710
- # application/vnd.oma.drm.risd+xml
711
- # application/vnd.oma.group-usage-list+xml
712
- # application/vnd.oma.pal+xml
713
- # application/vnd.oma.poc.detailed-progress-report+xml
714
- # application/vnd.oma.poc.final-report+xml
715
- # application/vnd.oma.poc.groups+xml
716
- # application/vnd.oma.poc.invocation-descriptor+xml
717
- # application/vnd.oma.poc.optimized-progress-report+xml
718
- # application/vnd.oma.push
719
- # application/vnd.oma.scidm.messages+xml
720
- # application/vnd.oma.xcap-directory+xml
721
- # application/vnd.omads-email+xml
722
- # application/vnd.omads-file+xml
723
- # application/vnd.omads-folder+xml
724
- # application/vnd.omaloc-supl-init
725
- application/vnd.openofficeorg.extension oxt
726
- # application/vnd.openxmlformats-officedocument.custom-properties+xml
727
- # application/vnd.openxmlformats-officedocument.customxmlproperties+xml
728
- # application/vnd.openxmlformats-officedocument.drawing+xml
729
- # application/vnd.openxmlformats-officedocument.drawingml.chart+xml
730
- # application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml
731
- # application/vnd.openxmlformats-officedocument.drawingml.diagramcolors+xml
732
- # application/vnd.openxmlformats-officedocument.drawingml.diagramdata+xml
733
- # application/vnd.openxmlformats-officedocument.drawingml.diagramlayout+xml
734
- # application/vnd.openxmlformats-officedocument.drawingml.diagramstyle+xml
735
- # application/vnd.openxmlformats-officedocument.extended-properties+xml
736
- # application/vnd.openxmlformats-officedocument.presentationml.commentauthors+xml
737
- # application/vnd.openxmlformats-officedocument.presentationml.comments+xml
738
- # application/vnd.openxmlformats-officedocument.presentationml.handoutmaster+xml
739
- # application/vnd.openxmlformats-officedocument.presentationml.notesmaster+xml
740
- # application/vnd.openxmlformats-officedocument.presentationml.notesslide+xml
741
- application/vnd.openxmlformats-officedocument.presentationml.presentation pptx
742
- # application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml
743
- # application/vnd.openxmlformats-officedocument.presentationml.presprops+xml
744
- application/vnd.openxmlformats-officedocument.presentationml.slide sldx
745
- # application/vnd.openxmlformats-officedocument.presentationml.slide+xml
746
- # application/vnd.openxmlformats-officedocument.presentationml.slidelayout+xml
747
- # application/vnd.openxmlformats-officedocument.presentationml.slidemaster+xml
748
- application/vnd.openxmlformats-officedocument.presentationml.slideshow ppsx
749
- # application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml
750
- # application/vnd.openxmlformats-officedocument.presentationml.slideupdateinfo+xml
751
- # application/vnd.openxmlformats-officedocument.presentationml.tablestyles+xml
752
- # application/vnd.openxmlformats-officedocument.presentationml.tags+xml
753
- application/vnd.openxmlformats-officedocument.presentationml.template potx
754
- # application/vnd.openxmlformats-officedocument.presentationml.template.main+xml
755
- # application/vnd.openxmlformats-officedocument.presentationml.viewprops+xml
756
- # application/vnd.openxmlformats-officedocument.spreadsheetml.calcchain+xml
757
- # application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml
758
- # application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml
759
- # application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml
760
- # application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml
761
- # application/vnd.openxmlformats-officedocument.spreadsheetml.externallink+xml
762
- # application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcachedefinition+xml
763
- # application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcacherecords+xml
764
- # application/vnd.openxmlformats-officedocument.spreadsheetml.pivottable+xml
765
- # application/vnd.openxmlformats-officedocument.spreadsheetml.querytable+xml
766
- # application/vnd.openxmlformats-officedocument.spreadsheetml.revisionheaders+xml
767
- # application/vnd.openxmlformats-officedocument.spreadsheetml.revisionlog+xml
768
- # application/vnd.openxmlformats-officedocument.spreadsheetml.sharedstrings+xml
769
- application/vnd.openxmlformats-officedocument.spreadsheetml.sheet xlsx
770
- # application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml
771
- # application/vnd.openxmlformats-officedocument.spreadsheetml.sheetmetadata+xml
772
- # application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml
773
- # application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml
774
- # application/vnd.openxmlformats-officedocument.spreadsheetml.tablesinglecells+xml
775
- application/vnd.openxmlformats-officedocument.spreadsheetml.template xltx
776
- # application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml
777
- # application/vnd.openxmlformats-officedocument.spreadsheetml.usernames+xml
778
- # application/vnd.openxmlformats-officedocument.spreadsheetml.volatiledependencies+xml
779
- # application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml
780
- # application/vnd.openxmlformats-officedocument.theme+xml
781
- # application/vnd.openxmlformats-officedocument.themeoverride+xml
782
- # application/vnd.openxmlformats-officedocument.vmldrawing
783
- # application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml
784
- application/vnd.openxmlformats-officedocument.wordprocessingml.document docx
785
- # application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml
786
- # application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml
787
- # application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml
788
- # application/vnd.openxmlformats-officedocument.wordprocessingml.fonttable+xml
789
- # application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml
790
- # application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml
791
- # application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml
792
- # application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml
793
- # application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml
794
- application/vnd.openxmlformats-officedocument.wordprocessingml.template dotx
795
- # application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml
796
- # application/vnd.openxmlformats-officedocument.wordprocessingml.websettings+xml
797
- # application/vnd.openxmlformats-package.core-properties+xml
798
- # application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml
799
- # application/vnd.openxmlformats-package.relationships+xml
800
- # application/vnd.quobject-quoxdocument
801
- # application/vnd.osa.netdeploy
802
- application/vnd.osgeo.mapguide.package mgp
803
- # application/vnd.osgi.bundle
804
- application/vnd.osgi.dp dp
805
- application/vnd.osgi.subsystem esa
806
- # application/vnd.otps.ct-kip+xml
807
- application/vnd.palm pdb pqa oprc
808
- # application/vnd.paos.xml
809
- application/vnd.pawaafile paw
810
- application/vnd.pg.format str
811
- application/vnd.pg.osasli ei6
812
- # application/vnd.piaccess.application-licence
813
- application/vnd.picsel efif
814
- application/vnd.pmi.widget wg
815
- # application/vnd.poc.group-advertisement+xml
816
- application/vnd.pocketlearn plf
817
- application/vnd.powerbuilder6 pbd
818
- # application/vnd.powerbuilder6-s
819
- # application/vnd.powerbuilder7
820
- # application/vnd.powerbuilder7-s
821
- # application/vnd.powerbuilder75
822
- # application/vnd.powerbuilder75-s
823
- # application/vnd.preminet
824
- application/vnd.previewsystems.box box
825
- application/vnd.proteus.magazine mgz
826
- application/vnd.publishare-delta-tree qps
827
- application/vnd.pvi.ptid1 ptid
828
- # application/vnd.pwg-multiplexed
829
- # application/vnd.pwg-xhtml-print+xml
830
- # application/vnd.qualcomm.brew-app-res
831
- application/vnd.quark.quarkxpress qxd qxt qwd qwt qxl qxb
832
- # application/vnd.radisys.moml+xml
833
- # application/vnd.radisys.msml+xml
834
- # application/vnd.radisys.msml-audit+xml
835
- # application/vnd.radisys.msml-audit-conf+xml
836
- # application/vnd.radisys.msml-audit-conn+xml
837
- # application/vnd.radisys.msml-audit-dialog+xml
838
- # application/vnd.radisys.msml-audit-stream+xml
839
- # application/vnd.radisys.msml-conf+xml
840
- # application/vnd.radisys.msml-dialog+xml
841
- # application/vnd.radisys.msml-dialog-base+xml
842
- # application/vnd.radisys.msml-dialog-fax-detect+xml
843
- # application/vnd.radisys.msml-dialog-fax-sendrecv+xml
844
- # application/vnd.radisys.msml-dialog-group+xml
845
- # application/vnd.radisys.msml-dialog-speech+xml
846
- # application/vnd.radisys.msml-dialog-transform+xml
847
- # application/vnd.rainstor.data
848
- # application/vnd.rapid
849
- application/vnd.realvnc.bed bed
850
- application/vnd.recordare.musicxml mxl
851
- application/vnd.recordare.musicxml+xml musicxml
852
- # application/vnd.renlearn.rlprint
853
- application/vnd.rig.cryptonote cryptonote
854
- application/vnd.rim.cod cod
855
- application/vnd.rn-realmedia rm
856
- application/vnd.rn-realmedia-vbr rmvb
857
- application/vnd.route66.link66+xml link66
858
- # application/vnd.rs-274x
859
- # application/vnd.ruckus.download
860
- # application/vnd.s3sms
861
- application/vnd.sailingtracker.track st
862
- # application/vnd.sbm.cid
863
- # application/vnd.sbm.mid2
864
- # application/vnd.scribus
865
- # application/vnd.sealed.3df
866
- # application/vnd.sealed.csf
867
- # application/vnd.sealed.doc
868
- # application/vnd.sealed.eml
869
- # application/vnd.sealed.mht
870
- # application/vnd.sealed.net
871
- # application/vnd.sealed.ppt
872
- # application/vnd.sealed.tiff
873
- # application/vnd.sealed.xls
874
- # application/vnd.sealedmedia.softseal.html
875
- # application/vnd.sealedmedia.softseal.pdf
876
- application/vnd.seemail see
877
- application/vnd.sema sema
878
- application/vnd.semd semd
879
- application/vnd.semf semf
880
- application/vnd.shana.informed.formdata ifm
881
- application/vnd.shana.informed.formtemplate itp
882
- application/vnd.shana.informed.interchange iif
883
- application/vnd.shana.informed.package ipk
884
- application/vnd.simtech-mindmapper twd twds
885
- application/vnd.smaf mmf
886
- # application/vnd.smart.notebook
887
- application/vnd.smart.teacher teacher
888
- # application/vnd.software602.filler.form+xml
889
- # application/vnd.software602.filler.form-xml-zip
890
- application/vnd.solent.sdkm+xml sdkm sdkd
891
- application/vnd.spotfire.dxp dxp
892
- application/vnd.spotfire.sfs sfs
893
- # application/vnd.sss-cod
894
- # application/vnd.sss-dtf
895
- # application/vnd.sss-ntf
896
- application/vnd.stardivision.calc sdc
897
- application/vnd.stardivision.draw sda
898
- application/vnd.stardivision.impress sdd
899
- application/vnd.stardivision.math smf
900
- application/vnd.stardivision.writer sdw vor
901
- application/vnd.stardivision.writer-global sgl
902
- application/vnd.stepmania.package smzip
903
- application/vnd.stepmania.stepchart sm
904
- # application/vnd.street-stream
905
- application/vnd.sun.xml.calc sxc
906
- application/vnd.sun.xml.calc.template stc
907
- application/vnd.sun.xml.draw sxd
908
- application/vnd.sun.xml.draw.template std
909
- application/vnd.sun.xml.impress sxi
910
- application/vnd.sun.xml.impress.template sti
911
- application/vnd.sun.xml.math sxm
912
- application/vnd.sun.xml.writer sxw
913
- application/vnd.sun.xml.writer.global sxg
914
- application/vnd.sun.xml.writer.template stw
915
- # application/vnd.sun.wadl+xml
916
- application/vnd.sus-calendar sus susp
917
- application/vnd.svd svd
918
- # application/vnd.swiftview-ics
919
- application/vnd.symbian.install sis sisx
920
- application/vnd.syncml+xml xsm
921
- application/vnd.syncml.dm+wbxml bdm
922
- application/vnd.syncml.dm+xml xdm
923
- # application/vnd.syncml.dm.notification
924
- # application/vnd.syncml.ds.notification
925
- application/vnd.tao.intent-module-archive tao
926
- application/vnd.tcpdump.pcap pcap cap dmp
927
- application/vnd.tmobile-livetv tmo
928
- application/vnd.trid.tpt tpt
929
- application/vnd.triscape.mxs mxs
930
- application/vnd.trueapp tra
931
- # application/vnd.truedoc
932
- # application/vnd.ubisoft.webplayer
933
- application/vnd.ufdl ufd ufdl
934
- application/vnd.uiq.theme utz
935
- application/vnd.umajin umj
936
- application/vnd.unity unityweb
937
- application/vnd.uoml+xml uoml
938
- # application/vnd.uplanet.alert
939
- # application/vnd.uplanet.alert-wbxml
940
- # application/vnd.uplanet.bearer-choice
941
- # application/vnd.uplanet.bearer-choice-wbxml
942
- # application/vnd.uplanet.cacheop
943
- # application/vnd.uplanet.cacheop-wbxml
944
- # application/vnd.uplanet.channel
945
- # application/vnd.uplanet.channel-wbxml
946
- # application/vnd.uplanet.list
947
- # application/vnd.uplanet.list-wbxml
948
- # application/vnd.uplanet.listcmd
949
- # application/vnd.uplanet.listcmd-wbxml
950
- # application/vnd.uplanet.signal
951
- application/vnd.vcx vcx
952
- # application/vnd.vd-study
953
- # application/vnd.vectorworks
954
- # application/vnd.verimatrix.vcas
955
- # application/vnd.vidsoft.vidconference
956
- application/vnd.visio vsd vst vss vsw
957
- application/vnd.visionary vis
958
- # application/vnd.vividence.scriptfile
959
- application/vnd.vsf vsf
960
- # application/vnd.wap.sic
961
- # application/vnd.wap.slc
962
- application/vnd.wap.wbxml wbxml
963
- application/vnd.wap.wmlc wmlc
964
- application/vnd.wap.wmlscriptc wmlsc
965
- application/vnd.webturbo wtb
966
- # application/vnd.wfa.wsc
967
- # application/vnd.wmc
968
- # application/vnd.wmf.bootstrap
969
- # application/vnd.wolfram.mathematica
970
- # application/vnd.wolfram.mathematica.package
971
- application/vnd.wolfram.player nbp
972
- application/vnd.wordperfect wpd
973
- application/vnd.wqd wqd
974
- # application/vnd.wrq-hp3000-labelled
975
- application/vnd.wt.stf stf
976
- # application/vnd.wv.csp+wbxml
977
- # application/vnd.wv.csp+xml
978
- # application/vnd.wv.ssp+xml
979
- application/vnd.xara xar
980
- application/vnd.xfdl xfdl
981
- # application/vnd.xfdl.webform
982
- # application/vnd.xmi+xml
983
- # application/vnd.xmpie.cpkg
984
- # application/vnd.xmpie.dpkg
985
- # application/vnd.xmpie.plan
986
- # application/vnd.xmpie.ppkg
987
- # application/vnd.xmpie.xlim
988
- application/vnd.yamaha.hv-dic hvd
989
- application/vnd.yamaha.hv-script hvs
990
- application/vnd.yamaha.hv-voice hvp
991
- application/vnd.yamaha.openscoreformat osf
992
- application/vnd.yamaha.openscoreformat.osfpvg+xml osfpvg
993
- # application/vnd.yamaha.remote-setup
994
- application/vnd.yamaha.smaf-audio saf
995
- application/vnd.yamaha.smaf-phrase spf
996
- # application/vnd.yamaha.through-ngn
997
- # application/vnd.yamaha.tunnel-udpencap
998
- application/vnd.yellowriver-custom-menu cmp
999
- application/vnd.zul zir zirz
1000
- application/vnd.zzazz.deck+xml zaz
1001
- application/voicexml+xml vxml
1002
- # application/vq-rtcpxr
1003
- # application/watcherinfo+xml
1004
- # application/whoispp-query
1005
- # application/whoispp-response
1006
- application/widget wgt
1007
- application/winhlp hlp
1008
- # application/wita
1009
- # application/wordperfect5.1
1010
- application/wsdl+xml wsdl
1011
- application/wspolicy+xml wspolicy
1012
- application/x-7z-compressed 7z
1013
- application/x-abiword abw
1014
- application/x-ace-compressed ace
1015
- # application/x-amf
1016
- application/x-apple-diskimage dmg
1017
- application/x-authorware-bin aab x32 u32 vox
1018
- application/x-authorware-map aam
1019
- application/x-authorware-seg aas
1020
- application/x-bcpio bcpio
1021
- application/x-bittorrent torrent
1022
- application/x-blorb blb blorb
1023
- application/x-bzip bz
1024
- application/x-bzip2 bz2 boz
1025
- application/x-cbr cbr cba cbt cbz cb7
1026
- application/x-cdlink vcd
1027
- application/x-cfs-compressed cfs
1028
- application/x-chat chat
1029
- application/x-chess-pgn pgn
1030
- application/x-conference nsc
1031
- # application/x-compress
1032
- application/x-cpio cpio
1033
- application/x-csh csh
1034
- application/x-debian-package deb udeb
1035
- application/x-dgc-compressed dgc
1036
- application/x-director dir dcr dxr cst cct cxt w3d fgd swa
1037
- application/x-doom wad
1038
- application/x-dtbncx+xml ncx
1039
- application/x-dtbook+xml dtb
1040
- application/x-dtbresource+xml res
1041
- application/x-dvi dvi
1042
- application/x-envoy evy
1043
- application/x-eva eva
1044
- application/x-font-bdf bdf
1045
- # application/x-font-dos
1046
- # application/x-font-framemaker
1047
- application/x-font-ghostscript gsf
1048
- # application/x-font-libgrx
1049
- application/x-font-linux-psf psf
1050
- application/x-font-otf otf
1051
- application/x-font-pcf pcf
1052
- application/x-font-snf snf
1053
- # application/x-font-speedo
1054
- # application/x-font-sunos-news
1055
- application/x-font-ttf ttf ttc
1056
- application/x-font-type1 pfa pfb pfm afm
1057
- application/x-font-woff woff
1058
- # application/x-font-vfont
1059
- application/x-freearc arc
1060
- application/x-futuresplash spl
1061
- application/x-gca-compressed gca
1062
- application/x-glulx ulx
1063
- application/x-gnumeric gnumeric
1064
- application/x-gramps-xml gramps
1065
- application/x-gtar gtar
1066
- # application/x-gzip
1067
- application/x-hdf hdf
1068
- application/x-install-instructions install
1069
- application/x-iso9660-image iso
1070
- application/x-java-jnlp-file jnlp
1071
- application/x-latex latex
1072
- application/x-lzh-compressed lzh lha
1073
- application/x-mie mie
1074
- application/x-mobipocket-ebook prc mobi
1075
- application/x-ms-application application
1076
- application/x-ms-shortcut lnk
1077
- application/x-ms-wmd wmd
1078
- application/x-ms-wmz wmz
1079
- application/x-ms-xbap xbap
1080
- application/x-msaccess mdb
1081
- application/x-msbinder obd
1082
- application/x-mscardfile crd
1083
- application/x-msclip clp
1084
- application/x-msdownload exe dll com bat msi
1085
- application/x-msmediaview mvb m13 m14
1086
- application/x-msmetafile wmf wmz emf emz
1087
- application/x-msmoney mny
1088
- application/x-mspublisher pub
1089
- application/x-msschedule scd
1090
- application/x-msterminal trm
1091
- application/x-mswrite wri
1092
- application/x-netcdf nc cdf
1093
- application/x-nzb nzb
1094
- application/x-pkcs12 p12 pfx
1095
- application/x-pkcs7-certificates p7b spc
1096
- application/x-pkcs7-certreqresp p7r
1097
- application/x-rar-compressed rar
1098
- application/x-research-info-systems ris
1099
- application/x-sh sh
1100
- application/x-shar shar
1101
- application/x-shockwave-flash swf
1102
- application/x-silverlight-app xap
1103
- application/x-sql sql
1104
- application/x-stuffit sit
1105
- application/x-stuffitx sitx
1106
- application/x-subrip srt
1107
- application/x-sv4cpio sv4cpio
1108
- application/x-sv4crc sv4crc
1109
- application/x-t3vm-image t3
1110
- application/x-tads gam
1111
- application/x-tar tar
1112
- application/x-tcl tcl
1113
- application/x-tex tex
1114
- application/x-tex-tfm tfm
1115
- application/x-texinfo texinfo texi
1116
- application/x-tgif obj
1117
- application/x-ustar ustar
1118
- application/x-wais-source src
1119
- application/x-x509-ca-cert der crt
1120
- application/x-xfig fig
1121
- application/x-xliff+xml xlf
1122
- application/x-xpinstall xpi
1123
- application/x-xz xz
1124
- application/x-zmachine z1 z2 z3 z4 z5 z6 z7 z8
1125
- # application/x400-bp
1126
- application/xaml+xml xaml
1127
- # application/xcap-att+xml
1128
- # application/xcap-caps+xml
1129
- application/xcap-diff+xml xdf
1130
- # application/xcap-el+xml
1131
- # application/xcap-error+xml
1132
- # application/xcap-ns+xml
1133
- # application/xcon-conference-info-diff+xml
1134
- # application/xcon-conference-info+xml
1135
- application/xenc+xml xenc
1136
- application/xhtml+xml xhtml xht
1137
- # application/xhtml-voice+xml
1138
- application/xml xml xsl
1139
- application/xml-dtd dtd
1140
- # application/xml-external-parsed-entity
1141
- # application/xmpp+xml
1142
- application/xop+xml xop
1143
- application/xproc+xml xpl
1144
- application/xslt+xml xslt
1145
- application/xspf+xml xspf
1146
- application/xv+xml mxml xhvml xvml xvm
1147
- application/yang yang
1148
- application/yin+xml yin
1149
- application/zip zip
1150
- # audio/1d-interleaved-parityfec
1151
- # audio/32kadpcm
1152
- # audio/3gpp
1153
- # audio/3gpp2
1154
- # audio/ac3
1155
- audio/adpcm adp
1156
- # audio/amr
1157
- # audio/amr-wb
1158
- # audio/amr-wb+
1159
- # audio/asc
1160
- # audio/atrac-advanced-lossless
1161
- # audio/atrac-x
1162
- # audio/atrac3
1163
- audio/basic au snd
1164
- # audio/bv16
1165
- # audio/bv32
1166
- # audio/clearmode
1167
- # audio/cn
1168
- # audio/dat12
1169
- # audio/dls
1170
- # audio/dsr-es201108
1171
- # audio/dsr-es202050
1172
- # audio/dsr-es202211
1173
- # audio/dsr-es202212
1174
- # audio/dv
1175
- # audio/dvi4
1176
- # audio/eac3
1177
- # audio/evrc
1178
- # audio/evrc-qcp
1179
- # audio/evrc0
1180
- # audio/evrc1
1181
- # audio/evrcb
1182
- # audio/evrcb0
1183
- # audio/evrcb1
1184
- # audio/evrcwb
1185
- # audio/evrcwb0
1186
- # audio/evrcwb1
1187
- # audio/example
1188
- # audio/fwdred
1189
- # audio/g719
1190
- # audio/g722
1191
- # audio/g7221
1192
- # audio/g723
1193
- # audio/g726-16
1194
- # audio/g726-24
1195
- # audio/g726-32
1196
- # audio/g726-40
1197
- # audio/g728
1198
- # audio/g729
1199
- # audio/g7291
1200
- # audio/g729d
1201
- # audio/g729e
1202
- # audio/gsm
1203
- # audio/gsm-efr
1204
- # audio/gsm-hr-08
1205
- # audio/ilbc
1206
- # audio/ip-mr_v2.5
1207
- # audio/isac
1208
- # audio/l16
1209
- # audio/l20
1210
- # audio/l24
1211
- # audio/l8
1212
- # audio/lpc
1213
- audio/midi mid midi kar rmi
1214
- # audio/mobile-xmf
1215
- audio/mp4 mp4a
1216
- # audio/mp4a-latm
1217
- # audio/mpa
1218
- # audio/mpa-robust
1219
- audio/mpeg mpga mp2 mp2a mp3 m2a m3a
1220
- # audio/mpeg4-generic
1221
- # audio/musepack
1222
- audio/ogg oga ogg spx
1223
- # audio/opus
1224
- # audio/parityfec
1225
- # audio/pcma
1226
- # audio/pcma-wb
1227
- # audio/pcmu-wb
1228
- # audio/pcmu
1229
- # audio/prs.sid
1230
- # audio/qcelp
1231
- # audio/red
1232
- # audio/rtp-enc-aescm128
1233
- # audio/rtp-midi
1234
- # audio/rtx
1235
- audio/s3m s3m
1236
- audio/silk sil
1237
- # audio/smv
1238
- # audio/smv0
1239
- # audio/smv-qcp
1240
- # audio/sp-midi
1241
- # audio/speex
1242
- # audio/t140c
1243
- # audio/t38
1244
- # audio/telephone-event
1245
- # audio/tone
1246
- # audio/uemclip
1247
- # audio/ulpfec
1248
- # audio/vdvi
1249
- # audio/vmr-wb
1250
- # audio/vnd.3gpp.iufp
1251
- # audio/vnd.4sb
1252
- # audio/vnd.audiokoz
1253
- # audio/vnd.celp
1254
- # audio/vnd.cisco.nse
1255
- # audio/vnd.cmles.radio-events
1256
- # audio/vnd.cns.anp1
1257
- # audio/vnd.cns.inf1
1258
- audio/vnd.dece.audio uva uvva
1259
- audio/vnd.digital-winds eol
1260
- # audio/vnd.dlna.adts
1261
- # audio/vnd.dolby.heaac.1
1262
- # audio/vnd.dolby.heaac.2
1263
- # audio/vnd.dolby.mlp
1264
- # audio/vnd.dolby.mps
1265
- # audio/vnd.dolby.pl2
1266
- # audio/vnd.dolby.pl2x
1267
- # audio/vnd.dolby.pl2z
1268
- # audio/vnd.dolby.pulse.1
1269
- audio/vnd.dra dra
1270
- audio/vnd.dts dts
1271
- audio/vnd.dts.hd dtshd
1272
- # audio/vnd.dvb.file
1273
- # audio/vnd.everad.plj
1274
- # audio/vnd.hns.audio
1275
- audio/vnd.lucent.voice lvp
1276
- audio/vnd.ms-playready.media.pya pya
1277
- # audio/vnd.nokia.mobile-xmf
1278
- # audio/vnd.nortel.vbk
1279
- audio/vnd.nuera.ecelp4800 ecelp4800
1280
- audio/vnd.nuera.ecelp7470 ecelp7470
1281
- audio/vnd.nuera.ecelp9600 ecelp9600
1282
- # audio/vnd.octel.sbc
1283
- # audio/vnd.qcelp
1284
- # audio/vnd.rhetorex.32kadpcm
1285
- audio/vnd.rip rip
1286
- # audio/vnd.sealedmedia.softseal.mpeg
1287
- # audio/vnd.vmx.cvsd
1288
- # audio/vorbis
1289
- # audio/vorbis-config
1290
- audio/webm weba
1291
- audio/x-aac aac
1292
- audio/x-aiff aif aiff aifc
1293
- audio/x-caf caf
1294
- audio/x-flac flac
1295
- audio/x-matroska mka
1296
- audio/x-mpegurl m3u
1297
- audio/x-ms-wax wax
1298
- audio/x-ms-wma wma
1299
- audio/x-pn-realaudio ram ra
1300
- audio/x-pn-realaudio-plugin rmp
1301
- # audio/x-tta
1302
- audio/x-wav wav
1303
- audio/xm xm
1304
- chemical/x-cdx cdx
1305
- chemical/x-cif cif
1306
- chemical/x-cmdf cmdf
1307
- chemical/x-cml cml
1308
- chemical/x-csml csml
1309
- # chemical/x-pdb
1310
- chemical/x-xyz xyz
1311
- image/bmp bmp
1312
- image/cgm cgm
1313
- # image/example
1314
- # image/fits
1315
- image/g3fax g3
1316
- image/gif gif
1317
- image/ief ief
1318
- # image/jp2
1319
- image/jpeg jpeg jpg jpe
1320
- # image/jpm
1321
- # image/jpx
1322
- image/ktx ktx
1323
- # image/naplps
1324
- image/png png
1325
- image/prs.btif btif
1326
- # image/prs.pti
1327
- image/sgi sgi
1328
- image/svg+xml svg svgz
1329
- # image/t38
1330
- image/tiff tiff tif
1331
- # image/tiff-fx
1332
- image/vnd.adobe.photoshop psd
1333
- # image/vnd.cns.inf2
1334
- image/vnd.dece.graphic uvi uvvi uvg uvvg
1335
- image/vnd.dvb.subtitle sub
1336
- image/vnd.djvu djvu djv
1337
- image/vnd.dwg dwg
1338
- image/vnd.dxf dxf
1339
- image/vnd.fastbidsheet fbs
1340
- image/vnd.fpx fpx
1341
- image/vnd.fst fst
1342
- image/vnd.fujixerox.edmics-mmr mmr
1343
- image/vnd.fujixerox.edmics-rlc rlc
1344
- # image/vnd.globalgraphics.pgb
1345
- # image/vnd.microsoft.icon
1346
- # image/vnd.mix
1347
- image/vnd.ms-modi mdi
1348
- image/vnd.ms-photo wdp
1349
- image/vnd.net-fpx npx
1350
- # image/vnd.radiance
1351
- # image/vnd.sealed.png
1352
- # image/vnd.sealedmedia.softseal.gif
1353
- # image/vnd.sealedmedia.softseal.jpg
1354
- # image/vnd.svf
1355
- image/vnd.wap.wbmp wbmp
1356
- image/vnd.xiff xif
1357
- image/webp webp
1358
- image/x-3ds 3ds
1359
- image/x-cmu-raster ras
1360
- image/x-cmx cmx
1361
- image/x-freehand fh fhc fh4 fh5 fh7
1362
- image/x-icon ico
1363
- image/x-mrsid-image sid
1364
- image/x-pcx pcx
1365
- image/x-pict pic pct
1366
- image/x-portable-anymap pnm
1367
- image/x-portable-bitmap pbm
1368
- image/x-portable-graymap pgm
1369
- image/x-portable-pixmap ppm
1370
- image/x-rgb rgb
1371
- image/x-tga tga
1372
- image/x-xbitmap xbm
1373
- image/x-xpixmap xpm
1374
- image/x-xwindowdump xwd
1375
- # message/cpim
1376
- # message/delivery-status
1377
- # message/disposition-notification
1378
- # message/example
1379
- # message/external-body
1380
- # message/feedback-report
1381
- # message/global
1382
- # message/global-delivery-status
1383
- # message/global-disposition-notification
1384
- # message/global-headers
1385
- # message/http
1386
- # message/imdn+xml
1387
- # message/news
1388
- # message/partial
1389
- message/rfc822 eml mime
1390
- # message/s-http
1391
- # message/sip
1392
- # message/sipfrag
1393
- # message/tracking-status
1394
- # message/vnd.si.simp
1395
- # model/example
1396
- model/iges igs iges
1397
- model/mesh msh mesh silo
1398
- model/vnd.collada+xml dae
1399
- model/vnd.dwf dwf
1400
- # model/vnd.flatland.3dml
1401
- model/vnd.gdl gdl
1402
- # model/vnd.gs-gdl
1403
- # model/vnd.gs.gdl
1404
- model/vnd.gtw gtw
1405
- # model/vnd.moml+xml
1406
- model/vnd.mts mts
1407
- # model/vnd.parasolid.transmit.binary
1408
- # model/vnd.parasolid.transmit.text
1409
- model/vnd.vtu vtu
1410
- model/vrml wrl vrml
1411
- model/x3d+binary x3db x3dbz
1412
- model/x3d+vrml x3dv x3dvz
1413
- model/x3d+xml x3d x3dz
1414
- # multipart/alternative
1415
- # multipart/appledouble
1416
- # multipart/byteranges
1417
- # multipart/digest
1418
- # multipart/encrypted
1419
- # multipart/example
1420
- # multipart/form-data
1421
- # multipart/header-set
1422
- # multipart/mixed
1423
- # multipart/parallel
1424
- # multipart/related
1425
- # multipart/report
1426
- # multipart/signed
1427
- # multipart/voice-message
1428
- # text/1d-interleaved-parityfec
1429
- text/cache-manifest appcache
1430
- text/calendar ics ifb
1431
- text/css css
1432
- text/csv csv
1433
- # text/directory
1434
- # text/dns
1435
- # text/ecmascript
1436
- # text/enriched
1437
- # text/example
1438
- # text/fwdred
1439
- text/html html htm
1440
- # text/javascript
1441
- text/n3 n3
1442
- # text/parityfec
1443
- text/plain txt text conf def list log in
1444
- # text/prs.fallenstein.rst
1445
- text/prs.lines.tag dsc
1446
- # text/vnd.radisys.msml-basic-layout
1447
- # text/red
1448
- # text/rfc822-headers
1449
- text/richtext rtx
1450
- # text/rtf
1451
- # text/rtp-enc-aescm128
1452
- # text/rtx
1453
- text/sgml sgml sgm
1454
- # text/t140
1455
- text/tab-separated-values tsv
1456
- text/troff t tr roff man me ms
1457
- text/turtle ttl
1458
- # text/ulpfec
1459
- text/uri-list uri uris urls
1460
- text/vcard vcard
1461
- # text/vnd.abc
1462
- text/vnd.curl curl
1463
- text/vnd.curl.dcurl dcurl
1464
- text/vnd.curl.scurl scurl
1465
- text/vnd.curl.mcurl mcurl
1466
- # text/vnd.dmclientscript
1467
- text/vnd.dvb.subtitle sub
1468
- # text/vnd.esmertec.theme-descriptor
1469
- text/vnd.fly fly
1470
- text/vnd.fmi.flexstor flx
1471
- text/vnd.graphviz gv
1472
- text/vnd.in3d.3dml 3dml
1473
- text/vnd.in3d.spot spot
1474
- # text/vnd.iptc.newsml
1475
- # text/vnd.iptc.nitf
1476
- # text/vnd.latex-z
1477
- # text/vnd.motorola.reflex
1478
- # text/vnd.ms-mediapackage
1479
- # text/vnd.net2phone.commcenter.command
1480
- # text/vnd.si.uricatalogue
1481
- text/vnd.sun.j2me.app-descriptor jad
1482
- # text/vnd.trolltech.linguist
1483
- # text/vnd.wap.si
1484
- # text/vnd.wap.sl
1485
- text/vnd.wap.wml wml
1486
- text/vnd.wap.wmlscript wmls
1487
- text/x-asm s asm
1488
- text/x-c c cc cxx cpp h hh dic
1489
- text/x-fortran f for f77 f90
1490
- text/x-java-source java
1491
- text/x-opml opml
1492
- text/x-pascal p pas
1493
- text/x-nfo nfo
1494
- text/x-setext etx
1495
- text/x-sfv sfv
1496
- text/x-uuencode uu
1497
- text/x-vcalendar vcs
1498
- text/x-vcard vcf
1499
- # text/xml
1500
- # text/xml-external-parsed-entity
1501
- # video/1d-interleaved-parityfec
1502
- video/3gpp 3gp
1503
- # video/3gpp-tt
1504
- video/3gpp2 3g2
1505
- # video/bmpeg
1506
- # video/bt656
1507
- # video/celb
1508
- # video/dv
1509
- # video/example
1510
- video/h261 h261
1511
- video/h263 h263
1512
- # video/h263-1998
1513
- # video/h263-2000
1514
- video/h264 h264
1515
- # video/h264-rcdo
1516
- # video/h264-svc
1517
- video/jpeg jpgv
1518
- # video/jpeg2000
1519
- video/jpm jpm jpgm
1520
- video/mj2 mj2 mjp2
1521
- # video/mp1s
1522
- # video/mp2p
1523
- # video/mp2t
1524
- video/mp4 mp4 mp4v mpg4
1525
- # video/mp4v-es
1526
- video/mpeg mpeg mpg mpe m1v m2v
1527
- # video/mpeg4-generic
1528
- # video/mpv
1529
- # video/nv
1530
- video/ogg ogv
1531
- # video/parityfec
1532
- # video/pointer
1533
- video/quicktime qt mov
1534
- # video/raw
1535
- # video/rtp-enc-aescm128
1536
- # video/rtx
1537
- # video/smpte292m
1538
- # video/ulpfec
1539
- # video/vc1
1540
- # video/vnd.cctv
1541
- video/vnd.dece.hd uvh uvvh
1542
- video/vnd.dece.mobile uvm uvvm
1543
- # video/vnd.dece.mp4
1544
- video/vnd.dece.pd uvp uvvp
1545
- video/vnd.dece.sd uvs uvvs
1546
- video/vnd.dece.video uvv uvvv
1547
- # video/vnd.directv.mpeg
1548
- # video/vnd.directv.mpeg-tts
1549
- # video/vnd.dlna.mpeg-tts
1550
- video/vnd.dvb.file dvb
1551
- video/vnd.fvt fvt
1552
- # video/vnd.hns.video
1553
- # video/vnd.iptvforum.1dparityfec-1010
1554
- # video/vnd.iptvforum.1dparityfec-2005
1555
- # video/vnd.iptvforum.2dparityfec-1010
1556
- # video/vnd.iptvforum.2dparityfec-2005
1557
- # video/vnd.iptvforum.ttsavc
1558
- # video/vnd.iptvforum.ttsmpeg2
1559
- # video/vnd.motorola.video
1560
- # video/vnd.motorola.videop
1561
- video/vnd.mpegurl mxu m4u
1562
- video/vnd.ms-playready.media.pyv pyv
1563
- # video/vnd.nokia.interleaved-multimedia
1564
- # video/vnd.nokia.videovoip
1565
- # video/vnd.objectvideo
1566
- # video/vnd.sealed.mpeg1
1567
- # video/vnd.sealed.mpeg4
1568
- # video/vnd.sealed.swf
1569
- # video/vnd.sealedmedia.softseal.mov
1570
- video/vnd.uvvu.mp4 uvu uvvu
1571
- video/vnd.vivo viv
1572
- video/webm webm
1573
- video/x-f4v f4v
1574
- video/x-fli fli
1575
- video/x-flv flv
1576
- video/x-m4v m4v
1577
- video/x-matroska mkv mk3d mks
1578
- video/x-mng mng
1579
- video/x-ms-asf asf asx
1580
- video/x-ms-vob vob
1581
- video/x-ms-wm wm
1582
- video/x-ms-wmv wmv
1583
- video/x-ms-wmx wmx
1584
- video/x-ms-wvx wvx
1585
- video/x-msvideo avi
1586
- video/x-sgi-movie movie
1587
- video/x-smv smv
1588
- x-conference/x-cooltalk ice
1
+ # These are the same MIME types that GitHub Pages uses as of 17 Mar 2013.
2
+
3
+ text/html html htm shtml
4
+ text/css css
5
+ text/xml xml rss xsl
6
+ image/gif gif
7
+ image/jpeg jpeg jpg
8
+ application/x-javascript js
9
+ application/atom+xml atom
10
+
11
+ text/mathml mml
12
+ text/plain txt
13
+ text/vnd.sun.j2me.app-descriptor jad
14
+ text/vnd.wap.wml wml
15
+ text/x-component htc
16
+ text/cache-manifest manifest appcache
17
+ text/coffeescript coffee
18
+ text/plain pde
19
+ text/plain md markdown
20
+
21
+ image/png png
22
+ image/svg+xml svg
23
+ image/tiff tif tiff
24
+ image/vnd.wap.wbmp wbmp
25
+ image/x-icon ico
26
+ image/x-jng jng
27
+ image/x-ms-bmp bmp
28
+
29
+ application/json json
30
+ application/java-archive jar ear
31
+ application/mac-binhex40 hqx
32
+ application/msword doc
33
+ application/pdf pdf
34
+ application/postscript ps eps ai
35
+ application/rdf+xml rdf
36
+ application/rtf rtf
37
+ text/vcard vcf vcard
38
+ application/vnd.ms-excel xls
39
+ application/vnd.ms-powerpoint ppt
40
+ application/vnd.wap.wmlc wmlc
41
+ application/xhtml+xml xhtml
42
+ application/x-chrome-extension crx
43
+ application/x-cocoa cco
44
+ application/x-font-ttf ttf
45
+ application/x-java-archive-diff jardiff
46
+ application/x-java-jnlp-file jnlp
47
+ application/x-makeself run
48
+ application/x-ns-proxy-autoconfig pac
49
+ application/x-perl pl pm
50
+ application/x-pilot prc pdb
51
+ application/x-rar-compressed rar
52
+ application/x-redhat-package-manager rpm
53
+ application/x-sea sea
54
+ application/x-shockwave-flash swf
55
+ application/x-stuffit sit
56
+ application/x-tcl tcl tk
57
+ application/x-web-app-manifest+json webapp
58
+ application/x-x509-ca-cert der pem crt
59
+ application/x-xpinstall xpi
60
+ application/x-zip war
61
+ application/zip zip
62
+
63
+ application/octet-stream bin exe dll
64
+ application/octet-stream deb
65
+ application/octet-stream dmg
66
+ application/octet-stream eot
67
+ application/octet-stream iso img
68
+ application/octet-stream msi msp msm
69
+
70
+ audio/midi mid midi kar
71
+ audio/mpeg mp3
72
+ audio/x-realaudio ra
73
+ audio/ogg ogg
74
+
75
+ video/3gpp 3gpp 3gp
76
+ video/mpeg mpeg mpg
77
+ video/quicktime mov
78
+ video/x-flv flv
79
+ video/x-mng mng
80
+ video/x-ms-asf asx asf
81
+ video/x-ms-wmv wmv
82
+ video/x-msvideo avi
83
+ video/ogg ogv
84
+ video/webm webm