exercism-analysis 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (579) hide show
  1. checksums.yaml +7 -0
  2. data/exercism-analysis.gemspec +30 -0
  3. data/lib/exercism-analysis.rb +38 -0
  4. data/lib/exercism-analysis/adapters/adapter.rb +23 -0
  5. data/lib/exercism-analysis/adapters/clojure.rb +13 -0
  6. data/lib/exercism-analysis/adapters/go.rb +19 -0
  7. data/lib/exercism-analysis/adapters/javascript.rb +13 -0
  8. data/lib/exercism-analysis/adapters/python.rb +13 -0
  9. data/lib/exercism-analysis/adapters/ruby.rb +19 -0
  10. data/lib/exercism-analysis/analysis.rb +18 -0
  11. data/lib/exercism-analysis/analyzers/analyzer.rb +54 -0
  12. data/lib/exercism-analysis/analyzers/clojure/kibit.rb +25 -0
  13. data/lib/exercism-analysis/analyzers/go/golint.rb +23 -0
  14. data/lib/exercism-analysis/analyzers/javascript/jslint.rb +24 -0
  15. data/lib/exercism-analysis/analyzers/python/pylint.rb +24 -0
  16. data/lib/exercism-analysis/analyzers/ruby/control_flow.rb +21 -0
  17. data/lib/exercism-analysis/analyzers/ruby/enumerable_condition.rb +21 -0
  18. data/lib/exercism-analysis/analyzers/ruby/for_loop.rb +29 -0
  19. data/lib/exercism-analysis/analyzers/ruby/indentation.rb +21 -0
  20. data/lib/exercism-analysis/analyzers/ruby/iter_mutation.rb +37 -0
  21. data/lib/exercism-analysis/analyzers/ruby/output.rb +20 -0
  22. data/lib/exercism-analysis/analyzers/ruby/range.rb +28 -0
  23. data/lib/exercism-analysis/analyzers/ruby/roodi.rb +19 -0
  24. data/lib/exercism-analysis/analyzers/ruby/send.rb +25 -0
  25. data/lib/exercism-analysis/analyzers/ruby/shebang.rb +23 -0
  26. data/lib/exercism-analysis/analyzers/ruby/tab.rb +38 -0
  27. data/lib/exercism-analysis/processors/call_processor.rb +39 -0
  28. data/lib/exercism-analysis/processors/control_flow_processor.rb +27 -0
  29. data/lib/exercism-analysis/processors/enumerable_condition_processor.rb +31 -0
  30. data/lib/exercism-analysis/processors/for_loop_processor.rb +21 -0
  31. data/lib/exercism-analysis/processors/indentation_processor.rb +69 -0
  32. data/lib/exercism-analysis/processors/iter_mutation_processor.rb +50 -0
  33. data/lib/exercism-analysis/processors/processor.rb +34 -0
  34. data/lib/exercism-analysis/processors/range_processor.rb +23 -0
  35. data/lib/exercism-analysis/processors/send_processor.rb +23 -0
  36. data/lib/exercism-analysis/templates/each_to_map.rb +29 -0
  37. data/lib/exercism-analysis/templates/each_to_select.rb +31 -0
  38. data/lib/exercism-analysis/templates/range_exclusive.rb +19 -0
  39. data/lib/exercism-analysis/templates/template.rb +29 -0
  40. data/vendor/clojure/kibit-runner/LICENSE +214 -0
  41. data/vendor/clojure/kibit-runner/project.clj +10 -0
  42. data/vendor/clojure/kibit-runner/src/kibit_runner/core.clj +17 -0
  43. data/vendor/clojure/kibit-runner/target/kibit-runner-0.1.0-SNAPSHOT-standalone.jar +0 -0
  44. data/vendor/clojure/kibit-runner/target/kibit-runner-0.1.0-SNAPSHOT.jar +0 -0
  45. data/vendor/clojure/kibit-runner/target/stale/extract-native.dependencies +1 -0
  46. data/vendor/go/src/github.com/golang/lint/LICENSE +27 -0
  47. data/vendor/go/src/github.com/golang/lint/README +59 -0
  48. data/vendor/go/src/github.com/golang/lint/golint/golint.go +67 -0
  49. data/vendor/go/src/github.com/golang/lint/lint.go +1061 -0
  50. data/vendor/go/src/runner/golint_runner.go +23 -0
  51. data/vendor/javascript/jshint_runner.js +6 -0
  52. data/vendor/javascript/node_modules/jshint/README.md +47 -0
  53. data/vendor/javascript/node_modules/jshint/bin/apply +6 -0
  54. data/vendor/javascript/node_modules/jshint/bin/build +36 -0
  55. data/vendor/javascript/node_modules/jshint/bin/changelog +36 -0
  56. data/vendor/javascript/node_modules/jshint/bin/jshint +3 -0
  57. data/vendor/javascript/node_modules/jshint/bin/land +34 -0
  58. data/vendor/javascript/node_modules/jshint/data/ascii-identifier-data.js +22 -0
  59. data/vendor/javascript/node_modules/jshint/data/non-ascii-identifier-part-only.js +1570 -0
  60. data/vendor/javascript/node_modules/jshint/data/non-ascii-identifier-start.js +48477 -0
  61. data/vendor/javascript/node_modules/jshint/dist/jshint-rhino.js +60642 -0
  62. data/vendor/javascript/node_modules/jshint/dist/jshint.js +60525 -0
  63. data/vendor/javascript/node_modules/jshint/node_modules/cli/README.md +196 -0
  64. data/vendor/javascript/node_modules/jshint/node_modules/cli/cli.js +1139 -0
  65. data/vendor/javascript/node_modules/jshint/node_modules/cli/examples/cat.js +17 -0
  66. data/vendor/javascript/node_modules/jshint/node_modules/cli/examples/command.js +16 -0
  67. data/vendor/javascript/node_modules/jshint/node_modules/cli/examples/echo.js +54 -0
  68. data/vendor/javascript/node_modules/jshint/node_modules/cli/examples/glob.js +6 -0
  69. data/vendor/javascript/node_modules/jshint/node_modules/cli/examples/long_desc.js +20 -0
  70. data/vendor/javascript/node_modules/jshint/node_modules/cli/examples/progress.js +11 -0
  71. data/vendor/javascript/node_modules/jshint/node_modules/cli/examples/sort.js +18 -0
  72. data/vendor/javascript/node_modules/jshint/node_modules/cli/examples/spinner.js +9 -0
  73. data/vendor/javascript/node_modules/jshint/node_modules/cli/examples/static.coffee +27 -0
  74. data/vendor/javascript/node_modules/jshint/node_modules/cli/examples/static.js +25 -0
  75. data/vendor/javascript/node_modules/jshint/node_modules/cli/index.js +1 -0
  76. data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/LICENSE +27 -0
  77. data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/README.md +250 -0
  78. data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/examples/g.js +9 -0
  79. data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/examples/usr-local.js +9 -0
  80. data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/glob.js +728 -0
  81. data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/node_modules/inherits/LICENSE +16 -0
  82. data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/node_modules/inherits/README.md +42 -0
  83. data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/node_modules/inherits/inherits.js +1 -0
  84. data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/node_modules/inherits/inherits_browser.js +23 -0
  85. data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/node_modules/inherits/package.json +51 -0
  86. data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/node_modules/inherits/test.js +25 -0
  87. data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/package.json +58 -0
  88. data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/00-setup.js +176 -0
  89. data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/bash-comparison.js +63 -0
  90. data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/bash-results.json +351 -0
  91. data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/cwd-test.js +55 -0
  92. data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/globstar-match.js +19 -0
  93. data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/mark.js +118 -0
  94. data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/new-glob-optional-options.js +10 -0
  95. data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/nocase-nomagic.js +113 -0
  96. data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/pause-resume.js +73 -0
  97. data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/readme-issue.js +36 -0
  98. data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/root-nomount.js +39 -0
  99. data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/root.js +46 -0
  100. data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/stat.js +32 -0
  101. data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/zz-cleanup.js +11 -0
  102. data/vendor/javascript/node_modules/jshint/node_modules/cli/package.json +70 -0
  103. data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/LICENCE +19 -0
  104. data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/README.md +33 -0
  105. data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/index.js +86 -0
  106. data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/node_modules/date-now/LICENCE +19 -0
  107. data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/node_modules/date-now/README.md +45 -0
  108. data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/node_modules/date-now/index.js +5 -0
  109. data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/node_modules/date-now/package.json +89 -0
  110. data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/node_modules/date-now/seed.js +16 -0
  111. data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/node_modules/date-now/test/index.js +28 -0
  112. data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/node_modules/date-now/test/static/index.html +10 -0
  113. data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/package.json +88 -0
  114. data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/test/index.js +67 -0
  115. data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/test/static/index.html +12 -0
  116. data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/test/static/test-adapter.js +53 -0
  117. data/vendor/javascript/node_modules/jshint/node_modules/exit/Gruntfile.js +48 -0
  118. data/vendor/javascript/node_modules/jshint/node_modules/exit/LICENSE-MIT +22 -0
  119. data/vendor/javascript/node_modules/jshint/node_modules/exit/README.md +75 -0
  120. data/vendor/javascript/node_modules/jshint/node_modules/exit/lib/exit.js +41 -0
  121. data/vendor/javascript/node_modules/jshint/node_modules/exit/package.json +69 -0
  122. data/vendor/javascript/node_modules/jshint/node_modules/exit/test/exit_test.js +121 -0
  123. data/vendor/javascript/node_modules/jshint/node_modules/exit/test/fixtures/10-stderr.txt +10 -0
  124. data/vendor/javascript/node_modules/jshint/node_modules/exit/test/fixtures/10-stdout-stderr.txt +20 -0
  125. data/vendor/javascript/node_modules/jshint/node_modules/exit/test/fixtures/10-stdout.txt +10 -0
  126. data/vendor/javascript/node_modules/jshint/node_modules/exit/test/fixtures/100-stderr.txt +100 -0
  127. data/vendor/javascript/node_modules/jshint/node_modules/exit/test/fixtures/100-stdout-stderr.txt +200 -0
  128. data/vendor/javascript/node_modules/jshint/node_modules/exit/test/fixtures/100-stdout.txt +100 -0
  129. data/vendor/javascript/node_modules/jshint/node_modules/exit/test/fixtures/1000-stderr.txt +1000 -0
  130. data/vendor/javascript/node_modules/jshint/node_modules/exit/test/fixtures/1000-stdout-stderr.txt +2000 -0
  131. data/vendor/javascript/node_modules/jshint/node_modules/exit/test/fixtures/1000-stdout.txt +1000 -0
  132. data/vendor/javascript/node_modules/jshint/node_modules/exit/test/fixtures/create-files.sh +8 -0
  133. data/vendor/javascript/node_modules/jshint/node_modules/exit/test/fixtures/log-broken.js +23 -0
  134. data/vendor/javascript/node_modules/jshint/node_modules/exit/test/fixtures/log.js +25 -0
  135. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/LICENSE +18 -0
  136. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/README.md +83 -0
  137. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/lib/CollectingHandler.js +55 -0
  138. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/lib/FeedHandler.js +95 -0
  139. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/lib/Parser.js +337 -0
  140. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/lib/ProxyHandler.js +27 -0
  141. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/lib/Stream.js +35 -0
  142. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/lib/Tokenizer.js +891 -0
  143. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/lib/WritableStream.js +21 -0
  144. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/lib/index.js +68 -0
  145. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domelementtype/LICENSE +11 -0
  146. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domelementtype/index.js +14 -0
  147. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domelementtype/package.json +40 -0
  148. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domelementtype/readme.md +1 -0
  149. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/LICENSE +11 -0
  150. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/index.js +211 -0
  151. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/package.json +68 -0
  152. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/readme.md +102 -0
  153. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/01-basic.json +57 -0
  154. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/02-single_tag_1.json +21 -0
  155. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/03-single_tag_2.json +21 -0
  156. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/04-unescaped_in_script.json +27 -0
  157. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/05-tags_in_comment.json +18 -0
  158. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/06-comment_in_script.json +18 -0
  159. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/07-unescaped_in_style.json +20 -0
  160. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/08-extra_spaces_in_tag.json +20 -0
  161. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/09-unquoted_attrib.json +20 -0
  162. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/10-singular_attribute.json +15 -0
  163. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/11-text_outside_tags.json +40 -0
  164. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/12-text_only.json +11 -0
  165. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/13-comment_in_text.json +19 -0
  166. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/14-comment_in_text_in_script.json +18 -0
  167. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/15-non-verbose.json +22 -0
  168. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/16-normalize_whitespace.json +47 -0
  169. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/17-xml_namespace.json +18 -0
  170. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/18-enforce_empty_tags.json +16 -0
  171. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/19-ignore_empty_tags.json +20 -0
  172. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/20-template_script_tags.json +20 -0
  173. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/21-conditional_comments.json +15 -0
  174. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/22-lowercase_tags.json +41 -0
  175. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/23-dom-lvl1.json +121 -0
  176. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/tests.js +58 -0
  177. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/LICENSE +11 -0
  178. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/index.js +14 -0
  179. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/lib/helpers.js +141 -0
  180. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/lib/legacy.js +87 -0
  181. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/lib/manipulation.js +77 -0
  182. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/lib/querying.js +94 -0
  183. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/lib/stringify.js +93 -0
  184. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/lib/traversal.js +24 -0
  185. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/package.json +71 -0
  186. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/readme.md +1 -0
  187. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/test/fixture.js +6 -0
  188. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/test/tests/helpers.js +89 -0
  189. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/test/tests/legacy.js +119 -0
  190. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/test/utils.js +9 -0
  191. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/entities/LICENSE +11 -0
  192. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/entities/index.js +31 -0
  193. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/entities/lib/decode.js +72 -0
  194. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/entities/lib/decode_codepoint.js +26 -0
  195. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/entities/lib/encode.js +48 -0
  196. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/entities/maps/decode.json +1 -0
  197. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/entities/maps/entities.json +1 -0
  198. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/entities/maps/legacy.json +1 -0
  199. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/entities/maps/xml.json +1 -0
  200. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/entities/package.json +79 -0
  201. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/entities/readme.md +31 -0
  202. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/entities/test/mocha.opts +2 -0
  203. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/entities/test/test.js +150 -0
  204. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/LICENSE +18 -0
  205. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/README.md +15 -0
  206. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/duplex.js +1 -0
  207. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/float.patch +923 -0
  208. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/lib/_stream_duplex.js +89 -0
  209. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/lib/_stream_passthrough.js +46 -0
  210. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/lib/_stream_readable.js +944 -0
  211. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/lib/_stream_transform.js +209 -0
  212. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/lib/_stream_writable.js +472 -0
  213. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/core-util-is/README.md +3 -0
  214. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/core-util-is/float.patch +604 -0
  215. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/core-util-is/lib/util.js +107 -0
  216. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/core-util-is/package.json +53 -0
  217. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/core-util-is/util.js +106 -0
  218. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/inherits/LICENSE +16 -0
  219. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/inherits/README.md +42 -0
  220. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/inherits/inherits.js +1 -0
  221. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/inherits/inherits_browser.js +23 -0
  222. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/inherits/package.json +51 -0
  223. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/inherits/test.js +25 -0
  224. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/isarray/README.md +54 -0
  225. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/isarray/build/build.js +209 -0
  226. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/isarray/component.json +19 -0
  227. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/isarray/index.js +3 -0
  228. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/isarray/package.json +54 -0
  229. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/string_decoder/LICENSE +20 -0
  230. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/string_decoder/README.md +7 -0
  231. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/string_decoder/index.js +200 -0
  232. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/string_decoder/package.json +53 -0
  233. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/package.json +68 -0
  234. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/passthrough.js +1 -0
  235. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/readable.js +7 -0
  236. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/transform.js +1 -0
  237. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/writable.js +1 -0
  238. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/package.json +90 -0
  239. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/01-events.js +9 -0
  240. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/02-stream.js +23 -0
  241. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/03-feed.js +19 -0
  242. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Documents/Atom_Example.xml +25 -0
  243. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Documents/Attributes.html +16 -0
  244. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Documents/Basic.html +1 -0
  245. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Documents/RDF_Example.xml +63 -0
  246. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Documents/RSS_Example.xml +48 -0
  247. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/01-simple.json +44 -0
  248. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/02-template.json +63 -0
  249. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/03-lowercase_tags.json +46 -0
  250. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/04-cdata.json +50 -0
  251. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/05-cdata-special.json +35 -0
  252. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/06-leading-lt.json +16 -0
  253. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/07-self-closing.json +67 -0
  254. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/08-implicit-close-tags.json +59 -0
  255. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/09-attributes.json +68 -0
  256. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/10-crazy-attrib.json +52 -0
  257. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/11-script_in_script.json +54 -0
  258. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/12-long-comment-end.json +20 -0
  259. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/13-long-cdata-end.json +22 -0
  260. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/14-implicit-open-tags.json +27 -0
  261. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/15-lt-whitespace.json +16 -0
  262. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/16-double_attribs.json +45 -0
  263. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/17-numeric_entities.json +16 -0
  264. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/18-legacy_entities.json +16 -0
  265. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/19-named_entities.json +16 -0
  266. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/20-xml_entities.json +16 -0
  267. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/21-entity_in_attribute.json +38 -0
  268. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/22-double_brackets.json +41 -0
  269. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/23-legacy_entity_fail.json +16 -0
  270. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/24-special_special.json +133 -0
  271. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/25-empty_tag_name.json +13 -0
  272. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/26-not-quite-closed.json +35 -0
  273. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/27-entities_in_attributes.json +62 -0
  274. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/28-cdata_in_html.json +9 -0
  275. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/29-comment_edge-cases.json +18 -0
  276. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/30-cdata_edge-cases.json +22 -0
  277. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Feeds/01-rss.js +34 -0
  278. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Feeds/02-atom.js +18 -0
  279. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Feeds/03-rdf.js +20 -0
  280. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Stream/01-basic.json +83 -0
  281. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Stream/02-RSS.json +1093 -0
  282. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Stream/03-Atom.json +644 -0
  283. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Stream/04-RDF.json +1399 -0
  284. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Stream/05-Attributes.json +354 -0
  285. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/api.js +63 -0
  286. data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/test-helper.js +83 -0
  287. data/vendor/javascript/node_modules/jshint/node_modules/minimatch/LICENSE +23 -0
  288. data/vendor/javascript/node_modules/jshint/node_modules/minimatch/README.md +218 -0
  289. data/vendor/javascript/node_modules/jshint/node_modules/minimatch/minimatch.js +1061 -0
  290. data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/lru-cache/CONTRIBUTORS +14 -0
  291. data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/lru-cache/LICENSE +23 -0
  292. data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/lru-cache/README.md +97 -0
  293. data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/lru-cache/lib/lru-cache.js +252 -0
  294. data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/lru-cache/package.json +50 -0
  295. data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/lru-cache/test/basic.js +369 -0
  296. data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/lru-cache/test/foreach.js +52 -0
  297. data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/lru-cache/test/memory-leak.js +50 -0
  298. data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/sigmund/LICENSE +27 -0
  299. data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/sigmund/README.md +53 -0
  300. data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/sigmund/bench.js +283 -0
  301. data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/sigmund/package.json +58 -0
  302. data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/sigmund/sigmund.js +39 -0
  303. data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/sigmund/test/basic.js +24 -0
  304. data/vendor/javascript/node_modules/jshint/node_modules/minimatch/package.json +57 -0
  305. data/vendor/javascript/node_modules/jshint/node_modules/minimatch/test/basic.js +399 -0
  306. data/vendor/javascript/node_modules/jshint/node_modules/minimatch/test/brace-expand.js +33 -0
  307. data/vendor/javascript/node_modules/jshint/node_modules/minimatch/test/caching.js +14 -0
  308. data/vendor/javascript/node_modules/jshint/node_modules/minimatch/test/defaults.js +274 -0
  309. data/vendor/javascript/node_modules/jshint/node_modules/minimatch/test/extglob-ending-with-state-char.js +8 -0
  310. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/LICENSE +26 -0
  311. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/README.md +569 -0
  312. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/bin/shjs +51 -0
  313. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/global.js +3 -0
  314. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/make.js +47 -0
  315. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/package.json +61 -0
  316. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/scripts/generate-docs.js +21 -0
  317. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/scripts/run-tests.js +50 -0
  318. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/shell.js +157 -0
  319. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/cat.js +43 -0
  320. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/cd.js +19 -0
  321. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/chmod.js +208 -0
  322. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/common.js +203 -0
  323. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/cp.js +201 -0
  324. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/dirs.js +191 -0
  325. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/echo.js +20 -0
  326. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/error.js +10 -0
  327. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/exec.js +181 -0
  328. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/find.js +51 -0
  329. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/grep.js +52 -0
  330. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/ln.js +53 -0
  331. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/ls.js +126 -0
  332. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/mkdir.js +68 -0
  333. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/mv.js +80 -0
  334. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/popd.js +1 -0
  335. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/pushd.js +1 -0
  336. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/pwd.js +11 -0
  337. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/rm.js +145 -0
  338. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/sed.js +43 -0
  339. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/tempdir.js +56 -0
  340. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/test.js +85 -0
  341. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/to.js +29 -0
  342. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/toEnd.js +29 -0
  343. data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/which.js +83 -0
  344. data/vendor/javascript/node_modules/jshint/node_modules/strip-json-comments/cli.js +41 -0
  345. data/vendor/javascript/node_modules/jshint/node_modules/strip-json-comments/package.json +76 -0
  346. data/vendor/javascript/node_modules/jshint/node_modules/strip-json-comments/readme.md +74 -0
  347. data/vendor/javascript/node_modules/jshint/node_modules/strip-json-comments/strip-json-comments.js +64 -0
  348. data/vendor/javascript/node_modules/jshint/node_modules/underscore/LICENSE +23 -0
  349. data/vendor/javascript/node_modules/jshint/node_modules/underscore/README.md +22 -0
  350. data/vendor/javascript/node_modules/jshint/node_modules/underscore/package.json +66 -0
  351. data/vendor/javascript/node_modules/jshint/node_modules/underscore/underscore-min.js +6 -0
  352. data/vendor/javascript/node_modules/jshint/node_modules/underscore/underscore.js +1343 -0
  353. data/vendor/javascript/node_modules/jshint/package.json +80 -0
  354. data/vendor/javascript/node_modules/jshint/src/cli.js +731 -0
  355. data/vendor/javascript/node_modules/jshint/src/jshint.js +5023 -0
  356. data/vendor/javascript/node_modules/jshint/src/lex.js +1650 -0
  357. data/vendor/javascript/node_modules/jshint/src/messages.js +223 -0
  358. data/vendor/javascript/node_modules/jshint/src/platforms/rhino.js +115 -0
  359. data/vendor/javascript/node_modules/jshint/src/reg.js +38 -0
  360. data/vendor/javascript/node_modules/jshint/src/reporters/checkstyle.js +81 -0
  361. data/vendor/javascript/node_modules/jshint/src/reporters/default.js +34 -0
  362. data/vendor/javascript/node_modules/jshint/src/reporters/jslint_xml.js +57 -0
  363. data/vendor/javascript/node_modules/jshint/src/reporters/non_error.js +52 -0
  364. data/vendor/javascript/node_modules/jshint/src/state.js +28 -0
  365. data/vendor/javascript/node_modules/jshint/src/style.js +143 -0
  366. data/vendor/javascript/node_modules/jshint/src/vars.js +658 -0
  367. data/vendor/python/astroid/COPYING +339 -0
  368. data/vendor/python/astroid/COPYING.LESSER +510 -0
  369. data/vendor/python/astroid/ChangeLog +574 -0
  370. data/vendor/python/astroid/MANIFEST.in +9 -0
  371. data/vendor/python/astroid/README +56 -0
  372. data/vendor/python/astroid/README.Python3 +26 -0
  373. data/vendor/python/astroid/__init__.py +118 -0
  374. data/vendor/python/astroid/__init__.pyc +0 -0
  375. data/vendor/python/astroid/__pkginfo__.py +48 -0
  376. data/vendor/python/astroid/__pkginfo__.pyc +0 -0
  377. data/vendor/python/astroid/announce.txt +23 -0
  378. data/vendor/python/astroid/as_string.py +496 -0
  379. data/vendor/python/astroid/as_string.pyc +0 -0
  380. data/vendor/python/astroid/bases.py +618 -0
  381. data/vendor/python/astroid/bases.pyc +0 -0
  382. data/vendor/python/astroid/brain/py2gi.py +159 -0
  383. data/vendor/python/astroid/brain/py2gi.pyc +0 -0
  384. data/vendor/python/astroid/brain/py2mechanize.py +20 -0
  385. data/vendor/python/astroid/brain/py2mechanize.pyc +0 -0
  386. data/vendor/python/astroid/brain/py2qt4.py +25 -0
  387. data/vendor/python/astroid/brain/py2qt4.pyc +0 -0
  388. data/vendor/python/astroid/brain/py2stdlib.py +252 -0
  389. data/vendor/python/astroid/brain/py2stdlib.pyc +0 -0
  390. data/vendor/python/astroid/builder.py +238 -0
  391. data/vendor/python/astroid/builder.pyc +0 -0
  392. data/vendor/python/astroid/exceptions.py +51 -0
  393. data/vendor/python/astroid/exceptions.pyc +0 -0
  394. data/vendor/python/astroid/inference.py +393 -0
  395. data/vendor/python/astroid/inference.pyc +0 -0
  396. data/vendor/python/astroid/inspector.py +275 -0
  397. data/vendor/python/astroid/manager.py +336 -0
  398. data/vendor/python/astroid/manager.pyc +0 -0
  399. data/vendor/python/astroid/mixins.py +122 -0
  400. data/vendor/python/astroid/mixins.pyc +0 -0
  401. data/vendor/python/astroid/node_classes.py +928 -0
  402. data/vendor/python/astroid/node_classes.pyc +0 -0
  403. data/vendor/python/astroid/nodes.py +73 -0
  404. data/vendor/python/astroid/nodes.pyc +0 -0
  405. data/vendor/python/astroid/protocols.py +322 -0
  406. data/vendor/python/astroid/protocols.pyc +0 -0
  407. data/vendor/python/astroid/raw_building.py +361 -0
  408. data/vendor/python/astroid/raw_building.pyc +0 -0
  409. data/vendor/python/astroid/rebuilder.py +954 -0
  410. data/vendor/python/astroid/rebuilder.pyc +0 -0
  411. data/vendor/python/astroid/scoped_nodes.py +1118 -0
  412. data/vendor/python/astroid/scoped_nodes.pyc +0 -0
  413. data/vendor/python/astroid/setup.py +184 -0
  414. data/vendor/python/astroid/tox.ini +10 -0
  415. data/vendor/python/astroid/utils.py +236 -0
  416. data/vendor/python/astroid/utils.pyc +0 -0
  417. data/vendor/python/logilab/__init__.py +0 -0
  418. data/vendor/python/logilab/__init__.pyc +0 -0
  419. data/vendor/python/logilab/common/COPYING +339 -0
  420. data/vendor/python/logilab/common/COPYING.LESSER +510 -0
  421. data/vendor/python/logilab/common/ChangeLog +1517 -0
  422. data/vendor/python/logilab/common/MANIFEST.in +13 -0
  423. data/vendor/python/logilab/common/README +185 -0
  424. data/vendor/python/logilab/common/README.Python3 +29 -0
  425. data/vendor/python/logilab/common/__init__.py +171 -0
  426. data/vendor/python/logilab/common/__init__.pyc +0 -0
  427. data/vendor/python/logilab/common/__pkginfo__.py +53 -0
  428. data/vendor/python/logilab/common/__pkginfo__.pyc +0 -0
  429. data/vendor/python/logilab/common/announce.txt +25 -0
  430. data/vendor/python/logilab/common/bin/pytest +7 -0
  431. data/vendor/python/logilab/common/bin/pytest.bat +17 -0
  432. data/vendor/python/logilab/common/cache.py +114 -0
  433. data/vendor/python/logilab/common/changelog.py +236 -0
  434. data/vendor/python/logilab/common/changelog.pyc +0 -0
  435. data/vendor/python/logilab/common/clcommands.py +332 -0
  436. data/vendor/python/logilab/common/cli.py +208 -0
  437. data/vendor/python/logilab/common/compat.py +243 -0
  438. data/vendor/python/logilab/common/compat.pyc +0 -0
  439. data/vendor/python/logilab/common/configuration.py +1094 -0
  440. data/vendor/python/logilab/common/configuration.pyc +0 -0
  441. data/vendor/python/logilab/common/contexts.py +5 -0
  442. data/vendor/python/logilab/common/corbautils.py +117 -0
  443. data/vendor/python/logilab/common/daemon.py +100 -0
  444. data/vendor/python/logilab/common/date.py +333 -0
  445. data/vendor/python/logilab/common/dbf.py +229 -0
  446. data/vendor/python/logilab/common/debugger.py +210 -0
  447. data/vendor/python/logilab/common/decorators.py +281 -0
  448. data/vendor/python/logilab/common/decorators.pyc +0 -0
  449. data/vendor/python/logilab/common/deprecation.py +188 -0
  450. data/vendor/python/logilab/common/deprecation.pyc +0 -0
  451. data/vendor/python/logilab/common/fileutils.py +402 -0
  452. data/vendor/python/logilab/common/graph.py +276 -0
  453. data/vendor/python/logilab/common/graph.pyc +0 -0
  454. data/vendor/python/logilab/common/hg.py +130 -0
  455. data/vendor/python/logilab/common/interface.py +71 -0
  456. data/vendor/python/logilab/common/interface.pyc +0 -0
  457. data/vendor/python/logilab/common/logging_ext.py +193 -0
  458. data/vendor/python/logilab/common/modutils.py +695 -0
  459. data/vendor/python/logilab/common/modutils.pyc +0 -0
  460. data/vendor/python/logilab/common/optik_ext.py +391 -0
  461. data/vendor/python/logilab/common/optik_ext.pyc +0 -0
  462. data/vendor/python/logilab/common/optparser.py +90 -0
  463. data/vendor/python/logilab/common/proc.py +277 -0
  464. data/vendor/python/logilab/common/pyro_ext.py +180 -0
  465. data/vendor/python/logilab/common/pytest.py +1177 -0
  466. data/vendor/python/logilab/common/python-logilab-common.spec +184 -0
  467. data/vendor/python/logilab/common/registry.py +1113 -0
  468. data/vendor/python/logilab/common/setup.cfg +3 -0
  469. data/vendor/python/logilab/common/setup.py +189 -0
  470. data/vendor/python/logilab/common/shellutils.py +455 -0
  471. data/vendor/python/logilab/common/sphinx_ext.py +87 -0
  472. data/vendor/python/logilab/common/sphinxutils.py +122 -0
  473. data/vendor/python/logilab/common/table.py +925 -0
  474. data/vendor/python/logilab/common/tasksqueue.py +100 -0
  475. data/vendor/python/logilab/common/textutils.py +534 -0
  476. data/vendor/python/logilab/common/textutils.pyc +0 -0
  477. data/vendor/python/logilab/common/tree.py +369 -0
  478. data/vendor/python/logilab/common/tree.pyc +0 -0
  479. data/vendor/python/logilab/common/umessage.py +190 -0
  480. data/vendor/python/logilab/common/ureports/__init__.py +174 -0
  481. data/vendor/python/logilab/common/ureports/__init__.pyc +0 -0
  482. data/vendor/python/logilab/common/ureports/docbook_writer.py +139 -0
  483. data/vendor/python/logilab/common/ureports/html_writer.py +131 -0
  484. data/vendor/python/logilab/common/ureports/html_writer.pyc +0 -0
  485. data/vendor/python/logilab/common/ureports/nodes.py +201 -0
  486. data/vendor/python/logilab/common/ureports/nodes.pyc +0 -0
  487. data/vendor/python/logilab/common/ureports/text_writer.py +140 -0
  488. data/vendor/python/logilab/common/ureports/text_writer.pyc +0 -0
  489. data/vendor/python/logilab/common/urllib2ext.py +87 -0
  490. data/vendor/python/logilab/common/vcgutils.py +216 -0
  491. data/vendor/python/logilab/common/visitor.py +107 -0
  492. data/vendor/python/logilab/common/visitor.pyc +0 -0
  493. data/vendor/python/logilab/common/xmlrpcutils.py +131 -0
  494. data/vendor/python/logilab/common/xmlutils.py +61 -0
  495. data/vendor/python/pylint/CONTRIBUTORS.txt +38 -0
  496. data/vendor/python/pylint/COPYING +340 -0
  497. data/vendor/python/pylint/ChangeLog +1437 -0
  498. data/vendor/python/pylint/DEPENDS +3 -0
  499. data/vendor/python/pylint/MANIFEST.in +14 -0
  500. data/vendor/python/pylint/README +50 -0
  501. data/vendor/python/pylint/README.Python3 +37 -0
  502. data/vendor/python/pylint/__init__.py +44 -0
  503. data/vendor/python/pylint/__init__.pyc +0 -0
  504. data/vendor/python/pylint/__main__.py +3 -0
  505. data/vendor/python/pylint/__pkginfo__.py +74 -0
  506. data/vendor/python/pylint/__pkginfo__.pyc +0 -0
  507. data/vendor/python/pylint/bin/epylint +3 -0
  508. data/vendor/python/pylint/bin/epylint.bat +5 -0
  509. data/vendor/python/pylint/bin/pylint +3 -0
  510. data/vendor/python/pylint/bin/pylint-gui +3 -0
  511. data/vendor/python/pylint/bin/pylint-gui.bat +5 -0
  512. data/vendor/python/pylint/bin/pylint.bat +5 -0
  513. data/vendor/python/pylint/bin/pyreverse +3 -0
  514. data/vendor/python/pylint/bin/pyreverse.bat +5 -0
  515. data/vendor/python/pylint/bin/symilar +3 -0
  516. data/vendor/python/pylint/bin/symilar.bat +5 -0
  517. data/vendor/python/pylint/checkers/__init__.py +145 -0
  518. data/vendor/python/pylint/checkers/__init__.pyc +0 -0
  519. data/vendor/python/pylint/checkers/base.py +1141 -0
  520. data/vendor/python/pylint/checkers/base.pyc +0 -0
  521. data/vendor/python/pylint/checkers/classes.py +792 -0
  522. data/vendor/python/pylint/checkers/classes.pyc +0 -0
  523. data/vendor/python/pylint/checkers/design_analysis.py +367 -0
  524. data/vendor/python/pylint/checkers/design_analysis.pyc +0 -0
  525. data/vendor/python/pylint/checkers/exceptions.py +306 -0
  526. data/vendor/python/pylint/checkers/exceptions.pyc +0 -0
  527. data/vendor/python/pylint/checkers/format.py +943 -0
  528. data/vendor/python/pylint/checkers/format.pyc +0 -0
  529. data/vendor/python/pylint/checkers/imports.py +394 -0
  530. data/vendor/python/pylint/checkers/imports.pyc +0 -0
  531. data/vendor/python/pylint/checkers/logging.py +213 -0
  532. data/vendor/python/pylint/checkers/logging.pyc +0 -0
  533. data/vendor/python/pylint/checkers/misc.py +90 -0
  534. data/vendor/python/pylint/checkers/misc.pyc +0 -0
  535. data/vendor/python/pylint/checkers/newstyle.py +151 -0
  536. data/vendor/python/pylint/checkers/newstyle.pyc +0 -0
  537. data/vendor/python/pylint/checkers/raw_metrics.py +129 -0
  538. data/vendor/python/pylint/checkers/raw_metrics.pyc +0 -0
  539. data/vendor/python/pylint/checkers/similar.py +365 -0
  540. data/vendor/python/pylint/checkers/similar.pyc +0 -0
  541. data/vendor/python/pylint/checkers/stdlib.py +69 -0
  542. data/vendor/python/pylint/checkers/stdlib.pyc +0 -0
  543. data/vendor/python/pylint/checkers/strings.py +304 -0
  544. data/vendor/python/pylint/checkers/strings.pyc +0 -0
  545. data/vendor/python/pylint/checkers/typecheck.py +451 -0
  546. data/vendor/python/pylint/checkers/typecheck.pyc +0 -0
  547. data/vendor/python/pylint/checkers/utils.py +416 -0
  548. data/vendor/python/pylint/checkers/utils.pyc +0 -0
  549. data/vendor/python/pylint/checkers/variables.py +741 -0
  550. data/vendor/python/pylint/checkers/variables.pyc +0 -0
  551. data/vendor/python/pylint/config.py +156 -0
  552. data/vendor/python/pylint/config.pyc +0 -0
  553. data/vendor/python/pylint/epylint.py +175 -0
  554. data/vendor/python/pylint/gui.py +508 -0
  555. data/vendor/python/pylint/interfaces.py +72 -0
  556. data/vendor/python/pylint/interfaces.pyc +0 -0
  557. data/vendor/python/pylint/lint.py +1106 -0
  558. data/vendor/python/pylint/lint.pyc +0 -0
  559. data/vendor/python/pylint/pyreverse/__init__.py +5 -0
  560. data/vendor/python/pylint/pyreverse/diadefslib.py +233 -0
  561. data/vendor/python/pylint/pyreverse/diagrams.py +247 -0
  562. data/vendor/python/pylint/pyreverse/main.py +124 -0
  563. data/vendor/python/pylint/pyreverse/utils.py +131 -0
  564. data/vendor/python/pylint/pyreverse/writer.py +199 -0
  565. data/vendor/python/pylint/reporters/__init__.py +138 -0
  566. data/vendor/python/pylint/reporters/__init__.pyc +0 -0
  567. data/vendor/python/pylint/reporters/guireporter.py +28 -0
  568. data/vendor/python/pylint/reporters/guireporter.pyc +0 -0
  569. data/vendor/python/pylint/reporters/html.py +70 -0
  570. data/vendor/python/pylint/reporters/html.pyc +0 -0
  571. data/vendor/python/pylint/reporters/text.py +143 -0
  572. data/vendor/python/pylint/reporters/text.pyc +0 -0
  573. data/vendor/python/pylint/setup.cfg +3 -0
  574. data/vendor/python/pylint/setup.py +203 -0
  575. data/vendor/python/pylint/tox.ini +10 -0
  576. data/vendor/python/pylint/utils.py +744 -0
  577. data/vendor/python/pylint/utils.pyc +0 -0
  578. data/vendor/python/pylint_runner.py +22 -0
  579. metadata +675 -0
@@ -0,0 +1,1399 @@
1
+ {
2
+ "name": "RDF feed",
3
+ "options": {"xmlMode": true},
4
+ "file": "RDF_Example.xml",
5
+ "expected": [
6
+ {
7
+ "event": "processinginstruction",
8
+ "data": [
9
+ "?xml",
10
+ "?xml version=\"1.0\" encoding=\"UTF-8\"?"
11
+ ]
12
+ },
13
+ {
14
+ "event": "text",
15
+ "data": [
16
+ "\n"
17
+ ]
18
+ },
19
+ {
20
+ "event": "opentagname",
21
+ "data": [
22
+ "rdf:RDF"
23
+ ]
24
+ },
25
+ {
26
+ "event": "attribute",
27
+ "data": [
28
+ "xmlns:rdf",
29
+ "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
30
+ ]
31
+ },
32
+ {
33
+ "event": "attribute",
34
+ "data": [
35
+ "xmlns",
36
+ "http://purl.org/rss/1.0/"
37
+ ]
38
+ },
39
+ {
40
+ "event": "attribute",
41
+ "data": [
42
+ "xmlns:ev",
43
+ "http://purl.org/rss/1.0/modules/event/"
44
+ ]
45
+ },
46
+ {
47
+ "event": "attribute",
48
+ "data": [
49
+ "xmlns:content",
50
+ "http://purl.org/rss/1.0/modules/content/"
51
+ ]
52
+ },
53
+ {
54
+ "event": "attribute",
55
+ "data": [
56
+ "xmlns:taxo",
57
+ "http://purl.org/rss/1.0/modules/taxonomy/"
58
+ ]
59
+ },
60
+ {
61
+ "event": "attribute",
62
+ "data": [
63
+ "xmlns:dc",
64
+ "http://purl.org/dc/elements/1.1/"
65
+ ]
66
+ },
67
+ {
68
+ "event": "attribute",
69
+ "data": [
70
+ "xmlns:syn",
71
+ "http://purl.org/rss/1.0/modules/syndication/"
72
+ ]
73
+ },
74
+ {
75
+ "event": "attribute",
76
+ "data": [
77
+ "xmlns:dcterms",
78
+ "http://purl.org/dc/terms/"
79
+ ]
80
+ },
81
+ {
82
+ "event": "attribute",
83
+ "data": [
84
+ "xmlns:admin",
85
+ "http://webns.net/mvcb/"
86
+ ]
87
+ },
88
+ {
89
+ "event": "opentag",
90
+ "data": [
91
+ "rdf:RDF",
92
+ {
93
+ "xmlns:rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
94
+ "xmlns": "http://purl.org/rss/1.0/",
95
+ "xmlns:ev": "http://purl.org/rss/1.0/modules/event/",
96
+ "xmlns:content": "http://purl.org/rss/1.0/modules/content/",
97
+ "xmlns:taxo": "http://purl.org/rss/1.0/modules/taxonomy/",
98
+ "xmlns:dc": "http://purl.org/dc/elements/1.1/",
99
+ "xmlns:syn": "http://purl.org/rss/1.0/modules/syndication/",
100
+ "xmlns:dcterms": "http://purl.org/dc/terms/",
101
+ "xmlns:admin": "http://webns.net/mvcb/"
102
+ }
103
+ ]
104
+ },
105
+ {
106
+ "event": "text",
107
+ "data": [
108
+ "\n\t"
109
+ ]
110
+ },
111
+ {
112
+ "event": "opentagname",
113
+ "data": [
114
+ "channel"
115
+ ]
116
+ },
117
+ {
118
+ "event": "attribute",
119
+ "data": [
120
+ "rdf:about",
121
+ "http://sfbay.craigslist.org/ccc/"
122
+ ]
123
+ },
124
+ {
125
+ "event": "opentag",
126
+ "data": [
127
+ "channel",
128
+ {
129
+ "rdf:about": "http://sfbay.craigslist.org/ccc/"
130
+ }
131
+ ]
132
+ },
133
+ {
134
+ "event": "text",
135
+ "data": [
136
+ "\n\t\t"
137
+ ]
138
+ },
139
+ {
140
+ "event": "opentagname",
141
+ "data": [
142
+ "title"
143
+ ]
144
+ },
145
+ {
146
+ "event": "opentag",
147
+ "data": [
148
+ "title",
149
+ {}
150
+ ]
151
+ },
152
+ {
153
+ "event": "text",
154
+ "data": [
155
+ "craigslist | all community in SF bay area"
156
+ ]
157
+ },
158
+ {
159
+ "event": "closetag",
160
+ "data": [
161
+ "title"
162
+ ]
163
+ },
164
+ {
165
+ "event": "text",
166
+ "data": [
167
+ "\n\t\t"
168
+ ]
169
+ },
170
+ {
171
+ "event": "opentagname",
172
+ "data": [
173
+ "link"
174
+ ]
175
+ },
176
+ {
177
+ "event": "opentag",
178
+ "data": [
179
+ "link",
180
+ {}
181
+ ]
182
+ },
183
+ {
184
+ "event": "text",
185
+ "data": [
186
+ "http://sfbay.craigslist.org/ccc/"
187
+ ]
188
+ },
189
+ {
190
+ "event": "closetag",
191
+ "data": [
192
+ "link"
193
+ ]
194
+ },
195
+ {
196
+ "event": "text",
197
+ "data": [
198
+ "\n\t\t"
199
+ ]
200
+ },
201
+ {
202
+ "event": "opentagname",
203
+ "data": [
204
+ "description"
205
+ ]
206
+ },
207
+ {
208
+ "event": "opentag",
209
+ "data": [
210
+ "description",
211
+ {}
212
+ ]
213
+ },
214
+ {
215
+ "event": "closetag",
216
+ "data": [
217
+ "description"
218
+ ]
219
+ },
220
+ {
221
+ "event": "text",
222
+ "data": [
223
+ "\n\t\t"
224
+ ]
225
+ },
226
+ {
227
+ "event": "opentagname",
228
+ "data": [
229
+ "dc:language"
230
+ ]
231
+ },
232
+ {
233
+ "event": "opentag",
234
+ "data": [
235
+ "dc:language",
236
+ {}
237
+ ]
238
+ },
239
+ {
240
+ "event": "text",
241
+ "data": [
242
+ "en-us"
243
+ ]
244
+ },
245
+ {
246
+ "event": "closetag",
247
+ "data": [
248
+ "dc:language"
249
+ ]
250
+ },
251
+ {
252
+ "event": "text",
253
+ "data": [
254
+ "\n\t\t"
255
+ ]
256
+ },
257
+ {
258
+ "event": "opentagname",
259
+ "data": [
260
+ "dc:rights"
261
+ ]
262
+ },
263
+ {
264
+ "event": "opentag",
265
+ "data": [
266
+ "dc:rights",
267
+ {}
268
+ ]
269
+ },
270
+ {
271
+ "event": "text",
272
+ "data": [
273
+ "Copyright 2011 craigslist, inc."
274
+ ]
275
+ },
276
+ {
277
+ "event": "closetag",
278
+ "data": [
279
+ "dc:rights"
280
+ ]
281
+ },
282
+ {
283
+ "event": "text",
284
+ "data": [
285
+ "\n\t\t"
286
+ ]
287
+ },
288
+ {
289
+ "event": "opentagname",
290
+ "data": [
291
+ "dc:publisher"
292
+ ]
293
+ },
294
+ {
295
+ "event": "opentag",
296
+ "data": [
297
+ "dc:publisher",
298
+ {}
299
+ ]
300
+ },
301
+ {
302
+ "event": "text",
303
+ "data": [
304
+ "webmaster@craigslist.org"
305
+ ]
306
+ },
307
+ {
308
+ "event": "closetag",
309
+ "data": [
310
+ "dc:publisher"
311
+ ]
312
+ },
313
+ {
314
+ "event": "text",
315
+ "data": [
316
+ "\n\t\t"
317
+ ]
318
+ },
319
+ {
320
+ "event": "opentagname",
321
+ "data": [
322
+ "dc:creator"
323
+ ]
324
+ },
325
+ {
326
+ "event": "opentag",
327
+ "data": [
328
+ "dc:creator",
329
+ {}
330
+ ]
331
+ },
332
+ {
333
+ "event": "text",
334
+ "data": [
335
+ "webmaster@craigslist.org"
336
+ ]
337
+ },
338
+ {
339
+ "event": "closetag",
340
+ "data": [
341
+ "dc:creator"
342
+ ]
343
+ },
344
+ {
345
+ "event": "text",
346
+ "data": [
347
+ "\n\t\t"
348
+ ]
349
+ },
350
+ {
351
+ "event": "opentagname",
352
+ "data": [
353
+ "dc:source"
354
+ ]
355
+ },
356
+ {
357
+ "event": "opentag",
358
+ "data": [
359
+ "dc:source",
360
+ {}
361
+ ]
362
+ },
363
+ {
364
+ "event": "text",
365
+ "data": [
366
+ "http://sfbay.craigslist.org/ccc//"
367
+ ]
368
+ },
369
+ {
370
+ "event": "closetag",
371
+ "data": [
372
+ "dc:source"
373
+ ]
374
+ },
375
+ {
376
+ "event": "text",
377
+ "data": [
378
+ "\n\t\t"
379
+ ]
380
+ },
381
+ {
382
+ "event": "opentagname",
383
+ "data": [
384
+ "dc:title"
385
+ ]
386
+ },
387
+ {
388
+ "event": "opentag",
389
+ "data": [
390
+ "dc:title",
391
+ {}
392
+ ]
393
+ },
394
+ {
395
+ "event": "text",
396
+ "data": [
397
+ "craigslist | all community in SF bay area"
398
+ ]
399
+ },
400
+ {
401
+ "event": "closetag",
402
+ "data": [
403
+ "dc:title"
404
+ ]
405
+ },
406
+ {
407
+ "event": "text",
408
+ "data": [
409
+ "\n\t\t"
410
+ ]
411
+ },
412
+ {
413
+ "event": "opentagname",
414
+ "data": [
415
+ "dc:type"
416
+ ]
417
+ },
418
+ {
419
+ "event": "opentag",
420
+ "data": [
421
+ "dc:type",
422
+ {}
423
+ ]
424
+ },
425
+ {
426
+ "event": "text",
427
+ "data": [
428
+ "Collection"
429
+ ]
430
+ },
431
+ {
432
+ "event": "closetag",
433
+ "data": [
434
+ "dc:type"
435
+ ]
436
+ },
437
+ {
438
+ "event": "text",
439
+ "data": [
440
+ "\n\t\t"
441
+ ]
442
+ },
443
+ {
444
+ "event": "opentagname",
445
+ "data": [
446
+ "syn:updateBase"
447
+ ]
448
+ },
449
+ {
450
+ "event": "opentag",
451
+ "data": [
452
+ "syn:updateBase",
453
+ {}
454
+ ]
455
+ },
456
+ {
457
+ "event": "text",
458
+ "data": [
459
+ "2011-11-04T09:39:10-07:00"
460
+ ]
461
+ },
462
+ {
463
+ "event": "closetag",
464
+ "data": [
465
+ "syn:updateBase"
466
+ ]
467
+ },
468
+ {
469
+ "event": "text",
470
+ "data": [
471
+ "\n\t\t"
472
+ ]
473
+ },
474
+ {
475
+ "event": "opentagname",
476
+ "data": [
477
+ "syn:updateFrequency"
478
+ ]
479
+ },
480
+ {
481
+ "event": "opentag",
482
+ "data": [
483
+ "syn:updateFrequency",
484
+ {}
485
+ ]
486
+ },
487
+ {
488
+ "event": "text",
489
+ "data": [
490
+ "4"
491
+ ]
492
+ },
493
+ {
494
+ "event": "closetag",
495
+ "data": [
496
+ "syn:updateFrequency"
497
+ ]
498
+ },
499
+ {
500
+ "event": "text",
501
+ "data": [
502
+ "\n\t\t"
503
+ ]
504
+ },
505
+ {
506
+ "event": "opentagname",
507
+ "data": [
508
+ "syn:updatePeriod"
509
+ ]
510
+ },
511
+ {
512
+ "event": "opentag",
513
+ "data": [
514
+ "syn:updatePeriod",
515
+ {}
516
+ ]
517
+ },
518
+ {
519
+ "event": "text",
520
+ "data": [
521
+ "hourly"
522
+ ]
523
+ },
524
+ {
525
+ "event": "closetag",
526
+ "data": [
527
+ "syn:updatePeriod"
528
+ ]
529
+ },
530
+ {
531
+ "event": "text",
532
+ "data": [
533
+ "\n\t\t"
534
+ ]
535
+ },
536
+ {
537
+ "event": "opentagname",
538
+ "data": [
539
+ "items"
540
+ ]
541
+ },
542
+ {
543
+ "event": "opentag",
544
+ "data": [
545
+ "items",
546
+ {}
547
+ ]
548
+ },
549
+ {
550
+ "event": "text",
551
+ "data": [
552
+ "\n\t\t\t"
553
+ ]
554
+ },
555
+ {
556
+ "event": "opentagname",
557
+ "data": [
558
+ "rdf:Seq"
559
+ ]
560
+ },
561
+ {
562
+ "event": "opentag",
563
+ "data": [
564
+ "rdf:Seq",
565
+ {}
566
+ ]
567
+ },
568
+ {
569
+ "event": "text",
570
+ "data": [
571
+ "\n\t\t\t\t"
572
+ ]
573
+ },
574
+ {
575
+ "event": "opentagname",
576
+ "data": [
577
+ "rdf:li"
578
+ ]
579
+ },
580
+ {
581
+ "event": "attribute",
582
+ "data": [
583
+ "rdf:resource",
584
+ "http://sfbay.craigslist.org/sby/muc/2681301534.html"
585
+ ]
586
+ },
587
+ {
588
+ "event": "opentag",
589
+ "data": [
590
+ "rdf:li",
591
+ {
592
+ "rdf:resource": "http://sfbay.craigslist.org/sby/muc/2681301534.html"
593
+ }
594
+ ]
595
+ },
596
+ {
597
+ "event": "closetag",
598
+ "data": [
599
+ "rdf:li"
600
+ ]
601
+ },
602
+ {
603
+ "event": "text",
604
+ "data": [
605
+ "\n\t\t\t"
606
+ ]
607
+ },
608
+ {
609
+ "event": "closetag",
610
+ "data": [
611
+ "rdf:Seq"
612
+ ]
613
+ },
614
+ {
615
+ "event": "text",
616
+ "data": [
617
+ "\n\t\t"
618
+ ]
619
+ },
620
+ {
621
+ "event": "closetag",
622
+ "data": [
623
+ "items"
624
+ ]
625
+ },
626
+ {
627
+ "event": "text",
628
+ "data": [
629
+ "\n\t"
630
+ ]
631
+ },
632
+ {
633
+ "event": "closetag",
634
+ "data": [
635
+ "channel"
636
+ ]
637
+ },
638
+ {
639
+ "event": "text",
640
+ "data": [
641
+ "\n\t"
642
+ ]
643
+ },
644
+ {
645
+ "event": "opentagname",
646
+ "data": [
647
+ "item"
648
+ ]
649
+ },
650
+ {
651
+ "event": "attribute",
652
+ "data": [
653
+ "rdf:about",
654
+ "http://sfbay.craigslist.org/sby/muc/2681301534.html"
655
+ ]
656
+ },
657
+ {
658
+ "event": "opentag",
659
+ "data": [
660
+ "item",
661
+ {
662
+ "rdf:about": "http://sfbay.craigslist.org/sby/muc/2681301534.html"
663
+ }
664
+ ]
665
+ },
666
+ {
667
+ "event": "text",
668
+ "data": [
669
+ "\n\t\t"
670
+ ]
671
+ },
672
+ {
673
+ "event": "opentagname",
674
+ "data": [
675
+ "title"
676
+ ]
677
+ },
678
+ {
679
+ "event": "opentag",
680
+ "data": [
681
+ "title",
682
+ {}
683
+ ]
684
+ },
685
+ {
686
+ "event": "cdatastart",
687
+ "data": []
688
+ },
689
+ {
690
+ "event": "text",
691
+ "data": [
692
+ " Music Equipment Repair and Consignment "
693
+ ]
694
+ },
695
+ {
696
+ "event": "cdataend",
697
+ "data": []
698
+ },
699
+ {
700
+ "event": "closetag",
701
+ "data": [
702
+ "title"
703
+ ]
704
+ },
705
+ {
706
+ "event": "text",
707
+ "data": [
708
+ "\n\t\t"
709
+ ]
710
+ },
711
+ {
712
+ "event": "opentagname",
713
+ "data": [
714
+ "link"
715
+ ]
716
+ },
717
+ {
718
+ "event": "opentag",
719
+ "data": [
720
+ "link",
721
+ {}
722
+ ]
723
+ },
724
+ {
725
+ "event": "text",
726
+ "data": [
727
+ "\nhttp://sfbay.craigslist.org/sby/muc/2681301534.html\n"
728
+ ]
729
+ },
730
+ {
731
+ "event": "closetag",
732
+ "data": [
733
+ "link"
734
+ ]
735
+ },
736
+ {
737
+ "event": "text",
738
+ "data": [
739
+ "\n\t\t"
740
+ ]
741
+ },
742
+ {
743
+ "event": "opentagname",
744
+ "data": [
745
+ "description"
746
+ ]
747
+ },
748
+ {
749
+ "event": "opentag",
750
+ "data": [
751
+ "description",
752
+ {}
753
+ ]
754
+ },
755
+ {
756
+ "event": "cdatastart",
757
+ "data": []
758
+ },
759
+ {
760
+ "event": "text",
761
+ "data": [
762
+ "\nSan Jose Rock Shop offers musical instrument repair and consignment! (408) 215-2065<br> <br> We are pleased to announce our NEW LOCATION: 1199 N 5th st. San Jose, ca 95112. Please call ahead, by appointment only.<br> <br> Recently featured by Metro Newspaper in their 2011 Best of the Silicon Valley edition see it online here:<br> <a href=\"http://www.metroactive.com/best-of-silicon-valley/2011/music-nightlife/editor-picks.html\" rel=\"nofollow\">http://www.metroactive.com/best-of-silicon-valley/2011/music-nightlife/editor-picks.html</a><br> <br> Guitar Set up (acoustic and electronic) $40!<!-- END CLTAGS -->\n"
763
+ ]
764
+ },
765
+ {
766
+ "event": "cdataend",
767
+ "data": []
768
+ },
769
+ {
770
+ "event": "closetag",
771
+ "data": [
772
+ "description"
773
+ ]
774
+ },
775
+ {
776
+ "event": "text",
777
+ "data": [
778
+ "\n\t\t"
779
+ ]
780
+ },
781
+ {
782
+ "event": "opentagname",
783
+ "data": [
784
+ "dc:date"
785
+ ]
786
+ },
787
+ {
788
+ "event": "opentag",
789
+ "data": [
790
+ "dc:date",
791
+ {}
792
+ ]
793
+ },
794
+ {
795
+ "event": "text",
796
+ "data": [
797
+ "2011-11-04T09:35:17-07:00"
798
+ ]
799
+ },
800
+ {
801
+ "event": "closetag",
802
+ "data": [
803
+ "dc:date"
804
+ ]
805
+ },
806
+ {
807
+ "event": "text",
808
+ "data": [
809
+ "\n\t\t"
810
+ ]
811
+ },
812
+ {
813
+ "event": "opentagname",
814
+ "data": [
815
+ "dc:language"
816
+ ]
817
+ },
818
+ {
819
+ "event": "opentag",
820
+ "data": [
821
+ "dc:language",
822
+ {}
823
+ ]
824
+ },
825
+ {
826
+ "event": "text",
827
+ "data": [
828
+ "en-us"
829
+ ]
830
+ },
831
+ {
832
+ "event": "closetag",
833
+ "data": [
834
+ "dc:language"
835
+ ]
836
+ },
837
+ {
838
+ "event": "text",
839
+ "data": [
840
+ "\n\t\t"
841
+ ]
842
+ },
843
+ {
844
+ "event": "opentagname",
845
+ "data": [
846
+ "dc:rights"
847
+ ]
848
+ },
849
+ {
850
+ "event": "opentag",
851
+ "data": [
852
+ "dc:rights",
853
+ {}
854
+ ]
855
+ },
856
+ {
857
+ "event": "text",
858
+ "data": [
859
+ "Copyright 2011 craigslist, inc."
860
+ ]
861
+ },
862
+ {
863
+ "event": "closetag",
864
+ "data": [
865
+ "dc:rights"
866
+ ]
867
+ },
868
+ {
869
+ "event": "text",
870
+ "data": [
871
+ "\n\t\t"
872
+ ]
873
+ },
874
+ {
875
+ "event": "opentagname",
876
+ "data": [
877
+ "dc:source"
878
+ ]
879
+ },
880
+ {
881
+ "event": "opentag",
882
+ "data": [
883
+ "dc:source",
884
+ {}
885
+ ]
886
+ },
887
+ {
888
+ "event": "text",
889
+ "data": [
890
+ "\nhttp://sfbay.craigslist.org/sby/muc/2681301534.html\n"
891
+ ]
892
+ },
893
+ {
894
+ "event": "closetag",
895
+ "data": [
896
+ "dc:source"
897
+ ]
898
+ },
899
+ {
900
+ "event": "text",
901
+ "data": [
902
+ "\n\t\t"
903
+ ]
904
+ },
905
+ {
906
+ "event": "opentagname",
907
+ "data": [
908
+ "dc:title"
909
+ ]
910
+ },
911
+ {
912
+ "event": "opentag",
913
+ "data": [
914
+ "dc:title",
915
+ {}
916
+ ]
917
+ },
918
+ {
919
+ "event": "cdatastart",
920
+ "data": []
921
+ },
922
+ {
923
+ "event": "text",
924
+ "data": [
925
+ " Music Equipment Repair and Consignment "
926
+ ]
927
+ },
928
+ {
929
+ "event": "cdataend",
930
+ "data": []
931
+ },
932
+ {
933
+ "event": "closetag",
934
+ "data": [
935
+ "dc:title"
936
+ ]
937
+ },
938
+ {
939
+ "event": "text",
940
+ "data": [
941
+ "\n\t\t"
942
+ ]
943
+ },
944
+ {
945
+ "event": "opentagname",
946
+ "data": [
947
+ "dc:type"
948
+ ]
949
+ },
950
+ {
951
+ "event": "opentag",
952
+ "data": [
953
+ "dc:type",
954
+ {}
955
+ ]
956
+ },
957
+ {
958
+ "event": "text",
959
+ "data": [
960
+ "text"
961
+ ]
962
+ },
963
+ {
964
+ "event": "closetag",
965
+ "data": [
966
+ "dc:type"
967
+ ]
968
+ },
969
+ {
970
+ "event": "text",
971
+ "data": [
972
+ "\n\t\t"
973
+ ]
974
+ },
975
+ {
976
+ "event": "opentagname",
977
+ "data": [
978
+ "dcterms:issued"
979
+ ]
980
+ },
981
+ {
982
+ "event": "opentag",
983
+ "data": [
984
+ "dcterms:issued",
985
+ {}
986
+ ]
987
+ },
988
+ {
989
+ "event": "text",
990
+ "data": [
991
+ "2011-11-04T09:35:17-07:00"
992
+ ]
993
+ },
994
+ {
995
+ "event": "closetag",
996
+ "data": [
997
+ "dcterms:issued"
998
+ ]
999
+ },
1000
+ {
1001
+ "event": "text",
1002
+ "data": [
1003
+ "\n\t"
1004
+ ]
1005
+ },
1006
+ {
1007
+ "event": "closetag",
1008
+ "data": [
1009
+ "item"
1010
+ ]
1011
+ },
1012
+ {
1013
+ "event": "text",
1014
+ "data": [
1015
+ "\n\t"
1016
+ ]
1017
+ },
1018
+ {
1019
+ "event": "opentagname",
1020
+ "data": [
1021
+ "item"
1022
+ ]
1023
+ },
1024
+ {
1025
+ "event": "attribute",
1026
+ "data": [
1027
+ "rdf:about",
1028
+ "http://sfbay.craigslist.org/eby/rid/2685010755.html"
1029
+ ]
1030
+ },
1031
+ {
1032
+ "event": "opentag",
1033
+ "data": [
1034
+ "item",
1035
+ {
1036
+ "rdf:about": "http://sfbay.craigslist.org/eby/rid/2685010755.html"
1037
+ }
1038
+ ]
1039
+ },
1040
+ {
1041
+ "event": "text",
1042
+ "data": [
1043
+ "\n\t\t"
1044
+ ]
1045
+ },
1046
+ {
1047
+ "event": "opentagname",
1048
+ "data": [
1049
+ "title"
1050
+ ]
1051
+ },
1052
+ {
1053
+ "event": "opentag",
1054
+ "data": [
1055
+ "title",
1056
+ {}
1057
+ ]
1058
+ },
1059
+ {
1060
+ "event": "cdatastart",
1061
+ "data": []
1062
+ },
1063
+ {
1064
+ "event": "text",
1065
+ "data": [
1066
+ "\nRide Offered - Oakland/BART to LA/SFV - TODAY 3PM 11/04 (oakland north / temescal)\n"
1067
+ ]
1068
+ },
1069
+ {
1070
+ "event": "cdataend",
1071
+ "data": []
1072
+ },
1073
+ {
1074
+ "event": "closetag",
1075
+ "data": [
1076
+ "title"
1077
+ ]
1078
+ },
1079
+ {
1080
+ "event": "text",
1081
+ "data": [
1082
+ "\n\t\t"
1083
+ ]
1084
+ },
1085
+ {
1086
+ "event": "opentagname",
1087
+ "data": [
1088
+ "link"
1089
+ ]
1090
+ },
1091
+ {
1092
+ "event": "opentag",
1093
+ "data": [
1094
+ "link",
1095
+ {}
1096
+ ]
1097
+ },
1098
+ {
1099
+ "event": "text",
1100
+ "data": [
1101
+ "\nhttp://sfbay.craigslist.org/eby/rid/2685010755.html\n"
1102
+ ]
1103
+ },
1104
+ {
1105
+ "event": "closetag",
1106
+ "data": [
1107
+ "link"
1108
+ ]
1109
+ },
1110
+ {
1111
+ "event": "text",
1112
+ "data": [
1113
+ "\n\t\t"
1114
+ ]
1115
+ },
1116
+ {
1117
+ "event": "opentagname",
1118
+ "data": [
1119
+ "description"
1120
+ ]
1121
+ },
1122
+ {
1123
+ "event": "opentag",
1124
+ "data": [
1125
+ "description",
1126
+ {}
1127
+ ]
1128
+ },
1129
+ {
1130
+ "event": "cdatastart",
1131
+ "data": []
1132
+ },
1133
+ {
1134
+ "event": "text",
1135
+ "data": [
1136
+ "\nIm offering a lift for up to two people from Oakland (or near any BART station in the East Bay/580/880 Corridor, or San Jose/Morgan Hill, Gilroy) to the San Fernando Valley / Los Angeles area. Specifically, Im leaving from Oakland between 2:30 and 3:00pm (this is flexible, but if I leave too late my girlfriend will kill me), and heading to Woodland Hills via the 580, I-5, 405, and 101.<!-- END CLTAGS -->\n"
1137
+ ]
1138
+ },
1139
+ {
1140
+ "event": "cdataend",
1141
+ "data": []
1142
+ },
1143
+ {
1144
+ "event": "closetag",
1145
+ "data": [
1146
+ "description"
1147
+ ]
1148
+ },
1149
+ {
1150
+ "event": "text",
1151
+ "data": [
1152
+ "\n\t\t"
1153
+ ]
1154
+ },
1155
+ {
1156
+ "event": "opentagname",
1157
+ "data": [
1158
+ "dc:date"
1159
+ ]
1160
+ },
1161
+ {
1162
+ "event": "opentag",
1163
+ "data": [
1164
+ "dc:date",
1165
+ {}
1166
+ ]
1167
+ },
1168
+ {
1169
+ "event": "text",
1170
+ "data": [
1171
+ "2011-11-04T09:34:54-07:00"
1172
+ ]
1173
+ },
1174
+ {
1175
+ "event": "closetag",
1176
+ "data": [
1177
+ "dc:date"
1178
+ ]
1179
+ },
1180
+ {
1181
+ "event": "text",
1182
+ "data": [
1183
+ "\n\t\t"
1184
+ ]
1185
+ },
1186
+ {
1187
+ "event": "opentagname",
1188
+ "data": [
1189
+ "dc:language"
1190
+ ]
1191
+ },
1192
+ {
1193
+ "event": "opentag",
1194
+ "data": [
1195
+ "dc:language",
1196
+ {}
1197
+ ]
1198
+ },
1199
+ {
1200
+ "event": "text",
1201
+ "data": [
1202
+ "en-us"
1203
+ ]
1204
+ },
1205
+ {
1206
+ "event": "closetag",
1207
+ "data": [
1208
+ "dc:language"
1209
+ ]
1210
+ },
1211
+ {
1212
+ "event": "text",
1213
+ "data": [
1214
+ "\n\t\t"
1215
+ ]
1216
+ },
1217
+ {
1218
+ "event": "opentagname",
1219
+ "data": [
1220
+ "dc:rights"
1221
+ ]
1222
+ },
1223
+ {
1224
+ "event": "opentag",
1225
+ "data": [
1226
+ "dc:rights",
1227
+ {}
1228
+ ]
1229
+ },
1230
+ {
1231
+ "event": "text",
1232
+ "data": [
1233
+ "Copyright 2011 craigslist, inc."
1234
+ ]
1235
+ },
1236
+ {
1237
+ "event": "closetag",
1238
+ "data": [
1239
+ "dc:rights"
1240
+ ]
1241
+ },
1242
+ {
1243
+ "event": "text",
1244
+ "data": [
1245
+ "\n\t\t"
1246
+ ]
1247
+ },
1248
+ {
1249
+ "event": "opentagname",
1250
+ "data": [
1251
+ "dc:source"
1252
+ ]
1253
+ },
1254
+ {
1255
+ "event": "opentag",
1256
+ "data": [
1257
+ "dc:source",
1258
+ {}
1259
+ ]
1260
+ },
1261
+ {
1262
+ "event": "text",
1263
+ "data": [
1264
+ "\nhttp://sfbay.craigslist.org/eby/rid/2685010755.html\n"
1265
+ ]
1266
+ },
1267
+ {
1268
+ "event": "closetag",
1269
+ "data": [
1270
+ "dc:source"
1271
+ ]
1272
+ },
1273
+ {
1274
+ "event": "text",
1275
+ "data": [
1276
+ "\n\t\t"
1277
+ ]
1278
+ },
1279
+ {
1280
+ "event": "opentagname",
1281
+ "data": [
1282
+ "dc:title"
1283
+ ]
1284
+ },
1285
+ {
1286
+ "event": "opentag",
1287
+ "data": [
1288
+ "dc:title",
1289
+ {}
1290
+ ]
1291
+ },
1292
+ {
1293
+ "event": "cdatastart",
1294
+ "data": []
1295
+ },
1296
+ {
1297
+ "event": "text",
1298
+ "data": [
1299
+ "\nRide Offered - Oakland/BART to LA/SFV - TODAY 3PM 11/04 (oakland north / temescal)\n"
1300
+ ]
1301
+ },
1302
+ {
1303
+ "event": "cdataend",
1304
+ "data": []
1305
+ },
1306
+ {
1307
+ "event": "closetag",
1308
+ "data": [
1309
+ "dc:title"
1310
+ ]
1311
+ },
1312
+ {
1313
+ "event": "text",
1314
+ "data": [
1315
+ "\n\t\t"
1316
+ ]
1317
+ },
1318
+ {
1319
+ "event": "opentagname",
1320
+ "data": [
1321
+ "dc:type"
1322
+ ]
1323
+ },
1324
+ {
1325
+ "event": "opentag",
1326
+ "data": [
1327
+ "dc:type",
1328
+ {}
1329
+ ]
1330
+ },
1331
+ {
1332
+ "event": "text",
1333
+ "data": [
1334
+ "text"
1335
+ ]
1336
+ },
1337
+ {
1338
+ "event": "closetag",
1339
+ "data": [
1340
+ "dc:type"
1341
+ ]
1342
+ },
1343
+ {
1344
+ "event": "text",
1345
+ "data": [
1346
+ "\n\t\t"
1347
+ ]
1348
+ },
1349
+ {
1350
+ "event": "opentagname",
1351
+ "data": [
1352
+ "dcterms:issued"
1353
+ ]
1354
+ },
1355
+ {
1356
+ "event": "opentag",
1357
+ "data": [
1358
+ "dcterms:issued",
1359
+ {}
1360
+ ]
1361
+ },
1362
+ {
1363
+ "event": "text",
1364
+ "data": [
1365
+ "2011-11-04T09:34:54-07:00"
1366
+ ]
1367
+ },
1368
+ {
1369
+ "event": "closetag",
1370
+ "data": [
1371
+ "dcterms:issued"
1372
+ ]
1373
+ },
1374
+ {
1375
+ "event": "text",
1376
+ "data": [
1377
+ "\n\t"
1378
+ ]
1379
+ },
1380
+ {
1381
+ "event": "closetag",
1382
+ "data": [
1383
+ "item"
1384
+ ]
1385
+ },
1386
+ {
1387
+ "event": "text",
1388
+ "data": [
1389
+ "\n"
1390
+ ]
1391
+ },
1392
+ {
1393
+ "event": "closetag",
1394
+ "data": [
1395
+ "rdf:RDF"
1396
+ ]
1397
+ }
1398
+ ]
1399
+ }