coffeecake 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1336) hide show
  1. data/.gitignore +17 -0
  2. data/Gemfile +4 -0
  3. data/README.markdown +28 -0
  4. data/Rakefile +2 -0
  5. data/bin/ck +16 -0
  6. data/coffeecake.gemspec +21 -0
  7. data/lib/coffeecake.rb +4 -0
  8. data/lib/coffeecake/generators.rb +12 -0
  9. data/lib/coffeecake/generators/new_generator.rb +55 -0
  10. data/lib/coffeecake/templates/.gitkeep +0 -0
  11. data/lib/coffeecake/templates/README.markdown +56 -0
  12. data/lib/coffeecake/templates/SpecHelper.tt +0 -0
  13. data/lib/coffeecake/templates/docs_readme +5 -0
  14. data/lib/coffeecake/templates/jasmine.tt +18 -0
  15. data/lib/coffeecake/templates/lib.tt +3 -0
  16. data/lib/coffeecake/templates/spec.tt +3 -0
  17. data/lib/coffeecake/version.rb +3 -0
  18. data/lib/thor_register_patch.rb +16 -0
  19. data/node_modules/.bin/cake +7 -0
  20. data/node_modules/.bin/coffee +7 -0
  21. data/node_modules/.bin/docco +8 -0
  22. data/node_modules/.bin/jasmine +26 -0
  23. data/node_modules/.bin/jasmine-node +7 -0
  24. data/node_modules/.bin/uglifycss +127 -0
  25. data/node_modules/.bin/uglifyjs +317 -0
  26. data/node_modules/coffee-script/.npmignore +11 -0
  27. data/node_modules/coffee-script/LICENSE +22 -0
  28. data/node_modules/coffee-script/README +51 -0
  29. data/node_modules/coffee-script/Rakefile +78 -0
  30. data/node_modules/coffee-script/bin/cake +7 -0
  31. data/node_modules/coffee-script/bin/coffee +7 -0
  32. data/node_modules/coffee-script/extras/jsl.conf +44 -0
  33. data/node_modules/coffee-script/lib/coffee-script/browser.js +74 -0
  34. data/node_modules/coffee-script/lib/coffee-script/cake.js +89 -0
  35. data/node_modules/coffee-script/lib/coffee-script/coffee-script.js +148 -0
  36. data/node_modules/coffee-script/lib/coffee-script/command.js +310 -0
  37. data/node_modules/coffee-script/lib/coffee-script/grammar.js +588 -0
  38. data/node_modules/coffee-script/lib/coffee-script/helpers.js +72 -0
  39. data/node_modules/coffee-script/lib/coffee-script/index.js +10 -0
  40. data/node_modules/coffee-script/lib/coffee-script/lexer.js +687 -0
  41. data/node_modules/coffee-script/lib/coffee-script/nodes.js +2481 -0
  42. data/node_modules/coffee-script/lib/coffee-script/optparse.js +122 -0
  43. data/node_modules/coffee-script/lib/coffee-script/parser.js +670 -0
  44. data/node_modules/coffee-script/lib/coffee-script/repl.js +149 -0
  45. data/node_modules/coffee-script/lib/coffee-script/rewriter.js +288 -0
  46. data/node_modules/coffee-script/lib/coffee-script/scope.js +124 -0
  47. data/node_modules/coffee-script/npm-install-45965.sh +282 -0
  48. data/node_modules/coffee-script/package.json +31 -0
  49. data/node_modules/docco/.gitignore +3 -0
  50. data/node_modules/docco/Cakefile +27 -0
  51. data/node_modules/docco/README +13 -0
  52. data/node_modules/docco/bin/docco +8 -0
  53. data/node_modules/docco/index.html +143 -0
  54. data/node_modules/docco/lib/docco.js +155 -0
  55. data/node_modules/docco/package.json +21 -0
  56. data/node_modules/docco/resources/docco.css +186 -0
  57. data/node_modules/docco/resources/docco.jst +58 -0
  58. data/node_modules/docco/src/docco.coffee +204 -0
  59. data/node_modules/docco/vendor/showdown.js +1298 -0
  60. data/node_modules/jasmine-jquery/.gitignore +3 -0
  61. data/node_modules/jasmine-jquery/MIT.LICENSE +20 -0
  62. data/node_modules/jasmine-jquery/README.markdown +174 -0
  63. data/node_modules/jasmine-jquery/SpecRunner.html +24 -0
  64. data/node_modules/jasmine-jquery/index.js +15 -0
  65. data/node_modules/jasmine-jquery/lib/jasmine-jquery.js +288 -0
  66. data/node_modules/jasmine-jquery/package.json +19 -0
  67. data/node_modules/jasmine-jquery/spec/fixtures/real_non_mocked_fixture.html +1 -0
  68. data/node_modules/jasmine-jquery/spec/suites/jasmine-jquery-spec.js +691 -0
  69. data/node_modules/jasmine-node/.gitignore +10 -0
  70. data/node_modules/jasmine-node/LICENSE +22 -0
  71. data/node_modules/jasmine-node/README.md +35 -0
  72. data/node_modules/jasmine-node/bin/jasmine-node +7 -0
  73. data/node_modules/jasmine-node/lib/jasmine-node/cli.js +110 -0
  74. data/node_modules/jasmine-node/lib/jasmine-node/index.js +171 -0
  75. data/node_modules/jasmine-node/lib/jasmine-node/jasmine-2.0.0.rc1.js +2479 -0
  76. data/node_modules/jasmine-node/lib/jasmine-node/reporter.js +177 -0
  77. data/node_modules/jasmine-node/package.json +22 -0
  78. data/node_modules/jasmine-node/spec/CoffeeSpec.coffee +4 -0
  79. data/node_modules/jasmine-node/spec/SampleSpecs.js +15 -0
  80. data/node_modules/jasmine-node/spec/TestSpec.js +5 -0
  81. data/node_modules/jasmine-node/spec/helper_spec.js +7 -0
  82. data/node_modules/jasmine-node/spec/include/include_spec.js +7 -0
  83. data/node_modules/jasmine-node/spec/include/lib/test.js +3 -0
  84. data/node_modules/jasmine-node/spec/nested.js/NestedSpec.js +5 -0
  85. data/node_modules/jasmine-node/spec/nested/NestedSpec.js +5 -0
  86. data/node_modules/jasmine-node/spec/nested/uber-nested/UberNestedSpec.js +11 -0
  87. data/node_modules/jasmine-node/spec/sample_helper.js +19 -0
  88. data/node_modules/jasmine-node/specs.sh +2 -0
  89. data/node_modules/jasmine-reporters/.gitignore +1 -0
  90. data/node_modules/jasmine-reporters/.gitmodules +3 -0
  91. data/node_modules/jasmine-reporters/LICENSE +21 -0
  92. data/node_modules/jasmine-reporters/README.markdown +52 -0
  93. data/node_modules/jasmine-reporters/ext/env.rhino.1.2.js +13989 -0
  94. data/node_modules/jasmine-reporters/ext/jasmine-html.js +182 -0
  95. data/node_modules/jasmine-reporters/ext/jasmine.css +166 -0
  96. data/node_modules/jasmine-reporters/ext/jasmine.js +2421 -0
  97. data/node_modules/jasmine-reporters/ext/jline.jar +0 -0
  98. data/node_modules/jasmine-reporters/ext/js.jar +0 -0
  99. data/node_modules/jasmine-reporters/ext/phantomjs/.gitignore +10 -0
  100. data/node_modules/jasmine-reporters/ext/phantomjs/ChangeLog +57 -0
  101. data/node_modules/jasmine-reporters/ext/phantomjs/LICENSE.BSD +22 -0
  102. data/node_modules/jasmine-reporters/ext/phantomjs/README.md +28 -0
  103. data/node_modules/jasmine-reporters/ext/phantomjs/examples/arguments.coffee +6 -0
  104. data/node_modules/jasmine-reporters/ext/phantomjs/examples/arguments.js +8 -0
  105. data/node_modules/jasmine-reporters/ext/phantomjs/examples/colorwheel.coffee +45 -0
  106. data/node_modules/jasmine-reporters/ext/phantomjs/examples/colorwheel.js +52 -0
  107. data/node_modules/jasmine-reporters/ext/phantomjs/examples/countdown.coffee +8 -0
  108. data/node_modules/jasmine-reporters/ext/phantomjs/examples/countdown.js +8 -0
  109. data/node_modules/jasmine-reporters/ext/phantomjs/examples/cycle_multiple_urls.js +64 -0
  110. data/node_modules/jasmine-reporters/ext/phantomjs/examples/direction.coffee +28 -0
  111. data/node_modules/jasmine-reporters/ext/phantomjs/examples/direction.js +34 -0
  112. data/node_modules/jasmine-reporters/ext/phantomjs/examples/extract-text.coffee +81 -0
  113. data/node_modules/jasmine-reporters/ext/phantomjs/examples/extract-text.js +121 -0
  114. data/node_modules/jasmine-reporters/ext/phantomjs/examples/fibo.coffee +8 -0
  115. data/node_modules/jasmine-reporters/ext/phantomjs/examples/fibo.js +9 -0
  116. data/node_modules/jasmine-reporters/ext/phantomjs/examples/follow.coffee +36 -0
  117. data/node_modules/jasmine-reporters/ext/phantomjs/examples/follow.js +37 -0
  118. data/node_modules/jasmine-reporters/ext/phantomjs/examples/hello.coffee +2 -0
  119. data/node_modules/jasmine-reporters/ext/phantomjs/examples/hello.js +2 -0
  120. data/node_modules/jasmine-reporters/ext/phantomjs/examples/ipgeocode.coffee +13 -0
  121. data/node_modules/jasmine-reporters/ext/phantomjs/examples/ipgeocode.js +14 -0
  122. data/node_modules/jasmine-reporters/ext/phantomjs/examples/loadspeed.coffee +17 -0
  123. data/node_modules/jasmine-reporters/ext/phantomjs/examples/loadspeed.js +20 -0
  124. data/node_modules/jasmine-reporters/ext/phantomjs/examples/movies.coffee +13 -0
  125. data/node_modules/jasmine-reporters/ext/phantomjs/examples/movies.js +14 -0
  126. data/node_modules/jasmine-reporters/ext/phantomjs/examples/pizza.coffee +10 -0
  127. data/node_modules/jasmine-reporters/ext/phantomjs/examples/pizza.js +12 -0
  128. data/node_modules/jasmine-reporters/ext/phantomjs/examples/rasterize.coffee +21 -0
  129. data/node_modules/jasmine-reporters/ext/phantomjs/examples/rasterize.js +22 -0
  130. data/node_modules/jasmine-reporters/ext/phantomjs/examples/run-jasmine.js +26 -0
  131. data/node_modules/jasmine-reporters/ext/phantomjs/examples/run-qunit.js +24 -0
  132. data/node_modules/jasmine-reporters/ext/phantomjs/examples/seasonfood.coffee +17 -0
  133. data/node_modules/jasmine-reporters/ext/phantomjs/examples/seasonfood.js +19 -0
  134. data/node_modules/jasmine-reporters/ext/phantomjs/examples/technews.coffee +13 -0
  135. data/node_modules/jasmine-reporters/ext/phantomjs/examples/technews.js +14 -0
  136. data/node_modules/jasmine-reporters/ext/phantomjs/examples/tweets.coffee +8 -0
  137. data/node_modules/jasmine-reporters/ext/phantomjs/examples/tweets.js +12 -0
  138. data/node_modules/jasmine-reporters/ext/phantomjs/examples/useragent.coffee +7 -0
  139. data/node_modules/jasmine-reporters/ext/phantomjs/examples/useragent.js +8 -0
  140. data/node_modules/jasmine-reporters/ext/phantomjs/examples/version.coffee +5 -0
  141. data/node_modules/jasmine-reporters/ext/phantomjs/examples/version.js +5 -0
  142. data/node_modules/jasmine-reporters/ext/phantomjs/examples/waitfor.coffee +40 -0
  143. data/node_modules/jasmine-reporters/ext/phantomjs/examples/waitfor.js +43 -0
  144. data/node_modules/jasmine-reporters/ext/phantomjs/examples/weather.coffee +35 -0
  145. data/node_modules/jasmine-reporters/ext/phantomjs/examples/weather.js +42 -0
  146. data/node_modules/jasmine-reporters/ext/phantomjs/phantomjs.pro +3 -0
  147. data/node_modules/jasmine-reporters/ext/phantomjs/python/INSTALL +20 -0
  148. data/node_modules/jasmine-reporters/ext/phantomjs/python/LICENSE +674 -0
  149. data/node_modules/jasmine-reporters/ext/phantomjs/python/README +56 -0
  150. data/node_modules/jasmine-reporters/ext/phantomjs/python/csconverter.py +41 -0
  151. data/node_modules/jasmine-reporters/ext/phantomjs/python/networkaccessmanager.py +84 -0
  152. data/node_modules/jasmine-reporters/ext/phantomjs/python/phantom.py +384 -0
  153. data/node_modules/jasmine-reporters/ext/phantomjs/python/plugincontroller.py +98 -0
  154. data/node_modules/jasmine-reporters/ext/phantomjs/python/plugins/__init__.py +1 -0
  155. data/node_modules/jasmine-reporters/ext/phantomjs/python/pyphantomjs.py +154 -0
  156. data/node_modules/jasmine-reporters/ext/phantomjs/python/resources.py +4160 -0
  157. data/node_modules/jasmine-reporters/ext/phantomjs/python/resources.qrc +6 -0
  158. data/node_modules/jasmine-reporters/ext/phantomjs/python/resources/coffee-script.js +8 -0
  159. data/node_modules/jasmine-reporters/ext/phantomjs/python/resources/pyphantomjs-icon.ico +0 -0
  160. data/node_modules/jasmine-reporters/ext/phantomjs/python/resources/pyphantomjs-icon.png +0 -0
  161. data/node_modules/jasmine-reporters/ext/phantomjs/python/tools/build_resources.sh +14 -0
  162. data/node_modules/jasmine-reporters/ext/phantomjs/python/tools/setup.py +52 -0
  163. data/node_modules/jasmine-reporters/ext/phantomjs/python/utils.py +126 -0
  164. data/node_modules/jasmine-reporters/ext/phantomjs/python/webpage.py +67 -0
  165. data/node_modules/jasmine-reporters/ext/phantomjs/src/coffee-script.js +8 -0
  166. data/node_modules/jasmine-reporters/ext/phantomjs/src/consts.h +39 -0
  167. data/node_modules/jasmine-reporters/ext/phantomjs/src/csconverter.cpp +61 -0
  168. data/node_modules/jasmine-reporters/ext/phantomjs/src/csconverter.h +47 -0
  169. data/node_modules/jasmine-reporters/ext/phantomjs/src/gif/config.h +1 -0
  170. data/node_modules/jasmine-reporters/ext/phantomjs/src/gif/egif_lib.c +1111 -0
  171. data/node_modules/jasmine-reporters/ext/phantomjs/src/gif/gif.pri +20 -0
  172. data/node_modules/jasmine-reporters/ext/phantomjs/src/gif/gif_err.c +120 -0
  173. data/node_modules/jasmine-reporters/ext/phantomjs/src/gif/gif_hash.c +160 -0
  174. data/node_modules/jasmine-reporters/ext/phantomjs/src/gif/gif_hash.h +59 -0
  175. data/node_modules/jasmine-reporters/ext/phantomjs/src/gif/gif_lib.h +336 -0
  176. data/node_modules/jasmine-reporters/ext/phantomjs/src/gif/gif_lib_private.h +59 -0
  177. data/node_modules/jasmine-reporters/ext/phantomjs/src/gif/gifalloc.c +443 -0
  178. data/node_modules/jasmine-reporters/ext/phantomjs/src/gif/gifwriter.cpp +126 -0
  179. data/node_modules/jasmine-reporters/ext/phantomjs/src/gif/gifwriter.h +38 -0
  180. data/node_modules/jasmine-reporters/ext/phantomjs/src/gif/quantize.c +330 -0
  181. data/node_modules/jasmine-reporters/ext/phantomjs/src/main.cpp +64 -0
  182. data/node_modules/jasmine-reporters/ext/phantomjs/src/networkaccessmanager.cpp +119 -0
  183. data/node_modules/jasmine-reporters/ext/phantomjs/src/networkaccessmanager.h +53 -0
  184. data/node_modules/jasmine-reporters/ext/phantomjs/src/phantom.cpp +494 -0
  185. data/node_modules/jasmine-reporters/ext/phantomjs/src/phantom.h +117 -0
  186. data/node_modules/jasmine-reporters/ext/phantomjs/src/phantomjs-icon.png +0 -0
  187. data/node_modules/jasmine-reporters/ext/phantomjs/src/phantomjs.pro +32 -0
  188. data/node_modules/jasmine-reporters/ext/phantomjs/src/phantomjs.qrc +7 -0
  189. data/node_modules/jasmine-reporters/ext/phantomjs/src/phantomjs_os2.ico +0 -0
  190. data/node_modules/jasmine-reporters/ext/phantomjs/src/phantomjs_os2.rc +1 -0
  191. data/node_modules/jasmine-reporters/ext/phantomjs/src/phantomjs_win.ico +0 -0
  192. data/node_modules/jasmine-reporters/ext/phantomjs/src/phantomjs_win.rc +1 -0
  193. data/node_modules/jasmine-reporters/ext/phantomjs/src/usage.txt +11 -0
  194. data/node_modules/jasmine-reporters/ext/phantomjs/src/utils.cpp +74 -0
  195. data/node_modules/jasmine-reporters/ext/phantomjs/src/utils.h +50 -0
  196. data/node_modules/jasmine-reporters/ext/phantomjs/src/webpage.cpp +87 -0
  197. data/node_modules/jasmine-reporters/ext/phantomjs/src/webpage.h +61 -0
  198. data/node_modules/jasmine-reporters/package.json +15 -0
  199. data/node_modules/jasmine-reporters/src/jasmine.console_reporter.js +132 -0
  200. data/node_modules/jasmine-reporters/src/jasmine.junit_reporter.js +199 -0
  201. data/node_modules/jasmine-reporters/src/load_reporters.js +2 -0
  202. data/node_modules/jasmine-reporters/test/JUnitXmlReporterSpec.js +214 -0
  203. data/node_modules/jasmine-reporters/test/console_reporter.html +36 -0
  204. data/node_modules/jasmine-reporters/test/envjs.bootstrap.js +14 -0
  205. data/node_modules/jasmine-reporters/test/envjs.runner.sh +7 -0
  206. data/node_modules/jasmine-reporters/test/junit_xml_reporter.html +23 -0
  207. data/node_modules/jasmine-reporters/test/phantomjs-testrunner.js +39 -0
  208. data/node_modules/jasmine-reporters/test/phantomjs.runner.sh +30 -0
  209. data/node_modules/jasmine-reporters/test/pyphantomjs-plugins/saveToFile/__init__.py +1 -0
  210. data/node_modules/jasmine-reporters/test/pyphantomjs-plugins/saveToFile/saveToFile.py +46 -0
  211. data/node_modules/jasmine-runner/README.md +42 -0
  212. data/node_modules/jasmine-runner/TODO.md +16 -0
  213. data/node_modules/jasmine-runner/bin/jasmine +26 -0
  214. data/node_modules/jasmine-runner/lib/ServerRoutes.js +70 -0
  215. data/node_modules/jasmine-runner/lib/TestRunner.js +29 -0
  216. data/node_modules/jasmine-runner/lib/browser.js +14 -0
  217. data/node_modules/jasmine-runner/lib/config.js +21 -0
  218. data/node_modules/jasmine-runner/lib/jasmine-runner.js +83 -0
  219. data/node_modules/jasmine-runner/lib/monitor.js +34 -0
  220. data/node_modules/jasmine-runner/lib/notify.js +48 -0
  221. data/node_modules/jasmine-runner/lib/public/control-frame.js +57 -0
  222. data/node_modules/jasmine-runner/lib/public/jasmine-html.js +188 -0
  223. data/node_modules/jasmine-runner/lib/public/jasmine.css +166 -0
  224. data/node_modules/jasmine-runner/lib/public/jasmine.js +2421 -0
  225. data/node_modules/jasmine-runner/lib/public/jquery-1.4.3.js +166 -0
  226. data/node_modules/jasmine-runner/lib/public/json2.js +482 -0
  227. data/node_modules/jasmine-runner/lib/public/run.js +6 -0
  228. data/node_modules/jasmine-runner/lib/reporters.js +31 -0
  229. data/node_modules/jasmine-runner/lib/server-worker.js +18 -0
  230. data/node_modules/jasmine-runner/lib/server.js +27 -0
  231. data/node_modules/jasmine-runner/lib/template/jasmine.json +18 -0
  232. data/node_modules/jasmine-runner/lib/template/public/javascript/Player.js +22 -0
  233. data/node_modules/jasmine-runner/lib/template/public/javascript/Song.js +7 -0
  234. data/node_modules/jasmine-runner/lib/template/spec/PlayerSpec.coffee +45 -0
  235. data/node_modules/jasmine-runner/lib/template/spec/PlayerSpec.js +58 -0
  236. data/node_modules/jasmine-runner/lib/template/spec/SpecHelper.js +9 -0
  237. data/node_modules/jasmine-runner/lib/testserver.js +26 -0
  238. data/node_modules/jasmine-runner/lib/views/control-frame.jade +7 -0
  239. data/node_modules/jasmine-runner/lib/views/index.jade +18 -0
  240. data/node_modules/jasmine-runner/node_modules/.bin/cake +7 -0
  241. data/node_modules/jasmine-runner/node_modules/.bin/coffee +7 -0
  242. data/node_modules/jasmine-runner/node_modules/.bin/express +451 -0
  243. data/node_modules/jasmine-runner/node_modules/.bin/jade +92 -0
  244. data/node_modules/jasmine-runner/node_modules/.bin/vows +421 -0
  245. data/node_modules/jasmine-runner/node_modules/coffee-script/.npmignore +11 -0
  246. data/node_modules/jasmine-runner/node_modules/coffee-script/LICENSE +22 -0
  247. data/node_modules/jasmine-runner/node_modules/coffee-script/README +47 -0
  248. data/node_modules/jasmine-runner/node_modules/coffee-script/Rakefile +78 -0
  249. data/node_modules/jasmine-runner/node_modules/coffee-script/bin/cake +7 -0
  250. data/node_modules/jasmine-runner/node_modules/coffee-script/bin/coffee +7 -0
  251. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/browser.js +52 -0
  252. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/cake.js +76 -0
  253. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/coffee-script.js +82 -0
  254. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/command.js +269 -0
  255. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/grammar.js +586 -0
  256. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/helpers.js +66 -0
  257. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/index.js +8 -0
  258. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/lexer.js +638 -0
  259. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/nodes.js +2181 -0
  260. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/optparse.js +111 -0
  261. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/parser.js +656 -0
  262. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/repl.js +47 -0
  263. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/rewriter.js +353 -0
  264. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/scope.js +120 -0
  265. data/node_modules/jasmine-runner/node_modules/coffee-script/package.json +22 -0
  266. data/node_modules/jasmine-runner/node_modules/colors/MIT-LICENSE.txt +20 -0
  267. data/node_modules/jasmine-runner/node_modules/colors/ReadMe.md +30 -0
  268. data/node_modules/jasmine-runner/node_modules/colors/colors.js +75 -0
  269. data/node_modules/jasmine-runner/node_modules/colors/example.js +6 -0
  270. data/node_modules/jasmine-runner/node_modules/colors/package.json +14 -0
  271. data/node_modules/jasmine-runner/node_modules/express/.npmignore +7 -0
  272. data/node_modules/jasmine-runner/node_modules/express/History.md +630 -0
  273. data/node_modules/jasmine-runner/node_modules/express/LICENSE +22 -0
  274. data/node_modules/jasmine-runner/node_modules/express/Makefile +39 -0
  275. data/node_modules/jasmine-runner/node_modules/express/Readme.md +102 -0
  276. data/node_modules/jasmine-runner/node_modules/express/bin/express +451 -0
  277. data/node_modules/jasmine-runner/node_modules/express/index.js +2 -0
  278. data/node_modules/jasmine-runner/node_modules/express/lib/express.js +78 -0
  279. data/node_modules/jasmine-runner/node_modules/express/lib/http.js +503 -0
  280. data/node_modules/jasmine-runner/node_modules/express/lib/https.js +52 -0
  281. data/node_modules/jasmine-runner/node_modules/express/lib/request.js +289 -0
  282. data/node_modules/jasmine-runner/node_modules/express/lib/response.js +423 -0
  283. data/node_modules/jasmine-runner/node_modules/express/lib/router/index.js +329 -0
  284. data/node_modules/jasmine-runner/node_modules/express/lib/router/methods.js +70 -0
  285. data/node_modules/jasmine-runner/node_modules/express/lib/router/route.js +71 -0
  286. data/node_modules/jasmine-runner/node_modules/express/lib/utils.js +122 -0
  287. data/node_modules/jasmine-runner/node_modules/express/lib/view.js +413 -0
  288. data/node_modules/jasmine-runner/node_modules/express/lib/view/partial.js +40 -0
  289. data/node_modules/jasmine-runner/node_modules/express/lib/view/view.js +206 -0
  290. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/.npmignore +11 -0
  291. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/LICENSE +24 -0
  292. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/index.js +2 -0
  293. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/cache.js +81 -0
  294. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/connect.js +106 -0
  295. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/http.js +215 -0
  296. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/https.js +47 -0
  297. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/index.js +46 -0
  298. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/basicAuth.js +93 -0
  299. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/bodyParser.js +92 -0
  300. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/compiler.js +163 -0
  301. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/cookieParser.js +46 -0
  302. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/csrf.js +105 -0
  303. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/directory.js +222 -0
  304. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/errorHandler.js +100 -0
  305. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/favicon.js +76 -0
  306. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/limit.js +82 -0
  307. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/logger.js +299 -0
  308. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/methodOverride.js +38 -0
  309. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/profiler.js +100 -0
  310. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/query.js +40 -0
  311. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/responseTime.js +34 -0
  312. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/router.js +379 -0
  313. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/session.js +346 -0
  314. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/session/cookie.js +126 -0
  315. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/session/memory.js +131 -0
  316. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/session/session.js +137 -0
  317. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/session/store.js +87 -0
  318. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/static.js +225 -0
  319. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/staticCache.js +175 -0
  320. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/vhost.js +44 -0
  321. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/patch.js +79 -0
  322. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/directory.html +75 -0
  323. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/error.html +13 -0
  324. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/favicon.ico +0 -0
  325. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page.png +0 -0
  326. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_add.png +0 -0
  327. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_attach.png +0 -0
  328. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_code.png +0 -0
  329. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_copy.png +0 -0
  330. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_delete.png +0 -0
  331. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_edit.png +0 -0
  332. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_error.png +0 -0
  333. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_excel.png +0 -0
  334. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_find.png +0 -0
  335. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_gear.png +0 -0
  336. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_go.png +0 -0
  337. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_green.png +0 -0
  338. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_key.png +0 -0
  339. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_lightning.png +0 -0
  340. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_link.png +0 -0
  341. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_paintbrush.png +0 -0
  342. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_paste.png +0 -0
  343. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_red.png +0 -0
  344. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_refresh.png +0 -0
  345. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_save.png +0 -0
  346. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white.png +0 -0
  347. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_acrobat.png +0 -0
  348. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_actionscript.png +0 -0
  349. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_add.png +0 -0
  350. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_c.png +0 -0
  351. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_camera.png +0 -0
  352. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_cd.png +0 -0
  353. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_code.png +0 -0
  354. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_code_red.png +0 -0
  355. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_coldfusion.png +0 -0
  356. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_compressed.png +0 -0
  357. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_copy.png +0 -0
  358. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_cplusplus.png +0 -0
  359. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_csharp.png +0 -0
  360. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_cup.png +0 -0
  361. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_database.png +0 -0
  362. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_delete.png +0 -0
  363. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_dvd.png +0 -0
  364. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_edit.png +0 -0
  365. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_error.png +0 -0
  366. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_excel.png +0 -0
  367. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_find.png +0 -0
  368. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_flash.png +0 -0
  369. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_freehand.png +0 -0
  370. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_gear.png +0 -0
  371. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_get.png +0 -0
  372. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_go.png +0 -0
  373. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_h.png +0 -0
  374. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_horizontal.png +0 -0
  375. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_key.png +0 -0
  376. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_lightning.png +0 -0
  377. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_link.png +0 -0
  378. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_magnify.png +0 -0
  379. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_medal.png +0 -0
  380. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_office.png +0 -0
  381. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_paint.png +0 -0
  382. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_paintbrush.png +0 -0
  383. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_paste.png +0 -0
  384. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_php.png +0 -0
  385. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_picture.png +0 -0
  386. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_powerpoint.png +0 -0
  387. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_put.png +0 -0
  388. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_ruby.png +0 -0
  389. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_stack.png +0 -0
  390. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_star.png +0 -0
  391. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_swoosh.png +0 -0
  392. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_text.png +0 -0
  393. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_text_width.png +0 -0
  394. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_tux.png +0 -0
  395. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_vector.png +0 -0
  396. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_visualstudio.png +0 -0
  397. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_width.png +0 -0
  398. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_word.png +0 -0
  399. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_world.png +0 -0
  400. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_wrench.png +0 -0
  401. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_zip.png +0 -0
  402. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_word.png +0 -0
  403. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_world.png +0 -0
  404. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/style.css +141 -0
  405. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/utils.js +451 -0
  406. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/package.json +24 -0
  407. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/test.js +11 -0
  408. data/node_modules/jasmine-runner/node_modules/express/node_modules/mime/LICENSE +19 -0
  409. data/node_modules/jasmine-runner/node_modules/express/node_modules/mime/README.md +50 -0
  410. data/node_modules/jasmine-runner/node_modules/express/node_modules/mime/mime.js +92 -0
  411. data/node_modules/jasmine-runner/node_modules/express/node_modules/mime/package.json +22 -0
  412. data/node_modules/jasmine-runner/node_modules/express/node_modules/mime/test.js +79 -0
  413. data/node_modules/jasmine-runner/node_modules/express/node_modules/mime/types/mime.types +1479 -0
  414. data/node_modules/jasmine-runner/node_modules/express/node_modules/mime/types/node.types +43 -0
  415. data/node_modules/jasmine-runner/node_modules/express/node_modules/qs/.gitignore +1 -0
  416. data/node_modules/jasmine-runner/node_modules/express/node_modules/qs/.gitmodules +6 -0
  417. data/node_modules/jasmine-runner/node_modules/express/node_modules/qs/History.md +57 -0
  418. data/node_modules/jasmine-runner/node_modules/express/node_modules/qs/Makefile +7 -0
  419. data/node_modules/jasmine-runner/node_modules/express/node_modules/qs/Readme.md +49 -0
  420. data/node_modules/jasmine-runner/node_modules/express/node_modules/qs/benchmark.js +17 -0
  421. data/node_modules/jasmine-runner/node_modules/express/node_modules/qs/examples.js +48 -0
  422. data/node_modules/jasmine-runner/node_modules/express/node_modules/qs/index.js +2 -0
  423. data/node_modules/jasmine-runner/node_modules/express/node_modules/qs/lib/querystring.js +236 -0
  424. data/node_modules/jasmine-runner/node_modules/express/node_modules/qs/package.json +16 -0
  425. data/node_modules/jasmine-runner/node_modules/express/node_modules/qs/test/parse.test.js +156 -0
  426. data/node_modules/jasmine-runner/node_modules/express/node_modules/qs/test/stringify.test.js +95 -0
  427. data/node_modules/jasmine-runner/node_modules/express/package.json +22 -0
  428. data/node_modules/jasmine-runner/node_modules/growl/History.md +10 -0
  429. data/node_modules/jasmine-runner/node_modules/growl/Readme.md +74 -0
  430. data/node_modules/jasmine-runner/node_modules/growl/lib/growl.js +80 -0
  431. data/node_modules/jasmine-runner/node_modules/growl/package.json +6 -0
  432. data/node_modules/jasmine-runner/node_modules/growl/seed.yml +4 -0
  433. data/node_modules/jasmine-runner/node_modules/growl/test.js +17 -0
  434. data/node_modules/jasmine-runner/node_modules/jade/.gitignore +3 -0
  435. data/node_modules/jasmine-runner/node_modules/jade/.gitmodules +21 -0
  436. data/node_modules/jasmine-runner/node_modules/jade/.npmignore +4 -0
  437. data/node_modules/jasmine-runner/node_modules/jade/CNAME +1 -0
  438. data/node_modules/jasmine-runner/node_modules/jade/History.md +163 -0
  439. data/node_modules/jasmine-runner/node_modules/jade/LICENSE +22 -0
  440. data/node_modules/jasmine-runner/node_modules/jade/Makefile +25 -0
  441. data/node_modules/jasmine-runner/node_modules/jade/Readme.md +408 -0
  442. data/node_modules/jasmine-runner/node_modules/jade/api.html +850 -0
  443. data/node_modules/jasmine-runner/node_modules/jade/bin/jade +92 -0
  444. data/node_modules/jasmine-runner/node_modules/jade/index.js +2 -0
  445. data/node_modules/jasmine-runner/node_modules/jade/lib/compiler.js +273 -0
  446. data/node_modules/jasmine-runner/node_modules/jade/lib/doctypes.js +18 -0
  447. data/node_modules/jasmine-runner/node_modules/jade/lib/filters.js +70 -0
  448. data/node_modules/jasmine-runner/node_modules/jade/lib/index.js +314 -0
  449. data/node_modules/jasmine-runner/node_modules/jade/lib/jade.js +314 -0
  450. data/node_modules/jasmine-runner/node_modules/jade/lib/lexer.js +359 -0
  451. data/node_modules/jasmine-runner/node_modules/jade/lib/nodes/block.js +29 -0
  452. data/node_modules/jasmine-runner/node_modules/jade/lib/nodes/code.js +35 -0
  453. data/node_modules/jasmine-runner/node_modules/jade/lib/nodes/comment.js +32 -0
  454. data/node_modules/jasmine-runner/node_modules/jade/lib/nodes/doctype.js +29 -0
  455. data/node_modules/jasmine-runner/node_modules/jade/lib/nodes/each.js +35 -0
  456. data/node_modules/jasmine-runner/node_modules/jade/lib/nodes/filter.js +33 -0
  457. data/node_modules/jasmine-runner/node_modules/jade/lib/nodes/index.js +16 -0
  458. data/node_modules/jasmine-runner/node_modules/jade/lib/nodes/node.js +20 -0
  459. data/node_modules/jasmine-runner/node_modules/jade/lib/nodes/tag.js +80 -0
  460. data/node_modules/jasmine-runner/node_modules/jade/lib/nodes/text.js +29 -0
  461. data/node_modules/jasmine-runner/node_modules/jade/lib/parser.js +358 -0
  462. data/node_modules/jasmine-runner/node_modules/jade/lib/self-closing.js +17 -0
  463. data/node_modules/jasmine-runner/node_modules/jade/lib/utils.js +49 -0
  464. data/node_modules/jasmine-runner/node_modules/jade/package.json +9 -0
  465. data/node_modules/jasmine-runner/node_modules/libnotify/.gitignore +2 -0
  466. data/node_modules/jasmine-runner/node_modules/libnotify/README.md +59 -0
  467. data/node_modules/jasmine-runner/node_modules/libnotify/lib/libnotify.js +72 -0
  468. data/node_modules/jasmine-runner/node_modules/libnotify/package.json +11 -0
  469. data/node_modules/jasmine-runner/node_modules/libnotify/seed.yml +5 -0
  470. data/node_modules/jasmine-runner/node_modules/libnotify/test.js +5 -0
  471. data/node_modules/jasmine-runner/node_modules/socket.io/.gitignore +8 -0
  472. data/node_modules/jasmine-runner/node_modules/socket.io/Makefile +10 -0
  473. data/node_modules/jasmine-runner/node_modules/socket.io/README.md +218 -0
  474. data/node_modules/jasmine-runner/node_modules/socket.io/example/chat.html +61 -0
  475. data/node_modules/jasmine-runner/node_modules/socket.io/example/json.js +18 -0
  476. data/node_modules/jasmine-runner/node_modules/socket.io/example/server.js +58 -0
  477. data/node_modules/jasmine-runner/node_modules/socket.io/index.js +1 -0
  478. data/node_modules/jasmine-runner/node_modules/socket.io/lib/socket.io/client.js +191 -0
  479. data/node_modules/jasmine-runner/node_modules/socket.io/lib/socket.io/index.js +4 -0
  480. data/node_modules/jasmine-runner/node_modules/socket.io/lib/socket.io/listener.js +166 -0
  481. data/node_modules/jasmine-runner/node_modules/socket.io/lib/socket.io/transports/flashsocket.js +44 -0
  482. data/node_modules/jasmine-runner/node_modules/socket.io/lib/socket.io/transports/htmlfile.js +45 -0
  483. data/node_modules/jasmine-runner/node_modules/socket.io/lib/socket.io/transports/jsonp-polling.js +32 -0
  484. data/node_modules/jasmine-runner/node_modules/socket.io/lib/socket.io/transports/websocket.js +137 -0
  485. data/node_modules/jasmine-runner/node_modules/socket.io/lib/socket.io/transports/xhr-multipart.js +63 -0
  486. data/node_modules/jasmine-runner/node_modules/socket.io/lib/socket.io/transports/xhr-polling.js +75 -0
  487. data/node_modules/jasmine-runner/node_modules/socket.io/lib/socket.io/utils.js +52 -0
  488. data/node_modules/jasmine-runner/node_modules/socket.io/package.json +17 -0
  489. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/.gitignore +3 -0
  490. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/.gitmodules +3 -0
  491. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/History.md +97 -0
  492. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/Makefile +53 -0
  493. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/Readme.md +39 -0
  494. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/bin/expresso +837 -0
  495. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/COPYING +339 -0
  496. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/Makefile.am +81 -0
  497. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/Makefile.in +884 -0
  498. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/Readme.md +8 -0
  499. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/aclocal.m4 +872 -0
  500. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/config.guess +1526 -0
  501. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/config.h.in +92 -0
  502. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/config.rpath +666 -0
  503. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/config.sub +1658 -0
  504. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/configure +7971 -0
  505. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/configure.ac +88 -0
  506. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/depcomp +589 -0
  507. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/encoding.c +315 -0
  508. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/encoding.h +33 -0
  509. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/generate-resources.c +58 -0
  510. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/global.h +29 -0
  511. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/highlight.c +478 -0
  512. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/highlight.h +37 -0
  513. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/http-connection.c +192 -0
  514. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/http-exchange.c +494 -0
  515. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/http-host.c +95 -0
  516. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/http-message.c +900 -0
  517. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/http-server.c +236 -0
  518. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/http-server.h +208 -0
  519. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/http-url.c +156 -0
  520. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/install-sh +519 -0
  521. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/instrument-js.cpp +1873 -0
  522. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/instrument-js.h +81 -0
  523. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/instrument.c +226 -0
  524. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/instrument.h +31 -0
  525. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/GNUmakefile +15 -0
  526. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/Makefile.ref +483 -0
  527. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/README.html +54 -0
  528. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/SpiderMonkey.rsp +11 -0
  529. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/aclocal.m4 +9 -0
  530. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/bench.sh +5 -0
  531. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/builtins.tbl +98 -0
  532. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config.mk +206 -0
  533. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/Makefile.in +106 -0
  534. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/Moz/Milestone.pm +232 -0
  535. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/autoconf.mk.in +349 -0
  536. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/check-sync-dirs.py +108 -0
  537. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/check-sync-exceptions +6 -0
  538. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/config.mk +884 -0
  539. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/fastcwd.pl +66 -0
  540. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/gcc_hidden.h +2 -0
  541. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/insure.mk +53 -0
  542. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/make-system-wrappers.pl +59 -0
  543. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/milestone.pl +112 -0
  544. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/milestone.txt +13 -0
  545. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/mkdepend/Makefile.in +84 -0
  546. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/mkdepend/cppsetup.c +233 -0
  547. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/mkdepend/def.h +184 -0
  548. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/mkdepend/ifparser.c +549 -0
  549. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/mkdepend/ifparser.h +83 -0
  550. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/mkdepend/imakemdep.h +733 -0
  551. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/mkdepend/include.c +337 -0
  552. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/mkdepend/main.c +860 -0
  553. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/mkdepend/mkdepend.man +382 -0
  554. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/mkdepend/parse.c +686 -0
  555. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/mkdepend/pr.c +124 -0
  556. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/nfspwd.pl +50 -0
  557. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/nsinstall.c +481 -0
  558. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/nsinstall.py +139 -0
  559. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/pathsub.c +247 -0
  560. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/pathsub.h +74 -0
  561. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/preprocessor.pl +671 -0
  562. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/revdepth-nt.pl +48 -0
  563. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/revdepth.pl +51 -0
  564. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/rules.mk +2269 -0
  565. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/system-headers +1038 -0
  566. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/version.mk +85 -0
  567. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/version_win.pl +423 -0
  568. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/dtoa.c +3321 -0
  569. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/editline/Makefile.ref +143 -0
  570. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/editline/README +83 -0
  571. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/editline/editline.3 +175 -0
  572. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/editline/editline.c +1368 -0
  573. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/editline/editline.h +135 -0
  574. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/editline/sysunix.c +182 -0
  575. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/editline/unix.h +82 -0
  576. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/javascript-trace.d +73 -0
  577. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jitstats.tbl +52 -0
  578. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/js-config.h.in +55 -0
  579. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/js-config.in +111 -0
  580. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/js.cpp +4050 -0
  581. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/js.mdp +0 -0
  582. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/js.msg +309 -0
  583. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/js3240.rc +79 -0
  584. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsOS240.def +654 -0
  585. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsapi.cpp +6060 -0
  586. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsapi.h +2699 -0
  587. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsarena.cpp +450 -0
  588. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsarena.h +318 -0
  589. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsarray.cpp +3426 -0
  590. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsarray.h +191 -0
  591. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsatom.cpp +1064 -0
  592. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsatom.h +458 -0
  593. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsbit.h +253 -0
  594. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsbool.cpp +182 -0
  595. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsbool.h +75 -0
  596. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsbuiltins.cpp +497 -0
  597. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsbuiltins.h +374 -0
  598. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsclist.h +139 -0
  599. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jscntxt.cpp +1394 -0
  600. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jscntxt.h +1247 -0
  601. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jscompat.h +57 -0
  602. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsconfig.mk +181 -0
  603. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jscpucfg.cpp +388 -0
  604. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jscpucfg.h +212 -0
  605. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsdate.cpp +2475 -0
  606. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsdate.h +124 -0
  607. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsdbgapi.cpp +1954 -0
  608. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsdbgapi.h +500 -0
  609. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsdhash.cpp +876 -0
  610. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsdhash.h +588 -0
  611. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsdtoa.cpp +572 -0
  612. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsdtoa.h +131 -0
  613. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsdtracef.c +318 -0
  614. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsdtracef.h +81 -0
  615. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsemit.cpp +6857 -0
  616. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsemit.h +777 -0
  617. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsexn.cpp +1376 -0
  618. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsexn.h +96 -0
  619. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsfile.cpp +2736 -0
  620. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsfile.h +56 -0
  621. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsfile.msg +90 -0
  622. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsfun.cpp +2706 -0
  623. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsfun.h +296 -0
  624. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsgc.cpp +3763 -0
  625. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsgc.h +427 -0
  626. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jshash.cpp +476 -0
  627. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jshash.h +151 -0
  628. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsify.pl +483 -0
  629. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsinterp.cpp +7225 -0
  630. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsinterp.h +591 -0
  631. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsinvoke.cpp +42 -0
  632. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsiter.cpp +1050 -0
  633. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsiter.h +140 -0
  634. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jskeyword.tbl +124 -0
  635. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jskwgen.cpp +460 -0
  636. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jslibmath.h +69 -0
  637. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jslock.cpp +1417 -0
  638. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jslock.h +311 -0
  639. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jslocko.asm +60 -0
  640. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jslog2.cpp +94 -0
  641. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jslong.cpp +264 -0
  642. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jslong.h +412 -0
  643. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsmath.cpp +721 -0
  644. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsmath.h +63 -0
  645. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsnum.cpp +1338 -0
  646. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsnum.h +287 -0
  647. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsobj.cpp +5563 -0
  648. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsobj.h +735 -0
  649. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/json.cpp +954 -0
  650. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/json.h +107 -0
  651. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsopcode.cpp +5304 -0
  652. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsopcode.h +404 -0
  653. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsopcode.tbl +557 -0
  654. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsoplengen.cpp +121 -0
  655. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsotypes.h +202 -0
  656. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsparse.cpp +6822 -0
  657. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsparse.h +508 -0
  658. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsprf.cpp +1262 -0
  659. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsprf.h +150 -0
  660. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsproto.tbl +129 -0
  661. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsprvtd.h +263 -0
  662. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jspubtd.h +727 -0
  663. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsregexp.cpp +4772 -0
  664. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsregexp.h +192 -0
  665. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsreops.tbl +145 -0
  666. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsscan.cpp +2017 -0
  667. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsscan.h +389 -0
  668. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsscope.cpp +1955 -0
  669. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsscope.h +419 -0
  670. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsscript.cpp +1891 -0
  671. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsscript.h +330 -0
  672. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsshell.msg +51 -0
  673. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsstaticcheck.h +57 -0
  674. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsstddef.h +87 -0
  675. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsstr.cpp +5347 -0
  676. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsstr.h +662 -0
  677. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jstracer.cpp +8276 -0
  678. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jstracer.h +552 -0
  679. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jstypes.h +490 -0
  680. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsutil.cpp +345 -0
  681. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsutil.h +168 -0
  682. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsversion.h +243 -0
  683. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsxdrapi.cpp +800 -0
  684. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsxdrapi.h +220 -0
  685. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsxml.cpp +8343 -0
  686. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsxml.h +298 -0
  687. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/lock_SunOS.s +119 -0
  688. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/plify_jsdhash.sed +35 -0
  689. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/prmjtime.cpp +846 -0
  690. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/prmjtime.h +103 -0
  691. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/AIX4.1.mk +65 -0
  692. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/AIX4.2.mk +64 -0
  693. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/AIX4.3.mk +65 -0
  694. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/Cygwin.mk +14 -0
  695. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/Darwin.mk +85 -0
  696. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/Darwin1.3.mk +81 -0
  697. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/Darwin1.4.mk +41 -0
  698. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/Darwin5.2.mk +81 -0
  699. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/Darwin5.3.mk +81 -0
  700. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/Darwin64.mk +72 -0
  701. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/HP-UXB.10.10.mk +77 -0
  702. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/HP-UXB.10.20.mk +77 -0
  703. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/HP-UXB.11.00.mk +80 -0
  704. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/IRIX.mk +87 -0
  705. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/IRIX5.3.mk +44 -0
  706. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/IRIX6.1.mk +44 -0
  707. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/IRIX6.2.mk +44 -0
  708. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/IRIX6.3.mk +44 -0
  709. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/IRIX6.5.mk +44 -0
  710. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/Linux_All.mk +105 -0
  711. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/MSYS.mk +7 -0
  712. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/Mac_OS10.0.mk +82 -0
  713. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/OSF1V4.0.mk +72 -0
  714. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/OSF1V5.0.mk +69 -0
  715. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/SunOS4.1.4.mk +101 -0
  716. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/SunOS5.10.mk +50 -0
  717. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/SunOS5.3.mk +91 -0
  718. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/SunOS5.4.mk +92 -0
  719. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/SunOS5.5.1.mk +44 -0
  720. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/SunOS5.5.mk +87 -0
  721. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/SunOS5.6.mk +89 -0
  722. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/SunOS5.7.mk +44 -0
  723. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/SunOS5.8.mk +44 -0
  724. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/SunOS5.9.mk +44 -0
  725. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/WINNT4.0.mk +118 -0
  726. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/WINNT5.0.mk +118 -0
  727. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/WINNT5.1.mk +118 -0
  728. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/WINNT5.2.mk +118 -0
  729. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/WINNT6.0.mk +118 -0
  730. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/dgux.mk +64 -0
  731. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/resource.h +15 -0
  732. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/rules.mk +206 -0
  733. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/time.sh +13 -0
  734. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/win32.order +384 -0
  735. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage-help.txt +12 -0
  736. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage-highlight.css +38 -0
  737. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage-ie.css +89 -0
  738. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage-overlay.js +211 -0
  739. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage-server-help.txt +17 -0
  740. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage-server.1 +79 -0
  741. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage-server.c +1307 -0
  742. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage-throbber.gif +0 -0
  743. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage.1 +52 -0
  744. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage.c +142 -0
  745. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage.css +328 -0
  746. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage.html +125 -0
  747. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage.js +1024 -0
  748. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage.jsm +22 -0
  749. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage.manifest +2 -0
  750. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage.xul +36 -0
  751. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/m4/iconv.m4 +180 -0
  752. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/m4/lib-ld.m4 +110 -0
  753. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/m4/lib-link.m4 +709 -0
  754. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/m4/lib-prefix.m4 +185 -0
  755. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/make-bin-dist.sh.in +24 -0
  756. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/make-dist.sh.in +43 -0
  757. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/missing +367 -0
  758. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/report.js +76 -0
  759. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/resource-manager.c +59 -0
  760. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/resource-manager.h +46 -0
  761. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/stream.c +129 -0
  762. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/stream.h +57 -0
  763. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/Makefile.am +130 -0
  764. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/Makefile.in +846 -0
  765. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/asprintf.c +42 -0
  766. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/asprintf.sh +19 -0
  767. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/charset.sh +110 -0
  768. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/chunked.sh +74 -0
  769. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/common.sh +7 -0
  770. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/destination-is-existing-directory.expected.err +2 -0
  771. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/destination-is-file.expected.err +2 -0
  772. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/encoding-requires-argument.expected.err +2 -0
  773. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/encodings.c +223 -0
  774. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/encodings.sh +19 -0
  775. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/exclude-requires-argument.expected.err +2 -0
  776. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/fatal.sh +110 -0
  777. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/gethostbyname.c +53 -0
  778. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/gethostbyname.sh +25 -0
  779. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/help.sh +35 -0
  780. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/http-client-bad-body.c +98 -0
  781. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/http-client-bad-url.c +77 -0
  782. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/http-client-close-after-request.c +57 -0
  783. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/http-server-bad-body.c +97 -0
  784. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/http-server-bad-headers.c +97 -0
  785. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/http-server-charset.c +144 -0
  786. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/http-server-chunked.c +196 -0
  787. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/http-server-close-immediately.c +60 -0
  788. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/invalid-option.expected.err +2 -0
  789. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/invalid-option.sh +29 -0
  790. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript-ignore.expected/ignore.js +106 -0
  791. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript-ignore.sh +28 -0
  792. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript-ignore/ignore.js +44 -0
  793. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript-invalid.expected.err +2 -0
  794. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript-invalid/javascript-invalid.js +1 -0
  795. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript-setter.expected.err +1 -0
  796. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript-setter/javascript-setter.js +3 -0
  797. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript-utf-8.expected/javascript-utf-8.js +15 -0
  798. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript-utf-8.sh +43 -0
  799. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript-utf-8/javascript-utf-8.js +2 -0
  800. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript-xml.expected.err +1 -0
  801. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript-xml/javascript-xml.js +8 -0
  802. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-array-comprehension.js +32 -0
  803. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-assign.js +51 -0
  804. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-colon.js +24 -0
  805. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-comma.js +12 -0
  806. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-cr.js +12 -0
  807. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-crlf.js +12 -0
  808. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-debugger.js +21 -0
  809. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-dec.js +15 -0
  810. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-delete.js +12 -0
  811. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-destructuring.js +96 -0
  812. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-do.js +28 -0
  813. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-dot.js +30 -0
  814. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-empty.js +9 -0
  815. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-for.js +51 -0
  816. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-foreach.js +16 -0
  817. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-function.js +79 -0
  818. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-generator-expression.js +45 -0
  819. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-generator.js +32 -0
  820. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-getter-setter.js +31 -0
  821. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-hook.js +15 -0
  822. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-if.js +71 -0
  823. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-in.js +19 -0
  824. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-inc.js +15 -0
  825. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-iso-8859-1.js +15 -0
  826. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-lambda.js +14 -0
  827. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-let.js +148 -0
  828. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-lf.js +12 -0
  829. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-new.js +22 -0
  830. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-number.js +57 -0
  831. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-object.js +15 -0
  832. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-op.js +108 -0
  833. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-primary.js +21 -0
  834. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-rb.js +24 -0
  835. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-rc.js +15 -0
  836. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-rp.js +12 -0
  837. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-special-characters.js +30 -0
  838. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-string.js +36 -0
  839. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-switch.js +55 -0
  840. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-throw.js +21 -0
  841. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-try.js +66 -0
  842. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-unaryop.js +27 -0
  843. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-var.js +15 -0
  844. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-while.js +79 -0
  845. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-with.js +30 -0
  846. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.sh +53 -0
  847. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-array-comprehension.js +14 -0
  848. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-assign.js +14 -0
  849. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-colon.js +7 -0
  850. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-comma.js +1 -0
  851. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-cr.js +1 -0
  852. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-crlf.js +4 -0
  853. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-debugger.js +6 -0
  854. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-dec.js +2 -0
  855. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-delete.js +1 -0
  856. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-destructuring.js +42 -0
  857. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-do.js +10 -0
  858. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-dot.js +8 -0
  859. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-empty.js +0 -0
  860. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-for.js +22 -0
  861. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-foreach.js +8 -0
  862. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-function.js +38 -0
  863. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-generator-expression.js +18 -0
  864. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-generator.js +11 -0
  865. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-getter-setter.js +19 -0
  866. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-hook.js +2 -0
  867. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-if.js +30 -0
  868. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-in.js +4 -0
  869. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-inc.js +2 -0
  870. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-iso-8859-1.js +2 -0
  871. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-lambda.js +3 -0
  872. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-let.js +79 -0
  873. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-lf.js +4 -0
  874. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-new.js +4 -0
  875. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-number.js +19 -0
  876. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-object.js +2 -0
  877. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-op.js +55 -0
  878. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-primary.js +4 -0
  879. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-rb.js +5 -0
  880. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-rc.js +7 -0
  881. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-rp.js +1 -0
  882. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-special-characters.js +11 -0
  883. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-string.js +11 -0
  884. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-switch.js +21 -0
  885. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-throw.js +6 -0
  886. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-try.js +32 -0
  887. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-unaryop.js +6 -0
  888. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-var.js +2 -0
  889. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-while.js +35 -0
  890. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-with.js +9 -0
  891. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/json-cmp.js +65 -0
  892. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/json.c +48 -0
  893. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/json.sh +19 -0
  894. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/mkdirs.c +42 -0
  895. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/mkdirs.sh +19 -0
  896. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/netcat.pl +35 -0
  897. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/no-arguments.expected.err +2 -0
  898. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/no-arguments.sh +29 -0
  899. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/no-instrument-requires-argument.expected.err +2 -0
  900. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/proxy-bad-request-body.sh +58 -0
  901. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/proxy-bad-response-body-javascript.sh +53 -0
  902. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/proxy-bad-response-body.expected.err +1 -0
  903. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/proxy-bad-response-body.sh +54 -0
  904. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/proxy-bad-response-headers.sh +53 -0
  905. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/proxy-no-server.sh +49 -0
  906. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/proxy-url.sh +67 -0
  907. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/proxy.sh +143 -0
  908. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive-crlf.sh +59 -0
  909. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive-dir-list.c +93 -0
  910. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive-dir-list.sh +19 -0
  911. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive-exclude.sh +41 -0
  912. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive-fatal.sh +40 -0
  913. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive-no-instrument.sh +41 -0
  914. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.expected/1/1.css +3 -0
  915. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.expected/1/1.html +12 -0
  916. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.expected/1/1.js +12 -0
  917. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.expected/1/2/2.css +3 -0
  918. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.expected/1/2/2.html +11 -0
  919. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.expected/1/2/2.js +12 -0
  920. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.expected/image.png +0 -0
  921. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.expected/index.html +12 -0
  922. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.expected/script.js +19 -0
  923. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.expected/style.css +3 -0
  924. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.expected/unix.txt +3 -0
  925. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.expected/windows.txt +3 -0
  926. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.expected/x +1 -0
  927. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.sh +55 -0
  928. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive/1/1.css +3 -0
  929. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive/1/1.html +12 -0
  930. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive/1/1.js +1 -0
  931. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive/1/2/2.css +3 -0
  932. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive/1/2/2.html +11 -0
  933. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive/1/2/2.js +1 -0
  934. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive/image.png +0 -0
  935. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive/index.html +12 -0
  936. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive/script.js +6 -0
  937. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive/style.css +3 -0
  938. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive/unix.txt +3 -0
  939. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive/windows.txt +3 -0
  940. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive/x +1 -0
  941. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/same-directory.expected.err +1 -0
  942. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/same-directory.sh +30 -0
  943. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-bad-requests.sh +104 -0
  944. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-close-after-request.sh +47 -0
  945. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-content-types.sh +68 -0
  946. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-directory-listing.expected +4 -0
  947. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-directory-listing.sh +57 -0
  948. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-directory-redirect.sh +50 -0
  949. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-encoded-url.sh +57 -0
  950. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-error.sh +61 -0
  951. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-help.sh +26 -0
  952. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-ip-address.sh +68 -0
  953. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-shutdown-bad-method.sh +49 -0
  954. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-shutdown.expected.err +1 -0
  955. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-shutdown.sh +42 -0
  956. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-special-file.sh +62 -0
  957. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-unreadable-directory.sh +61 -0
  958. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-unreadable-file.sh +62 -0
  959. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-verbose.expected.err +4 -0
  960. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-verbose.sh +54 -0
  961. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-version.sh +25 -0
  962. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server.pl +61 -0
  963. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server.sh +216 -0
  964. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/source-does-not-exist.expected.err +2 -0
  965. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/source-is-file.expected.err +2 -0
  966. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-bad-json.sh +50 -0
  967. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-bad-request-body.sh +48 -0
  968. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-bad-response-headers.sh +56 -0
  969. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-bad-source-urls.expected.err +3 -0
  970. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-bad-source-urls.expected.json +14 -0
  971. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-escaped-characters.expected.json +6 -0
  972. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-escaped-characters.js +11 -0
  973. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-escaped-characters.json +3 -0
  974. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-escaped-characters.sh +52 -0
  975. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-server-bad-body.sh +59 -0
  976. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-server-closes-immediately.sh +58 -0
  977. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-source-not-found.expected.err +1 -0
  978. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-source-not-found.expected.json +6 -0
  979. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-source-not-found.json +3 -0
  980. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-source-not-found.sh +50 -0
  981. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-source-urls.expected.err +3 -0
  982. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-source-urls.expected.json +14 -0
  983. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-unreachable-source-urls.expected.err +3 -0
  984. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-unreachable-source-urls.expected.json +14 -0
  985. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-unreadable-json.sh +66 -0
  986. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-unwritable-json.sh +58 -0
  987. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store.expected.json +14 -0
  988. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store.json +5 -0
  989. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store.sh +137 -0
  990. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/streams.c +107 -0
  991. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/streams.sh +19 -0
  992. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/too-many-arguments.expected.err +2 -0
  993. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/valgrind.sh +7 -0
  994. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/version.sh +29 -0
  995. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/util.c +570 -0
  996. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/util.h +133 -0
  997. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/docs/api.html +1048 -0
  998. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/docs/index.html +373 -0
  999. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/docs/index.md +290 -0
  1000. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/docs/layout/foot.html +3 -0
  1001. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/docs/layout/head.html +42 -0
  1002. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/lib/bar.js +4 -0
  1003. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/lib/foo.js +16 -0
  1004. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/package.json +12 -0
  1005. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/test/assert.test.js +84 -0
  1006. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/test/async.test.js +6 -0
  1007. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/test/bar.test.js +12 -0
  1008. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/test/foo.test.js +13 -0
  1009. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/test/http.test.js +82 -0
  1010. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/test/serial/async.test.js +38 -0
  1011. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/test/serial/http.test.js +47 -0
  1012. data/node_modules/jasmine-runner/node_modules/socket.io/support/node-websocket-client/LICENSE +27 -0
  1013. data/node_modules/jasmine-runner/node_modules/socket.io/support/node-websocket-client/Makefile +8 -0
  1014. data/node_modules/jasmine-runner/node_modules/socket.io/support/node-websocket-client/README.md +41 -0
  1015. data/node_modules/jasmine-runner/node_modules/socket.io/support/node-websocket-client/examples/client-unix.js +12 -0
  1016. data/node_modules/jasmine-runner/node_modules/socket.io/support/node-websocket-client/examples/client.js +10 -0
  1017. data/node_modules/jasmine-runner/node_modules/socket.io/support/node-websocket-client/examples/server-unix.js +13 -0
  1018. data/node_modules/jasmine-runner/node_modules/socket.io/support/node-websocket-client/lib/websocket.js +562 -0
  1019. data/node_modules/jasmine-runner/node_modules/socket.io/support/node-websocket-client/package.json +22 -0
  1020. data/node_modules/jasmine-runner/node_modules/socket.io/support/node-websocket-client/test/test-basic.js +63 -0
  1021. data/node_modules/jasmine-runner/node_modules/socket.io/support/node-websocket-client/test/test-readonly-attrs.js +44 -0
  1022. data/node_modules/jasmine-runner/node_modules/socket.io/support/node-websocket-client/test/test-ready-state.js +23 -0
  1023. data/node_modules/jasmine-runner/node_modules/socket.io/support/node-websocket-client/test/test-unix-send-fd.js +63 -0
  1024. data/node_modules/jasmine-runner/node_modules/socket.io/support/node-websocket-client/test/test-unix-sockets.js +46 -0
  1025. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/.gitignore +1 -0
  1026. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/.gitmodules +3 -0
  1027. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/Makefile +2 -0
  1028. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/README.md +213 -0
  1029. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/io.js +24 -0
  1030. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/socket.js +157 -0
  1031. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/transport.js +141 -0
  1032. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/transports/flashsocket.js +53 -0
  1033. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/transports/htmlfile.js +73 -0
  1034. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/transports/jsonp-polling.js +116 -0
  1035. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/transports/websocket.js +60 -0
  1036. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/transports/xhr-multipart.js +36 -0
  1037. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/transports/xhr-polling.js +68 -0
  1038. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/transports/xhr.js +131 -0
  1039. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/util.js +60 -0
  1040. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/.gitignore +1 -0
  1041. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/FABridge.js +604 -0
  1042. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/README.txt +109 -0
  1043. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/WebSocketMain.swf +0 -0
  1044. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/WebSocketMainInsecure.zip +0 -0
  1045. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/WebSocket.as +461 -0
  1046. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/WebSocketMain.as +94 -0
  1047. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/WebSocketMainInsecure.as +19 -0
  1048. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/WebSocketStateEvent.as +32 -0
  1049. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/bridge/FABridge.as +943 -0
  1050. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/build.sh +10 -0
  1051. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/adobe/net/proxies/RFC2817Socket.as +204 -0
  1052. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/gsolo/encryption/MD5.as +375 -0
  1053. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/Crypto.as +287 -0
  1054. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/cert/MozillaRootCertificates.as +3235 -0
  1055. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/cert/X509Certificate.as +218 -0
  1056. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/cert/X509CertificateCollection.as +57 -0
  1057. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/HMAC.as +82 -0
  1058. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/IHMAC.as +27 -0
  1059. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/IHash.as +21 -0
  1060. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/MAC.as +137 -0
  1061. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/MD2.as +124 -0
  1062. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/MD5.as +204 -0
  1063. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/SHA1.as +106 -0
  1064. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/SHA224.as +28 -0
  1065. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/SHA256.as +115 -0
  1066. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/SHABase.as +71 -0
  1067. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/prng/ARC4.as +90 -0
  1068. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/prng/IPRNG.as +20 -0
  1069. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/prng/Random.as +119 -0
  1070. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/prng/TLSPRF.as +142 -0
  1071. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/rsa/RSAKey.as +339 -0
  1072. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/AESKey.as +2797 -0
  1073. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/BlowFishKey.as +375 -0
  1074. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/CBCMode.as +55 -0
  1075. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/CFB8Mode.as +61 -0
  1076. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/CFBMode.as +64 -0
  1077. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/CTRMode.as +58 -0
  1078. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/DESKey.as +365 -0
  1079. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/ECBMode.as +86 -0
  1080. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/ICipher.as +21 -0
  1081. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/IMode.as +15 -0
  1082. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/IPad.as +32 -0
  1083. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/IStreamCipher.as +21 -0
  1084. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/ISymmetricKey.as +35 -0
  1085. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/IVMode.as +110 -0
  1086. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/NullPad.as +34 -0
  1087. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/OFBMode.as +52 -0
  1088. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/PKCS5.as +44 -0
  1089. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/SSLPad.as +44 -0
  1090. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/SimpleIVMode.as +60 -0
  1091. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/TLSPad.as +42 -0
  1092. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/TripleDESKey.as +88 -0
  1093. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/XTeaKey.as +94 -0
  1094. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/aeskey.pl +29 -0
  1095. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/dump.txt +2304 -0
  1096. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/AESKeyTest.as +1220 -0
  1097. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/ARC4Test.as +58 -0
  1098. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/BigIntegerTest.as +39 -0
  1099. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/BlowFishKeyTest.as +148 -0
  1100. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/CBCModeTest.as +160 -0
  1101. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/CFB8ModeTest.as +71 -0
  1102. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/CFBModeTest.as +98 -0
  1103. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/CTRModeTest.as +109 -0
  1104. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/DESKeyTest.as +112 -0
  1105. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/ECBModeTest.as +151 -0
  1106. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/HMACTest.as +184 -0
  1107. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/ITestHarness.as +20 -0
  1108. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/MD2Test.as +56 -0
  1109. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/MD5Test.as +58 -0
  1110. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/OFBModeTest.as +101 -0
  1111. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/RSAKeyTest.as +92 -0
  1112. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/SHA1Test.as +198 -0
  1113. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/SHA224Test.as +58 -0
  1114. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/SHA256Test.as +60 -0
  1115. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/TLSPRFTest.as +51 -0
  1116. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/TestCase.as +42 -0
  1117. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/TripleDESKeyTest.as +59 -0
  1118. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/XTeaKeyTest.as +66 -0
  1119. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/BulkCiphers.as +102 -0
  1120. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/CipherSuites.as +117 -0
  1121. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/IConnectionState.as +14 -0
  1122. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/ISecurityParameters.as +29 -0
  1123. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/KeyExchanges.as +24 -0
  1124. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/MACs.as +38 -0
  1125. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/SSLConnectionState.as +171 -0
  1126. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/SSLEvent.as +26 -0
  1127. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/SSLSecurityParameters.as +340 -0
  1128. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSConfig.as +70 -0
  1129. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSConnectionState.as +151 -0
  1130. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSEngine.as +895 -0
  1131. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSError.as +39 -0
  1132. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSEvent.as +27 -0
  1133. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSSecurityParameters.as +197 -0
  1134. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSSocket.as +370 -0
  1135. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSSocketEvent.as +26 -0
  1136. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSTest.as +180 -0
  1137. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/BarrettReduction.as +90 -0
  1138. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/BigInteger.as +1543 -0
  1139. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/ClassicReduction.as +35 -0
  1140. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/IReduction.as +11 -0
  1141. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/MontgomeryReduction.as +85 -0
  1142. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/NullReduction.as +34 -0
  1143. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/bi_internal.as +11 -0
  1144. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/ArrayUtil.as +25 -0
  1145. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/Base64.as +189 -0
  1146. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/Hex.as +66 -0
  1147. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/Memory.as +28 -0
  1148. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/ByteString.as +43 -0
  1149. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/DER.as +210 -0
  1150. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/IAsn1Type.as +21 -0
  1151. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Integer.as +44 -0
  1152. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/OID.as +35 -0
  1153. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/ObjectIdentifier.as +112 -0
  1154. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/PEM.as +118 -0
  1155. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/PrintableString.as +49 -0
  1156. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Sequence.as +90 -0
  1157. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Set.as +27 -0
  1158. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Type.as +94 -0
  1159. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/UTCTime.as +60 -0
  1160. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/sample.html +76 -0
  1161. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/swfobject.js +4 -0
  1162. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/web_socket.js +388 -0
  1163. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/socket.io.js +1918 -0
  1164. data/node_modules/jasmine-runner/node_modules/socket.io/tests/index.js +17 -0
  1165. data/node_modules/jasmine-runner/node_modules/socket.io/tests/listener.js +152 -0
  1166. data/node_modules/jasmine-runner/node_modules/socket.io/tests/transports.flashsocket.js +48 -0
  1167. data/node_modules/jasmine-runner/node_modules/socket.io/tests/transports.htmlfile.js +214 -0
  1168. data/node_modules/jasmine-runner/node_modules/socket.io/tests/transports.jsonp-polling.js +148 -0
  1169. data/node_modules/jasmine-runner/node_modules/socket.io/tests/transports.websocket.js +245 -0
  1170. data/node_modules/jasmine-runner/node_modules/socket.io/tests/transports.xhr-multipart.js +215 -0
  1171. data/node_modules/jasmine-runner/node_modules/socket.io/tests/transports.xhr-polling.js +138 -0
  1172. data/node_modules/jasmine-runner/node_modules/socket.io/tests/utils.js +25 -0
  1173. data/node_modules/jasmine-runner/node_modules/vows/LICENSE +20 -0
  1174. data/node_modules/jasmine-runner/node_modules/vows/Makefile +7 -0
  1175. data/node_modules/jasmine-runner/node_modules/vows/README.md +39 -0
  1176. data/node_modules/jasmine-runner/node_modules/vows/bin/vows +421 -0
  1177. data/node_modules/jasmine-runner/node_modules/vows/lib/assert/error.js +27 -0
  1178. data/node_modules/jasmine-runner/node_modules/vows/lib/assert/macros.js +180 -0
  1179. data/node_modules/jasmine-runner/node_modules/vows/lib/vows.js +195 -0
  1180. data/node_modules/jasmine-runner/node_modules/vows/lib/vows/console.js +93 -0
  1181. data/node_modules/jasmine-runner/node_modules/vows/lib/vows/context.js +55 -0
  1182. data/node_modules/jasmine-runner/node_modules/vows/lib/vows/extras.js +28 -0
  1183. data/node_modules/jasmine-runner/node_modules/vows/lib/vows/reporters/dot-matrix.js +69 -0
  1184. data/node_modules/jasmine-runner/node_modules/vows/lib/vows/reporters/json.js +10 -0
  1185. data/node_modules/jasmine-runner/node_modules/vows/lib/vows/reporters/silent.js +8 -0
  1186. data/node_modules/jasmine-runner/node_modules/vows/lib/vows/reporters/spec.js +74 -0
  1187. data/node_modules/jasmine-runner/node_modules/vows/lib/vows/reporters/watch.js +38 -0
  1188. data/node_modules/jasmine-runner/node_modules/vows/lib/vows/reporters/xunit.js +90 -0
  1189. data/node_modules/jasmine-runner/node_modules/vows/lib/vows/suite.js +321 -0
  1190. data/node_modules/jasmine-runner/node_modules/vows/package.json +14 -0
  1191. data/node_modules/jasmine-runner/node_modules/vows/test/assert-test.js +101 -0
  1192. data/node_modules/jasmine-runner/node_modules/vows/test/vows-test.js +373 -0
  1193. data/node_modules/jasmine-runner/node_modules/webworker/.gitignore +2 -0
  1194. data/node_modules/jasmine-runner/node_modules/webworker/LICENSE +27 -0
  1195. data/node_modules/jasmine-runner/node_modules/webworker/Makefile +15 -0
  1196. data/node_modules/jasmine-runner/node_modules/webworker/README.md +74 -0
  1197. data/node_modules/jasmine-runner/node_modules/webworker/docs/design.md +103 -0
  1198. data/node_modules/jasmine-runner/node_modules/webworker/examples/prefork/README.md +1 -0
  1199. data/node_modules/jasmine-runner/node_modules/webworker/examples/prefork/master.js +12 -0
  1200. data/node_modules/jasmine-runner/node_modules/webworker/examples/prefork/worker.js +20 -0
  1201. data/node_modules/jasmine-runner/node_modules/webworker/lib/webworker-child.js +173 -0
  1202. data/node_modules/jasmine-runner/node_modules/webworker/lib/webworker-util.js +185 -0
  1203. data/node_modules/jasmine-runner/node_modules/webworker/lib/webworker.js +304 -0
  1204. data/node_modules/jasmine-runner/node_modules/webworker/lib/ws.js +118 -0
  1205. data/node_modules/jasmine-runner/node_modules/webworker/lib/ws/connection.js +408 -0
  1206. data/node_modules/jasmine-runner/node_modules/webworker/lib/ws/manager.js +98 -0
  1207. data/node_modules/jasmine-runner/node_modules/webworker/node_modules/websocket-client/LICENSE +27 -0
  1208. data/node_modules/jasmine-runner/node_modules/webworker/node_modules/websocket-client/Makefile +8 -0
  1209. data/node_modules/jasmine-runner/node_modules/webworker/node_modules/websocket-client/README.md +41 -0
  1210. data/node_modules/jasmine-runner/node_modules/webworker/node_modules/websocket-client/examples/client-unix.js +12 -0
  1211. data/node_modules/jasmine-runner/node_modules/webworker/node_modules/websocket-client/examples/client.js +10 -0
  1212. data/node_modules/jasmine-runner/node_modules/webworker/node_modules/websocket-client/examples/server-unix.js +13 -0
  1213. data/node_modules/jasmine-runner/node_modules/webworker/node_modules/websocket-client/lib/websocket.js +516 -0
  1214. data/node_modules/jasmine-runner/node_modules/webworker/node_modules/websocket-client/package.json +22 -0
  1215. data/node_modules/jasmine-runner/node_modules/webworker/node_modules/websocket-client/test/test-basic.js +63 -0
  1216. data/node_modules/jasmine-runner/node_modules/webworker/node_modules/websocket-client/test/test-readonly-attrs.js +44 -0
  1217. data/node_modules/jasmine-runner/node_modules/webworker/node_modules/websocket-client/test/test-ready-state.js +23 -0
  1218. data/node_modules/jasmine-runner/node_modules/webworker/node_modules/websocket-client/test/test-unix-send-fd.js +63 -0
  1219. data/node_modules/jasmine-runner/node_modules/webworker/node_modules/websocket-client/test/test-unix-sockets.js +46 -0
  1220. data/node_modules/jasmine-runner/node_modules/webworker/package.json +25 -0
  1221. data/node_modules/jasmine-runner/node_modules/webworker/test/test-error.js +24 -0
  1222. data/node_modules/jasmine-runner/node_modules/webworker/test/test-fd.js +32 -0
  1223. data/node_modules/jasmine-runner/node_modules/webworker/test/test-simple.js +36 -0
  1224. data/node_modules/jasmine-runner/node_modules/webworker/test/workers/error.js +6 -0
  1225. data/node_modules/jasmine-runner/node_modules/webworker/test/workers/fd.js +17 -0
  1226. data/node_modules/jasmine-runner/node_modules/webworker/test/workers/simple.js +15 -0
  1227. data/node_modules/jasmine-runner/package.json +22 -0
  1228. data/node_modules/jasmine-runner/spec/ConsoleLoggerSpec.js +1 -0
  1229. data/node_modules/jasmine-runner/spec/ServerSpec.js +42 -0
  1230. data/node_modules/jasmine-runner/spec/TestRunner.js +72 -0
  1231. data/node_modules/jasmine-runner/spec/file.worker +8 -0
  1232. data/node_modules/jasmine-runner/spec/temp/spec/foo.spec.js +0 -0
  1233. data/node_modules/jasmine-runner/spec/temp/src/foo.hs +1 -0
  1234. data/node_modules/uglify-js/.gitignore +4 -0
  1235. data/node_modules/uglify-js/README.html +1026 -0
  1236. data/node_modules/uglify-js/README.org +571 -0
  1237. data/node_modules/uglify-js/bin/uglifyjs +317 -0
  1238. data/node_modules/uglify-js/docstyle.css +75 -0
  1239. data/node_modules/uglify-js/lib/object-ast.js +75 -0
  1240. data/node_modules/uglify-js/lib/parse-js.js +1339 -0
  1241. data/node_modules/uglify-js/lib/process.js +2001 -0
  1242. data/node_modules/uglify-js/lib/squeeze-more.js +51 -0
  1243. data/node_modules/uglify-js/package.json +24 -0
  1244. data/node_modules/uglify-js/package.json~ +24 -0
  1245. data/node_modules/uglify-js/test/beautify.js +28 -0
  1246. data/node_modules/uglify-js/test/testparser.js +403 -0
  1247. data/node_modules/uglify-js/test/unit/compress/expected/array1.js +1 -0
  1248. data/node_modules/uglify-js/test/unit/compress/expected/array2.js +1 -0
  1249. data/node_modules/uglify-js/test/unit/compress/expected/array3.js +1 -0
  1250. data/node_modules/uglify-js/test/unit/compress/expected/array4.js +1 -0
  1251. data/node_modules/uglify-js/test/unit/compress/expected/assignment.js +1 -0
  1252. data/node_modules/uglify-js/test/unit/compress/expected/concatstring.js +1 -0
  1253. data/node_modules/uglify-js/test/unit/compress/expected/const.js +1 -0
  1254. data/node_modules/uglify-js/test/unit/compress/expected/empty-blocks.js +1 -0
  1255. data/node_modules/uglify-js/test/unit/compress/expected/forstatement.js +1 -0
  1256. data/node_modules/uglify-js/test/unit/compress/expected/if.js +1 -0
  1257. data/node_modules/uglify-js/test/unit/compress/expected/ifreturn.js +1 -0
  1258. data/node_modules/uglify-js/test/unit/compress/expected/ifreturn2.js +1 -0
  1259. data/node_modules/uglify-js/test/unit/compress/expected/issue10.js +1 -0
  1260. data/node_modules/uglify-js/test/unit/compress/expected/issue11.js +1 -0
  1261. data/node_modules/uglify-js/test/unit/compress/expected/issue13.js +1 -0
  1262. data/node_modules/uglify-js/test/unit/compress/expected/issue14.js +1 -0
  1263. data/node_modules/uglify-js/test/unit/compress/expected/issue16.js +1 -0
  1264. data/node_modules/uglify-js/test/unit/compress/expected/issue17.js +1 -0
  1265. data/node_modules/uglify-js/test/unit/compress/expected/issue20.js +1 -0
  1266. data/node_modules/uglify-js/test/unit/compress/expected/issue21.js +1 -0
  1267. data/node_modules/uglify-js/test/unit/compress/expected/issue25.js +1 -0
  1268. data/node_modules/uglify-js/test/unit/compress/expected/issue27.js +1 -0
  1269. data/node_modules/uglify-js/test/unit/compress/expected/issue28.js +1 -0
  1270. data/node_modules/uglify-js/test/unit/compress/expected/issue29.js +1 -0
  1271. data/node_modules/uglify-js/test/unit/compress/expected/issue30.js +1 -0
  1272. data/node_modules/uglify-js/test/unit/compress/expected/issue34.js +1 -0
  1273. data/node_modules/uglify-js/test/unit/compress/expected/issue4.js +1 -0
  1274. data/node_modules/uglify-js/test/unit/compress/expected/issue48.js +1 -0
  1275. data/node_modules/uglify-js/test/unit/compress/expected/issue50.js +1 -0
  1276. data/node_modules/uglify-js/test/unit/compress/expected/issue53.js +1 -0
  1277. data/node_modules/uglify-js/test/unit/compress/expected/issue54.1.js +1 -0
  1278. data/node_modules/uglify-js/test/unit/compress/expected/issue68.js +1 -0
  1279. data/node_modules/uglify-js/test/unit/compress/expected/issue69.js +1 -0
  1280. data/node_modules/uglify-js/test/unit/compress/expected/issue9.js +1 -0
  1281. data/node_modules/uglify-js/test/unit/compress/expected/mangle.js +1 -0
  1282. data/node_modules/uglify-js/test/unit/compress/expected/null_string.js +1 -0
  1283. data/node_modules/uglify-js/test/unit/compress/expected/strict-equals.js +1 -0
  1284. data/node_modules/uglify-js/test/unit/compress/expected/var.js +1 -0
  1285. data/node_modules/uglify-js/test/unit/compress/expected/whitespace.js +1 -0
  1286. data/node_modules/uglify-js/test/unit/compress/expected/with.js +1 -0
  1287. data/node_modules/uglify-js/test/unit/compress/test/array1.js +3 -0
  1288. data/node_modules/uglify-js/test/unit/compress/test/array2.js +4 -0
  1289. data/node_modules/uglify-js/test/unit/compress/test/array3.js +4 -0
  1290. data/node_modules/uglify-js/test/unit/compress/test/array4.js +6 -0
  1291. data/node_modules/uglify-js/test/unit/compress/test/assignment.js +20 -0
  1292. data/node_modules/uglify-js/test/unit/compress/test/concatstring.js +3 -0
  1293. data/node_modules/uglify-js/test/unit/compress/test/const.js +5 -0
  1294. data/node_modules/uglify-js/test/unit/compress/test/empty-blocks.js +4 -0
  1295. data/node_modules/uglify-js/test/unit/compress/test/forstatement.js +10 -0
  1296. data/node_modules/uglify-js/test/unit/compress/test/if.js +6 -0
  1297. data/node_modules/uglify-js/test/unit/compress/test/ifreturn.js +9 -0
  1298. data/node_modules/uglify-js/test/unit/compress/test/ifreturn2.js +16 -0
  1299. data/node_modules/uglify-js/test/unit/compress/test/issue10.js +1 -0
  1300. data/node_modules/uglify-js/test/unit/compress/test/issue11.js +3 -0
  1301. data/node_modules/uglify-js/test/unit/compress/test/issue13.js +1 -0
  1302. data/node_modules/uglify-js/test/unit/compress/test/issue14.js +1 -0
  1303. data/node_modules/uglify-js/test/unit/compress/test/issue16.js +1 -0
  1304. data/node_modules/uglify-js/test/unit/compress/test/issue17.js +4 -0
  1305. data/node_modules/uglify-js/test/unit/compress/test/issue20.js +1 -0
  1306. data/node_modules/uglify-js/test/unit/compress/test/issue21.js +6 -0
  1307. data/node_modules/uglify-js/test/unit/compress/test/issue25.js +7 -0
  1308. data/node_modules/uglify-js/test/unit/compress/test/issue27.js +1 -0
  1309. data/node_modules/uglify-js/test/unit/compress/test/issue28.js +3 -0
  1310. data/node_modules/uglify-js/test/unit/compress/test/issue29.js +1 -0
  1311. data/node_modules/uglify-js/test/unit/compress/test/issue30.js +3 -0
  1312. data/node_modules/uglify-js/test/unit/compress/test/issue34.js +3 -0
  1313. data/node_modules/uglify-js/test/unit/compress/test/issue4.js +3 -0
  1314. data/node_modules/uglify-js/test/unit/compress/test/issue48.js +1 -0
  1315. data/node_modules/uglify-js/test/unit/compress/test/issue50.js +9 -0
  1316. data/node_modules/uglify-js/test/unit/compress/test/issue53.js +1 -0
  1317. data/node_modules/uglify-js/test/unit/compress/test/issue54.1.js +3 -0
  1318. data/node_modules/uglify-js/test/unit/compress/test/issue68.js +5 -0
  1319. data/node_modules/uglify-js/test/unit/compress/test/issue69.js +1 -0
  1320. data/node_modules/uglify-js/test/unit/compress/test/issue9.js +4 -0
  1321. data/node_modules/uglify-js/test/unit/compress/test/mangle.js +5 -0
  1322. data/node_modules/uglify-js/test/unit/compress/test/null_string.js +1 -0
  1323. data/node_modules/uglify-js/test/unit/compress/test/strict-equals.js +3 -0
  1324. data/node_modules/uglify-js/test/unit/compress/test/var.js +3 -0
  1325. data/node_modules/uglify-js/test/unit/compress/test/whitespace.js +21 -0
  1326. data/node_modules/uglify-js/test/unit/compress/test/with.js +2 -0
  1327. data/node_modules/uglify-js/test/unit/scripts.js +55 -0
  1328. data/node_modules/uglify-js/uglify-js.js +17 -0
  1329. data/node_modules/uglifycss/README.md +21 -0
  1330. data/node_modules/uglifycss/index.js +26 -0
  1331. data/node_modules/uglifycss/package.json +15 -0
  1332. data/node_modules/uglifycss/test.js +43 -0
  1333. data/node_modules/uglifycss/tests.yui.js +42 -0
  1334. data/node_modules/uglifycss/uglifycss +127 -0
  1335. data/node_modules/uglifycss/uglifycss-lib.js +461 -0
  1336. metadata +1383 -0
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "connect",
3
+ "version": "1.7.2",
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.9.2",
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.3.2"
21
+ },
22
+ "main": "index",
23
+ "engines": { "node": ">= 0.4.1 < 0.7.0" }
24
+ }
@@ -0,0 +1,11 @@
1
+
2
+ /**
3
+ * Module dependencies.
4
+ */
5
+
6
+ var connect = require('./')
7
+ , utils = connect.utils
8
+ , http = require('http')
9
+ , url = require('url')
10
+ , path = require('path')
11
+ , fs = require('fs');
@@ -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,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, 'types/mime.types'));
87
+
88
+ // Overlay enhancements submitted by the node.js community
89
+ mime.load(path.join(__dirname, 'types/node.types'));
90
+
91
+ // Set the default type
92
+ mime.default_type = mime.types.bin;
@@ -0,0 +1,22 @@
1
+ {
2
+ "author": {
3
+ "name": "Robert Kieffer",
4
+ "url": "http://github.com/broofa",
5
+ "email": "robert@broofa.com"
6
+ },
7
+ "contributors": [
8
+ {
9
+ "name": "Benjamin Thomas",
10
+ "url": "http://github.com/bentomas",
11
+ "email": "benjamin@benjaminthomas.org"
12
+ }
13
+ ],
14
+ "dependencies": {},
15
+ "description": "A comprehensive library for mime-type mapping",
16
+ "devDependencies": {"async_testing": ""},
17
+ "keywords": ["util", "mime"],
18
+ "main": "mime.js",
19
+ "name": "mime",
20
+ "repository": {"url": "http://github.com/bentomas/node-mime", "type": "git"},
21
+ "version": "1.2.4"
22
+ }
@@ -0,0 +1,79 @@
1
+ /**
2
+ * Requires the async_testing module
3
+ *
4
+ * Usage: node test.js
5
+ */
6
+ var mime = require('./mime');
7
+ exports["test mime lookup"] = function(test) {
8
+ // easy
9
+ test.equal('text/plain', mime.lookup('text.txt'));
10
+
11
+ // hidden file or multiple periods
12
+ test.equal('text/plain', mime.lookup('.text.txt'));
13
+
14
+ // just an extension
15
+ test.equal('text/plain', mime.lookup('.txt'));
16
+
17
+ // just an extension without a dot
18
+ test.equal('text/plain', mime.lookup('txt'));
19
+
20
+ // default
21
+ test.equal('application/octet-stream', mime.lookup('text.nope'));
22
+
23
+ // fallback
24
+ test.equal('fallback', mime.lookup('text.fallback', 'fallback'));
25
+
26
+ test.finish();
27
+ };
28
+
29
+ exports["test extension lookup"] = function(test) {
30
+ // easy
31
+ test.equal('txt', mime.extension(mime.types.text));
32
+ test.equal('html', mime.extension(mime.types.htm));
33
+ test.equal('bin', mime.extension('application/octet-stream'));
34
+
35
+ test.finish();
36
+ };
37
+
38
+ exports["test mime lookup uppercase"] = function(test) {
39
+ // easy
40
+ test.equal('text/plain', mime.lookup('TEXT.TXT'));
41
+
42
+ // just an extension
43
+ test.equal('text/plain', mime.lookup('.TXT'));
44
+
45
+ // just an extension without a dot
46
+ test.equal('text/plain', mime.lookup('TXT'));
47
+
48
+ // default
49
+ test.equal('application/octet-stream', mime.lookup('TEXT.NOPE'));
50
+
51
+ // fallback
52
+ test.equal('fallback', mime.lookup('TEXT.FALLBACK', 'fallback'));
53
+
54
+ test.finish();
55
+ };
56
+
57
+ exports["test custom types"] = function(test) {
58
+ test.equal('application/octet-stream', mime.lookup('file.buffer'));
59
+ test.equal('audio/mp4', mime.lookup('file.m4a'));
60
+
61
+ test.finish();
62
+ };
63
+
64
+ exports["test charset lookup"] = function(test) {
65
+ // easy
66
+ test.equal('UTF-8', mime.charsets.lookup('text/plain'));
67
+
68
+ // none
69
+ test.ok(typeof mime.charsets.lookup(mime.types.js) == 'undefined');
70
+
71
+ // fallback
72
+ test.equal('fallback', mime.charsets.lookup('application/octet-stream', 'fallback'));
73
+
74
+ test.finish();
75
+ };
76
+
77
+ if (module == require.main) {
78
+ require('async_testing').run(__filename, process.ARGV);
79
+ }
@@ -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