traceur-rb 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/.gitignore +22 -0
- data/.rspec +1 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/Gemfile +4 -0
- data/Guardfile +8 -0
- data/LICENSE.txt +22 -0
- data/README.md +87 -0
- data/Rakefile +2 -0
- data/lib/js/compile.js +31 -0
- data/lib/traceur-rb.rb +1 -0
- data/lib/traceur.rb +43 -0
- data/lib/traceur/compilation_options.rb +65 -0
- data/lib/traceur/compiler.rb +33 -0
- data/lib/traceur/configuration.rb +47 -0
- data/lib/traceur/node.rb +26 -0
- data/lib/traceur/node/command_result.rb +28 -0
- data/lib/traceur/node/runner.rb +40 -0
- data/lib/traceur/version.rb +3 -0
- data/spec/examples/classes.js +12 -0
- data/spec/integration/examples_spec.rb +28 -0
- data/spec/spec_helper.rb +1 -0
- data/spec/traceur/compilation_options_spec.rb +31 -0
- data/spec/traceur/configuration_spec.rb +54 -0
- data/spec/traceur/node_spec.rb +15 -0
- data/traceur-rb.gemspec +25 -0
- data/vendor/node_modules/.bin/traceur +3 -0
- data/vendor/node_modules/traceur/README.md +40 -0
- data/vendor/node_modules/traceur/bin/traceur-runtime.js +2101 -0
- data/vendor/node_modules/traceur/bin/traceur.js +23034 -0
- data/vendor/node_modules/traceur/node_modules/.bin/semver +125 -0
- data/vendor/node_modules/traceur/node_modules/commander/Readme.md +208 -0
- data/vendor/node_modules/traceur/node_modules/commander/index.js +852 -0
- data/vendor/node_modules/traceur/node_modules/commander/package.json +40 -0
- data/vendor/node_modules/traceur/node_modules/q-io/.npmignore +1 -0
- data/vendor/node_modules/traceur/node_modules/q-io/.travis.yml +3 -0
- data/vendor/node_modules/traceur/node_modules/q-io/CHANGES.md +122 -0
- data/vendor/node_modules/traceur/node_modules/q-io/LICENSE +19 -0
- data/vendor/node_modules/traceur/node_modules/q-io/README.md +928 -0
- data/vendor/node_modules/traceur/node_modules/q-io/buffer-stream.js +59 -0
- data/vendor/node_modules/traceur/node_modules/q-io/coverage-report.js +44 -0
- data/vendor/node_modules/traceur/node_modules/q-io/deprecate.js +51 -0
- data/vendor/node_modules/traceur/node_modules/q-io/fs-boot.js +307 -0
- data/vendor/node_modules/traceur/node_modules/q-io/fs-common.js +499 -0
- data/vendor/node_modules/traceur/node_modules/q-io/fs-mock.js +547 -0
- data/vendor/node_modules/traceur/node_modules/q-io/fs-root.js +105 -0
- data/vendor/node_modules/traceur/node_modules/q-io/fs.js +355 -0
- data/vendor/node_modules/traceur/node_modules/q-io/fs2http.js +65 -0
- data/vendor/node_modules/traceur/node_modules/q-io/http-apps.js +152 -0
- data/vendor/node_modules/traceur/node_modules/q-io/http-apps/chain.js +24 -0
- data/vendor/node_modules/traceur/node_modules/q-io/http-apps/content.js +93 -0
- data/vendor/node_modules/traceur/node_modules/q-io/http-apps/cookie.js +154 -0
- data/vendor/node_modules/traceur/node_modules/q-io/http-apps/decorators.js +178 -0
- data/vendor/node_modules/traceur/node_modules/q-io/http-apps/fs.js +417 -0
- data/vendor/node_modules/traceur/node_modules/q-io/http-apps/html.js +58 -0
- data/vendor/node_modules/traceur/node_modules/q-io/http-apps/json.js +78 -0
- data/vendor/node_modules/traceur/node_modules/q-io/http-apps/negotiate.js +120 -0
- data/vendor/node_modules/traceur/node_modules/q-io/http-apps/proxy.js +27 -0
- data/vendor/node_modules/traceur/node_modules/q-io/http-apps/redirect.js +209 -0
- data/vendor/node_modules/traceur/node_modules/q-io/http-apps/route.js +125 -0
- data/vendor/node_modules/traceur/node_modules/q-io/http-apps/status.js +175 -0
- data/vendor/node_modules/traceur/node_modules/q-io/http-cookie.js +75 -0
- data/vendor/node_modules/traceur/node_modules/q-io/http.js +378 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/.npmignore +11 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/.travis.yml +4 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/CHANGES.md +78 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/LICENSE.md +21 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/README.md +1285 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/collections.js +22 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/dict.js +142 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/fast-map.js +57 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/fast-set.js +183 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/generic-collection.js +261 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/generic-map.js +186 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/generic-order.js +55 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/generic-set.js +59 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/heap.js +236 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/iterator.js +371 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/list.js +435 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/listen/array-changes.js +247 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/listen/map-changes.js +147 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/listen/property-changes.js +448 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/listen/range-changes.js +139 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/lru-map.js +79 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/lru-set.js +142 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/map.js +60 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/multi-map.js +41 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/node_modules/weak-map/package.json +12 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/node_modules/weak-map/sync +7 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/node_modules/weak-map/sync.patch +48 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/node_modules/weak-map/weak-map.js +590 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/package.json +49 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/set.js +173 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/shim-array.js +274 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/shim-function.js +59 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/shim-object.js +538 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/shim-regexp.js +14 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/shim.js +6 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/sorted-array-map.js +49 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/sorted-array-set.js +51 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/sorted-array.js +269 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/sorted-map.js +61 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/sorted-set.js +736 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/tree-log.js +40 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/weak-map.js +1 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mime/LICENSE +19 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mime/README.md +66 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mime/mime.js +114 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mime/package.json +35 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mime/test.js +84 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mime/types/mime.types +1588 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mime/types/node.types +77 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mimeparse/CHANGES +15 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mimeparse/LICENSE +19 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mimeparse/README +96 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mimeparse/lib/mimeparse.js +166 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mimeparse/package.json +43 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/q/CONTRIBUTING.md +40 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/q/LICENSE +19 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/q/README.md +813 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/q/benchmark/compare-with-callbacks.js +71 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/q/benchmark/scenarios.js +36 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/q/package.json +93 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/q/q.js +1937 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/q/queue.js +35 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/.gitmodules +6 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/History.md +36 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/Makefile +7 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/Readme.md +38 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/benchmark.js +32 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/examples.js +39 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/index.js +2 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/lib/querystring.js +123 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/package.json +19 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/.gitmodules +3 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/.npmignore +3 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/History.md +128 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/Makefile +53 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/Readme.md +61 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/bin/expresso +856 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/docs/api.html +1080 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/docs/index.html +377 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/docs/index.md +290 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/docs/layout/foot.html +3 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/docs/layout/head.html +42 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/lib/bar.js +4 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/lib/foo.js +16 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/package.json +12 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/test/assert.test.js +91 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/test/async.test.js +12 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/test/bar.test.js +13 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/test/foo.test.js +14 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/test/http.test.js +146 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/test/serial/async.test.js +39 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/test/serial/http.test.js +48 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/.gitmodules +3 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/History.md +22 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/Makefile +6 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/Readme.md +248 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/examples/runner.js +53 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/index.js +2 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/lib/eql.js +91 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/lib/should.js +548 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/package.json +8 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/test/should.test.js +358 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/test/querystring.test.js +133 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/url2/.npmignore +3 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/url2/.travis.yml +4 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/url2/LICENSE.md +20 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/url2/README.md +33 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/url2/package.json +37 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/url2/test/url2-spec.js +125 -0
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/url2/url2.js +151 -0
- data/vendor/node_modules/traceur/node_modules/q-io/package.json +51 -0
- data/vendor/node_modules/traceur/node_modules/q-io/reader.js +133 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/boot-directory-spec.js +47 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/contains-spec.js +11 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/fixtures/hello.txt +1 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/issues/1-spec.js +33 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/make-tree-spec.js +92 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/append-spec.js +41 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/copy-tree-spec.js +57 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/fixture/hello.txt +1 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/link-spec.js +70 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/make-tree-spec.js +109 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/merge-spec.js +67 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/move-spec.js +219 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/object-spec.js +20 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/range-spec.js +26 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/read-spec.js +40 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/remove-directory-spec.js +37 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/remove-tree-spec.js +39 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/root-spec.js +32 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/stat-spec.js +26 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/symbolic-link-spec.js +86 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/working-directory-spec.js +31 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/write-spec.js +73 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/range-spec.js +23 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/range-spec.txt +1 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/read-spec.js +22 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/relative-spec.js +25 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/reroot-spec.js +45 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/write-spec.js +38 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/cookie-spec.js +52 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/directory-list-spec.js +86 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/fixtures/01234.txt +1 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/fixtures/1234.txt +1 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/fixtures/5678.txt +0 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/fixtures/9012/3456.txt +0 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/hosts-spec.js +49 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/interpret-range-spec.js +47 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/partial-range-spec.js +186 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/proxy-spec.js +82 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/symbolic-link-spec.js +110 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/http/agent-spec.js +96 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/http/basic-spec.js +96 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/lib/jasmine-promise.js +42 -0
- data/vendor/node_modules/traceur/node_modules/q-io/writer.js +111 -0
- data/vendor/node_modules/traceur/node_modules/semver/.npmignore +1 -0
- data/vendor/node_modules/traceur/node_modules/semver/LICENSE +27 -0
- data/vendor/node_modules/traceur/node_modules/semver/Makefile +24 -0
- data/vendor/node_modules/traceur/node_modules/semver/README.md +158 -0
- data/vendor/node_modules/traceur/node_modules/semver/bin/semver +125 -0
- data/vendor/node_modules/traceur/node_modules/semver/foot.js +6 -0
- data/vendor/node_modules/traceur/node_modules/semver/head.js +2 -0
- data/vendor/node_modules/traceur/node_modules/semver/package.json +31 -0
- data/vendor/node_modules/traceur/node_modules/semver/semver.browser.js +1039 -0
- data/vendor/node_modules/traceur/node_modules/semver/semver.browser.js.gz +0 -0
- data/vendor/node_modules/traceur/node_modules/semver/semver.js +1043 -0
- data/vendor/node_modules/traceur/node_modules/semver/semver.min.js +1 -0
- data/vendor/node_modules/traceur/node_modules/semver/semver.min.js.gz +0 -0
- data/vendor/node_modules/traceur/node_modules/semver/test/amd.js +15 -0
- data/vendor/node_modules/traceur/node_modules/semver/test/gtr.js +173 -0
- data/vendor/node_modules/traceur/node_modules/semver/test/index.js +584 -0
- data/vendor/node_modules/traceur/node_modules/semver/test/ltr.js +174 -0
- data/vendor/node_modules/traceur/node_modules/semver/test/no-module.js +19 -0
- data/vendor/node_modules/traceur/package.json +64 -0
- data/vendor/node_modules/traceur/src/node/System.js +31 -0
- data/vendor/node_modules/traceur/src/node/api.js +124 -0
- data/vendor/node_modules/traceur/src/node/command.js +141 -0
- data/vendor/node_modules/traceur/src/node/compile-single-file.js +69 -0
- data/vendor/node_modules/traceur/src/node/compiler.js +116 -0
- data/vendor/node_modules/traceur/src/node/deferred.js +110 -0
- data/vendor/node_modules/traceur/src/node/file-util.js +73 -0
- data/vendor/node_modules/traceur/src/node/getopt.js +147 -0
- data/vendor/node_modules/traceur/src/node/inline-module.js +149 -0
- data/vendor/node_modules/traceur/src/node/interpreter.js +33 -0
- data/vendor/node_modules/traceur/src/node/nodeLoader.js +41 -0
- data/vendor/node_modules/traceur/src/node/require.js +85 -0
- data/vendor/node_modules/traceur/src/node/to-amd-compiler.js +33 -0
- data/vendor/node_modules/traceur/src/node/to-commonjs-compiler.js +33 -0
- data/vendor/node_modules/traceur/src/node/traceur.js +32 -0
- data/vendor/node_modules/traceur/traceur +3 -0
- metadata +359 -0
@@ -0,0 +1,40 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
module.exports = TreeLog;
|
4
|
+
|
5
|
+
function TreeLog() {
|
6
|
+
}
|
7
|
+
|
8
|
+
TreeLog.ascii = {
|
9
|
+
intersection: "+",
|
10
|
+
through: "-",
|
11
|
+
branchUp: "+",
|
12
|
+
branchDown: "+",
|
13
|
+
fromBelow: ".",
|
14
|
+
fromAbove: "'",
|
15
|
+
fromBoth: "+",
|
16
|
+
strafe: "|"
|
17
|
+
};
|
18
|
+
|
19
|
+
TreeLog.unicodeRound = {
|
20
|
+
intersection: "\u254b",
|
21
|
+
through: "\u2501",
|
22
|
+
branchUp: "\u253b",
|
23
|
+
branchDown: "\u2533",
|
24
|
+
fromBelow: "\u256d", // round corner
|
25
|
+
fromAbove: "\u2570", // round corner
|
26
|
+
fromBoth: "\u2523",
|
27
|
+
strafe: "\u2503"
|
28
|
+
};
|
29
|
+
|
30
|
+
TreeLog.unicodeSharp = {
|
31
|
+
intersection: "\u254b",
|
32
|
+
through: "\u2501",
|
33
|
+
branchUp: "\u253b",
|
34
|
+
branchDown: "\u2533",
|
35
|
+
fromBelow: "\u250f", // sharp corner
|
36
|
+
fromAbove: "\u2517", // sharp corner
|
37
|
+
fromBoth: "\u2523",
|
38
|
+
strafe: "\u2503"
|
39
|
+
};
|
40
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
module.exports = require("weak-map");
|
@@ -0,0 +1,19 @@
|
|
1
|
+
Copyright (c) 2010 Benjamin Thomas, Robert Kieffer
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
+
of this software and associated documentation files (the "Software"), to deal
|
5
|
+
in the Software without restriction, including without limitation the rights
|
6
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7
|
+
copies of the Software, and to permit persons to whom the Software is
|
8
|
+
furnished to do so, subject to the following conditions:
|
9
|
+
|
10
|
+
The above copyright notice and this permission notice shall be included in
|
11
|
+
all copies or substantial portions of the Software.
|
12
|
+
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
19
|
+
THE SOFTWARE.
|
@@ -0,0 +1,66 @@
|
|
1
|
+
# mime
|
2
|
+
|
3
|
+
Comprehensive MIME type mapping API. Includes all 600+ types and 800+ extensions defined by the Apache project, plus additional types submitted by the node.js community.
|
4
|
+
|
5
|
+
## Install
|
6
|
+
|
7
|
+
Install with [npm](http://github.com/isaacs/npm):
|
8
|
+
|
9
|
+
npm install mime
|
10
|
+
|
11
|
+
## API - Queries
|
12
|
+
|
13
|
+
### mime.lookup(path)
|
14
|
+
Get the mime type associated with a file, if no mime type is found `application/octet-stream` is returned. Performs a case-insensitive lookup using the extension in `path` (the substring after the last '/' or '.'). E.g.
|
15
|
+
|
16
|
+
var mime = require('mime');
|
17
|
+
|
18
|
+
mime.lookup('/path/to/file.txt'); // => 'text/plain'
|
19
|
+
mime.lookup('file.txt'); // => 'text/plain'
|
20
|
+
mime.lookup('.TXT'); // => 'text/plain'
|
21
|
+
mime.lookup('htm'); // => 'text/html'
|
22
|
+
|
23
|
+
### mime.default_type
|
24
|
+
Sets the mime type returned when `mime.lookup` fails to find the extension searched for. (Default is `application/octet-stream`.)
|
25
|
+
|
26
|
+
### mime.extension(type)
|
27
|
+
Get the default extension for `type`
|
28
|
+
|
29
|
+
mime.extension('text/html'); // => 'html'
|
30
|
+
mime.extension('application/octet-stream'); // => 'bin'
|
31
|
+
|
32
|
+
### mime.charsets.lookup()
|
33
|
+
|
34
|
+
Map mime-type to charset
|
35
|
+
|
36
|
+
mime.charsets.lookup('text/plain'); // => 'UTF-8'
|
37
|
+
|
38
|
+
(The logic for charset lookups is pretty rudimentary. Feel free to suggest improvements.)
|
39
|
+
|
40
|
+
## API - Defining Custom Types
|
41
|
+
|
42
|
+
The following APIs allow you to add your own type mappings within your project. If you feel a type should be included as part of node-mime, see [requesting new types](https://github.com/broofa/node-mime/wiki/Requesting-New-Types).
|
43
|
+
|
44
|
+
### mime.define()
|
45
|
+
|
46
|
+
Add custom mime/extension mappings
|
47
|
+
|
48
|
+
mime.define({
|
49
|
+
'text/x-some-format': ['x-sf', 'x-sft', 'x-sfml'],
|
50
|
+
'application/x-my-type': ['x-mt', 'x-mtt'],
|
51
|
+
// etc ...
|
52
|
+
});
|
53
|
+
|
54
|
+
mime.lookup('x-sft'); // => 'text/x-some-format'
|
55
|
+
|
56
|
+
The first entry in the extensions array is returned by `mime.extension()`. E.g.
|
57
|
+
|
58
|
+
mime.extension('text/x-some-format'); // => 'x-sf'
|
59
|
+
|
60
|
+
### mime.load(filepath)
|
61
|
+
|
62
|
+
Load mappings from an Apache ".types" format file
|
63
|
+
|
64
|
+
mime.load('./my_project.types');
|
65
|
+
|
66
|
+
The .types file format is simple - See the `types` dir for examples.
|
@@ -0,0 +1,114 @@
|
|
1
|
+
var path = require('path');
|
2
|
+
var fs = require('fs');
|
3
|
+
|
4
|
+
function Mime() {
|
5
|
+
// Map of extension -> mime type
|
6
|
+
this.types = Object.create(null);
|
7
|
+
|
8
|
+
// Map of mime type -> extension
|
9
|
+
this.extensions = Object.create(null);
|
10
|
+
}
|
11
|
+
|
12
|
+
/**
|
13
|
+
* Define mimetype -> extension mappings. Each key is a mime-type that maps
|
14
|
+
* to an array of extensions associated with the type. The first extension is
|
15
|
+
* used as the default extension for the type.
|
16
|
+
*
|
17
|
+
* e.g. mime.define({'audio/ogg', ['oga', 'ogg', 'spx']});
|
18
|
+
*
|
19
|
+
* @param map (Object) type definitions
|
20
|
+
*/
|
21
|
+
Mime.prototype.define = function (map) {
|
22
|
+
for (var type in map) {
|
23
|
+
var exts = map[type];
|
24
|
+
|
25
|
+
for (var i = 0; i < exts.length; i++) {
|
26
|
+
if (process.env.DEBUG_MIME && this.types[exts]) {
|
27
|
+
console.warn(this._loading.replace(/.*\//, ''), 'changes "' + exts[i] + '" extension type from ' +
|
28
|
+
this.types[exts] + ' to ' + type);
|
29
|
+
}
|
30
|
+
|
31
|
+
this.types[exts[i]] = type;
|
32
|
+
}
|
33
|
+
|
34
|
+
// Default extension is the first one we encounter
|
35
|
+
if (!this.extensions[type]) {
|
36
|
+
this.extensions[type] = exts[0];
|
37
|
+
}
|
38
|
+
}
|
39
|
+
};
|
40
|
+
|
41
|
+
/**
|
42
|
+
* Load an Apache2-style ".types" file
|
43
|
+
*
|
44
|
+
* This may be called multiple times (it's expected). Where files declare
|
45
|
+
* overlapping types/extensions, the last file wins.
|
46
|
+
*
|
47
|
+
* @param file (String) path of file to load.
|
48
|
+
*/
|
49
|
+
Mime.prototype.load = function(file) {
|
50
|
+
|
51
|
+
this._loading = file;
|
52
|
+
// Read file and split into lines
|
53
|
+
var map = {},
|
54
|
+
content = fs.readFileSync(file, 'ascii'),
|
55
|
+
lines = content.split(/[\r\n]+/);
|
56
|
+
|
57
|
+
lines.forEach(function(line) {
|
58
|
+
// Clean up whitespace/comments, and split into fields
|
59
|
+
var fields = line.replace(/\s*#.*|^\s*|\s*$/g, '').split(/\s+/);
|
60
|
+
map[fields.shift()] = fields;
|
61
|
+
});
|
62
|
+
|
63
|
+
this.define(map);
|
64
|
+
|
65
|
+
this._loading = null;
|
66
|
+
};
|
67
|
+
|
68
|
+
/**
|
69
|
+
* Lookup a mime type based on extension
|
70
|
+
*/
|
71
|
+
Mime.prototype.lookup = function(path, fallback) {
|
72
|
+
var ext = path.replace(/.*[\.\/\\]/, '').toLowerCase();
|
73
|
+
|
74
|
+
return this.types[ext] || fallback || this.default_type;
|
75
|
+
};
|
76
|
+
|
77
|
+
/**
|
78
|
+
* Return file extension associated with a mime type
|
79
|
+
*/
|
80
|
+
Mime.prototype.extension = function(mimeType) {
|
81
|
+
var type = mimeType.match(/^\s*([^;\s]*)(?:;|\s|$)/)[1].toLowerCase();
|
82
|
+
return this.extensions[type];
|
83
|
+
};
|
84
|
+
|
85
|
+
// Default instance
|
86
|
+
var mime = new Mime();
|
87
|
+
|
88
|
+
// Load local copy of
|
89
|
+
// http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types
|
90
|
+
mime.load(path.join(__dirname, 'types/mime.types'));
|
91
|
+
|
92
|
+
// Load additional types from node.js community
|
93
|
+
mime.load(path.join(__dirname, 'types/node.types'));
|
94
|
+
|
95
|
+
// Default type
|
96
|
+
mime.default_type = mime.lookup('bin');
|
97
|
+
|
98
|
+
//
|
99
|
+
// Additional API specific to the default instance
|
100
|
+
//
|
101
|
+
|
102
|
+
mime.Mime = Mime;
|
103
|
+
|
104
|
+
/**
|
105
|
+
* Lookup a charset based on mime type.
|
106
|
+
*/
|
107
|
+
mime.charsets = {
|
108
|
+
lookup: function(mimeType, fallback) {
|
109
|
+
// Assume text types are utf8
|
110
|
+
return (/^text\//).test(mimeType) ? 'UTF-8' : fallback;
|
111
|
+
}
|
112
|
+
};
|
113
|
+
|
114
|
+
module.exports = mime;
|
@@ -0,0 +1,35 @@
|
|
1
|
+
{
|
2
|
+
"author": {
|
3
|
+
"name": "Robert Kieffer",
|
4
|
+
"email": "robert@broofa.com",
|
5
|
+
"url": "http://github.com/broofa"
|
6
|
+
},
|
7
|
+
"contributors": [
|
8
|
+
{
|
9
|
+
"name": "Benjamin Thomas",
|
10
|
+
"email": "benjamin@benjaminthomas.org",
|
11
|
+
"url": "http://github.com/bentomas"
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"dependencies": {},
|
15
|
+
"description": "A comprehensive library for mime-type mapping",
|
16
|
+
"devDependencies": {},
|
17
|
+
"keywords": [
|
18
|
+
"util",
|
19
|
+
"mime"
|
20
|
+
],
|
21
|
+
"main": "mime.js",
|
22
|
+
"name": "mime",
|
23
|
+
"repository": {
|
24
|
+
"url": "https://github.com/broofa/node-mime",
|
25
|
+
"type": "git"
|
26
|
+
},
|
27
|
+
"version": "1.2.11",
|
28
|
+
"readme": "# mime\n\nComprehensive MIME type mapping API. Includes all 600+ types and 800+ extensions defined by the Apache project, plus additional types submitted by the node.js community.\n\n## Install\n\nInstall with [npm](http://github.com/isaacs/npm):\n\n npm install mime\n\n## API - Queries\n\n### mime.lookup(path)\nGet the mime type associated with a file, if no mime type is found `application/octet-stream` is returned. Performs a case-insensitive lookup using the extension in `path` (the substring after the last '/' or '.'). E.g.\n\n var mime = require('mime');\n\n mime.lookup('/path/to/file.txt'); // => 'text/plain'\n mime.lookup('file.txt'); // => 'text/plain'\n mime.lookup('.TXT'); // => 'text/plain'\n mime.lookup('htm'); // => 'text/html'\n\n### mime.default_type\nSets the mime type returned when `mime.lookup` fails to find the extension searched for. (Default is `application/octet-stream`.)\n\n### mime.extension(type)\nGet the default extension for `type`\n\n mime.extension('text/html'); // => 'html'\n mime.extension('application/octet-stream'); // => 'bin'\n\n### mime.charsets.lookup()\n\nMap mime-type to charset\n\n mime.charsets.lookup('text/plain'); // => 'UTF-8'\n\n(The logic for charset lookups is pretty rudimentary. Feel free to suggest improvements.)\n\n## API - Defining Custom Types\n\nThe following APIs allow you to add your own type mappings within your project. If you feel a type should be included as part of node-mime, see [requesting new types](https://github.com/broofa/node-mime/wiki/Requesting-New-Types).\n\n### mime.define()\n\nAdd custom mime/extension mappings\n\n mime.define({\n 'text/x-some-format': ['x-sf', 'x-sft', 'x-sfml'],\n 'application/x-my-type': ['x-mt', 'x-mtt'],\n // etc ...\n });\n\n mime.lookup('x-sft'); // => 'text/x-some-format'\n\nThe first entry in the extensions array is returned by `mime.extension()`. E.g.\n\n mime.extension('text/x-some-format'); // => 'x-sf'\n\n### mime.load(filepath)\n\nLoad mappings from an Apache \".types\" format file\n\n mime.load('./my_project.types');\n\nThe .types file format is simple - See the `types` dir for examples.\n",
|
29
|
+
"readmeFilename": "README.md",
|
30
|
+
"bugs": {
|
31
|
+
"url": "https://github.com/broofa/node-mime/issues"
|
32
|
+
},
|
33
|
+
"_id": "mime@1.2.11",
|
34
|
+
"_from": "mime@~1.2.11"
|
35
|
+
}
|
@@ -0,0 +1,84 @@
|
|
1
|
+
/**
|
2
|
+
* Usage: node test.js
|
3
|
+
*/
|
4
|
+
|
5
|
+
var mime = require('./mime');
|
6
|
+
var assert = require('assert');
|
7
|
+
var path = require('path');
|
8
|
+
|
9
|
+
function eq(a, b) {
|
10
|
+
console.log('Test: ' + a + ' === ' + b);
|
11
|
+
assert.strictEqual.apply(null, arguments);
|
12
|
+
}
|
13
|
+
|
14
|
+
console.log(Object.keys(mime.extensions).length + ' types');
|
15
|
+
console.log(Object.keys(mime.types).length + ' extensions\n');
|
16
|
+
|
17
|
+
//
|
18
|
+
// Test mime lookups
|
19
|
+
//
|
20
|
+
|
21
|
+
eq('text/plain', mime.lookup('text.txt')); // normal file
|
22
|
+
eq('text/plain', mime.lookup('TEXT.TXT')); // uppercase
|
23
|
+
eq('text/plain', mime.lookup('dir/text.txt')); // dir + file
|
24
|
+
eq('text/plain', mime.lookup('.text.txt')); // hidden file
|
25
|
+
eq('text/plain', mime.lookup('.txt')); // nameless
|
26
|
+
eq('text/plain', mime.lookup('txt')); // extension-only
|
27
|
+
eq('text/plain', mime.lookup('/txt')); // extension-less ()
|
28
|
+
eq('text/plain', mime.lookup('\\txt')); // Windows, extension-less
|
29
|
+
eq('application/octet-stream', mime.lookup('text.nope')); // unrecognized
|
30
|
+
eq('fallback', mime.lookup('text.fallback', 'fallback')); // alternate default
|
31
|
+
|
32
|
+
//
|
33
|
+
// Test extensions
|
34
|
+
//
|
35
|
+
|
36
|
+
eq('txt', mime.extension(mime.types.text));
|
37
|
+
eq('html', mime.extension(mime.types.htm));
|
38
|
+
eq('bin', mime.extension('application/octet-stream'));
|
39
|
+
eq('bin', mime.extension('application/octet-stream '));
|
40
|
+
eq('html', mime.extension(' text/html; charset=UTF-8'));
|
41
|
+
eq('html', mime.extension('text/html; charset=UTF-8 '));
|
42
|
+
eq('html', mime.extension('text/html; charset=UTF-8'));
|
43
|
+
eq('html', mime.extension('text/html ; charset=UTF-8'));
|
44
|
+
eq('html', mime.extension('text/html;charset=UTF-8'));
|
45
|
+
eq('html', mime.extension('text/Html;charset=UTF-8'));
|
46
|
+
eq(undefined, mime.extension('unrecognized'));
|
47
|
+
|
48
|
+
//
|
49
|
+
// Test node.types lookups
|
50
|
+
//
|
51
|
+
|
52
|
+
eq('application/font-woff', mime.lookup('file.woff'));
|
53
|
+
eq('application/octet-stream', mime.lookup('file.buffer'));
|
54
|
+
eq('audio/mp4', mime.lookup('file.m4a'));
|
55
|
+
eq('font/opentype', mime.lookup('file.otf'));
|
56
|
+
|
57
|
+
//
|
58
|
+
// Test charsets
|
59
|
+
//
|
60
|
+
|
61
|
+
eq('UTF-8', mime.charsets.lookup('text/plain'));
|
62
|
+
eq(undefined, mime.charsets.lookup(mime.types.js));
|
63
|
+
eq('fallback', mime.charsets.lookup('application/octet-stream', 'fallback'));
|
64
|
+
|
65
|
+
//
|
66
|
+
// Test for overlaps between mime.types and node.types
|
67
|
+
//
|
68
|
+
|
69
|
+
var apacheTypes = new mime.Mime(), nodeTypes = new mime.Mime();
|
70
|
+
apacheTypes.load(path.join(__dirname, 'types/mime.types'));
|
71
|
+
nodeTypes.load(path.join(__dirname, 'types/node.types'));
|
72
|
+
|
73
|
+
var keys = [].concat(Object.keys(apacheTypes.types))
|
74
|
+
.concat(Object.keys(nodeTypes.types));
|
75
|
+
keys.sort();
|
76
|
+
for (var i = 1; i < keys.length; i++) {
|
77
|
+
if (keys[i] == keys[i-1]) {
|
78
|
+
console.warn('Warning: ' +
|
79
|
+
'node.types defines ' + keys[i] + '->' + nodeTypes.types[keys[i]] +
|
80
|
+
', mime.types defines ' + keys[i] + '->' + apacheTypes.types[keys[i]]);
|
81
|
+
}
|
82
|
+
}
|
83
|
+
|
84
|
+
console.log('\nOK');
|
@@ -0,0 +1,1588 @@
|
|
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/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
|