vulcan 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (627) hide show
  1. data/lib/vulcan/version.rb +1 -1
  2. data/server/Procfile +1 -0
  3. data/server/bin/make +39 -0
  4. data/server/lib/on.js +13 -0
  5. data/server/lib/spawner.js +101 -0
  6. data/server/node_modules/connect-form/History.md +28 -0
  7. data/server/node_modules/connect-form/LICENSE +22 -0
  8. data/server/node_modules/connect-form/Makefile +11 -0
  9. data/server/node_modules/connect-form/Readme.md +35 -0
  10. data/server/node_modules/connect-form/index.html +213 -0
  11. data/server/node_modules/connect-form/index.js +100 -0
  12. data/server/node_modules/connect-form/lib/connect-form.js +100 -0
  13. data/server/node_modules/connect-form/node_modules/formidable/Makefile +14 -0
  14. data/server/node_modules/connect-form/node_modules/formidable/Readme.md +264 -0
  15. data/server/node_modules/connect-form/node_modules/formidable/TODO +3 -0
  16. data/server/node_modules/connect-form/node_modules/formidable/benchmark/bench-multipart-parser.js +70 -0
  17. data/server/node_modules/connect-form/node_modules/formidable/example/post.js +43 -0
  18. data/server/node_modules/connect-form/node_modules/formidable/example/upload.js +48 -0
  19. data/server/node_modules/connect-form/node_modules/formidable/index.js +1 -0
  20. data/server/node_modules/connect-form/node_modules/formidable/lib/file.js +61 -0
  21. data/server/node_modules/connect-form/node_modules/formidable/lib/incoming_form.js +362 -0
  22. data/server/node_modules/connect-form/node_modules/formidable/lib/index.js +3 -0
  23. data/server/node_modules/connect-form/node_modules/formidable/lib/multipart_parser.js +301 -0
  24. data/server/node_modules/connect-form/node_modules/formidable/lib/querystring_parser.js +25 -0
  25. data/server/node_modules/connect-form/node_modules/formidable/lib/util.js +6 -0
  26. data/server/node_modules/connect-form/node_modules/formidable/package.json +19 -0
  27. data/server/node_modules/connect-form/node_modules/formidable/test/common.js +20 -0
  28. data/server/node_modules/connect-form/node_modules/formidable/test/fast/test-incoming-form.js +45 -0
  29. data/server/node_modules/connect-form/node_modules/formidable/test/fixture/file/: // ? % * | /" < > . /342/230/203 ; ' @ # $ ^ & ( ) - _ = + { } [ ] ` ~.txt" +1 -0
  30. data/server/node_modules/connect-form/node_modules/formidable/test/fixture/http/special-chars-in-filename/info.md +3 -0
  31. data/server/node_modules/connect-form/node_modules/formidable/test/fixture/http/special-chars-in-filename/osx-chrome-13.http +36 -0
  32. data/server/node_modules/connect-form/node_modules/formidable/test/fixture/http/special-chars-in-filename/osx-firefox-3.6.http +24 -0
  33. data/server/node_modules/connect-form/node_modules/formidable/test/fixture/http/special-chars-in-filename/osx-safari-5.http +23 -0
  34. data/server/node_modules/connect-form/node_modules/formidable/test/fixture/http/special-chars-in-filename/xp-chrome-12.http +33 -0
  35. data/server/node_modules/connect-form/node_modules/formidable/test/fixture/http/special-chars-in-filename/xp-ie-7.http +22 -0
  36. data/server/node_modules/connect-form/node_modules/formidable/test/fixture/http/special-chars-in-filename/xp-ie-8.http +22 -0
  37. data/server/node_modules/connect-form/node_modules/formidable/test/fixture/http/special-chars-in-filename/xp-safari-5.http +22 -0
  38. data/server/node_modules/connect-form/node_modules/formidable/test/fixture/js/special-chars-in-filename.js +21 -0
  39. data/server/node_modules/connect-form/node_modules/formidable/test/fixture/multi_video.upload +0 -0
  40. data/server/node_modules/connect-form/node_modules/formidable/test/fixture/multipart.js +72 -0
  41. data/server/node_modules/connect-form/node_modules/formidable/test/legacy/common.js +24 -0
  42. data/server/node_modules/connect-form/node_modules/formidable/test/legacy/integration/test-multipart-parser.js +80 -0
  43. data/server/node_modules/connect-form/node_modules/formidable/test/legacy/simple/test-file.js +104 -0
  44. data/server/node_modules/connect-form/node_modules/formidable/test/legacy/simple/test-incoming-form.js +715 -0
  45. data/server/node_modules/connect-form/node_modules/formidable/test/legacy/simple/test-multipart-parser.js +50 -0
  46. data/server/node_modules/connect-form/node_modules/formidable/test/legacy/simple/test-querystring-parser.js +45 -0
  47. data/server/node_modules/connect-form/node_modules/formidable/test/legacy/system/test-multi-video-upload.js +72 -0
  48. data/server/node_modules/connect-form/node_modules/formidable/test/run.js +7 -0
  49. data/server/node_modules/connect-form/node_modules/formidable/test/slow/test-fixtures.js +84 -0
  50. data/server/node_modules/connect-form/node_modules/formidable/tool/record.js +47 -0
  51. data/server/node_modules/connect-form/package.json +9 -0
  52. data/server/node_modules/connect-form/support/connect/History.md +120 -0
  53. data/server/node_modules/connect-form/support/connect/Makefile +85 -0
  54. data/server/node_modules/connect-form/support/connect/README.md +121 -0
  55. data/server/node_modules/connect-form/support/connect/benchmarks/graph +79 -0
  56. data/server/node_modules/connect-form/support/connect/benchmarks/hello-world/connect.js +19 -0
  57. data/server/node_modules/connect-form/support/connect/benchmarks/hello-world/node.js +16 -0
  58. data/server/node_modules/connect-form/support/connect/benchmarks/hello-world/rack.thin.ru +9 -0
  59. data/server/node_modules/connect-form/support/connect/benchmarks/hello-world/sinatra.thin.ru +10 -0
  60. data/server/node_modules/connect-form/support/connect/benchmarks/public/jquery.js +19 -0
  61. data/server/node_modules/connect-form/support/connect/benchmarks/run +60 -0
  62. data/server/node_modules/connect-form/support/connect/benchmarks/static/connect.js +10 -0
  63. data/server/node_modules/connect-form/support/connect/benchmarks/static/node.js +17 -0
  64. data/server/node_modules/connect-form/support/connect/benchmarks/static/sinatra.thin.ru +10 -0
  65. data/server/node_modules/connect-form/support/connect/docs/api.html +1973 -0
  66. data/server/node_modules/connect-form/support/connect/docs/bodyDecoder.1 +27 -0
  67. data/server/node_modules/connect-form/support/connect/docs/bodyDecoder.html +164 -0
  68. data/server/node_modules/connect-form/support/connect/docs/bodyDecoder.md +11 -0
  69. data/server/node_modules/connect-form/support/connect/docs/compiler.1 +66 -0
  70. data/server/node_modules/connect-form/support/connect/docs/compiler.html +193 -0
  71. data/server/node_modules/connect-form/support/connect/docs/compiler.md +32 -0
  72. data/server/node_modules/connect-form/support/connect/docs/conditionalGet.1 +16 -0
  73. data/server/node_modules/connect-form/support/connect/docs/conditionalGet.html +158 -0
  74. data/server/node_modules/connect-form/support/connect/docs/conditionalGet.md +7 -0
  75. data/server/node_modules/connect-form/support/connect/docs/cookieDecoder.1 +27 -0
  76. data/server/node_modules/connect-form/support/connect/docs/cookieDecoder.html +164 -0
  77. data/server/node_modules/connect-form/support/connect/docs/cookieDecoder.md +11 -0
  78. data/server/node_modules/connect-form/support/connect/docs/errorHandler.1 +58 -0
  79. data/server/node_modules/connect-form/support/connect/docs/errorHandler.html +181 -0
  80. data/server/node_modules/connect-form/support/connect/docs/errorHandler.md +28 -0
  81. data/server/node_modules/connect-form/support/connect/docs/format.1 +7 -0
  82. data/server/node_modules/connect-form/support/connect/docs/format.html +152 -0
  83. data/server/node_modules/connect-form/support/connect/docs/format.md +3 -0
  84. data/server/node_modules/connect-form/support/connect/docs/index.1 +260 -0
  85. data/server/node_modules/connect-form/support/connect/docs/index.html +332 -0
  86. data/server/node_modules/connect-form/support/connect/docs/index.md +171 -0
  87. data/server/node_modules/connect-form/support/connect/docs/jsonrpc.1 +62 -0
  88. data/server/node_modules/connect-form/support/connect/docs/jsonrpc.html +192 -0
  89. data/server/node_modules/connect-form/support/connect/docs/jsonrpc.md +39 -0
  90. data/server/node_modules/connect-form/support/connect/docs/layout/api.foot.html +3 -0
  91. data/server/node_modules/connect-form/support/connect/docs/layout/api.head.html +142 -0
  92. data/server/node_modules/connect-form/support/connect/docs/lint.1 +102 -0
  93. data/server/node_modules/connect-form/support/connect/docs/lint.html +232 -0
  94. data/server/node_modules/connect-form/support/connect/docs/lint.md +79 -0
  95. data/server/node_modules/connect-form/support/connect/docs/logger.1 +66 -0
  96. data/server/node_modules/connect-form/support/connect/docs/logger.html +184 -0
  97. data/server/node_modules/connect-form/support/connect/docs/logger.md +31 -0
  98. data/server/node_modules/connect-form/support/connect/docs/methodOverride.1 +31 -0
  99. data/server/node_modules/connect-form/support/connect/docs/methodOverride.html +171 -0
  100. data/server/node_modules/connect-form/support/connect/docs/methodOverride.md +17 -0
  101. data/server/node_modules/connect-form/support/connect/docs/responseTime.1 +7 -0
  102. data/server/node_modules/connect-form/support/connect/docs/responseTime.html +152 -0
  103. data/server/node_modules/connect-form/support/connect/docs/responseTime.md +3 -0
  104. data/server/node_modules/connect-form/support/connect/docs/router.1 +75 -0
  105. data/server/node_modules/connect-form/support/connect/docs/router.html +211 -0
  106. data/server/node_modules/connect-form/support/connect/docs/router.md +58 -0
  107. data/server/node_modules/connect-form/support/connect/docs/session.1 +115 -0
  108. data/server/node_modules/connect-form/support/connect/docs/session.html +214 -0
  109. data/server/node_modules/connect-form/support/connect/docs/session.md +55 -0
  110. data/server/node_modules/connect-form/support/connect/docs/staticProvider.1 +28 -0
  111. data/server/node_modules/connect-form/support/connect/docs/staticProvider.html +162 -0
  112. data/server/node_modules/connect-form/support/connect/docs/staticProvider.md +11 -0
  113. data/server/node_modules/connect-form/support/connect/examples/error/app.js +13 -0
  114. data/server/node_modules/connect-form/support/connect/examples/jsonrpc/app.js +38 -0
  115. data/server/node_modules/connect-form/support/connect/examples/less/app.js +21 -0
  116. data/server/node_modules/connect-form/support/connect/examples/less/public/index.html +8 -0
  117. data/server/node_modules/connect-form/support/connect/examples/less/public/style.less +8 -0
  118. data/server/node_modules/connect-form/support/connect/examples/lint/app.js +40 -0
  119. data/server/node_modules/connect-form/support/connect/examples/multitouch/app.js +61 -0
  120. data/server/node_modules/connect-form/support/connect/examples/multitouch/public/client.js +73 -0
  121. data/server/node_modules/connect-form/support/connect/examples/multitouch/public/favicon.ico +0 -0
  122. data/server/node_modules/connect-form/support/connect/examples/multitouch/public/index.html +16 -0
  123. data/server/node_modules/connect-form/support/connect/examples/multitouch/public/raphael.js +113 -0
  124. data/server/node_modules/connect-form/support/connect/examples/multitouch/public/style.css +23 -0
  125. data/server/node_modules/connect-form/support/connect/examples/router/app.js +63 -0
  126. data/server/node_modules/connect-form/support/connect/examples/sass/app.js +21 -0
  127. data/server/node_modules/connect-form/support/connect/examples/sass/public/index.html +8 -0
  128. data/server/node_modules/connect-form/support/connect/examples/sass/public/style.sass +4 -0
  129. data/server/node_modules/connect-form/support/connect/examples/session/app.js +60 -0
  130. data/server/node_modules/connect-form/support/connect/examples/stack-middleware/app.js +15 -0
  131. data/server/node_modules/connect-form/support/connect/examples/stack-middleware/hello.js +13 -0
  132. data/server/node_modules/connect-form/support/connect/examples/stack-middleware/world.js +13 -0
  133. data/server/node_modules/connect-form/support/connect/examples/static/app.js +10 -0
  134. data/server/node_modules/connect-form/support/connect/examples/static/public/style.css +3 -0
  135. data/server/node_modules/connect-form/support/connect/examples/url-rewrite/app.js +44 -0
  136. data/server/node_modules/connect-form/support/connect/examples/vhost/app.js +25 -0
  137. data/server/node_modules/connect-form/support/connect/install.sh +6 -0
  138. data/server/node_modules/connect-form/support/connect/lib/connect/index.js +309 -0
  139. data/server/node_modules/connect-form/support/connect/lib/connect/middleware/bodyDecoder.js +69 -0
  140. data/server/node_modules/connect-form/support/connect/lib/connect/middleware/cache.js +142 -0
  141. data/server/node_modules/connect-form/support/connect/lib/connect/middleware/cacheManifest.js +71 -0
  142. data/server/node_modules/connect-form/support/connect/lib/connect/middleware/compiler.js +150 -0
  143. data/server/node_modules/connect-form/support/connect/lib/connect/middleware/conditionalGet.js +71 -0
  144. data/server/node_modules/connect-form/support/connect/lib/connect/middleware/cookieDecoder.js +37 -0
  145. data/server/node_modules/connect-form/support/connect/lib/connect/middleware/errorHandler.js +91 -0
  146. data/server/node_modules/connect-form/support/connect/lib/connect/middleware/format.js +46 -0
  147. data/server/node_modules/connect-form/support/connect/lib/connect/middleware/gzip-compress.js +79 -0
  148. data/server/node_modules/connect-form/support/connect/lib/connect/middleware/gzip-proc.js +73 -0
  149. data/server/node_modules/connect-form/support/connect/lib/connect/middleware/gzip.js +8 -0
  150. data/server/node_modules/connect-form/support/connect/lib/connect/middleware/jsonrpc.js +235 -0
  151. data/server/node_modules/connect-form/support/connect/lib/connect/middleware/lint.js +136 -0
  152. data/server/node_modules/connect-form/support/connect/lib/connect/middleware/logger.js +107 -0
  153. data/server/node_modules/connect-form/support/connect/lib/connect/middleware/methodOverride.js +54 -0
  154. data/server/node_modules/connect-form/support/connect/lib/connect/middleware/pubsub.js +107 -0
  155. data/server/node_modules/connect-form/support/connect/lib/connect/middleware/repl.js +43 -0
  156. data/server/node_modules/connect-form/support/connect/lib/connect/middleware/responseTime.js +28 -0
  157. data/server/node_modules/connect-form/support/connect/lib/connect/middleware/router.js +158 -0
  158. data/server/node_modules/connect-form/support/connect/lib/connect/middleware/session.js +129 -0
  159. data/server/node_modules/connect-form/support/connect/lib/connect/middleware/session/memory.js +141 -0
  160. data/server/node_modules/connect-form/support/connect/lib/connect/middleware/session/session.js +71 -0
  161. data/server/node_modules/connect-form/support/connect/lib/connect/middleware/session/store.js +59 -0
  162. data/server/node_modules/connect-form/support/connect/lib/connect/middleware/staticProvider.js +144 -0
  163. data/server/node_modules/connect-form/support/connect/lib/connect/middleware/vhost.js +43 -0
  164. data/server/node_modules/connect-form/support/connect/lib/connect/public/error.html +13 -0
  165. data/server/node_modules/connect-form/support/connect/lib/connect/public/style.css +98 -0
  166. data/server/node_modules/connect-form/support/connect/lib/connect/response.js +56 -0
  167. data/server/node_modules/connect-form/support/connect/lib/connect/utils.js +428 -0
  168. data/server/node_modules/connect-form/support/connect/package.json +21 -0
  169. data/server/node_modules/connect-form/support/connect/support/highlight.js +26 -0
  170. data/server/node_modules/connect-form/support/connect/test/bodyDecoder.test.js +69 -0
  171. data/server/node_modules/connect-form/support/connect/test/compiler.test.js +23 -0
  172. data/server/node_modules/connect-form/support/connect/test/connect.test.js +187 -0
  173. data/server/node_modules/connect-form/support/connect/test/cookieDecoder.test.js +31 -0
  174. data/server/node_modules/connect-form/support/connect/test/errorHandler.test.js +60 -0
  175. data/server/node_modules/connect-form/support/connect/test/filters/uppercase.js +14 -0
  176. data/server/node_modules/connect-form/support/connect/test/fixtures/foo.bar.baz.sass +2 -0
  177. data/server/node_modules/connect-form/support/connect/test/fixtures/index.html +1 -0
  178. data/server/node_modules/connect-form/support/connect/test/fixtures/some text.txt +1 -0
  179. data/server/node_modules/connect-form/support/connect/test/fixtures/style.less +2 -0
  180. data/server/node_modules/connect-form/support/connect/test/fixtures/style.sass +3 -0
  181. data/server/node_modules/connect-form/support/connect/test/fixtures/user.json +4 -0
  182. data/server/node_modules/connect-form/support/connect/test/format.test.js +37 -0
  183. data/server/node_modules/connect-form/support/connect/test/gzip.test.js +55 -0
  184. data/server/node_modules/connect-form/support/connect/test/helpers/http.js +87 -0
  185. data/server/node_modules/connect-form/support/connect/test/helpers/index.js +12 -0
  186. data/server/node_modules/connect-form/support/connect/test/jsonrpc.test.js +225 -0
  187. data/server/node_modules/connect-form/support/connect/test/logger.test.js +52 -0
  188. data/server/node_modules/connect-form/support/connect/test/methodOverride.test.js +69 -0
  189. data/server/node_modules/connect-form/support/connect/test/providers/echo.js +10 -0
  190. data/server/node_modules/connect-form/support/connect/test/responseTime.test.js +29 -0
  191. data/server/node_modules/connect-form/support/connect/test/router.test.js +154 -0
  192. data/server/node_modules/connect-form/support/connect/test/session.test.js +127 -0
  193. data/server/node_modules/connect-form/support/connect/test/static.test.js +66 -0
  194. data/server/node_modules/connect-form/support/connect/test/utils.test.js +65 -0
  195. data/server/node_modules/connect-form/support/connect/test/vhost.test.js +46 -0
  196. data/server/node_modules/connect-form/support/expresso/History.md +54 -0
  197. data/server/node_modules/connect-form/support/expresso/Makefile +30 -0
  198. data/server/node_modules/connect-form/support/expresso/Readme.md +208 -0
  199. data/server/node_modules/connect-form/support/expresso/bin/expresso +647 -0
  200. data/server/node_modules/connect-form/support/expresso/lib/bar.js +4 -0
  201. data/server/node_modules/connect-form/support/expresso/lib/foo.js +16 -0
  202. data/server/node_modules/connect-form/support/expresso/package.json +9 -0
  203. data/server/node_modules/connect-form/support/expresso/seed.yml +6 -0
  204. data/server/node_modules/connect-form/support/expresso/test/assert.test.js +64 -0
  205. data/server/node_modules/connect-form/support/expresso/test/bar.test.js +12 -0
  206. data/server/node_modules/connect-form/support/expresso/test/foo.test.js +13 -0
  207. data/server/node_modules/connect-form/support/expresso/test/http.test.js +61 -0
  208. data/server/node_modules/connect-form/test/form.test.js +148 -0
  209. data/server/node_modules/cradle/LICENSE +20 -0
  210. data/server/node_modules/cradle/Makefile +10 -0
  211. data/server/node_modules/cradle/README.md +377 -0
  212. data/server/node_modules/cradle/lib/cradle.js +688 -0
  213. data/server/node_modules/cradle/lib/cradle/cache.js +102 -0
  214. data/server/node_modules/cradle/lib/cradle/response.js +127 -0
  215. data/server/node_modules/cradle/node_modules/vargs/LICENSE +20 -0
  216. data/server/node_modules/cradle/node_modules/vargs/README.md +34 -0
  217. data/server/node_modules/cradle/node_modules/vargs/lib/vargs.js +70 -0
  218. data/server/node_modules/cradle/node_modules/vargs/package.json +12 -0
  219. data/server/node_modules/cradle/node_modules/vows/LICENSE +20 -0
  220. data/server/node_modules/cradle/node_modules/vows/Makefile +7 -0
  221. data/server/node_modules/cradle/node_modules/vows/README.md +39 -0
  222. data/server/node_modules/cradle/node_modules/vows/bin/vows +515 -0
  223. data/server/node_modules/cradle/node_modules/vows/lib/assert/error.js +27 -0
  224. data/server/node_modules/cradle/node_modules/vows/lib/assert/macros.js +215 -0
  225. data/server/node_modules/cradle/node_modules/vows/lib/assert/utils.js +77 -0
  226. data/server/node_modules/cradle/node_modules/vows/lib/vows.js +193 -0
  227. data/server/node_modules/cradle/node_modules/vows/lib/vows/console.js +131 -0
  228. data/server/node_modules/cradle/node_modules/vows/lib/vows/context.js +55 -0
  229. data/server/node_modules/cradle/node_modules/vows/lib/vows/coverage/file.js +29 -0
  230. data/server/node_modules/cradle/node_modules/vows/lib/vows/coverage/fragments/coverage-foot.html +2 -0
  231. data/server/node_modules/cradle/node_modules/vows/lib/vows/coverage/fragments/coverage-head.html +61 -0
  232. data/server/node_modules/cradle/node_modules/vows/lib/vows/coverage/report-html.js +54 -0
  233. data/server/node_modules/cradle/node_modules/vows/lib/vows/coverage/report-json.js +54 -0
  234. data/server/node_modules/cradle/node_modules/vows/lib/vows/coverage/report-plain.js +38 -0
  235. data/server/node_modules/cradle/node_modules/vows/lib/vows/extras.js +28 -0
  236. data/server/node_modules/cradle/node_modules/vows/lib/vows/reporters/dot-matrix.js +67 -0
  237. data/server/node_modules/cradle/node_modules/vows/lib/vows/reporters/json.js +16 -0
  238. data/server/node_modules/cradle/node_modules/vows/lib/vows/reporters/silent.js +8 -0
  239. data/server/node_modules/cradle/node_modules/vows/lib/vows/reporters/spec.js +44 -0
  240. data/server/node_modules/cradle/node_modules/vows/lib/vows/reporters/watch.js +39 -0
  241. data/server/node_modules/cradle/node_modules/vows/lib/vows/reporters/xunit.js +90 -0
  242. data/server/node_modules/cradle/node_modules/vows/lib/vows/suite.js +319 -0
  243. data/server/node_modules/cradle/node_modules/vows/node_modules/eyes/LICENSE +20 -0
  244. data/server/node_modules/cradle/node_modules/vows/node_modules/eyes/Makefile +4 -0
  245. data/server/node_modules/cradle/node_modules/vows/node_modules/eyes/README.md +72 -0
  246. data/server/node_modules/cradle/node_modules/vows/node_modules/eyes/lib/eyes.js +233 -0
  247. data/server/node_modules/cradle/node_modules/vows/node_modules/eyes/package.json +14 -0
  248. data/server/node_modules/cradle/node_modules/vows/node_modules/eyes/test/eyes-test.js +55 -0
  249. data/server/node_modules/cradle/node_modules/vows/package.json +14 -0
  250. data/server/node_modules/cradle/node_modules/vows/test/assert-test.js +135 -0
  251. data/server/node_modules/cradle/node_modules/vows/test/fixtures/isolate/failing.js +18 -0
  252. data/server/node_modules/cradle/node_modules/vows/test/fixtures/isolate/log.js +18 -0
  253. data/server/node_modules/cradle/node_modules/vows/test/fixtures/isolate/passing.js +17 -0
  254. data/server/node_modules/cradle/node_modules/vows/test/fixtures/isolate/stderr.js +18 -0
  255. data/server/node_modules/cradle/node_modules/vows/test/isolate-test.js +140 -0
  256. data/server/node_modules/cradle/node_modules/vows/test/testInherit.js +133 -0
  257. data/server/node_modules/cradle/node_modules/vows/test/vows-error-test.js +51 -0
  258. data/server/node_modules/cradle/node_modules/vows/test/vows-test.js +374 -0
  259. data/server/node_modules/cradle/package.json +14 -0
  260. data/server/node_modules/cradle/test/cache-test.js +102 -0
  261. data/server/node_modules/cradle/test/cradle-test.js +651 -0
  262. data/server/node_modules/cradle/test/fixtures/databases.json +25 -0
  263. data/server/node_modules/cradle/test/helpers/seed.js +56 -0
  264. data/server/node_modules/cradle/test/response-test.js +73 -0
  265. data/server/node_modules/express/History.md +743 -0
  266. data/server/node_modules/express/LICENSE +22 -0
  267. data/server/node_modules/express/Makefile +35 -0
  268. data/server/node_modules/express/Readme.md +143 -0
  269. data/server/node_modules/express/bin/express +417 -0
  270. data/server/node_modules/express/index.js +2 -0
  271. data/server/node_modules/express/lib/express.js +79 -0
  272. data/server/node_modules/express/lib/http.js +583 -0
  273. data/server/node_modules/express/lib/https.js +52 -0
  274. data/server/node_modules/express/lib/request.js +309 -0
  275. data/server/node_modules/express/lib/response.js +459 -0
  276. data/server/node_modules/express/lib/router/collection.js +53 -0
  277. data/server/node_modules/express/lib/router/index.js +398 -0
  278. data/server/node_modules/express/lib/router/methods.js +70 -0
  279. data/server/node_modules/express/lib/router/route.js +88 -0
  280. data/server/node_modules/express/lib/utils.js +139 -0
  281. data/server/node_modules/express/lib/view.js +457 -0
  282. data/server/node_modules/express/lib/view/partial.js +40 -0
  283. data/server/node_modules/express/lib/view/view.js +209 -0
  284. data/server/node_modules/express/node_modules/connect/LICENSE +24 -0
  285. data/server/node_modules/express/node_modules/connect/index.js +2 -0
  286. data/server/node_modules/express/node_modules/connect/lib/cache.js +81 -0
  287. data/server/node_modules/express/node_modules/connect/lib/connect.js +106 -0
  288. data/server/node_modules/express/node_modules/connect/lib/http.js +215 -0
  289. data/server/node_modules/express/node_modules/connect/lib/https.js +47 -0
  290. data/server/node_modules/express/node_modules/connect/lib/index.js +46 -0
  291. data/server/node_modules/express/node_modules/connect/lib/middleware/basicAuth.js +93 -0
  292. data/server/node_modules/express/node_modules/connect/lib/middleware/bodyParser.js +92 -0
  293. data/server/node_modules/express/node_modules/connect/lib/middleware/compiler.js +163 -0
  294. data/server/node_modules/express/node_modules/connect/lib/middleware/cookieParser.js +46 -0
  295. data/server/node_modules/express/node_modules/connect/lib/middleware/csrf.js +105 -0
  296. data/server/node_modules/express/node_modules/connect/lib/middleware/directory.js +222 -0
  297. data/server/node_modules/express/node_modules/connect/lib/middleware/errorHandler.js +100 -0
  298. data/server/node_modules/express/node_modules/connect/lib/middleware/favicon.js +76 -0
  299. data/server/node_modules/express/node_modules/connect/lib/middleware/limit.js +78 -0
  300. data/server/node_modules/express/node_modules/connect/lib/middleware/logger.js +299 -0
  301. data/server/node_modules/express/node_modules/connect/lib/middleware/methodOverride.js +38 -0
  302. data/server/node_modules/express/node_modules/connect/lib/middleware/profiler.js +100 -0
  303. data/server/node_modules/express/node_modules/connect/lib/middleware/query.js +40 -0
  304. data/server/node_modules/express/node_modules/connect/lib/middleware/responseTime.js +34 -0
  305. data/server/node_modules/express/node_modules/connect/lib/middleware/router.js +379 -0
  306. data/server/node_modules/express/node_modules/connect/lib/middleware/session.js +346 -0
  307. data/server/node_modules/express/node_modules/connect/lib/middleware/session/cookie.js +126 -0
  308. data/server/node_modules/express/node_modules/connect/lib/middleware/session/memory.js +131 -0
  309. data/server/node_modules/express/node_modules/connect/lib/middleware/session/session.js +137 -0
  310. data/server/node_modules/express/node_modules/connect/lib/middleware/session/store.js +87 -0
  311. data/server/node_modules/express/node_modules/connect/lib/middleware/static.js +220 -0
  312. data/server/node_modules/express/node_modules/connect/lib/middleware/staticCache.js +122 -0
  313. data/server/node_modules/express/node_modules/connect/lib/middleware/vhost.js +44 -0
  314. data/server/node_modules/express/node_modules/connect/lib/patch.js +79 -0
  315. data/server/node_modules/express/node_modules/connect/lib/public/directory.html +75 -0
  316. data/server/node_modules/express/node_modules/connect/lib/public/error.html +13 -0
  317. data/server/node_modules/express/node_modules/connect/lib/public/favicon.ico +0 -0
  318. data/server/node_modules/express/node_modules/connect/lib/public/icons/page.png +0 -0
  319. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_add.png +0 -0
  320. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_attach.png +0 -0
  321. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_code.png +0 -0
  322. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_copy.png +0 -0
  323. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_delete.png +0 -0
  324. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_edit.png +0 -0
  325. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_error.png +0 -0
  326. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_excel.png +0 -0
  327. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_find.png +0 -0
  328. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_gear.png +0 -0
  329. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_go.png +0 -0
  330. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_green.png +0 -0
  331. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_key.png +0 -0
  332. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_lightning.png +0 -0
  333. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_link.png +0 -0
  334. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_paintbrush.png +0 -0
  335. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_paste.png +0 -0
  336. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_red.png +0 -0
  337. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_refresh.png +0 -0
  338. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_save.png +0 -0
  339. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white.png +0 -0
  340. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_acrobat.png +0 -0
  341. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_actionscript.png +0 -0
  342. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_add.png +0 -0
  343. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_c.png +0 -0
  344. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_camera.png +0 -0
  345. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_cd.png +0 -0
  346. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_code.png +0 -0
  347. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_code_red.png +0 -0
  348. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_coldfusion.png +0 -0
  349. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_compressed.png +0 -0
  350. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_copy.png +0 -0
  351. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_cplusplus.png +0 -0
  352. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_csharp.png +0 -0
  353. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_cup.png +0 -0
  354. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_database.png +0 -0
  355. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_delete.png +0 -0
  356. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_dvd.png +0 -0
  357. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_edit.png +0 -0
  358. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_error.png +0 -0
  359. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_excel.png +0 -0
  360. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_find.png +0 -0
  361. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_flash.png +0 -0
  362. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_freehand.png +0 -0
  363. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_gear.png +0 -0
  364. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_get.png +0 -0
  365. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_go.png +0 -0
  366. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_h.png +0 -0
  367. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_horizontal.png +0 -0
  368. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_key.png +0 -0
  369. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_lightning.png +0 -0
  370. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_link.png +0 -0
  371. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_magnify.png +0 -0
  372. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_medal.png +0 -0
  373. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_office.png +0 -0
  374. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_paint.png +0 -0
  375. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_paintbrush.png +0 -0
  376. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_paste.png +0 -0
  377. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_php.png +0 -0
  378. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_picture.png +0 -0
  379. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_powerpoint.png +0 -0
  380. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_put.png +0 -0
  381. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_ruby.png +0 -0
  382. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_stack.png +0 -0
  383. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_star.png +0 -0
  384. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_swoosh.png +0 -0
  385. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_text.png +0 -0
  386. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_text_width.png +0 -0
  387. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_tux.png +0 -0
  388. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_vector.png +0 -0
  389. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_visualstudio.png +0 -0
  390. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_width.png +0 -0
  391. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_word.png +0 -0
  392. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_world.png +0 -0
  393. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_wrench.png +0 -0
  394. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_white_zip.png +0 -0
  395. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_word.png +0 -0
  396. data/server/node_modules/express/node_modules/connect/lib/public/icons/page_world.png +0 -0
  397. data/server/node_modules/express/node_modules/connect/lib/public/style.css +141 -0
  398. data/server/node_modules/express/node_modules/connect/lib/utils.js +444 -0
  399. data/server/node_modules/express/node_modules/connect/package.json +24 -0
  400. data/server/node_modules/express/node_modules/connect/test.js +39 -0
  401. data/server/node_modules/express/node_modules/mime/LICENSE +19 -0
  402. data/server/node_modules/express/node_modules/mime/README.md +50 -0
  403. data/server/node_modules/express/node_modules/mime/index.js +1 -0
  404. data/server/node_modules/express/node_modules/mime/mime.js +92 -0
  405. data/server/node_modules/express/node_modules/mime/mime.types +1479 -0
  406. data/server/node_modules/express/node_modules/mime/node.types +26 -0
  407. data/server/node_modules/express/node_modules/mime/package.json +11 -0
  408. data/server/node_modules/express/node_modules/mime/test.js +80 -0
  409. data/server/node_modules/express/node_modules/qs/History.md +52 -0
  410. data/server/node_modules/express/node_modules/qs/Makefile +7 -0
  411. data/server/node_modules/express/node_modules/qs/Readme.md +49 -0
  412. data/server/node_modules/express/node_modules/qs/benchmark.js +17 -0
  413. data/server/node_modules/express/node_modules/qs/examples.js +48 -0
  414. data/server/node_modules/express/node_modules/qs/index.js +2 -0
  415. data/server/node_modules/express/node_modules/qs/lib/querystring.js +236 -0
  416. data/server/node_modules/express/node_modules/qs/package.json +9 -0
  417. data/server/node_modules/express/node_modules/qs/support/expresso/History.md +128 -0
  418. data/server/node_modules/express/node_modules/qs/support/expresso/Makefile +53 -0
  419. data/server/node_modules/express/node_modules/qs/support/expresso/Readme.md +61 -0
  420. data/server/node_modules/express/node_modules/qs/support/expresso/bin/expresso +856 -0
  421. data/server/node_modules/express/node_modules/qs/support/expresso/docs/api.html +1080 -0
  422. data/server/node_modules/express/node_modules/qs/support/expresso/docs/index.html +377 -0
  423. data/server/node_modules/express/node_modules/qs/support/expresso/docs/index.md +290 -0
  424. data/server/node_modules/express/node_modules/qs/support/expresso/docs/layout/foot.html +3 -0
  425. data/server/node_modules/express/node_modules/qs/support/expresso/docs/layout/head.html +42 -0
  426. data/server/node_modules/express/node_modules/qs/support/expresso/lib/bar.js +4 -0
  427. data/server/node_modules/express/node_modules/qs/support/expresso/lib/foo.js +16 -0
  428. data/server/node_modules/express/node_modules/qs/support/expresso/package.json +12 -0
  429. data/server/node_modules/express/node_modules/qs/support/expresso/test/assert.test.js +91 -0
  430. data/server/node_modules/express/node_modules/qs/support/expresso/test/async.test.js +12 -0
  431. data/server/node_modules/express/node_modules/qs/support/expresso/test/bar.test.js +13 -0
  432. data/server/node_modules/express/node_modules/qs/support/expresso/test/foo.test.js +14 -0
  433. data/server/node_modules/express/node_modules/qs/support/expresso/test/http.test.js +146 -0
  434. data/server/node_modules/express/node_modules/qs/support/expresso/test/serial/async.test.js +39 -0
  435. data/server/node_modules/express/node_modules/qs/support/expresso/test/serial/http.test.js +48 -0
  436. data/server/node_modules/express/node_modules/qs/support/should/History.md +22 -0
  437. data/server/node_modules/express/node_modules/qs/support/should/Makefile +6 -0
  438. data/server/node_modules/express/node_modules/qs/support/should/Readme.md +248 -0
  439. data/server/node_modules/express/node_modules/qs/support/should/examples/runner.js +53 -0
  440. data/server/node_modules/express/node_modules/qs/support/should/index.js +2 -0
  441. data/server/node_modules/express/node_modules/qs/support/should/lib/eql.js +91 -0
  442. data/server/node_modules/express/node_modules/qs/support/should/lib/should.js +548 -0
  443. data/server/node_modules/express/node_modules/qs/support/should/package.json +8 -0
  444. data/server/node_modules/express/node_modules/qs/support/should/test/should.test.js +358 -0
  445. data/server/node_modules/express/node_modules/qs/test/parse.test.js +156 -0
  446. data/server/node_modules/express/node_modules/qs/test/stringify.test.js +95 -0
  447. data/server/node_modules/express/package.json +38 -0
  448. data/server/node_modules/knox/History.md +41 -0
  449. data/server/node_modules/knox/Makefile +21 -0
  450. data/server/node_modules/knox/Readme.md +144 -0
  451. data/server/node_modules/knox/index.html +483 -0
  452. data/server/node_modules/knox/index.js +2 -0
  453. data/server/node_modules/knox/lib/knox/auth.js +190 -0
  454. data/server/node_modules/knox/lib/knox/client.js +355 -0
  455. data/server/node_modules/knox/lib/knox/index.js +36 -0
  456. data/server/node_modules/knox/lib/knox/mime/README.md +19 -0
  457. data/server/node_modules/knox/lib/knox/mime/index.js +308 -0
  458. data/server/node_modules/knox/lib/knox/mime/mime.js +308 -0
  459. data/server/node_modules/knox/lib/knox/mime/package.json +12 -0
  460. data/server/node_modules/knox/lib/knox/mime/test.js +59 -0
  461. data/server/node_modules/knox/lib/knox/utils.js +55 -0
  462. data/server/node_modules/knox/package.json +13 -0
  463. data/server/node_modules/knox/support/expresso/History.md +87 -0
  464. data/server/node_modules/knox/support/expresso/Makefile +53 -0
  465. data/server/node_modules/knox/support/expresso/Readme.md +39 -0
  466. data/server/node_modules/knox/support/expresso/bin/expresso +835 -0
  467. data/server/node_modules/knox/support/expresso/docs/api.html +1048 -0
  468. data/server/node_modules/knox/support/expresso/docs/index.html +373 -0
  469. data/server/node_modules/knox/support/expresso/docs/index.md +290 -0
  470. data/server/node_modules/knox/support/expresso/docs/layout/foot.html +3 -0
  471. data/server/node_modules/knox/support/expresso/docs/layout/head.html +42 -0
  472. data/server/node_modules/knox/support/expresso/lib/bar.js +4 -0
  473. data/server/node_modules/knox/support/expresso/lib/foo.js +16 -0
  474. data/server/node_modules/knox/support/expresso/package.json +9 -0
  475. data/server/node_modules/knox/support/expresso/test/assert.test.js +84 -0
  476. data/server/node_modules/knox/support/expresso/test/async.test.js +6 -0
  477. data/server/node_modules/knox/support/expresso/test/bar.test.js +12 -0
  478. data/server/node_modules/knox/support/expresso/test/foo.test.js +13 -0
  479. data/server/node_modules/knox/support/expresso/test/http.test.js +76 -0
  480. data/server/node_modules/knox/support/expresso/test/serial/async.test.js +38 -0
  481. data/server/node_modules/knox/support/expresso/test/serial/http.test.js +47 -0
  482. data/server/node_modules/knox/test/auth.test.js +59 -0
  483. data/server/node_modules/knox/test/fixtures/user.json +1 -0
  484. data/server/node_modules/knox/test/knox.test.js +188 -0
  485. data/server/node_modules/knox/test/utils.test.js +17 -0
  486. data/server/node_modules/node-uuid/LICENSE.md +3 -0
  487. data/server/node_modules/node-uuid/README.md +100 -0
  488. data/server/node_modules/node-uuid/package.json +12 -0
  489. data/server/node_modules/node-uuid/test/benchmark-native.c +34 -0
  490. data/server/node_modules/node-uuid/test/benchmark.js +27 -0
  491. data/server/node_modules/node-uuid/test/test.html +14 -0
  492. data/server/node_modules/node-uuid/test/test.js +83 -0
  493. data/server/node_modules/node-uuid/uuid.js +80 -0
  494. data/server/node_modules/restler/MIT-LICENSE +20 -0
  495. data/server/node_modules/restler/README.md +147 -0
  496. data/server/node_modules/restler/bin/restler +23 -0
  497. data/server/node_modules/restler/index.js +1 -0
  498. data/server/node_modules/restler/lib/multipartform.js +202 -0
  499. data/server/node_modules/restler/lib/restler.js +300 -0
  500. data/server/node_modules/restler/package.json +10 -0
  501. data/server/node_modules/restler/test/all.js +1 -0
  502. data/server/node_modules/restler/test/restler.js +148 -0
  503. data/server/node_modules/restler/test/test_helper.js +144 -0
  504. data/server/package.json +12 -0
  505. data/server/vendor/gems/bin/restclient +19 -0
  506. data/server/vendor/gems/cache/couchrest-1.1.2.gem +0 -0
  507. data/server/vendor/gems/cache/mime-types-1.16.gem +0 -0
  508. data/server/vendor/gems/cache/multi_json-1.0.3.gem +0 -0
  509. data/server/vendor/gems/cache/rest-client-1.6.7.gem +0 -0
  510. data/server/vendor/gems/gems/couchrest-1.1.2/Gemfile +4 -0
  511. data/server/vendor/gems/gems/couchrest-1.1.2/LICENSE +176 -0
  512. data/server/vendor/gems/gems/couchrest-1.1.2/README.md +65 -0
  513. data/server/vendor/gems/gems/couchrest-1.1.2/Rakefile +38 -0
  514. data/server/vendor/gems/gems/couchrest-1.1.2/THANKS.md +21 -0
  515. data/server/vendor/gems/gems/couchrest-1.1.2/VERSION +1 -0
  516. data/server/vendor/gems/gems/couchrest-1.1.2/couchrest.gemspec +34 -0
  517. data/server/vendor/gems/gems/couchrest-1.1.2/examples/word_count/markov +38 -0
  518. data/server/vendor/gems/gems/couchrest-1.1.2/examples/word_count/views/books/chunked-map.js +3 -0
  519. data/server/vendor/gems/gems/couchrest-1.1.2/examples/word_count/views/books/united-map.js +1 -0
  520. data/server/vendor/gems/gems/couchrest-1.1.2/examples/word_count/views/markov/chain-map.js +6 -0
  521. data/server/vendor/gems/gems/couchrest-1.1.2/examples/word_count/views/markov/chain-reduce.js +7 -0
  522. data/server/vendor/gems/gems/couchrest-1.1.2/examples/word_count/views/word_count/count-map.js +6 -0
  523. data/server/vendor/gems/gems/couchrest-1.1.2/examples/word_count/views/word_count/count-reduce.js +3 -0
  524. data/server/vendor/gems/gems/couchrest-1.1.2/examples/word_count/word_count.rb +46 -0
  525. data/server/vendor/gems/gems/couchrest-1.1.2/examples/word_count/word_count_query.rb +40 -0
  526. data/server/vendor/gems/gems/couchrest-1.1.2/examples/word_count/word_count_views.rb +26 -0
  527. data/server/vendor/gems/gems/couchrest-1.1.2/history.txt +194 -0
  528. data/server/vendor/gems/gems/couchrest-1.1.2/init.rb +1 -0
  529. data/server/vendor/gems/gems/couchrest-1.1.2/lib/couchrest.rb +134 -0
  530. data/server/vendor/gems/gems/couchrest-1.1.2/lib/couchrest/attributes.rb +89 -0
  531. data/server/vendor/gems/gems/couchrest-1.1.2/lib/couchrest/commands/generate.rb +71 -0
  532. data/server/vendor/gems/gems/couchrest-1.1.2/lib/couchrest/commands/push.rb +103 -0
  533. data/server/vendor/gems/gems/couchrest-1.1.2/lib/couchrest/database.rb +396 -0
  534. data/server/vendor/gems/gems/couchrest-1.1.2/lib/couchrest/design.rb +91 -0
  535. data/server/vendor/gems/gems/couchrest-1.1.2/lib/couchrest/document.rb +105 -0
  536. data/server/vendor/gems/gems/couchrest-1.1.2/lib/couchrest/helper/attachments.rb +29 -0
  537. data/server/vendor/gems/gems/couchrest-1.1.2/lib/couchrest/helper/pager.rb +103 -0
  538. data/server/vendor/gems/gems/couchrest-1.1.2/lib/couchrest/helper/streamer.rb +58 -0
  539. data/server/vendor/gems/gems/couchrest-1.1.2/lib/couchrest/helper/upgrade.rb +51 -0
  540. data/server/vendor/gems/gems/couchrest-1.1.2/lib/couchrest/middlewares/logger.rb +263 -0
  541. data/server/vendor/gems/gems/couchrest-1.1.2/lib/couchrest/monkeypatches.rb +25 -0
  542. data/server/vendor/gems/gems/couchrest-1.1.2/lib/couchrest/rest_api.rb +159 -0
  543. data/server/vendor/gems/gems/couchrest-1.1.2/lib/couchrest/server.rb +90 -0
  544. data/server/vendor/gems/gems/couchrest-1.1.2/lib/couchrest/support/inheritable_attributes.rb +107 -0
  545. data/server/vendor/gems/gems/couchrest-1.1.2/spec/couchrest/couchrest_spec.rb +202 -0
  546. data/server/vendor/gems/gems/couchrest-1.1.2/spec/couchrest/database_spec.rb +921 -0
  547. data/server/vendor/gems/gems/couchrest-1.1.2/spec/couchrest/design_spec.rb +206 -0
  548. data/server/vendor/gems/gems/couchrest-1.1.2/spec/couchrest/document_spec.rb +400 -0
  549. data/server/vendor/gems/gems/couchrest-1.1.2/spec/couchrest/helpers/pager_spec.rb +115 -0
  550. data/server/vendor/gems/gems/couchrest-1.1.2/spec/couchrest/helpers/streamer_spec.rb +59 -0
  551. data/server/vendor/gems/gems/couchrest-1.1.2/spec/couchrest/rest_api_spec.rb +212 -0
  552. data/server/vendor/gems/gems/couchrest-1.1.2/spec/couchrest/server_spec.rb +35 -0
  553. data/server/vendor/gems/gems/couchrest-1.1.2/spec/fixtures/attachments/README +3 -0
  554. data/server/vendor/gems/gems/couchrest-1.1.2/spec/fixtures/attachments/couchdb.png +0 -0
  555. data/server/vendor/gems/gems/couchrest-1.1.2/spec/fixtures/attachments/test.html +11 -0
  556. data/server/vendor/gems/gems/couchrest-1.1.2/spec/fixtures/views/lib.js +3 -0
  557. data/server/vendor/gems/gems/couchrest-1.1.2/spec/fixtures/views/test_view/lib.js +3 -0
  558. data/server/vendor/gems/gems/couchrest-1.1.2/spec/fixtures/views/test_view/only-map.js +4 -0
  559. data/server/vendor/gems/gems/couchrest-1.1.2/spec/fixtures/views/test_view/test-map.js +3 -0
  560. data/server/vendor/gems/gems/couchrest-1.1.2/spec/fixtures/views/test_view/test-reduce.js +3 -0
  561. data/server/vendor/gems/gems/couchrest-1.1.2/spec/spec.opts +5 -0
  562. data/server/vendor/gems/gems/couchrest-1.1.2/spec/spec_helper.rb +46 -0
  563. data/server/vendor/gems/gems/couchrest-1.1.2/utils/remap.rb +27 -0
  564. data/server/vendor/gems/gems/couchrest-1.1.2/utils/subset.rb +30 -0
  565. data/server/vendor/gems/gems/mime-types-1.16/History.txt +107 -0
  566. data/server/vendor/gems/gems/mime-types-1.16/Install.txt +17 -0
  567. data/server/vendor/gems/gems/mime-types-1.16/Licence.txt +15 -0
  568. data/server/vendor/gems/gems/mime-types-1.16/Manifest.txt +12 -0
  569. data/server/vendor/gems/gems/mime-types-1.16/README.txt +28 -0
  570. data/server/vendor/gems/gems/mime-types-1.16/Rakefile +316 -0
  571. data/server/vendor/gems/gems/mime-types-1.16/lib/mime/types.rb +751 -0
  572. data/server/vendor/gems/gems/mime-types-1.16/lib/mime/types.rb.data +1324 -0
  573. data/server/vendor/gems/gems/mime-types-1.16/mime-types.gemspec +43 -0
  574. data/server/vendor/gems/gems/mime-types-1.16/setup.rb +1585 -0
  575. data/server/vendor/gems/gems/mime-types-1.16/test/test_mime_type.rb +356 -0
  576. data/server/vendor/gems/gems/mime-types-1.16/test/test_mime_types.rb +122 -0
  577. data/server/vendor/gems/gems/multi_json-1.0.3/Gemfile +7 -0
  578. data/server/vendor/gems/gems/multi_json-1.0.3/LICENSE.md +20 -0
  579. data/server/vendor/gems/gems/multi_json-1.0.3/README.md +70 -0
  580. data/server/vendor/gems/gems/multi_json-1.0.3/Rakefile +23 -0
  581. data/server/vendor/gems/gems/multi_json-1.0.3/lib/multi_json.rb +74 -0
  582. data/server/vendor/gems/gems/multi_json-1.0.3/lib/multi_json/engines/json_gem.rb +21 -0
  583. data/server/vendor/gems/gems/multi_json-1.0.3/lib/multi_json/engines/json_pure.rb +21 -0
  584. data/server/vendor/gems/gems/multi_json-1.0.3/lib/multi_json/engines/ok_json.rb +48 -0
  585. data/server/vendor/gems/gems/multi_json-1.0.3/lib/multi_json/engines/yajl.rb +18 -0
  586. data/server/vendor/gems/gems/multi_json-1.0.3/lib/multi_json/vendor/ok_json.rb +581 -0
  587. data/server/vendor/gems/gems/multi_json-1.0.3/lib/multi_json/version.rb +3 -0
  588. data/server/vendor/gems/gems/multi_json-1.0.3/multi_json.gemspec +23 -0
  589. data/server/vendor/gems/gems/multi_json-1.0.3/spec/helper.rb +11 -0
  590. data/server/vendor/gems/gems/multi_json-1.0.3/spec/multi_json_spec.rb +134 -0
  591. data/server/vendor/gems/gems/rest-client-1.6.7/README.rdoc +285 -0
  592. data/server/vendor/gems/gems/rest-client-1.6.7/Rakefile +66 -0
  593. data/server/vendor/gems/gems/rest-client-1.6.7/VERSION +1 -0
  594. data/server/vendor/gems/gems/rest-client-1.6.7/bin/restclient +93 -0
  595. data/server/vendor/gems/gems/rest-client-1.6.7/history.md +134 -0
  596. data/server/vendor/gems/gems/rest-client-1.6.7/lib/rest-client.rb +2 -0
  597. data/server/vendor/gems/gems/rest-client-1.6.7/lib/rest_client.rb +2 -0
  598. data/server/vendor/gems/gems/rest-client-1.6.7/lib/restclient.rb +174 -0
  599. data/server/vendor/gems/gems/rest-client-1.6.7/lib/restclient/abstract_response.rb +106 -0
  600. data/server/vendor/gems/gems/rest-client-1.6.7/lib/restclient/exceptions.rb +193 -0
  601. data/server/vendor/gems/gems/rest-client-1.6.7/lib/restclient/net_http_ext.rb +55 -0
  602. data/server/vendor/gems/gems/rest-client-1.6.7/lib/restclient/payload.rb +235 -0
  603. data/server/vendor/gems/gems/rest-client-1.6.7/lib/restclient/raw_response.rb +34 -0
  604. data/server/vendor/gems/gems/rest-client-1.6.7/lib/restclient/request.rb +316 -0
  605. data/server/vendor/gems/gems/rest-client-1.6.7/lib/restclient/resource.rb +169 -0
  606. data/server/vendor/gems/gems/rest-client-1.6.7/lib/restclient/response.rb +24 -0
  607. data/server/vendor/gems/gems/rest-client-1.6.7/spec/abstract_response_spec.rb +85 -0
  608. data/server/vendor/gems/gems/rest-client-1.6.7/spec/base.rb +16 -0
  609. data/server/vendor/gems/gems/rest-client-1.6.7/spec/exceptions_spec.rb +98 -0
  610. data/server/vendor/gems/gems/rest-client-1.6.7/spec/integration/certs/equifax.crt +19 -0
  611. data/server/vendor/gems/gems/rest-client-1.6.7/spec/integration/certs/verisign.crt +14 -0
  612. data/server/vendor/gems/gems/rest-client-1.6.7/spec/integration/request_spec.rb +25 -0
  613. data/server/vendor/gems/gems/rest-client-1.6.7/spec/integration_spec.rb +38 -0
  614. data/server/vendor/gems/gems/rest-client-1.6.7/spec/master_shake.jpg +0 -0
  615. data/server/vendor/gems/gems/rest-client-1.6.7/spec/payload_spec.rb +234 -0
  616. data/server/vendor/gems/gems/rest-client-1.6.7/spec/raw_response_spec.rb +17 -0
  617. data/server/vendor/gems/gems/rest-client-1.6.7/spec/request2_spec.rb +40 -0
  618. data/server/vendor/gems/gems/rest-client-1.6.7/spec/request_spec.rb +529 -0
  619. data/server/vendor/gems/gems/rest-client-1.6.7/spec/resource_spec.rb +134 -0
  620. data/server/vendor/gems/gems/rest-client-1.6.7/spec/response_spec.rb +169 -0
  621. data/server/vendor/gems/gems/rest-client-1.6.7/spec/restclient_spec.rb +73 -0
  622. data/server/vendor/gems/specifications/couchrest-1.1.2.gemspec +43 -0
  623. data/server/vendor/gems/specifications/mime-types-1.16.gemspec +42 -0
  624. data/server/vendor/gems/specifications/multi_json-1.0.3.gemspec +40 -0
  625. data/server/vendor/gems/specifications/rest-client-1.6.7.gemspec +37 -0
  626. data/server/web.js +93 -0
  627. metadata +633 -7
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "connect",
3
+ "version": "1.7.1",
4
+ "description": "High performance middleware framework",
5
+ "keywords": ["framework", "web", "middleware", "connect", "rack"],
6
+ "repository": "git://github.com/senchalabs/connect.git",
7
+ "author": "TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com)",
8
+ "repository": "git://github.com/senchalabs/connect",
9
+ "dependencies": {
10
+ "qs": ">= 0.3.1",
11
+ "mime": ">= 0.0.1"
12
+ },
13
+ "devDependencies": {
14
+ "expresso": "0.7.6",
15
+ "koala": "0.1.2",
16
+ "less": "1.1.1",
17
+ "sass": "0.5.0",
18
+ "markdown": "0.2.1",
19
+ "ejs": "0.4.3",
20
+ "should": "0.2.1"
21
+ },
22
+ "main": "index",
23
+ "engines": { "node": ">= 0.4.1 < 0.5.0" }
24
+ }
@@ -0,0 +1,39 @@
1
+
2
+ /**
3
+ * Module dependencies.
4
+ */
5
+
6
+ var connect = require('./')
7
+ , utils = connect.utils
8
+ , http = require('http')
9
+ , fs = require('fs');
10
+
11
+
12
+ connect()
13
+ .use(connect.cookieParser())
14
+ .use(connect.session({ secret: 'hey' }))
15
+ .use(function(req, res, next){
16
+ if ('/foo' == req.url) {
17
+ req.session.foo = 'bar';
18
+ }
19
+ res.end('hello\n')
20
+ })
21
+ .listen(3000)
22
+
23
+ // Connect: 2296
24
+ // Connect+LRU: 4900
25
+ // node-static: 3865
26
+
27
+ // ab -n 5000 -c 50 -k http://local/Readme.md
28
+
29
+ // 472k
30
+ // node-static: 1651rps
31
+ // connect: 581rps
32
+
33
+ // var static = require('node-static')
34
+ // , file = new static.Server(__dirname);
35
+ //
36
+ // var send = connect.static(__dirname);
37
+ // http.createServer(function(req, res){
38
+ // file.serve(req, res);
39
+ // }).listen(3000);
@@ -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,50 @@
1
+ # mime
2
+
3
+ Support for mapping between file extensions and MIME types. This module uses the latest version of the Apache "mime.types" file (maps over 620 types to 800+ extensions). It is also trivially easy to add your own types and extensions, should you need to do that.
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. This is method is case-insensitive. Everything in path up to and including the last '/' or '.' is ignored, so you can pass it paths, filenames, or extensions, like so:
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.extension(type) - lookup the default extension for type
24
+
25
+ mime.extension('text/html'); // => 'html'
26
+ mime.extension('application/octet-stream'); // => 'bin'
27
+
28
+ ### mime.charsets.lookup() - map mime-type to charset
29
+
30
+ mime.charsets.lookup('text/plain'); // => 'UTF-8'
31
+
32
+ (The logic for charset lookups is pretty rudimentary. Feel free to suggest improvements.)
33
+
34
+ ## API - Customizing
35
+
36
+ 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/bentomas/node-mime/wiki/Requesting-New-Types).
37
+ ### mime.define() - Add custom mime/extension mappings
38
+
39
+ mime.define({
40
+ 'text/x-some-format': ['x-sf', 'x-sft', 'x-sfml'],
41
+ 'application/x-my-type': ['x-mt', 'x-mtt'],
42
+ // etc ...
43
+ });
44
+
45
+ mime.lookup('x-sft'); // => 'text/x-some-format'
46
+ mime.extension('text/x-some-format'); // => 'x-sf'
47
+
48
+ ### mime.load(filepath) - Load mappings from an Apache ".types" format file
49
+
50
+ mime.load('./my_project.types');
@@ -0,0 +1 @@
1
+ module.exports = require('./mime');
@@ -0,0 +1,92 @@
1
+ var path = require('path'),
2
+ fs = require('fs');
3
+
4
+ var mime = module.exports = {
5
+ /** Map of extension to mime type */
6
+ types: {},
7
+
8
+ /** Map of mime type to extension */
9
+ extensions :{},
10
+
11
+ /**
12
+ * Define mimetype -> extension mappings. Each key is a mime-type that maps
13
+ * to an array of extensions associated with the type. The first extension is
14
+ * used as the default extension for the type.
15
+ *
16
+ * e.g. mime.define({'audio/ogg', ['oga', 'ogg', 'spx']});
17
+ *
18
+ * @param map (Object) type definitions
19
+ */
20
+ define: function(map) {
21
+ for (var type in map) {
22
+ var exts = map[type];
23
+
24
+ for (var i = 0; i < exts.length; i++) {
25
+ mime.types[exts[i]] = type;
26
+ }
27
+
28
+ // Default extension is the first one we encounter
29
+ if (!mime.extensions[type]) {
30
+ mime.extensions[type] = exts[0];
31
+ }
32
+ }
33
+ },
34
+
35
+ /**
36
+ * Load an Apache2-style ".types" file
37
+ *
38
+ * This may be called multiple times (it's expected). Where files declare
39
+ * overlapping types/extensions, the last file wins.
40
+ *
41
+ * @param file (String) path of file to load.
42
+ */
43
+ load: function(file) {
44
+ // Read file and split into lines
45
+ var map = {},
46
+ content = fs.readFileSync(file, 'ascii'),
47
+ lines = content.split(/[\r\n]+/);
48
+
49
+ lines.forEach(function(line, lineno) {
50
+ // Clean up whitespace/comments, and split into fields
51
+ var fields = line.replace(/\s*#.*|^\s*|\s*$/g, '').split(/\s+/);
52
+ map[fields.shift()] = fields;
53
+ });
54
+
55
+ mime.define(map);
56
+ },
57
+
58
+ /**
59
+ * Lookup a mime type based on extension
60
+ */
61
+ lookup: function(path, fallback) {
62
+ var ext = path.replace(/.*[\.\/]/, '').toLowerCase();
63
+ return mime.types[ext] || fallback || mime.default_type;
64
+ },
65
+
66
+ /**
67
+ * Return file extension associated with a mime type
68
+ */
69
+ extension: function(mimeType) {
70
+ return mime.extensions[mimeType];
71
+ },
72
+
73
+ /**
74
+ * Lookup a charset based on mime type.
75
+ */
76
+ charsets: {
77
+ lookup: function (mimeType, fallback) {
78
+ // Assume text types are utf8. Modify mime logic as needed.
79
+ return (/^text\//).test(mimeType) ? 'UTF-8' : fallback;
80
+ }
81
+ }
82
+ };
83
+
84
+ // Load our local copy of
85
+ // http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types
86
+ mime.load(path.join(__dirname, 'mime.types'));
87
+
88
+ // Overlay enhancements we've had requests for (and that seem to make sense)
89
+ mime.load(path.join(__dirname, 'node.types'));
90
+
91
+ // Set the default type
92
+ mime.default_type = mime.types.bin;
@@ -0,0 +1,1479 @@
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/cals-1840
30
+ application/ccxml+xml ccxml
31
+ application/cdmi-capability cdmia
32
+ application/cdmi-container cdmic
33
+ application/cdmi-domain cdmid
34
+ application/cdmi-object cdmio
35
+ application/cdmi-queue cdmiq
36
+ # application/cea-2018+xml
37
+ # application/cellml+xml
38
+ # application/cfw
39
+ # application/cnrp+xml
40
+ # application/commonground
41
+ # application/conference-info+xml
42
+ # application/cpl+xml
43
+ # application/csta+xml
44
+ # application/cstadata+xml
45
+ application/cu-seeme cu
46
+ # application/cybercash
47
+ application/davmount+xml davmount
48
+ # application/dca-rft
49
+ # application/dec-dx
50
+ # application/dialog-info+xml
51
+ # application/dicom
52
+ # application/dns
53
+ # application/dskpp+xml
54
+ application/dssc+der dssc
55
+ application/dssc+xml xdssc
56
+ # application/dvcs
57
+ application/ecmascript ecma
58
+ # application/edi-consent
59
+ # application/edi-x12
60
+ # application/edifact
61
+ application/emma+xml emma
62
+ # application/epp+xml
63
+ application/epub+zip epub
64
+ # application/eshop
65
+ # application/example
66
+ application/exi exi
67
+ # application/fastinfoset
68
+ # application/fastsoap
69
+ # application/fits
70
+ application/font-tdpfr pfr
71
+ # application/framework-attributes+xml
72
+ # application/h224
73
+ # application/held+xml
74
+ # application/http
75
+ application/hyperstudio stk
76
+ # application/ibe-key-request+xml
77
+ # application/ibe-pkg-reply+xml
78
+ # application/ibe-pp-data
79
+ # application/iges
80
+ # application/im-iscomposing+xml
81
+ # application/index
82
+ # application/index.cmd
83
+ # application/index.obj
84
+ # application/index.response
85
+ # application/index.vnd
86
+ # application/iotp
87
+ application/ipfix ipfix
88
+ # application/ipp
89
+ # application/isup
90
+ application/java-archive jar
91
+ application/java-serialized-object ser
92
+ application/java-vm class
93
+ application/javascript js
94
+ application/json json
95
+ # application/kpml-request+xml
96
+ # application/kpml-response+xml
97
+ application/lost+xml lostxml
98
+ application/mac-binhex40 hqx
99
+ application/mac-compactpro cpt
100
+ # application/macwriteii
101
+ application/mads+xml mads
102
+ application/marc mrc
103
+ application/marcxml+xml mrcx
104
+ application/mathematica ma nb mb
105
+ # application/mathml-content+xml
106
+ # application/mathml-presentation+xml
107
+ application/mathml+xml mathml
108
+ # application/mbms-associated-procedure-description+xml
109
+ # application/mbms-deregister+xml
110
+ # application/mbms-envelope+xml
111
+ # application/mbms-msk+xml
112
+ # application/mbms-msk-response+xml
113
+ # application/mbms-protection-description+xml
114
+ # application/mbms-reception-report+xml
115
+ # application/mbms-register+xml
116
+ # application/mbms-register-response+xml
117
+ # application/mbms-user-service-description+xml
118
+ application/mbox mbox
119
+ # application/media_control+xml
120
+ application/mediaservercontrol+xml mscml
121
+ application/metalink4+xml meta4
122
+ application/mets+xml mets
123
+ # application/mikey
124
+ application/mods+xml mods
125
+ # application/moss-keys
126
+ # application/moss-signature
127
+ # application/mosskey-data
128
+ # application/mosskey-request
129
+ application/mp21 m21 mp21
130
+ application/mp4 mp4s
131
+ # application/mpeg4-generic
132
+ # application/mpeg4-iod
133
+ # application/mpeg4-iod-xmt
134
+ # application/msc-ivr+xml
135
+ # application/msc-mixer+xml
136
+ application/msword doc dot
137
+ application/mxf mxf
138
+ # application/nasdata
139
+ # application/news-checkgroups
140
+ # application/news-groupinfo
141
+ # application/news-transmission
142
+ # application/nss
143
+ # application/ocsp-request
144
+ # application/ocsp-response
145
+ application/octet-stream bin dms lha lrf lzh so iso dmg dist distz pkg bpk dump elc deploy
146
+ application/oda oda
147
+ application/oebps-package+xml opf
148
+ application/ogg ogx
149
+ application/onenote onetoc onetoc2 onetmp onepkg
150
+ # application/parityfec
151
+ application/patch-ops-error+xml xer
152
+ application/pdf pdf
153
+ application/pgp-encrypted pgp
154
+ # application/pgp-keys
155
+ application/pgp-signature asc sig
156
+ application/pics-rules prf
157
+ # application/pidf+xml
158
+ # application/pidf-diff+xml
159
+ application/pkcs10 p10
160
+ application/pkcs7-mime p7m p7c
161
+ application/pkcs7-signature p7s
162
+ application/pkcs8 p8
163
+ application/pkix-attr-cert ac
164
+ application/pkix-cert cer
165
+ application/pkix-crl crl
166
+ application/pkix-pkipath pkipath
167
+ application/pkixcmp pki
168
+ application/pls+xml pls
169
+ # application/poc-settings+xml
170
+ application/postscript ai eps ps
171
+ # application/prs.alvestrand.titrax-sheet
172
+ application/prs.cww cww
173
+ # application/prs.nprend
174
+ # application/prs.plucker
175
+ # application/prs.rdf-xml-crypt
176
+ # application/prs.xsf+xml
177
+ application/pskc+xml pskcxml
178
+ # application/qsig
179
+ application/rdf+xml rdf
180
+ application/reginfo+xml rif
181
+ application/relax-ng-compact-syntax rnc
182
+ # application/remote-printing
183
+ application/resource-lists+xml rl
184
+ application/resource-lists-diff+xml rld
185
+ # application/riscos
186
+ # application/rlmi+xml
187
+ application/rls-services+xml rs
188
+ application/rsd+xml rsd
189
+ application/rss+xml rss
190
+ application/rtf rtf
191
+ # application/rtx
192
+ # application/samlassertion+xml
193
+ # application/samlmetadata+xml
194
+ application/sbml+xml sbml
195
+ application/scvp-cv-request scq
196
+ application/scvp-cv-response scs
197
+ application/scvp-vp-request spq
198
+ application/scvp-vp-response spp
199
+ application/sdp sdp
200
+ # application/set-payment
201
+ application/set-payment-initiation setpay
202
+ # application/set-registration
203
+ application/set-registration-initiation setreg
204
+ # application/sgml
205
+ # application/sgml-open-catalog
206
+ application/shf+xml shf
207
+ # application/sieve
208
+ # application/simple-filter+xml
209
+ # application/simple-message-summary
210
+ # application/simplesymbolcontainer
211
+ # application/slate
212
+ # application/smil
213
+ application/smil+xml smi smil
214
+ # application/soap+fastinfoset
215
+ # application/soap+xml
216
+ application/sparql-query rq
217
+ application/sparql-results+xml srx
218
+ # application/spirits-event+xml
219
+ application/srgs gram
220
+ application/srgs+xml grxml
221
+ application/sru+xml sru
222
+ application/ssml+xml ssml
223
+ # application/tamp-apex-update
224
+ # application/tamp-apex-update-confirm
225
+ # application/tamp-community-update
226
+ # application/tamp-community-update-confirm
227
+ # application/tamp-error
228
+ # application/tamp-sequence-adjust
229
+ # application/tamp-sequence-adjust-confirm
230
+ # application/tamp-status-query
231
+ # application/tamp-status-response
232
+ # application/tamp-update
233
+ # application/tamp-update-confirm
234
+ application/tei+xml tei teicorpus
235
+ application/thraud+xml tfi
236
+ # application/timestamp-query
237
+ # application/timestamp-reply
238
+ application/timestamped-data tsd
239
+ # application/tve-trigger
240
+ # application/ulpfec
241
+ # application/vemmi
242
+ # application/vividence.scriptfile
243
+ # application/vnd.3gpp.bsf+xml
244
+ application/vnd.3gpp.pic-bw-large plb
245
+ application/vnd.3gpp.pic-bw-small psb
246
+ application/vnd.3gpp.pic-bw-var pvb
247
+ # application/vnd.3gpp.sms
248
+ # application/vnd.3gpp2.bcmcsinfo+xml
249
+ # application/vnd.3gpp2.sms
250
+ application/vnd.3gpp2.tcap tcap
251
+ application/vnd.3m.post-it-notes pwn
252
+ application/vnd.accpac.simply.aso aso
253
+ application/vnd.accpac.simply.imp imp
254
+ application/vnd.acucobol acu
255
+ application/vnd.acucorp atc acutc
256
+ application/vnd.adobe.air-application-installer-package+zip air
257
+ application/vnd.adobe.fxp fxp fxpl
258
+ # application/vnd.adobe.partial-upload
259
+ application/vnd.adobe.xdp+xml xdp
260
+ application/vnd.adobe.xfdf xfdf
261
+ # application/vnd.aether.imp
262
+ # application/vnd.ah-barcode
263
+ application/vnd.ahead.space ahead
264
+ application/vnd.airzip.filesecure.azf azf
265
+ application/vnd.airzip.filesecure.azs azs
266
+ application/vnd.amazon.ebook azw
267
+ application/vnd.americandynamics.acc acc
268
+ application/vnd.amiga.ami ami
269
+ # application/vnd.amundsen.maze+xml
270
+ application/vnd.android.package-archive apk
271
+ application/vnd.anser-web-certificate-issue-initiation cii
272
+ application/vnd.anser-web-funds-transfer-initiation fti
273
+ application/vnd.antix.game-component atx
274
+ application/vnd.apple.installer+xml mpkg
275
+ application/vnd.apple.mpegurl m3u8
276
+ # application/vnd.arastra.swi
277
+ application/vnd.aristanetworks.swi swi
278
+ application/vnd.audiograph aep
279
+ # application/vnd.autopackage
280
+ # application/vnd.avistar+xml
281
+ application/vnd.blueice.multipass mpm
282
+ # application/vnd.bluetooth.ep.oob
283
+ application/vnd.bmi bmi
284
+ application/vnd.businessobjects rep
285
+ # application/vnd.cab-jscript
286
+ # application/vnd.canon-cpdl
287
+ # application/vnd.canon-lips
288
+ # application/vnd.cendio.thinlinc.clientconf
289
+ application/vnd.chemdraw+xml cdxml
290
+ application/vnd.chipnuts.karaoke-mmd mmd
291
+ application/vnd.cinderella cdy
292
+ # application/vnd.cirpack.isdn-ext
293
+ application/vnd.claymore cla
294
+ application/vnd.cloanto.rp9 rp9
295
+ application/vnd.clonk.c4group c4g c4d c4f c4p c4u
296
+ application/vnd.cluetrust.cartomobile-config c11amc
297
+ application/vnd.cluetrust.cartomobile-config-pkg c11amz
298
+ # application/vnd.commerce-battelle
299
+ application/vnd.commonspace csp
300
+ application/vnd.contact.cmsg cdbcmsg
301
+ application/vnd.cosmocaller cmc
302
+ application/vnd.crick.clicker clkx
303
+ application/vnd.crick.clicker.keyboard clkk
304
+ application/vnd.crick.clicker.palette clkp
305
+ application/vnd.crick.clicker.template clkt
306
+ application/vnd.crick.clicker.wordbank clkw
307
+ application/vnd.criticaltools.wbs+xml wbs
308
+ application/vnd.ctc-posml pml
309
+ # application/vnd.ctct.ws+xml
310
+ # application/vnd.cups-pdf
311
+ # application/vnd.cups-postscript
312
+ application/vnd.cups-ppd ppd
313
+ # application/vnd.cups-raster
314
+ # application/vnd.cups-raw
315
+ application/vnd.curl.car car
316
+ application/vnd.curl.pcurl pcurl
317
+ # application/vnd.cybank
318
+ application/vnd.data-vision.rdz rdz
319
+ application/vnd.dece.data uvf uvvf uvd uvvd
320
+ application/vnd.dece.ttml+xml uvt uvvt
321
+ application/vnd.dece.unspecified uvx uvvx
322
+ application/vnd.denovo.fcselayout-link fe_launch
323
+ # application/vnd.dir-bi.plate-dl-nosuffix
324
+ application/vnd.dna dna
325
+ application/vnd.dolby.mlp mlp
326
+ # application/vnd.dolby.mobile.1
327
+ # application/vnd.dolby.mobile.2
328
+ application/vnd.dpgraph dpg
329
+ application/vnd.dreamfactory dfac
330
+ application/vnd.dvb.ait ait
331
+ # application/vnd.dvb.dvbj
332
+ # application/vnd.dvb.esgcontainer
333
+ # application/vnd.dvb.ipdcdftnotifaccess
334
+ # application/vnd.dvb.ipdcesgaccess
335
+ # application/vnd.dvb.ipdcesgaccess2
336
+ # application/vnd.dvb.ipdcesgpdd
337
+ # application/vnd.dvb.ipdcroaming
338
+ # application/vnd.dvb.iptv.alfec-base
339
+ # application/vnd.dvb.iptv.alfec-enhancement
340
+ # application/vnd.dvb.notif-aggregate-root+xml
341
+ # application/vnd.dvb.notif-container+xml
342
+ # application/vnd.dvb.notif-generic+xml
343
+ # application/vnd.dvb.notif-ia-msglist+xml
344
+ # application/vnd.dvb.notif-ia-registration-request+xml
345
+ # application/vnd.dvb.notif-ia-registration-response+xml
346
+ # application/vnd.dvb.notif-init+xml
347
+ # application/vnd.dvb.pfr
348
+ application/vnd.dvb.service svc
349
+ # application/vnd.dxr
350
+ application/vnd.dynageo geo
351
+ # application/vnd.easykaraoke.cdgdownload
352
+ # application/vnd.ecdis-update
353
+ application/vnd.ecowin.chart mag
354
+ # application/vnd.ecowin.filerequest
355
+ # application/vnd.ecowin.fileupdate
356
+ # application/vnd.ecowin.series
357
+ # application/vnd.ecowin.seriesrequest
358
+ # application/vnd.ecowin.seriesupdate
359
+ # application/vnd.emclient.accessrequest+xml
360
+ application/vnd.enliven nml
361
+ application/vnd.epson.esf esf
362
+ application/vnd.epson.msf msf
363
+ application/vnd.epson.quickanime qam
364
+ application/vnd.epson.salt slt
365
+ application/vnd.epson.ssf ssf
366
+ # application/vnd.ericsson.quickcall
367
+ application/vnd.eszigno3+xml es3 et3
368
+ # application/vnd.etsi.aoc+xml
369
+ # application/vnd.etsi.cug+xml
370
+ # application/vnd.etsi.iptvcommand+xml
371
+ # application/vnd.etsi.iptvdiscovery+xml
372
+ # application/vnd.etsi.iptvprofile+xml
373
+ # application/vnd.etsi.iptvsad-bc+xml
374
+ # application/vnd.etsi.iptvsad-cod+xml
375
+ # application/vnd.etsi.iptvsad-npvr+xml
376
+ # application/vnd.etsi.iptvservice+xml
377
+ # application/vnd.etsi.iptvsync+xml
378
+ # application/vnd.etsi.iptvueprofile+xml
379
+ # application/vnd.etsi.mcid+xml
380
+ # application/vnd.etsi.overload-control-policy-dataset+xml
381
+ # application/vnd.etsi.sci+xml
382
+ # application/vnd.etsi.simservs+xml
383
+ # application/vnd.etsi.tsl+xml
384
+ # application/vnd.etsi.tsl.der
385
+ # application/vnd.eudora.data
386
+ application/vnd.ezpix-album ez2
387
+ application/vnd.ezpix-package ez3
388
+ # application/vnd.f-secure.mobile
389
+ application/vnd.fdf fdf
390
+ application/vnd.fdsn.mseed mseed
391
+ application/vnd.fdsn.seed seed dataless
392
+ # application/vnd.ffsns
393
+ # application/vnd.fints
394
+ application/vnd.flographit gph
395
+ application/vnd.fluxtime.clip ftc
396
+ # application/vnd.font-fontforge-sfd
397
+ application/vnd.framemaker fm frame maker book
398
+ application/vnd.frogans.fnc fnc
399
+ application/vnd.frogans.ltf ltf
400
+ application/vnd.fsc.weblaunch fsc
401
+ application/vnd.fujitsu.oasys oas
402
+ application/vnd.fujitsu.oasys2 oa2
403
+ application/vnd.fujitsu.oasys3 oa3
404
+ application/vnd.fujitsu.oasysgp fg5
405
+ application/vnd.fujitsu.oasysprs bh2
406
+ # application/vnd.fujixerox.art-ex
407
+ # application/vnd.fujixerox.art4
408
+ # application/vnd.fujixerox.hbpl
409
+ application/vnd.fujixerox.ddd ddd
410
+ application/vnd.fujixerox.docuworks xdw
411
+ application/vnd.fujixerox.docuworks.binder xbd
412
+ # application/vnd.fut-misnet
413
+ application/vnd.fuzzysheet fzs
414
+ application/vnd.genomatix.tuxedo txd
415
+ # application/vnd.geocube+xml
416
+ application/vnd.geogebra.file ggb
417
+ application/vnd.geogebra.tool ggt
418
+ application/vnd.geometry-explorer gex gre
419
+ application/vnd.geonext gxt
420
+ application/vnd.geoplan g2w
421
+ application/vnd.geospace g3w
422
+ # application/vnd.globalplatform.card-content-mgt
423
+ # application/vnd.globalplatform.card-content-mgt-response
424
+ application/vnd.gmx gmx
425
+ application/vnd.google-earth.kml+xml kml
426
+ application/vnd.google-earth.kmz kmz
427
+ application/vnd.grafeq gqf gqs
428
+ # application/vnd.gridmp
429
+ application/vnd.groove-account gac
430
+ application/vnd.groove-help ghf
431
+ application/vnd.groove-identity-message gim
432
+ application/vnd.groove-injector grv
433
+ application/vnd.groove-tool-message gtm
434
+ application/vnd.groove-tool-template tpl
435
+ application/vnd.groove-vcard vcg
436
+ application/vnd.hal+xml hal
437
+ application/vnd.handheld-entertainment+xml zmm
438
+ application/vnd.hbci hbci
439
+ # application/vnd.hcl-bireports
440
+ application/vnd.hhe.lesson-player les
441
+ application/vnd.hp-hpgl hpgl
442
+ application/vnd.hp-hpid hpid
443
+ application/vnd.hp-hps hps
444
+ application/vnd.hp-jlyt jlt
445
+ application/vnd.hp-pcl pcl
446
+ application/vnd.hp-pclxl pclxl
447
+ # application/vnd.httphone
448
+ application/vnd.hydrostatix.sof-data sfd-hdstx
449
+ application/vnd.hzn-3d-crossword x3d
450
+ # application/vnd.ibm.afplinedata
451
+ # application/vnd.ibm.electronic-media
452
+ application/vnd.ibm.minipay mpy
453
+ application/vnd.ibm.modcap afp listafp list3820
454
+ application/vnd.ibm.rights-management irm
455
+ application/vnd.ibm.secure-container sc
456
+ application/vnd.iccprofile icc icm
457
+ application/vnd.igloader igl
458
+ application/vnd.immervision-ivp ivp
459
+ application/vnd.immervision-ivu ivu
460
+ # application/vnd.informedcontrol.rms+xml
461
+ # application/vnd.informix-visionary
462
+ # application/vnd.infotech.project
463
+ # application/vnd.infotech.project+xml
464
+ application/vnd.insors.igm igm
465
+ application/vnd.intercon.formnet xpw xpx
466
+ application/vnd.intergeo i2g
467
+ # application/vnd.intertrust.digibox
468
+ # application/vnd.intertrust.nncp
469
+ application/vnd.intu.qbo qbo
470
+ application/vnd.intu.qfx qfx
471
+ # application/vnd.iptc.g2.conceptitem+xml
472
+ # application/vnd.iptc.g2.knowledgeitem+xml
473
+ # application/vnd.iptc.g2.newsitem+xml
474
+ # application/vnd.iptc.g2.packageitem+xml
475
+ application/vnd.ipunplugged.rcprofile rcprofile
476
+ application/vnd.irepository.package+xml irp
477
+ application/vnd.is-xpr xpr
478
+ application/vnd.isac.fcs fcs
479
+ application/vnd.jam jam
480
+ # application/vnd.japannet-directory-service
481
+ # application/vnd.japannet-jpnstore-wakeup
482
+ # application/vnd.japannet-payment-wakeup
483
+ # application/vnd.japannet-registration
484
+ # application/vnd.japannet-registration-wakeup
485
+ # application/vnd.japannet-setstore-wakeup
486
+ # application/vnd.japannet-verification
487
+ # application/vnd.japannet-verification-wakeup
488
+ application/vnd.jcp.javame.midlet-rms rms
489
+ application/vnd.jisp jisp
490
+ application/vnd.joost.joda-archive joda
491
+ application/vnd.kahootz ktz ktr
492
+ application/vnd.kde.karbon karbon
493
+ application/vnd.kde.kchart chrt
494
+ application/vnd.kde.kformula kfo
495
+ application/vnd.kde.kivio flw
496
+ application/vnd.kde.kontour kon
497
+ application/vnd.kde.kpresenter kpr kpt
498
+ application/vnd.kde.kspread ksp
499
+ application/vnd.kde.kword kwd kwt
500
+ application/vnd.kenameaapp htke
501
+ application/vnd.kidspiration kia
502
+ application/vnd.kinar kne knp
503
+ application/vnd.koan skp skd skt skm
504
+ application/vnd.kodak-descriptor sse
505
+ application/vnd.las.las+xml lasxml
506
+ # application/vnd.liberty-request+xml
507
+ application/vnd.llamagraphics.life-balance.desktop lbd
508
+ application/vnd.llamagraphics.life-balance.exchange+xml lbe
509
+ application/vnd.lotus-1-2-3 123
510
+ application/vnd.lotus-approach apr
511
+ application/vnd.lotus-freelance pre
512
+ application/vnd.lotus-notes nsf
513
+ application/vnd.lotus-organizer org
514
+ application/vnd.lotus-screencam scm
515
+ application/vnd.lotus-wordpro lwp
516
+ application/vnd.macports.portpkg portpkg
517
+ # application/vnd.marlin.drm.actiontoken+xml
518
+ # application/vnd.marlin.drm.conftoken+xml
519
+ # application/vnd.marlin.drm.license+xml
520
+ # application/vnd.marlin.drm.mdcf
521
+ application/vnd.mcd mcd
522
+ application/vnd.medcalcdata mc1
523
+ application/vnd.mediastation.cdkey cdkey
524
+ # application/vnd.meridian-slingshot
525
+ application/vnd.mfer mwf
526
+ application/vnd.mfmp mfm
527
+ application/vnd.micrografx.flo flo
528
+ application/vnd.micrografx.igx igx
529
+ application/vnd.mif mif
530
+ # application/vnd.minisoft-hp3000-save
531
+ # application/vnd.mitsubishi.misty-guard.trustweb
532
+ application/vnd.mobius.daf daf
533
+ application/vnd.mobius.dis dis
534
+ application/vnd.mobius.mbk mbk
535
+ application/vnd.mobius.mqy mqy
536
+ application/vnd.mobius.msl msl
537
+ application/vnd.mobius.plc plc
538
+ application/vnd.mobius.txf txf
539
+ application/vnd.mophun.application mpn
540
+ application/vnd.mophun.certificate mpc
541
+ # application/vnd.motorola.flexsuite
542
+ # application/vnd.motorola.flexsuite.adsi
543
+ # application/vnd.motorola.flexsuite.fis
544
+ # application/vnd.motorola.flexsuite.gotap
545
+ # application/vnd.motorola.flexsuite.kmr
546
+ # application/vnd.motorola.flexsuite.ttc
547
+ # application/vnd.motorola.flexsuite.wem
548
+ # application/vnd.motorola.iprm
549
+ application/vnd.mozilla.xul+xml xul
550
+ application/vnd.ms-artgalry cil
551
+ # application/vnd.ms-asf
552
+ application/vnd.ms-cab-compressed cab
553
+ application/vnd.ms-excel xls xlm xla xlc xlt xlw
554
+ application/vnd.ms-excel.addin.macroenabled.12 xlam
555
+ application/vnd.ms-excel.sheet.binary.macroenabled.12 xlsb
556
+ application/vnd.ms-excel.sheet.macroenabled.12 xlsm
557
+ application/vnd.ms-excel.template.macroenabled.12 xltm
558
+ application/vnd.ms-fontobject eot
559
+ application/vnd.ms-htmlhelp chm
560
+ application/vnd.ms-ims ims
561
+ application/vnd.ms-lrm lrm
562
+ # application/vnd.ms-office.activex+xml
563
+ application/vnd.ms-officetheme thmx
564
+ application/vnd.ms-pki.seccat cat
565
+ application/vnd.ms-pki.stl stl
566
+ # application/vnd.ms-playready.initiator+xml
567
+ application/vnd.ms-powerpoint ppt pps pot
568
+ application/vnd.ms-powerpoint.addin.macroenabled.12 ppam
569
+ application/vnd.ms-powerpoint.presentation.macroenabled.12 pptm
570
+ application/vnd.ms-powerpoint.slide.macroenabled.12 sldm
571
+ application/vnd.ms-powerpoint.slideshow.macroenabled.12 ppsm
572
+ application/vnd.ms-powerpoint.template.macroenabled.12 potm
573
+ application/vnd.ms-project mpp mpt
574
+ # application/vnd.ms-tnef
575
+ # application/vnd.ms-wmdrm.lic-chlg-req
576
+ # application/vnd.ms-wmdrm.lic-resp
577
+ # application/vnd.ms-wmdrm.meter-chlg-req
578
+ # application/vnd.ms-wmdrm.meter-resp
579
+ application/vnd.ms-word.document.macroenabled.12 docm
580
+ application/vnd.ms-word.template.macroenabled.12 dotm
581
+ application/vnd.ms-works wps wks wcm wdb
582
+ application/vnd.ms-wpl wpl
583
+ application/vnd.ms-xpsdocument xps
584
+ application/vnd.mseq mseq
585
+ # application/vnd.msign
586
+ # application/vnd.multiad.creator
587
+ # application/vnd.multiad.creator.cif
588
+ # application/vnd.music-niff
589
+ application/vnd.musician mus
590
+ application/vnd.muvee.style msty
591
+ # application/vnd.ncd.control
592
+ # application/vnd.ncd.reference
593
+ # application/vnd.nervana
594
+ # application/vnd.netfpx
595
+ application/vnd.neurolanguage.nlu nlu
596
+ application/vnd.noblenet-directory nnd
597
+ application/vnd.noblenet-sealer nns
598
+ application/vnd.noblenet-web nnw
599
+ # application/vnd.nokia.catalogs
600
+ # application/vnd.nokia.conml+wbxml
601
+ # application/vnd.nokia.conml+xml
602
+ # application/vnd.nokia.isds-radio-presets
603
+ # application/vnd.nokia.iptv.config+xml
604
+ # application/vnd.nokia.landmark+wbxml
605
+ # application/vnd.nokia.landmark+xml
606
+ # application/vnd.nokia.landmarkcollection+xml
607
+ # application/vnd.nokia.n-gage.ac+xml
608
+ application/vnd.nokia.n-gage.data ngdat
609
+ application/vnd.nokia.n-gage.symbian.install n-gage
610
+ # application/vnd.nokia.ncd
611
+ # application/vnd.nokia.pcd+wbxml
612
+ # application/vnd.nokia.pcd+xml
613
+ application/vnd.nokia.radio-preset rpst
614
+ application/vnd.nokia.radio-presets rpss
615
+ application/vnd.novadigm.edm edm
616
+ application/vnd.novadigm.edx edx
617
+ application/vnd.novadigm.ext ext
618
+ # application/vnd.ntt-local.file-transfer
619
+ # application/vnd.ntt-local.sip-ta_remote
620
+ # application/vnd.ntt-local.sip-ta_tcp_stream
621
+ application/vnd.oasis.opendocument.chart odc
622
+ application/vnd.oasis.opendocument.chart-template otc
623
+ application/vnd.oasis.opendocument.database odb
624
+ application/vnd.oasis.opendocument.formula odf
625
+ application/vnd.oasis.opendocument.formula-template odft
626
+ application/vnd.oasis.opendocument.graphics odg
627
+ application/vnd.oasis.opendocument.graphics-template otg
628
+ application/vnd.oasis.opendocument.image odi
629
+ application/vnd.oasis.opendocument.image-template oti
630
+ application/vnd.oasis.opendocument.presentation odp
631
+ application/vnd.oasis.opendocument.presentation-template otp
632
+ application/vnd.oasis.opendocument.spreadsheet ods
633
+ application/vnd.oasis.opendocument.spreadsheet-template ots
634
+ application/vnd.oasis.opendocument.text odt
635
+ application/vnd.oasis.opendocument.text-master odm
636
+ application/vnd.oasis.opendocument.text-template ott
637
+ application/vnd.oasis.opendocument.text-web oth
638
+ # application/vnd.obn
639
+ # application/vnd.oipf.contentaccessdownload+xml
640
+ # application/vnd.oipf.contentaccessstreaming+xml
641
+ # application/vnd.oipf.cspg-hexbinary
642
+ # application/vnd.oipf.dae.svg+xml
643
+ # application/vnd.oipf.dae.xhtml+xml
644
+ # application/vnd.oipf.mippvcontrolmessage+xml
645
+ # application/vnd.oipf.pae.gem
646
+ # application/vnd.oipf.spdiscovery+xml
647
+ # application/vnd.oipf.spdlist+xml
648
+ # application/vnd.oipf.ueprofile+xml
649
+ # application/vnd.oipf.userprofile+xml
650
+ application/vnd.olpc-sugar xo
651
+ # application/vnd.oma-scws-config
652
+ # application/vnd.oma-scws-http-request
653
+ # application/vnd.oma-scws-http-response
654
+ # application/vnd.oma.bcast.associated-procedure-parameter+xml
655
+ # application/vnd.oma.bcast.drm-trigger+xml
656
+ # application/vnd.oma.bcast.imd+xml
657
+ # application/vnd.oma.bcast.ltkm
658
+ # application/vnd.oma.bcast.notification+xml
659
+ # application/vnd.oma.bcast.provisioningtrigger
660
+ # application/vnd.oma.bcast.sgboot
661
+ # application/vnd.oma.bcast.sgdd+xml
662
+ # application/vnd.oma.bcast.sgdu
663
+ # application/vnd.oma.bcast.simple-symbol-container
664
+ # application/vnd.oma.bcast.smartcard-trigger+xml
665
+ # application/vnd.oma.bcast.sprov+xml
666
+ # application/vnd.oma.bcast.stkm
667
+ # application/vnd.oma.cab-address-book+xml
668
+ # application/vnd.oma.cab-pcc+xml
669
+ # application/vnd.oma.dcd
670
+ # application/vnd.oma.dcdc
671
+ application/vnd.oma.dd2+xml dd2
672
+ # application/vnd.oma.drm.risd+xml
673
+ # application/vnd.oma.group-usage-list+xml
674
+ # application/vnd.oma.poc.detailed-progress-report+xml
675
+ # application/vnd.oma.poc.final-report+xml
676
+ # application/vnd.oma.poc.groups+xml
677
+ # application/vnd.oma.poc.invocation-descriptor+xml
678
+ # application/vnd.oma.poc.optimized-progress-report+xml
679
+ # application/vnd.oma.push
680
+ # application/vnd.oma.scidm.messages+xml
681
+ # application/vnd.oma.xcap-directory+xml
682
+ # application/vnd.omads-email+xml
683
+ # application/vnd.omads-file+xml
684
+ # application/vnd.omads-folder+xml
685
+ # application/vnd.omaloc-supl-init
686
+ application/vnd.openofficeorg.extension oxt
687
+ # application/vnd.openxmlformats-officedocument.custom-properties+xml
688
+ # application/vnd.openxmlformats-officedocument.customxmlproperties+xml
689
+ # application/vnd.openxmlformats-officedocument.drawing+xml
690
+ # application/vnd.openxmlformats-officedocument.drawingml.chart+xml
691
+ # application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml
692
+ # application/vnd.openxmlformats-officedocument.drawingml.diagramcolors+xml
693
+ # application/vnd.openxmlformats-officedocument.drawingml.diagramdata+xml
694
+ # application/vnd.openxmlformats-officedocument.drawingml.diagramlayout+xml
695
+ # application/vnd.openxmlformats-officedocument.drawingml.diagramstyle+xml
696
+ # application/vnd.openxmlformats-officedocument.extended-properties+xml
697
+ # application/vnd.openxmlformats-officedocument.presentationml.commentauthors+xml
698
+ # application/vnd.openxmlformats-officedocument.presentationml.comments+xml
699
+ # application/vnd.openxmlformats-officedocument.presentationml.handoutmaster+xml
700
+ # application/vnd.openxmlformats-officedocument.presentationml.notesmaster+xml
701
+ # application/vnd.openxmlformats-officedocument.presentationml.notesslide+xml
702
+ application/vnd.openxmlformats-officedocument.presentationml.presentation pptx
703
+ # application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml
704
+ # application/vnd.openxmlformats-officedocument.presentationml.presprops+xml
705
+ application/vnd.openxmlformats-officedocument.presentationml.slide sldx
706
+ # application/vnd.openxmlformats-officedocument.presentationml.slide+xml
707
+ # application/vnd.openxmlformats-officedocument.presentationml.slidelayout+xml
708
+ # application/vnd.openxmlformats-officedocument.presentationml.slidemaster+xml
709
+ application/vnd.openxmlformats-officedocument.presentationml.slideshow ppsx
710
+ # application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml
711
+ # application/vnd.openxmlformats-officedocument.presentationml.slideupdateinfo+xml
712
+ # application/vnd.openxmlformats-officedocument.presentationml.tablestyles+xml
713
+ # application/vnd.openxmlformats-officedocument.presentationml.tags+xml
714
+ application/vnd.openxmlformats-officedocument.presentationml.template potx
715
+ # application/vnd.openxmlformats-officedocument.presentationml.template.main+xml
716
+ # application/vnd.openxmlformats-officedocument.presentationml.viewprops+xml
717
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.calcchain+xml
718
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml
719
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml
720
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml
721
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml
722
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.externallink+xml
723
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcachedefinition+xml
724
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcacherecords+xml
725
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.pivottable+xml
726
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.querytable+xml
727
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.revisionheaders+xml
728
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.revisionlog+xml
729
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.sharedstrings+xml
730
+ application/vnd.openxmlformats-officedocument.spreadsheetml.sheet xlsx
731
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml
732
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.sheetmetadata+xml
733
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml
734
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml
735
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.tablesinglecells+xml
736
+ application/vnd.openxmlformats-officedocument.spreadsheetml.template xltx
737
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml
738
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.usernames+xml
739
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.volatiledependencies+xml
740
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml
741
+ # application/vnd.openxmlformats-officedocument.theme+xml
742
+ # application/vnd.openxmlformats-officedocument.themeoverride+xml
743
+ # application/vnd.openxmlformats-officedocument.vmldrawing
744
+ # application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml
745
+ application/vnd.openxmlformats-officedocument.wordprocessingml.document docx
746
+ # application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml
747
+ # application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml
748
+ # application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml
749
+ # application/vnd.openxmlformats-officedocument.wordprocessingml.fonttable+xml
750
+ # application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml
751
+ # application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml
752
+ # application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml
753
+ # application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml
754
+ # application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml
755
+ application/vnd.openxmlformats-officedocument.wordprocessingml.template dotx
756
+ # application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml
757
+ # application/vnd.openxmlformats-officedocument.wordprocessingml.websettings+xml
758
+ # application/vnd.openxmlformats-package.core-properties+xml
759
+ # application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml
760
+ # application/vnd.openxmlformats-package.relationships+xml
761
+ # application/vnd.quobject-quoxdocument
762
+ # application/vnd.osa.netdeploy
763
+ application/vnd.osgeo.mapguide.package mgp
764
+ # application/vnd.osgi.bundle
765
+ application/vnd.osgi.dp dp
766
+ # application/vnd.otps.ct-kip+xml
767
+ application/vnd.palm pdb pqa oprc
768
+ # application/vnd.paos.xml
769
+ application/vnd.pawaafile paw
770
+ application/vnd.pg.format str
771
+ application/vnd.pg.osasli ei6
772
+ # application/vnd.piaccess.application-licence
773
+ application/vnd.picsel efif
774
+ application/vnd.pmi.widget wg
775
+ # application/vnd.poc.group-advertisement+xml
776
+ application/vnd.pocketlearn plf
777
+ application/vnd.powerbuilder6 pbd
778
+ # application/vnd.powerbuilder6-s
779
+ # application/vnd.powerbuilder7
780
+ # application/vnd.powerbuilder7-s
781
+ # application/vnd.powerbuilder75
782
+ # application/vnd.powerbuilder75-s
783
+ # application/vnd.preminet
784
+ application/vnd.previewsystems.box box
785
+ application/vnd.proteus.magazine mgz
786
+ application/vnd.publishare-delta-tree qps
787
+ application/vnd.pvi.ptid1 ptid
788
+ # application/vnd.pwg-multiplexed
789
+ # application/vnd.pwg-xhtml-print+xml
790
+ # application/vnd.qualcomm.brew-app-res
791
+ application/vnd.quark.quarkxpress qxd qxt qwd qwt qxl qxb
792
+ # application/vnd.radisys.moml+xml
793
+ # application/vnd.radisys.msml+xml
794
+ # application/vnd.radisys.msml-audit+xml
795
+ # application/vnd.radisys.msml-audit-conf+xml
796
+ # application/vnd.radisys.msml-audit-conn+xml
797
+ # application/vnd.radisys.msml-audit-dialog+xml
798
+ # application/vnd.radisys.msml-audit-stream+xml
799
+ # application/vnd.radisys.msml-conf+xml
800
+ # application/vnd.radisys.msml-dialog+xml
801
+ # application/vnd.radisys.msml-dialog-base+xml
802
+ # application/vnd.radisys.msml-dialog-fax-detect+xml
803
+ # application/vnd.radisys.msml-dialog-fax-sendrecv+xml
804
+ # application/vnd.radisys.msml-dialog-group+xml
805
+ # application/vnd.radisys.msml-dialog-speech+xml
806
+ # application/vnd.radisys.msml-dialog-transform+xml
807
+ # application/vnd.rainstor.data
808
+ # application/vnd.rapid
809
+ application/vnd.realvnc.bed bed
810
+ application/vnd.recordare.musicxml mxl
811
+ application/vnd.recordare.musicxml+xml musicxml
812
+ # application/vnd.renlearn.rlprint
813
+ application/vnd.rig.cryptonote cryptonote
814
+ application/vnd.rim.cod cod
815
+ application/vnd.rn-realmedia rm
816
+ application/vnd.route66.link66+xml link66
817
+ # application/vnd.ruckus.download
818
+ # application/vnd.s3sms
819
+ application/vnd.sailingtracker.track st
820
+ # application/vnd.sbm.cid
821
+ # application/vnd.sbm.mid2
822
+ # application/vnd.scribus
823
+ # application/vnd.sealed.3df
824
+ # application/vnd.sealed.csf
825
+ # application/vnd.sealed.doc
826
+ # application/vnd.sealed.eml
827
+ # application/vnd.sealed.mht
828
+ # application/vnd.sealed.net
829
+ # application/vnd.sealed.ppt
830
+ # application/vnd.sealed.tiff
831
+ # application/vnd.sealed.xls
832
+ # application/vnd.sealedmedia.softseal.html
833
+ # application/vnd.sealedmedia.softseal.pdf
834
+ application/vnd.seemail see
835
+ application/vnd.sema sema
836
+ application/vnd.semd semd
837
+ application/vnd.semf semf
838
+ application/vnd.shana.informed.formdata ifm
839
+ application/vnd.shana.informed.formtemplate itp
840
+ application/vnd.shana.informed.interchange iif
841
+ application/vnd.shana.informed.package ipk
842
+ application/vnd.simtech-mindmapper twd twds
843
+ application/vnd.smaf mmf
844
+ # application/vnd.smart.notebook
845
+ application/vnd.smart.teacher teacher
846
+ # application/vnd.software602.filler.form+xml
847
+ # application/vnd.software602.filler.form-xml-zip
848
+ application/vnd.solent.sdkm+xml sdkm sdkd
849
+ application/vnd.spotfire.dxp dxp
850
+ application/vnd.spotfire.sfs sfs
851
+ # application/vnd.sss-cod
852
+ # application/vnd.sss-dtf
853
+ # application/vnd.sss-ntf
854
+ application/vnd.stardivision.calc sdc
855
+ application/vnd.stardivision.draw sda
856
+ application/vnd.stardivision.impress sdd
857
+ application/vnd.stardivision.math smf
858
+ application/vnd.stardivision.writer sdw vor
859
+ application/vnd.stardivision.writer-global sgl
860
+ application/vnd.stepmania.stepchart sm
861
+ # application/vnd.street-stream
862
+ application/vnd.sun.xml.calc sxc
863
+ application/vnd.sun.xml.calc.template stc
864
+ application/vnd.sun.xml.draw sxd
865
+ application/vnd.sun.xml.draw.template std
866
+ application/vnd.sun.xml.impress sxi
867
+ application/vnd.sun.xml.impress.template sti
868
+ application/vnd.sun.xml.math sxm
869
+ application/vnd.sun.xml.writer sxw
870
+ application/vnd.sun.xml.writer.global sxg
871
+ application/vnd.sun.xml.writer.template stw
872
+ # application/vnd.sun.wadl+xml
873
+ application/vnd.sus-calendar sus susp
874
+ application/vnd.svd svd
875
+ # application/vnd.swiftview-ics
876
+ application/vnd.symbian.install sis sisx
877
+ application/vnd.syncml+xml xsm
878
+ application/vnd.syncml.dm+wbxml bdm
879
+ application/vnd.syncml.dm+xml xdm
880
+ # application/vnd.syncml.dm.notification
881
+ # application/vnd.syncml.ds.notification
882
+ application/vnd.tao.intent-module-archive tao
883
+ application/vnd.tmobile-livetv tmo
884
+ application/vnd.trid.tpt tpt
885
+ application/vnd.triscape.mxs mxs
886
+ application/vnd.trueapp tra
887
+ # application/vnd.truedoc
888
+ # application/vnd.ubisoft.webplayer
889
+ application/vnd.ufdl ufd ufdl
890
+ application/vnd.uiq.theme utz
891
+ application/vnd.umajin umj
892
+ application/vnd.unity unityweb
893
+ application/vnd.uoml+xml uoml
894
+ # application/vnd.uplanet.alert
895
+ # application/vnd.uplanet.alert-wbxml
896
+ # application/vnd.uplanet.bearer-choice
897
+ # application/vnd.uplanet.bearer-choice-wbxml
898
+ # application/vnd.uplanet.cacheop
899
+ # application/vnd.uplanet.cacheop-wbxml
900
+ # application/vnd.uplanet.channel
901
+ # application/vnd.uplanet.channel-wbxml
902
+ # application/vnd.uplanet.list
903
+ # application/vnd.uplanet.list-wbxml
904
+ # application/vnd.uplanet.listcmd
905
+ # application/vnd.uplanet.listcmd-wbxml
906
+ # application/vnd.uplanet.signal
907
+ application/vnd.vcx vcx
908
+ # application/vnd.vd-study
909
+ # application/vnd.vectorworks
910
+ # application/vnd.verimatrix.vcas
911
+ # application/vnd.vidsoft.vidconference
912
+ application/vnd.visio vsd vst vss vsw
913
+ application/vnd.visionary vis
914
+ # application/vnd.vividence.scriptfile
915
+ application/vnd.vsf vsf
916
+ # application/vnd.wap.sic
917
+ # application/vnd.wap.slc
918
+ application/vnd.wap.wbxml wbxml
919
+ application/vnd.wap.wmlc wmlc
920
+ application/vnd.wap.wmlscriptc wmlsc
921
+ application/vnd.webturbo wtb
922
+ # application/vnd.wfa.wsc
923
+ # application/vnd.wmc
924
+ # application/vnd.wmf.bootstrap
925
+ # application/vnd.wolfram.mathematica
926
+ # application/vnd.wolfram.mathematica.package
927
+ application/vnd.wolfram.player nbp
928
+ application/vnd.wordperfect wpd
929
+ application/vnd.wqd wqd
930
+ # application/vnd.wrq-hp3000-labelled
931
+ application/vnd.wt.stf stf
932
+ # application/vnd.wv.csp+wbxml
933
+ # application/vnd.wv.csp+xml
934
+ # application/vnd.wv.ssp+xml
935
+ application/vnd.xara xar
936
+ application/vnd.xfdl xfdl
937
+ # application/vnd.xfdl.webform
938
+ # application/vnd.xmi+xml
939
+ # application/vnd.xmpie.cpkg
940
+ # application/vnd.xmpie.dpkg
941
+ # application/vnd.xmpie.plan
942
+ # application/vnd.xmpie.ppkg
943
+ # application/vnd.xmpie.xlim
944
+ application/vnd.yamaha.hv-dic hvd
945
+ application/vnd.yamaha.hv-script hvs
946
+ application/vnd.yamaha.hv-voice hvp
947
+ application/vnd.yamaha.openscoreformat osf
948
+ application/vnd.yamaha.openscoreformat.osfpvg+xml osfpvg
949
+ # application/vnd.yamaha.remote-setup
950
+ application/vnd.yamaha.smaf-audio saf
951
+ application/vnd.yamaha.smaf-phrase spf
952
+ # application/vnd.yamaha.tunnel-udpencap
953
+ application/vnd.yellowriver-custom-menu cmp
954
+ application/vnd.zul zir zirz
955
+ application/vnd.zzazz.deck+xml zaz
956
+ application/voicexml+xml vxml
957
+ # application/vq-rtcpxr
958
+ # application/watcherinfo+xml
959
+ # application/whoispp-query
960
+ # application/whoispp-response
961
+ application/widget wgt
962
+ application/winhlp hlp
963
+ # application/wita
964
+ # application/wordperfect5.1
965
+ application/wsdl+xml wsdl
966
+ application/wspolicy+xml wspolicy
967
+ application/x-7z-compressed 7z
968
+ application/x-abiword abw
969
+ application/x-ace-compressed ace
970
+ application/x-authorware-bin aab x32 u32 vox
971
+ application/x-authorware-map aam
972
+ application/x-authorware-seg aas
973
+ application/x-bcpio bcpio
974
+ application/x-bittorrent torrent
975
+ application/x-bzip bz
976
+ application/x-bzip2 bz2 boz
977
+ application/x-cdlink vcd
978
+ application/x-chat chat
979
+ application/x-chess-pgn pgn
980
+ # application/x-compress
981
+ application/x-cpio cpio
982
+ application/x-csh csh
983
+ application/x-debian-package deb udeb
984
+ application/x-director dir dcr dxr cst cct cxt w3d fgd swa
985
+ application/x-doom wad
986
+ application/x-dtbncx+xml ncx
987
+ application/x-dtbook+xml dtb
988
+ application/x-dtbresource+xml res
989
+ application/x-dvi dvi
990
+ application/x-font-bdf bdf
991
+ # application/x-font-dos
992
+ # application/x-font-framemaker
993
+ application/x-font-ghostscript gsf
994
+ # application/x-font-libgrx
995
+ application/x-font-linux-psf psf
996
+ application/x-font-otf otf
997
+ application/x-font-pcf pcf
998
+ application/x-font-snf snf
999
+ # application/x-font-speedo
1000
+ # application/x-font-sunos-news
1001
+ application/x-font-ttf ttf ttc
1002
+ application/x-font-type1 pfa pfb pfm afm
1003
+ application/x-font-woff woff
1004
+ # application/x-font-vfont
1005
+ application/x-futuresplash spl
1006
+ application/x-gnumeric gnumeric
1007
+ application/x-gtar gtar
1008
+ # application/x-gzip
1009
+ application/x-hdf hdf
1010
+ application/x-java-jnlp-file jnlp
1011
+ application/x-latex latex
1012
+ application/x-mobipocket-ebook prc mobi
1013
+ application/x-ms-application application
1014
+ application/x-ms-wmd wmd
1015
+ application/x-ms-wmz wmz
1016
+ application/x-ms-xbap xbap
1017
+ application/x-msaccess mdb
1018
+ application/x-msbinder obd
1019
+ application/x-mscardfile crd
1020
+ application/x-msclip clp
1021
+ application/x-msdownload exe dll com bat msi
1022
+ application/x-msmediaview mvb m13 m14
1023
+ application/x-msmetafile wmf
1024
+ application/x-msmoney mny
1025
+ application/x-mspublisher pub
1026
+ application/x-msschedule scd
1027
+ application/x-msterminal trm
1028
+ application/x-mswrite wri
1029
+ application/x-netcdf nc cdf
1030
+ application/x-pkcs12 p12 pfx
1031
+ application/x-pkcs7-certificates p7b spc
1032
+ application/x-pkcs7-certreqresp p7r
1033
+ application/x-rar-compressed rar
1034
+ application/x-sh sh
1035
+ application/x-shar shar
1036
+ application/x-shockwave-flash swf
1037
+ application/x-silverlight-app xap
1038
+ application/x-stuffit sit
1039
+ application/x-stuffitx sitx
1040
+ application/x-sv4cpio sv4cpio
1041
+ application/x-sv4crc sv4crc
1042
+ application/x-tar tar
1043
+ application/x-tcl tcl
1044
+ application/x-tex tex
1045
+ application/x-tex-tfm tfm
1046
+ application/x-texinfo texinfo texi
1047
+ application/x-ustar ustar
1048
+ application/x-wais-source src
1049
+ application/x-x509-ca-cert der crt
1050
+ application/x-xfig fig
1051
+ application/x-xpinstall xpi
1052
+ # application/x400-bp
1053
+ # application/xcap-att+xml
1054
+ # application/xcap-caps+xml
1055
+ application/xcap-diff+xml xdf
1056
+ # application/xcap-el+xml
1057
+ # application/xcap-error+xml
1058
+ # application/xcap-ns+xml
1059
+ # application/xcon-conference-info-diff+xml
1060
+ # application/xcon-conference-info+xml
1061
+ application/xenc+xml xenc
1062
+ application/xhtml+xml xhtml xht
1063
+ # application/xhtml-voice+xml
1064
+ application/xml xml xsl
1065
+ application/xml-dtd dtd
1066
+ # application/xml-external-parsed-entity
1067
+ # application/xmpp+xml
1068
+ application/xop+xml xop
1069
+ application/xslt+xml xslt
1070
+ application/xspf+xml xspf
1071
+ application/xv+xml mxml xhvml xvml xvm
1072
+ application/yang yang
1073
+ application/yin+xml yin
1074
+ application/zip zip
1075
+ # audio/1d-interleaved-parityfec
1076
+ # audio/32kadpcm
1077
+ # audio/3gpp
1078
+ # audio/3gpp2
1079
+ # audio/ac3
1080
+ audio/adpcm adp
1081
+ # audio/amr
1082
+ # audio/amr-wb
1083
+ # audio/amr-wb+
1084
+ # audio/asc
1085
+ # audio/atrac-advanced-lossless
1086
+ # audio/atrac-x
1087
+ # audio/atrac3
1088
+ audio/basic au snd
1089
+ # audio/bv16
1090
+ # audio/bv32
1091
+ # audio/clearmode
1092
+ # audio/cn
1093
+ # audio/dat12
1094
+ # audio/dls
1095
+ # audio/dsr-es201108
1096
+ # audio/dsr-es202050
1097
+ # audio/dsr-es202211
1098
+ # audio/dsr-es202212
1099
+ # audio/dvi4
1100
+ # audio/eac3
1101
+ # audio/evrc
1102
+ # audio/evrc-qcp
1103
+ # audio/evrc0
1104
+ # audio/evrc1
1105
+ # audio/evrcb
1106
+ # audio/evrcb0
1107
+ # audio/evrcb1
1108
+ # audio/evrcwb
1109
+ # audio/evrcwb0
1110
+ # audio/evrcwb1
1111
+ # audio/example
1112
+ # audio/g719
1113
+ # audio/g722
1114
+ # audio/g7221
1115
+ # audio/g723
1116
+ # audio/g726-16
1117
+ # audio/g726-24
1118
+ # audio/g726-32
1119
+ # audio/g726-40
1120
+ # audio/g728
1121
+ # audio/g729
1122
+ # audio/g7291
1123
+ # audio/g729d
1124
+ # audio/g729e
1125
+ # audio/gsm
1126
+ # audio/gsm-efr
1127
+ # audio/gsm-hr-08
1128
+ # audio/ilbc
1129
+ # audio/l16
1130
+ # audio/l20
1131
+ # audio/l24
1132
+ # audio/l8
1133
+ # audio/lpc
1134
+ audio/midi mid midi kar rmi
1135
+ # audio/mobile-xmf
1136
+ audio/mp4 mp4a
1137
+ # audio/mp4a-latm
1138
+ # audio/mpa
1139
+ # audio/mpa-robust
1140
+ audio/mpeg mpga mp2 mp2a mp3 m2a m3a
1141
+ # audio/mpeg4-generic
1142
+ audio/ogg oga ogg spx
1143
+ # audio/parityfec
1144
+ # audio/pcma
1145
+ # audio/pcma-wb
1146
+ # audio/pcmu-wb
1147
+ # audio/pcmu
1148
+ # audio/prs.sid
1149
+ # audio/qcelp
1150
+ # audio/red
1151
+ # audio/rtp-enc-aescm128
1152
+ # audio/rtp-midi
1153
+ # audio/rtx
1154
+ # audio/smv
1155
+ # audio/smv0
1156
+ # audio/smv-qcp
1157
+ # audio/sp-midi
1158
+ # audio/speex
1159
+ # audio/t140c
1160
+ # audio/t38
1161
+ # audio/telephone-event
1162
+ # audio/tone
1163
+ # audio/uemclip
1164
+ # audio/ulpfec
1165
+ # audio/vdvi
1166
+ # audio/vmr-wb
1167
+ # audio/vnd.3gpp.iufp
1168
+ # audio/vnd.4sb
1169
+ # audio/vnd.audiokoz
1170
+ # audio/vnd.celp
1171
+ # audio/vnd.cisco.nse
1172
+ # audio/vnd.cmles.radio-events
1173
+ # audio/vnd.cns.anp1
1174
+ # audio/vnd.cns.inf1
1175
+ audio/vnd.dece.audio uva uvva
1176
+ audio/vnd.digital-winds eol
1177
+ # audio/vnd.dlna.adts
1178
+ # audio/vnd.dolby.heaac.1
1179
+ # audio/vnd.dolby.heaac.2
1180
+ # audio/vnd.dolby.mlp
1181
+ # audio/vnd.dolby.mps
1182
+ # audio/vnd.dolby.pl2
1183
+ # audio/vnd.dolby.pl2x
1184
+ # audio/vnd.dolby.pl2z
1185
+ # audio/vnd.dolby.pulse.1
1186
+ audio/vnd.dra dra
1187
+ audio/vnd.dts dts
1188
+ audio/vnd.dts.hd dtshd
1189
+ # audio/vnd.everad.plj
1190
+ # audio/vnd.hns.audio
1191
+ audio/vnd.lucent.voice lvp
1192
+ audio/vnd.ms-playready.media.pya pya
1193
+ # audio/vnd.nokia.mobile-xmf
1194
+ # audio/vnd.nortel.vbk
1195
+ audio/vnd.nuera.ecelp4800 ecelp4800
1196
+ audio/vnd.nuera.ecelp7470 ecelp7470
1197
+ audio/vnd.nuera.ecelp9600 ecelp9600
1198
+ # audio/vnd.octel.sbc
1199
+ # audio/vnd.qcelp
1200
+ # audio/vnd.rhetorex.32kadpcm
1201
+ audio/vnd.rip rip
1202
+ # audio/vnd.sealedmedia.softseal.mpeg
1203
+ # audio/vnd.vmx.cvsd
1204
+ # audio/vorbis
1205
+ # audio/vorbis-config
1206
+ audio/webm weba
1207
+ audio/x-aac aac
1208
+ audio/x-aiff aif aiff aifc
1209
+ audio/x-mpegurl m3u
1210
+ audio/x-ms-wax wax
1211
+ audio/x-ms-wma wma
1212
+ audio/x-pn-realaudio ram ra
1213
+ audio/x-pn-realaudio-plugin rmp
1214
+ audio/x-wav wav
1215
+ chemical/x-cdx cdx
1216
+ chemical/x-cif cif
1217
+ chemical/x-cmdf cmdf
1218
+ chemical/x-cml cml
1219
+ chemical/x-csml csml
1220
+ # chemical/x-pdb
1221
+ chemical/x-xyz xyz
1222
+ image/bmp bmp
1223
+ image/cgm cgm
1224
+ # image/example
1225
+ # image/fits
1226
+ image/g3fax g3
1227
+ image/gif gif
1228
+ image/ief ief
1229
+ # image/jp2
1230
+ image/jpeg jpeg jpg jpe
1231
+ # image/jpm
1232
+ # image/jpx
1233
+ image/ktx ktx
1234
+ # image/naplps
1235
+ image/png png
1236
+ image/prs.btif btif
1237
+ # image/prs.pti
1238
+ image/svg+xml svg svgz
1239
+ # image/t38
1240
+ image/tiff tiff tif
1241
+ # image/tiff-fx
1242
+ image/vnd.adobe.photoshop psd
1243
+ # image/vnd.cns.inf2
1244
+ image/vnd.dece.graphic uvi uvvi uvg uvvg
1245
+ image/vnd.dvb.subtitle sub
1246
+ image/vnd.djvu djvu djv
1247
+ image/vnd.dwg dwg
1248
+ image/vnd.dxf dxf
1249
+ image/vnd.fastbidsheet fbs
1250
+ image/vnd.fpx fpx
1251
+ image/vnd.fst fst
1252
+ image/vnd.fujixerox.edmics-mmr mmr
1253
+ image/vnd.fujixerox.edmics-rlc rlc
1254
+ # image/vnd.globalgraphics.pgb
1255
+ # image/vnd.microsoft.icon
1256
+ # image/vnd.mix
1257
+ image/vnd.ms-modi mdi
1258
+ image/vnd.net-fpx npx
1259
+ # image/vnd.radiance
1260
+ # image/vnd.sealed.png
1261
+ # image/vnd.sealedmedia.softseal.gif
1262
+ # image/vnd.sealedmedia.softseal.jpg
1263
+ # image/vnd.svf
1264
+ image/vnd.wap.wbmp wbmp
1265
+ image/vnd.xiff xif
1266
+ image/webp webp
1267
+ image/x-cmu-raster ras
1268
+ image/x-cmx cmx
1269
+ image/x-freehand fh fhc fh4 fh5 fh7
1270
+ image/x-icon ico
1271
+ image/x-pcx pcx
1272
+ image/x-pict pic pct
1273
+ image/x-portable-anymap pnm
1274
+ image/x-portable-bitmap pbm
1275
+ image/x-portable-graymap pgm
1276
+ image/x-portable-pixmap ppm
1277
+ image/x-rgb rgb
1278
+ image/x-xbitmap xbm
1279
+ image/x-xpixmap xpm
1280
+ image/x-xwindowdump xwd
1281
+ # message/cpim
1282
+ # message/delivery-status
1283
+ # message/disposition-notification
1284
+ # message/example
1285
+ # message/external-body
1286
+ # message/feedback-report
1287
+ # message/global
1288
+ # message/global-delivery-status
1289
+ # message/global-disposition-notification
1290
+ # message/global-headers
1291
+ # message/http
1292
+ # message/imdn+xml
1293
+ # message/news
1294
+ # message/partial
1295
+ message/rfc822 eml mime
1296
+ # message/s-http
1297
+ # message/sip
1298
+ # message/sipfrag
1299
+ # message/tracking-status
1300
+ # message/vnd.si.simp
1301
+ # model/example
1302
+ model/iges igs iges
1303
+ model/mesh msh mesh silo
1304
+ model/vnd.collada+xml dae
1305
+ model/vnd.dwf dwf
1306
+ # model/vnd.flatland.3dml
1307
+ model/vnd.gdl gdl
1308
+ # model/vnd.gs-gdl
1309
+ # model/vnd.gs.gdl
1310
+ model/vnd.gtw gtw
1311
+ # model/vnd.moml+xml
1312
+ model/vnd.mts mts
1313
+ # model/vnd.parasolid.transmit.binary
1314
+ # model/vnd.parasolid.transmit.text
1315
+ model/vnd.vtu vtu
1316
+ model/vrml wrl vrml
1317
+ # multipart/alternative
1318
+ # multipart/appledouble
1319
+ # multipart/byteranges
1320
+ # multipart/digest
1321
+ # multipart/encrypted
1322
+ # multipart/example
1323
+ # multipart/form-data
1324
+ # multipart/header-set
1325
+ # multipart/mixed
1326
+ # multipart/parallel
1327
+ # multipart/related
1328
+ # multipart/report
1329
+ # multipart/signed
1330
+ # multipart/voice-message
1331
+ # text/1d-interleaved-parityfec
1332
+ text/calendar ics ifb
1333
+ text/css css
1334
+ text/csv csv
1335
+ # text/directory
1336
+ # text/dns
1337
+ # text/ecmascript
1338
+ # text/enriched
1339
+ # text/example
1340
+ text/html html htm
1341
+ # text/javascript
1342
+ text/n3 n3
1343
+ # text/parityfec
1344
+ text/plain txt text conf def list log in
1345
+ # text/prs.fallenstein.rst
1346
+ text/prs.lines.tag dsc
1347
+ # text/vnd.radisys.msml-basic-layout
1348
+ # text/red
1349
+ # text/rfc822-headers
1350
+ text/richtext rtx
1351
+ # text/rtf
1352
+ # text/rtp-enc-aescm128
1353
+ # text/rtx
1354
+ text/sgml sgml sgm
1355
+ # text/t140
1356
+ text/tab-separated-values tsv
1357
+ text/troff t tr roff man me ms
1358
+ text/turtle ttl
1359
+ # text/ulpfec
1360
+ text/uri-list uri uris urls
1361
+ # text/vnd.abc
1362
+ text/vnd.curl curl
1363
+ text/vnd.curl.dcurl dcurl
1364
+ text/vnd.curl.scurl scurl
1365
+ text/vnd.curl.mcurl mcurl
1366
+ # text/vnd.dmclientscript
1367
+ # text/vnd.esmertec.theme-descriptor
1368
+ text/vnd.fly fly
1369
+ text/vnd.fmi.flexstor flx
1370
+ text/vnd.graphviz gv
1371
+ text/vnd.in3d.3dml 3dml
1372
+ text/vnd.in3d.spot spot
1373
+ # text/vnd.iptc.newsml
1374
+ # text/vnd.iptc.nitf
1375
+ # text/vnd.latex-z
1376
+ # text/vnd.motorola.reflex
1377
+ # text/vnd.ms-mediapackage
1378
+ # text/vnd.net2phone.commcenter.command
1379
+ # text/vnd.si.uricatalogue
1380
+ text/vnd.sun.j2me.app-descriptor jad
1381
+ # text/vnd.trolltech.linguist
1382
+ # text/vnd.wap.si
1383
+ # text/vnd.wap.sl
1384
+ text/vnd.wap.wml wml
1385
+ text/vnd.wap.wmlscript wmls
1386
+ text/x-asm s asm
1387
+ text/x-c c cc cxx cpp h hh dic
1388
+ text/x-fortran f for f77 f90
1389
+ text/x-pascal p pas
1390
+ text/x-java-source java
1391
+ text/x-setext etx
1392
+ text/x-uuencode uu
1393
+ text/x-vcalendar vcs
1394
+ text/x-vcard vcf
1395
+ # text/xml
1396
+ # text/xml-external-parsed-entity
1397
+ # video/1d-interleaved-parityfec
1398
+ video/3gpp 3gp
1399
+ # video/3gpp-tt
1400
+ video/3gpp2 3g2
1401
+ # video/bmpeg
1402
+ # video/bt656
1403
+ # video/celb
1404
+ # video/dv
1405
+ # video/example
1406
+ video/h261 h261
1407
+ video/h263 h263
1408
+ # video/h263-1998
1409
+ # video/h263-2000
1410
+ video/h264 h264
1411
+ # video/h264-rcdo
1412
+ # video/h264-svc
1413
+ video/jpeg jpgv
1414
+ # video/jpeg2000
1415
+ video/jpm jpm jpgm
1416
+ video/mj2 mj2 mjp2
1417
+ # video/mp1s
1418
+ # video/mp2p
1419
+ # video/mp2t
1420
+ video/mp4 mp4 mp4v mpg4
1421
+ # video/mp4v-es
1422
+ video/mpeg mpeg mpg mpe m1v m2v
1423
+ # video/mpeg4-generic
1424
+ # video/mpv
1425
+ # video/nv
1426
+ video/ogg ogv
1427
+ # video/parityfec
1428
+ # video/pointer
1429
+ video/quicktime qt mov
1430
+ # video/raw
1431
+ # video/rtp-enc-aescm128
1432
+ # video/rtx
1433
+ # video/smpte292m
1434
+ # video/ulpfec
1435
+ # video/vc1
1436
+ # video/vnd.cctv
1437
+ video/vnd.dece.hd uvh uvvh
1438
+ video/vnd.dece.mobile uvm uvvm
1439
+ # video/vnd.dece.mp4
1440
+ video/vnd.dece.pd uvp uvvp
1441
+ video/vnd.dece.sd uvs uvvs
1442
+ video/vnd.dece.video uvv uvvv
1443
+ # video/vnd.directv.mpeg
1444
+ # video/vnd.directv.mpeg-tts
1445
+ # video/vnd.dlna.mpeg-tts
1446
+ video/vnd.fvt fvt
1447
+ # video/vnd.hns.video
1448
+ # video/vnd.iptvforum.1dparityfec-1010
1449
+ # video/vnd.iptvforum.1dparityfec-2005
1450
+ # video/vnd.iptvforum.2dparityfec-1010
1451
+ # video/vnd.iptvforum.2dparityfec-2005
1452
+ # video/vnd.iptvforum.ttsavc
1453
+ # video/vnd.iptvforum.ttsmpeg2
1454
+ # video/vnd.motorola.video
1455
+ # video/vnd.motorola.videop
1456
+ video/vnd.mpegurl mxu m4u
1457
+ video/vnd.ms-playready.media.pyv pyv
1458
+ # video/vnd.nokia.interleaved-multimedia
1459
+ # video/vnd.nokia.videovoip
1460
+ # video/vnd.objectvideo
1461
+ # video/vnd.sealed.mpeg1
1462
+ # video/vnd.sealed.mpeg4
1463
+ # video/vnd.sealed.swf
1464
+ # video/vnd.sealedmedia.softseal.mov
1465
+ video/vnd.uvvu.mp4 uvu uvvu
1466
+ video/vnd.vivo viv
1467
+ video/webm webm
1468
+ video/x-f4v f4v
1469
+ video/x-fli fli
1470
+ video/x-flv flv
1471
+ video/x-m4v m4v
1472
+ video/x-ms-asf asf asx
1473
+ video/x-ms-wm wm
1474
+ video/x-ms-wmv wmv
1475
+ video/x-ms-wmx wmx
1476
+ video/x-ms-wvx wvx
1477
+ video/x-msvideo avi
1478
+ video/x-sgi-movie movie
1479
+ x-conference/x-cooltalk ice