redcar 0.3.1dev → 0.3.2dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (316) hide show
  1. data/CHANGES +34 -1
  2. data/README.md +2 -1
  3. data/ROADMAP.md +13 -45
  4. data/Rakefile +15 -14
  5. data/bin/redcar +4 -1
  6. data/lib/plugin_manager/README.md +61 -0
  7. data/lib/plugin_manager/Rakefile +55 -0
  8. data/lib/plugin_manager/bin/plugin_manager +4 -0
  9. data/lib/plugin_manager/lib/plugin_manager.rb +107 -0
  10. data/lib/plugin_manager/lib/plugin_manager/definition_builder.rb +37 -0
  11. data/lib/plugin_manager/lib/plugin_manager/plugin.rb +9 -0
  12. data/lib/plugin_manager/lib/plugin_manager/plugin_definition.rb +50 -0
  13. data/lib/plugin_manager/plugin_manager.gemspec +33 -0
  14. data/lib/plugin_manager/spec/fixtures/error_in_definition/core/plugin.rb +2 -0
  15. data/lib/plugin_manager/spec/fixtures/error_in_plugin/core/core.rb +4 -0
  16. data/lib/plugin_manager/spec/fixtures/error_in_plugin/core/plugin.rb +7 -0
  17. data/lib/plugin_manager/spec/fixtures/example/core/core.rb +20 -0
  18. data/lib/plugin_manager/spec/fixtures/example/core/plugin.rb +7 -0
  19. data/lib/plugin_manager/spec/fixtures/example/debug/debug.rb +6 -0
  20. data/lib/plugin_manager/spec/fixtures/example/debug/plugin.rb +8 -0
  21. data/lib/plugin_manager/spec/fixtures/example/extras/extras.rb +6 -0
  22. data/lib/plugin_manager/spec/fixtures/example/extras/plugin.rb +8 -0
  23. data/lib/plugin_manager/spec/fixtures/two_versions1/core/core.rb +20 -0
  24. data/lib/plugin_manager/spec/fixtures/two_versions1/core/plugin.rb +7 -0
  25. data/lib/plugin_manager/spec/fixtures/two_versions1/core2/core.rb +20 -0
  26. data/lib/plugin_manager/spec/fixtures/two_versions1/core2/plugin.rb +7 -0
  27. data/lib/plugin_manager/spec/fixtures/two_versions2/core/core.rb +20 -0
  28. data/lib/plugin_manager/spec/fixtures/two_versions2/core/plugin.rb +7 -0
  29. data/lib/plugin_manager/spec/fixtures/two_versions2/core2/core.rb +20 -0
  30. data/lib/plugin_manager/spec/fixtures/two_versions2/core2/plugin.rb +8 -0
  31. data/lib/plugin_manager/spec/fixtures/unmet_dependencies1/core/core.rb +10 -0
  32. data/lib/plugin_manager/spec/fixtures/unmet_dependencies1/core/plugin.rb +7 -0
  33. data/lib/plugin_manager/spec/fixtures/unmet_dependencies1/debug/debug.rb +6 -0
  34. data/lib/plugin_manager/spec/fixtures/unmet_dependencies1/debug/plugin.rb +8 -0
  35. data/lib/plugin_manager/spec/fixtures/unmet_dependencies2/core/core.rb +10 -0
  36. data/lib/plugin_manager/spec/fixtures/unmet_dependencies2/core/plugin.rb +7 -0
  37. data/lib/plugin_manager/spec/fixtures/unmet_dependencies2/debug/debug.rb +6 -0
  38. data/lib/plugin_manager/spec/fixtures/unmet_dependencies2/debug/plugin.rb +8 -0
  39. data/lib/plugin_manager/spec/plugin_manager_spec.rb +208 -0
  40. data/lib/plugin_manager/spec/spec_helper.rb +3 -0
  41. data/lib/redcar.rb +8 -3
  42. data/lib/redcar/boot.rb +59 -56
  43. data/lib/redcar/installer.rb +1 -1
  44. data/lib/redcar/instance_exec.rb +25 -0
  45. data/lib/redcar/runner.rb +5 -1
  46. data/lib/redcar/usage.rb +5 -1
  47. data/plugins/application/icons/close.png +0 -0
  48. data/plugins/application/lib/application.rb +61 -28
  49. data/plugins/application/lib/application/clipboard.rb +71 -0
  50. data/plugins/application/lib/application/dialog.rb +63 -0
  51. data/plugins/application/lib/application/menu.rb +32 -1
  52. data/plugins/application/lib/application/menu/builder.rb +10 -4
  53. data/plugins/application/lib/application/menu/item.rb +16 -3
  54. data/plugins/application/lib/application/notebook.rb +5 -0
  55. data/plugins/application/lib/application/speedbar.rb +73 -0
  56. data/plugins/application/lib/application/window.rb +25 -0
  57. data/plugins/application/plugin.rb +8 -0
  58. data/plugins/application/spec/application/clipboard_spec.rb +36 -0
  59. data/plugins/application/spec/application/menu_spec.rb +73 -1
  60. data/plugins/application/spec/application/speedbar_spec.rb +46 -0
  61. data/plugins/application/spec/spec_helper.rb +1 -1
  62. data/plugins/application_swt/lib/application_swt.rb +18 -11
  63. data/plugins/application_swt/lib/application_swt/clipboard.rb +42 -0
  64. data/plugins/application_swt/lib/application_swt/dialog_adapter.rb +68 -0
  65. data/plugins/application_swt/lib/application_swt/dialogs/filter_list_dialog_controller.rb +1 -1
  66. data/plugins/application_swt/lib/application_swt/html_tab.rb +32 -0
  67. data/plugins/application_swt/lib/application_swt/menu.rb +57 -21
  68. data/plugins/application_swt/lib/application_swt/menu/binding_translator.rb +39 -2
  69. data/plugins/application_swt/lib/application_swt/notebook.rb +5 -0
  70. data/plugins/application_swt/lib/application_swt/speedbar.rb +187 -0
  71. data/plugins/application_swt/lib/application_swt/swt_wrapper.rb +24 -1
  72. data/plugins/application_swt/lib/application_swt/window.rb +33 -3
  73. data/plugins/application_swt/plugin.rb +8 -0
  74. data/plugins/application_swt/spec/spec_helper.rb +1 -1
  75. data/plugins/auto_completer/features/auto_complete.feature +65 -0
  76. data/plugins/auto_completer/features/step_definitions/auto_complete_steps.rb +4 -0
  77. data/plugins/auto_completer/features/support/env.rb +4 -0
  78. data/plugins/auto_completer/lib/auto_completer.rb +99 -0
  79. data/plugins/auto_completer/lib/auto_completer/document_controller.rb +52 -0
  80. data/plugins/auto_completer/lib/auto_completer/word_iterator.rb +48 -0
  81. data/plugins/auto_completer/lib/auto_completer/word_list.rb +40 -0
  82. data/plugins/auto_completer/plugin.rb +10 -0
  83. data/plugins/auto_indenter/lib/auto_indenter.rb +1 -1
  84. data/plugins/auto_indenter/lib/auto_indenter/document_controller.rb +1 -1
  85. data/plugins/auto_indenter/plugin.rb +8 -0
  86. data/plugins/core/lib/core.rb +6 -30
  87. data/plugins/core/lib/core/gui.rb +7 -2
  88. data/plugins/core/lib/core/logger.rb +7 -4
  89. data/plugins/core/lib/core/plugin/storage.rb +15 -5
  90. data/plugins/core/plugin.rb +7 -0
  91. data/plugins/core/spec/core/storage_spec.rb +0 -9
  92. data/plugins/edit_view/features/cut_and_paste.feature +45 -0
  93. data/plugins/edit_view/features/step_definitions/editing_steps.rb +22 -0
  94. data/plugins/edit_view/features/step_definitions/key_steps.rb +1 -1
  95. data/plugins/edit_view/features/step_definitions/notebook_steps.rb +1 -1
  96. data/plugins/edit_view/features/step_definitions/tab_steps.rb +2 -0
  97. data/plugins/edit_view/features/step_definitions/window_steps.rb +1 -1
  98. data/plugins/edit_view/features/support/env.rb +2 -2
  99. data/plugins/edit_view/lib/edit_view.rb +24 -13
  100. data/plugins/edit_view/lib/edit_view/document.rb +233 -15
  101. data/plugins/edit_view/lib/edit_view/edit_tab.rb +2 -2
  102. data/plugins/edit_view/plugin.rb +9 -0
  103. data/plugins/edit_view/spec/spec_helper.rb +1 -1
  104. data/plugins/edit_view_swt/lib/edit_view_swt.rb +37 -8
  105. data/plugins/edit_view_swt/lib/edit_view_swt/document.rb +59 -24
  106. data/plugins/edit_view_swt/lib/edit_view_swt/word_movement.rb +66 -0
  107. data/plugins/edit_view_swt/plugin.rb +9 -0
  108. data/plugins/edit_view_swt/spec/edit_view_swt/word_movement_spec.rb +29 -0
  109. data/plugins/edit_view_swt/spec/spec_helper.rb +6 -0
  110. data/plugins/html_view/assets/blueprint/ie.css +35 -0
  111. data/plugins/html_view/assets/blueprint/print.css +29 -0
  112. data/plugins/html_view/assets/blueprint/screen.css +257 -0
  113. data/plugins/html_view/assets/blueprint/src/forms.css +65 -0
  114. data/plugins/html_view/assets/blueprint/src/grid.css +281 -0
  115. data/plugins/html_view/assets/blueprint/src/grid.png +0 -0
  116. data/plugins/html_view/assets/blueprint/src/ie.css +76 -0
  117. data/plugins/html_view/assets/blueprint/src/print.css +85 -0
  118. data/plugins/html_view/assets/blueprint/src/reset.css +38 -0
  119. data/plugins/html_view/assets/blueprint/src/typography.css +106 -0
  120. data/plugins/html_view/assets/jquery-1.4.min.js +151 -0
  121. data/plugins/html_view/assets/redcar.css +12 -0
  122. data/plugins/html_view/lib/html_controller.rb +5 -0
  123. data/plugins/html_view/lib/html_view.rb +47 -0
  124. data/plugins/html_view/lib/html_view/html_tab.rb +16 -0
  125. data/plugins/html_view/plugin.rb +12 -0
  126. data/plugins/my_plugin/lib/my_plugin.rb +55 -0
  127. data/plugins/my_plugin/plugin.rb +8 -0
  128. data/plugins/plugin_manager_ui/lib/plugin_manager_ui.rb +62 -0
  129. data/plugins/plugin_manager_ui/plugin.rb +12 -0
  130. data/plugins/plugin_manager_ui/views/index.html.erb +31 -0
  131. data/plugins/project/lib/project.rb +27 -13
  132. data/plugins/project/lib/project/find_file_dialog.rb +25 -19
  133. data/plugins/project/plugin.rb +8 -0
  134. data/plugins/project/spec/spec_helper.rb +1 -1
  135. data/plugins/redcar/plugin.rb +13 -0
  136. data/plugins/redcar/redcar.rb +249 -8
  137. data/plugins/repl/lib/repl.rb +22 -14
  138. data/plugins/repl/plugin.rb +8 -0
  139. data/plugins/repl/spec/spec_helper.rb +1 -1
  140. data/plugins/tree/plugin.rb +9 -0
  141. data/plugins/tree/spec/spec_helper.rb +1 -1
  142. data/plugins/tree_view_swt/plugin.rb +9 -0
  143. data/textmate/Bundles/Apache.tmbundle/Syntaxes/Apache.plist +544 -0
  144. data/textmate/Bundles/Apache.tmbundle/Syntaxes/mod_perl.tmLanguage +120 -0
  145. data/textmate/Bundles/Blogging.tmbundle/Syntaxes/Blog___HTML__.plist +88 -0
  146. data/textmate/Bundles/Blogging.tmbundle/Syntaxes/Blog___Markdown__.plist +89 -0
  147. data/textmate/Bundles/Blogging.tmbundle/Syntaxes/Blog___Text__.plist +74 -0
  148. data/textmate/Bundles/Blogging.tmbundle/Syntaxes/Blog___Textile__.plist +74 -0
  149. data/textmate/Bundles/Bundle Development.tmbundle/Syntaxes/LanguageGrammar.tmLanguage +1829 -0
  150. data/textmate/Bundles/C Sharp.tmbundle/Syntaxes/Build.tmLanguage +142 -0
  151. data/textmate/Bundles/C Sharp.tmbundle/Syntaxes/C__.tmLanguage +524 -0
  152. data/textmate/Bundles/C++ Qt.tmbundle/Syntaxes/Qt_C____.tmLanguage +62 -0
  153. data/textmate/Bundles/C++ Qt.tmbundle/Syntaxes/qmake_Project.tmLanguage +308 -0
  154. data/textmate/Bundles/C.tmbundle/Syntaxes/C.plist +90 -48
  155. data/textmate/Bundles/Clojure.tmbundle/Syntaxes/Clojure.tmLanguage +427 -0
  156. data/textmate/Bundles/Cucumber.tmbundle/Syntaxes/Cucumber_Plain_Text_Feature.tmLanguage +106 -13
  157. data/textmate/Bundles/Cucumber.tmbundle/Syntaxes/Cucumber_Steps.tmLanguage +177 -2
  158. data/textmate/Bundles/Cucumber.tmbundle/Syntaxes/plaintext_template.erb +109 -17
  159. data/textmate/Bundles/D.tmbundle/Syntaxes/D.tmLanguage +908 -0
  160. data/textmate/Bundles/Diff.tmbundle/Syntaxes/Diff.plist +229 -0
  161. data/textmate/Bundles/DokuWiki.tmbundle/Syntaxes/DokuWiki.tmLanguage +649 -0
  162. data/textmate/Bundles/F-Script.tmbundle/Syntaxes/F__Script.plist +219 -0
  163. data/textmate/Bundles/Haskell.tmbundle/Syntaxes/Haskell.plist +646 -0
  164. data/textmate/Bundles/Haskell.tmbundle/Syntaxes/Literate_Haskell.plist +90 -0
  165. data/textmate/Bundles/Io.tmbundle/Syntaxes/Io.plist +225 -0
  166. data/textmate/Bundles/JSON.tmbundle/Syntaxes/JSON.tmLanguage +285 -0
  167. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Syntaxes/JavaScript____Prototype.tmLanguage +193 -0
  168. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Syntaxes/JavaScript____Prototype_Bracketed.tmLanguage +394 -0
  169. data/textmate/Bundles/JavaScript jQuery.tmbundle/Syntaxes/jQuery___JavaScript__.tmLanguage +440 -0
  170. data/textmate/Bundles/JavaScript.tmbundle/Syntaxes/JavaScript.plist +712 -0
  171. data/textmate/Bundles/Latex.tmbundle/Syntaxes/Bibtex.plist +406 -0
  172. data/textmate/Bundles/Latex.tmbundle/Syntaxes/LaTeX.plist +1601 -0
  173. data/textmate/Bundles/Latex.tmbundle/Syntaxes/LaTeX_Beamer.plist +106 -0
  174. data/textmate/Bundles/Latex.tmbundle/Syntaxes/LaTeX_Log.plist +141 -0
  175. data/textmate/Bundles/Latex.tmbundle/Syntaxes/LaTeX_Memoir.tmLanguage +165 -0
  176. data/textmate/Bundles/Latex.tmbundle/Syntaxes/TeX.plist +246 -0
  177. data/textmate/Bundles/Latex.tmbundle/Syntaxes/TeX_Math.plist +132 -0
  178. data/textmate/Bundles/Lisp.tmbundle/Syntaxes/Lisp.plist +160 -0
  179. data/textmate/Bundles/Makefile.tmbundle/Syntaxes/Makefile.plist +103 -0
  180. data/textmate/Bundles/Markdown.tmbundle/Syntaxes/Markdown.plist +1192 -0
  181. data/textmate/Bundles/Markdown.tmbundle/Syntaxes/MultiMarkdown.tmLanguage +80 -0
  182. data/textmate/Bundles/PHP.tmbundle/Syntaxes/PHP.plist +3481 -0
  183. data/textmate/Bundles/Perl HTML-Template.tmbundle/Syntaxes/Perl_HTML__Template.tmLanguage +217 -0
  184. data/textmate/Bundles/Perl Template Toolkit.tmbundle/Syntaxes/HTML___Template_Toolkit__.tmLanguage +339 -0
  185. data/textmate/Bundles/Postscript.tmbundle/Syntaxes/Postscript.tmLanguage +321 -0
  186. data/textmate/Bundles/Processing.tmbundle/Syntaxes/Processing.plist +296 -0
  187. data/textmate/Bundles/Property List.tmbundle/Syntaxes/Property_List.tmLanguage +1650 -0
  188. data/textmate/Bundles/Python Django Templates.tmbundle/Syntaxes/HTML___Django__.tmLanguage +104 -0
  189. data/textmate/Bundles/Python Django.tmbundle/Syntaxes/Python_Django.tmLanguage +57 -0
  190. data/textmate/Bundles/Python.tmbundle/Syntaxes/Python.tmLanguage +3016 -0
  191. data/textmate/Bundles/Python.tmbundle/Syntaxes/Regular_Expressions___Python__.tmLanguage +299 -0
  192. data/textmate/Bundles/Rez.tmbundle/Syntaxes/Rez.plist +219 -0
  193. data/textmate/Bundles/Ruby Haml.tmbundle/Syntaxes/Ruby_Haml.tmLanguage +403 -0
  194. data/textmate/Bundles/Ruby RSpec.tmbundle/Syntaxes/RSpec.tmLanguage +142 -0
  195. data/textmate/Bundles/Ruby.tmbundle/Syntaxes/Ruby.plist +139 -49
  196. data/textmate/Bundles/SQL.tmbundle/Syntaxes/SQL.plist +705 -0
  197. data/textmate/Bundles/SSH-Config.tmbundle/Syntaxes/SSH__Config.tmLanguage +88 -0
  198. data/textmate/Bundles/Scala.tmbundle/Syntaxes/Scala.tmLanguage +609 -0
  199. data/textmate/Bundles/Scala.tmbundle/Syntaxes/Scala_Properties.tmLanguage +54 -0
  200. data/textmate/Bundles/ShellScript.tmbundle/Syntaxes/Shell__Unix__Generic.plist +1855 -0
  201. data/textmate/Bundles/Tabular.tmbundle/Syntaxes/CSV.tmLanguage +178 -0
  202. data/textmate/Bundles/Tabular.tmbundle/Syntaxes/TSV.tmLanguage +135 -0
  203. data/textmate/Bundles/TextMate.tmbundle/Syntaxes/Regular_Expressions___Oniguruma__.tmLanguage +295 -0
  204. data/textmate/Bundles/TextMate.tmbundle/Syntaxes/Release_Notes.tmLanguage +126 -0
  205. data/textmate/Bundles/Textile.tmbundle/Syntaxes/Textile.plist +490 -0
  206. data/textmate/Bundles/Thrift.tmbundle/Syntaxes/Thrift.tmLanguage +1024 -0
  207. data/textmate/Bundles/XML.tmbundle/Syntaxes/XML.plist +576 -0
  208. data/textmate/Bundles/XML.tmbundle/Syntaxes/XSL.plist +157 -0
  209. data/textmate/Bundles/YAML.tmbundle/Syntaxes/YAML.plist +466 -0
  210. data/textmate/Themes/Django.tmTheme +436 -0
  211. metadata +371 -325
  212. data/config/default.yaml +0 -15
  213. data/lib/freebase2/README.txt +0 -47
  214. data/lib/freebase2/bin/default.yaml +0 -15
  215. data/lib/freebase2/bin/install.rb +0 -42
  216. data/lib/freebase2/bin/run.rb +0 -48
  217. data/lib/freebase2/lib/freebase/configuration.rb +0 -535
  218. data/lib/freebase2/lib/freebase/core.rb +0 -197
  219. data/lib/freebase2/lib/freebase/databus.rb +0 -1128
  220. data/lib/freebase2/lib/freebase/freebase.rb +0 -60
  221. data/lib/freebase2/lib/freebase/logger.rb +0 -117
  222. data/lib/freebase2/lib/freebase/plugin.rb +0 -384
  223. data/lib/freebase2/lib/freebase/properties.rb +0 -130
  224. data/lib/freebase2/lib/freebase/readers.rb +0 -328
  225. data/lib/freebase2/notes +0 -61
  226. data/lib/freebase2/plugins/raa_webrick/httpd.rb +0 -125
  227. data/lib/freebase2/plugins/raa_webrick/plugin.yaml +0 -7
  228. data/lib/freebase2/plugins/raa_webrick/web_root/test.html +0 -5
  229. data/lib/freebase2/plugins/raa_webrick/webserver.yaml +0 -6
  230. data/lib/freebase2/plugins/raa_xmlrpc4r/plugin.xml +0 -8
  231. data/lib/freebase2/plugins/raa_xmlrpc4r/rpcd.rb +0 -54
  232. data/lib/freebase2/regress/README +0 -1
  233. data/lib/little_plugger/History.txt +0 -20
  234. data/lib/little_plugger/Rakefile +0 -34
  235. data/lib/little_plugger/lib/little-plugger.rb +0 -323
  236. data/lib/little_plugger/spec/little-plugger_spec.rb +0 -26
  237. data/lib/little_plugger/spec/spec_helper.rb +0 -16
  238. data/lib/logging/History.txt +0 -240
  239. data/lib/logging/Rakefile +0 -37
  240. data/lib/logging/data/bad_logging_1.rb +0 -13
  241. data/lib/logging/data/bad_logging_2.rb +0 -21
  242. data/lib/logging/data/logging.rb +0 -42
  243. data/lib/logging/data/logging.yaml +0 -63
  244. data/lib/logging/data/simple_logging.rb +0 -13
  245. data/lib/logging/examples/appenders.rb +0 -47
  246. data/lib/logging/examples/classes.rb +0 -41
  247. data/lib/logging/examples/consolidation.rb +0 -83
  248. data/lib/logging/examples/formatting.rb +0 -51
  249. data/lib/logging/examples/hierarchies.rb +0 -73
  250. data/lib/logging/examples/layouts.rb +0 -48
  251. data/lib/logging/examples/loggers.rb +0 -29
  252. data/lib/logging/examples/names.rb +0 -43
  253. data/lib/logging/examples/simple.rb +0 -17
  254. data/lib/logging/lib/logging.rb +0 -501
  255. data/lib/logging/lib/logging/appender.rb +0 -251
  256. data/lib/logging/lib/logging/appenders.rb +0 -131
  257. data/lib/logging/lib/logging/appenders/buffering.rb +0 -168
  258. data/lib/logging/lib/logging/appenders/console.rb +0 -60
  259. data/lib/logging/lib/logging/appenders/email.rb +0 -75
  260. data/lib/logging/lib/logging/appenders/file.rb +0 -58
  261. data/lib/logging/lib/logging/appenders/growl.rb +0 -197
  262. data/lib/logging/lib/logging/appenders/io.rb +0 -69
  263. data/lib/logging/lib/logging/appenders/rolling_file.rb +0 -293
  264. data/lib/logging/lib/logging/appenders/string_io.rb +0 -68
  265. data/lib/logging/lib/logging/appenders/syslog.rb +0 -194
  266. data/lib/logging/lib/logging/config/configurator.rb +0 -188
  267. data/lib/logging/lib/logging/config/yaml_configurator.rb +0 -191
  268. data/lib/logging/lib/logging/layout.rb +0 -117
  269. data/lib/logging/lib/logging/layouts.rb +0 -47
  270. data/lib/logging/lib/logging/layouts/basic.rb +0 -32
  271. data/lib/logging/lib/logging/layouts/parseable.rb +0 -211
  272. data/lib/logging/lib/logging/layouts/pattern.rb +0 -311
  273. data/lib/logging/lib/logging/log_event.rb +0 -45
  274. data/lib/logging/lib/logging/logger.rb +0 -503
  275. data/lib/logging/lib/logging/repository.rb +0 -232
  276. data/lib/logging/lib/logging/root_logger.rb +0 -61
  277. data/lib/logging/lib/logging/stats.rb +0 -278
  278. data/lib/logging/lib/logging/utils.rb +0 -153
  279. data/lib/logging/lib/spec/logging_helper.rb +0 -34
  280. data/lib/logging/test/appenders/test_buffered_io.rb +0 -176
  281. data/lib/logging/test/appenders/test_console.rb +0 -66
  282. data/lib/logging/test/appenders/test_email.rb +0 -170
  283. data/lib/logging/test/appenders/test_file.rb +0 -95
  284. data/lib/logging/test/appenders/test_growl.rb +0 -127
  285. data/lib/logging/test/appenders/test_io.rb +0 -129
  286. data/lib/logging/test/appenders/test_rolling_file.rb +0 -200
  287. data/lib/logging/test/appenders/test_syslog.rb +0 -194
  288. data/lib/logging/test/benchmark.rb +0 -86
  289. data/lib/logging/test/config/test_configurator.rb +0 -70
  290. data/lib/logging/test/config/test_yaml_configurator.rb +0 -40
  291. data/lib/logging/test/layouts/test_basic.rb +0 -42
  292. data/lib/logging/test/layouts/test_json.rb +0 -112
  293. data/lib/logging/test/layouts/test_pattern.rb +0 -198
  294. data/lib/logging/test/layouts/test_yaml.rb +0 -121
  295. data/lib/logging/test/setup.rb +0 -44
  296. data/lib/logging/test/test_appender.rb +0 -152
  297. data/lib/logging/test/test_consolidate.rb +0 -46
  298. data/lib/logging/test/test_layout.rb +0 -110
  299. data/lib/logging/test/test_log_event.rb +0 -80
  300. data/lib/logging/test/test_logger.rb +0 -699
  301. data/lib/logging/test/test_logging.rb +0 -267
  302. data/lib/logging/test/test_repository.rb +0 -158
  303. data/lib/logging/test/test_root_logger.rb +0 -81
  304. data/lib/logging/test/test_stats.rb +0 -274
  305. data/lib/logging/test/test_utils.rb +0 -116
  306. data/plugins/application/plugin.yaml +0 -11
  307. data/plugins/application_swt/plugin.yaml +0 -11
  308. data/plugins/auto_indenter/plugin.yaml +0 -12
  309. data/plugins/core/plugin.yaml +0 -7
  310. data/plugins/edit_view/plugin.yaml +0 -14
  311. data/plugins/edit_view_swt/plugin.yaml +0 -14
  312. data/plugins/project/plugin.yaml +0 -12
  313. data/plugins/redcar/plugin.yaml +0 -18
  314. data/plugins/repl/plugin.yaml +0 -12
  315. data/plugins/tree/plugin.yaml +0 -14
  316. data/plugins/tree_view_swt/plugin.yaml +0 -14
@@ -0,0 +1,321 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>fileTypes</key>
6
+ <array>
7
+ <string>ps</string>
8
+ <string>eps</string>
9
+ </array>
10
+ <key>firstLineMatch</key>
11
+ <string>^%!PS</string>
12
+ <key>foldingStartMarker</key>
13
+ <string>/\*\*|\{\s*$</string>
14
+ <key>foldingStopMarker</key>
15
+ <string>\*\*/|^\s*\}</string>
16
+ <key>keyEquivalent</key>
17
+ <string>^~P</string>
18
+ <key>name</key>
19
+ <string>Postscript</string>
20
+ <key>patterns</key>
21
+ <array>
22
+ <dict>
23
+ <key>begin</key>
24
+ <string>\(</string>
25
+ <key>beginCaptures</key>
26
+ <dict>
27
+ <key>0</key>
28
+ <dict>
29
+ <key>name</key>
30
+ <string>punctuation.definition.string.begin.postscript</string>
31
+ </dict>
32
+ </dict>
33
+ <key>end</key>
34
+ <string>\)</string>
35
+ <key>endCaptures</key>
36
+ <dict>
37
+ <key>0</key>
38
+ <dict>
39
+ <key>name</key>
40
+ <string>punctuation.definition.string.end.postscript</string>
41
+ </dict>
42
+ </dict>
43
+ <key>name</key>
44
+ <string>string.other.postscript</string>
45
+ <key>patterns</key>
46
+ <array>
47
+ <dict>
48
+ <key>include</key>
49
+ <string>#string_content</string>
50
+ </dict>
51
+ </array>
52
+ </dict>
53
+ <dict>
54
+ <key>captures</key>
55
+ <dict>
56
+ <key>1</key>
57
+ <dict>
58
+ <key>name</key>
59
+ <string>keyword.other.DSC.postscript</string>
60
+ </dict>
61
+ <key>3</key>
62
+ <dict>
63
+ <key>name</key>
64
+ <string>string.unquoted.DSC.postscript</string>
65
+ </dict>
66
+ </dict>
67
+ <key>match</key>
68
+ <string>^(%%(BeginBinary:|BeginCustomColor:|BeginData:|BeginDefaults|BeginDocument:|BeginEmulation:|BeginExitServer:|BeginFeature:|BeginFile:|BeginFont:|BeginObject:|BeginPageSetup:|BeginPaperSize:|BeginPreview:|BeginProcSet|BeginProcessColor:|BeginProlog|BeginResource:|BeginSetup|BoundingBox:|CMYKCustomColor:|ChangeFont:|Copyright:|CreationDate:|Creator:|DocumentCustomColors:|DocumentData:|DocumentFonts:|DocumentMedia:|DocumentNeededFiles:|DocumentNeededFonts:|DocumentNeededProcSets:|DocumentNeededResources:|DocumentPaperColors:|DocumentPaperForms:|DocumentPaperSizes:|DocumentPaperWeights:|DocumentPrinterRequired:|DocumentProcSets:|DocumentProcessColors:|DocumentSuppliedFiles:|DocumentSuppliedFonts:|DocumentSuppliedProcSets:|DocumentSuppliedResources:|EOF|Emulation:|EndBinary:|EndComments|EndCustomColor:|EndData:|EndDefaults|EndDocument:|EndEmulation:|EndExitServer:|EndFeature:|EndFile:|EndFont:|EndObject:|EndPageSetup:|EndPaperSize:|EndPreview:|EndProcSet|EndProcessColor:|EndProlog|EndResource:|EndSetup|ExecuteFile:|Extensions:|Feature:|For:|IncludeDocument:|IncludeFeature:|IncludeFile:|IncludeFont:|IncludeProcSet:|IncludeResource:|LanguageLevel:|OperatorIntervention:|OperatorMessage:|Orientation:|Page:|PageBoundingBox:|PageCustomColors|PageCustomColors:|PageFiles:|PageFonts:|PageMedia:|PageOrder:|PageOrientation:|PageProcessColors|PageProcessColors:|PageRequirements:|PageResources:|PageTrailer|Pages:|PaperColor:|PaperForm:|PaperSize:|PaperWeight:|ProofMode:|RGBCustomColor:|Requirements:|Routing:|Title:|Trailer|VMlocation:|VMusage:|Version|Version:|\+|\?BeginFeatureQuery:|\?BeginFileQuery:|\?BeginFontListQuery:|\?BeginFontQuery:|\?BeginPrinterQuery:|\?BeginProcSetQuery:|\?BeginQuery:|\?BeginResourceListQuery:|\?BeginResourceQuery:|\?BeginVMStatus:|\?EndFeatureQuery:|\?EndFileQuery:|\?EndFontListQuery:|\?EndFontQuery:|\?EndPrinterQuery:|\?EndProcSetQuery:|\?EndQuery:|\?EndResourceListQuery:|\?EndResourceQuery:|\?EndVMStatus:))\s*(.*)$\n?</string>
69
+ <key>name</key>
70
+ <string>meta.Document-Structuring-Comment.postscript</string>
71
+ </dict>
72
+ <dict>
73
+ <key>captures</key>
74
+ <dict>
75
+ <key>1</key>
76
+ <dict>
77
+ <key>name</key>
78
+ <string>punctuation.definition.comment.postscript</string>
79
+ </dict>
80
+ </dict>
81
+ <key>match</key>
82
+ <string>(%).*$\n?</string>
83
+ <key>name</key>
84
+ <string>comment.line.percentage.postscript</string>
85
+ </dict>
86
+ <dict>
87
+ <key>begin</key>
88
+ <string>\&lt;\&lt;</string>
89
+ <key>captures</key>
90
+ <dict>
91
+ <key>0</key>
92
+ <dict>
93
+ <key>name</key>
94
+ <string>punctuation.definition.dictionary.postscript</string>
95
+ </dict>
96
+ </dict>
97
+ <key>end</key>
98
+ <string>\&gt;\&gt;</string>
99
+ <key>name</key>
100
+ <string>meta.dictionary.postscript</string>
101
+ <key>patterns</key>
102
+ <array>
103
+ <dict>
104
+ <key>include</key>
105
+ <string>$self</string>
106
+ </dict>
107
+ </array>
108
+ </dict>
109
+ <dict>
110
+ <key>begin</key>
111
+ <string>\[</string>
112
+ <key>captures</key>
113
+ <dict>
114
+ <key>0</key>
115
+ <dict>
116
+ <key>name</key>
117
+ <string>punctuation.definition.array.postscript</string>
118
+ </dict>
119
+ </dict>
120
+ <key>end</key>
121
+ <string>\]</string>
122
+ <key>name</key>
123
+ <string>meta.array.postscript</string>
124
+ <key>patterns</key>
125
+ <array>
126
+ <dict>
127
+ <key>include</key>
128
+ <string>$self</string>
129
+ </dict>
130
+ </array>
131
+ </dict>
132
+ <dict>
133
+ <key>begin</key>
134
+ <string>{</string>
135
+ <key>captures</key>
136
+ <dict>
137
+ <key>0</key>
138
+ <dict>
139
+ <key>name</key>
140
+ <string>punctuation.definition.procedure.postscript</string>
141
+ </dict>
142
+ </dict>
143
+ <key>end</key>
144
+ <string>}</string>
145
+ <key>name</key>
146
+ <string>meta.procedure.postscript</string>
147
+ <key>patterns</key>
148
+ <array>
149
+ <dict>
150
+ <key>include</key>
151
+ <string>$self</string>
152
+ </dict>
153
+ </array>
154
+ </dict>
155
+ <dict>
156
+ <key>begin</key>
157
+ <string>\&lt;\~</string>
158
+ <key>beginCaptures</key>
159
+ <dict>
160
+ <key>0</key>
161
+ <dict>
162
+ <key>name</key>
163
+ <string>punctuation.definition.string.begin.postscript</string>
164
+ </dict>
165
+ </dict>
166
+ <key>end</key>
167
+ <string>\~\&gt;</string>
168
+ <key>endCaptures</key>
169
+ <dict>
170
+ <key>0</key>
171
+ <dict>
172
+ <key>name</key>
173
+ <string>punctuation.definition.string.end.postscript</string>
174
+ </dict>
175
+ </dict>
176
+ <key>name</key>
177
+ <string>string.other.base85.postscript</string>
178
+ <key>patterns</key>
179
+ <array>
180
+ <dict>
181
+ <key>match</key>
182
+ <string>[!-z\s]+</string>
183
+ </dict>
184
+ <dict>
185
+ <key>match</key>
186
+ <string>.</string>
187
+ <key>name</key>
188
+ <string>invalid.illegal.base85.char.postscript</string>
189
+ </dict>
190
+ </array>
191
+ </dict>
192
+ <dict>
193
+ <key>begin</key>
194
+ <string>\&lt;</string>
195
+ <key>beginCaptures</key>
196
+ <dict>
197
+ <key>0</key>
198
+ <dict>
199
+ <key>name</key>
200
+ <string>punctuation.definition.string.begin.postscript</string>
201
+ </dict>
202
+ </dict>
203
+ <key>end</key>
204
+ <string>\&gt;</string>
205
+ <key>endCaptures</key>
206
+ <dict>
207
+ <key>0</key>
208
+ <dict>
209
+ <key>name</key>
210
+ <string>punctuation.definition.string.end.postscript</string>
211
+ </dict>
212
+ </dict>
213
+ <key>name</key>
214
+ <string>string.other.hexadecimal.postscript</string>
215
+ <key>patterns</key>
216
+ <array>
217
+ <dict>
218
+ <key>match</key>
219
+ <string>[0-9A-Fa-f\s]+</string>
220
+ </dict>
221
+ <dict>
222
+ <key>match</key>
223
+ <string>.</string>
224
+ <key>name</key>
225
+ <string>invalid.illegal.hexadecimal.char.postscript</string>
226
+ </dict>
227
+ </array>
228
+ </dict>
229
+ <dict>
230
+ <key>comment</key>
231
+ <string>well, not really, but short of listing rules for all bases from 2-36 best we can do</string>
232
+ <key>match</key>
233
+ <string>[0-3]?[0-9]#[0-9a-zA-Z]+</string>
234
+ <key>name</key>
235
+ <string>constant.numeric.radix.postscript</string>
236
+ </dict>
237
+ <dict>
238
+ <key>match</key>
239
+ <string>(\-|\+)?\d+(\.\d*)?([eE](\-|\+)?\d+)?</string>
240
+ <key>name</key>
241
+ <string>constant.numeric.postscript</string>
242
+ </dict>
243
+ <dict>
244
+ <key>match</key>
245
+ <string>(\-|\+)?\.\d+([eE](\-|\+)?\d+)?</string>
246
+ <key>name</key>
247
+ <string>constant.numeric.postscript</string>
248
+ </dict>
249
+ <dict>
250
+ <key>match</key>
251
+ <string>\b(abs|add|aload|anchorsearch|and|arc|arcn|arct|arcto|array|ashow|astore|atan|awidthshow|begin|bind|bitshift|bytesavailable|cachestatus|ceiling|charpath|clear|cleartomark|cleardictstack|clip|clippath|closefile|closepath|colorimage|concat|concatmatrix|condition|configurationerror|copy|copypage|cos|count|countdictstack|countexecstack|counttomark|cshow|currentblackgeneration|currentcacheparams|currentcmykcolor|currentcolor|currentcolorrendering|currentcolorscreen|currentcolorspace|currentcolortransfer|currentcontext|currentdash|currentdevparams|currentdict|currentfile|currentflat|currentfont|currentglobal|currentgray|currentgstate|currenthalftone|currenthalftonephase|currenthsbcolor|currentlinecap|currentlinejoin|currentlinewidth|currentmatrix|currentmiterlimit|currentobjectformat|currentpacking|currentpagedevice|currentpoint|currentrgbcolor|currentscreen|currentshared|currentstrokeadjust|currentsystemparams|currenttransfer|currentundercolorremoval|currentuserparams|curveto|cvi|cvlit|cvn|cvr|cvrs|cvs|cvx|def|defaultmatrix|definefont|defineresource|defineusername|defineuserobject|deletefile|detach|deviceinfo|dict|dictfull|dictstack|dictstackoverflow|dictstackunderflow|div|dtransform|dup|echo|eexec|end|eoclip|eofill|eoviewclip|eq|erasepage|errordict|exch|exec|execform|execstack|execstackoverflow|execuserobject|executeonly|executive|exit|exp|false|file|filenameforall|fileposition|fill|filter|findencoding|findfont|findresource|flattenpath|floor|flush|flushfile|FontDirectory|for|forall|fork|ge|get|getinterval|globaldict|GlobalFontDirectory|glyphshow|grestore|grestoreall|gsave|gstate|gt|handleerror|identmatrix|idiv|idtransform|if|ifelse|image|imagemask|index|ineofill|infill|initclip|initgraphics|initmatrix|initviewclip|instroke|internaldict|interrupt|inueofill|inufill|inustroke|invalidaccess|invalidcontext|invalidexit|invalidfileaccess|invalidfont|invalidid|invalidrestore|invertmatrix|ioerror|ISOLatin1Encoding|itransform|join|kshow|known|languagelevel|le|length|limitcheck|lineto|ln|load|lock|log|loop|lt|makefont|makepattern|mark|matrix|maxlength|mod|monitor|moveto|mul|ne|neg|newpath|noaccess|nocurrentpoint|not|notify|null|nulldevice|or|packedarray|pathbbox|pathforall|pop|print|printobject|product|prompt|pstack|put|putinterval|quit|rand|rangecheck|rcurveto|read|readhexstring|readline|readonly|readstring|realtime|rectclip|rectfill|rectstroke|rectviewclip|renamefile|repeat|resetfile|resourceforall|resourcestatus|restore|reversepath|revision|rlineto|rmoveto|roll|rootfont|rotate|round|rrand|run|save|scale|scalefont|scheck|search|selectfont|serialnumber|setbbox|setblackgeneration|setcachedevice|setcachedevice2|setcachelimit|setcacheparams|setcharwidth|setcmykcolor|setcolor|setcolorrendering|setcolorscreen|setcolorspace|setcolortransfer|setdash|setdevparams|setfileposition|setflat|setfont|setglobal|setgray|setgstate|sethalftone|sethalftonephase|sethsbcolor|setlinecap|setlinejoin|setlinewidth|setmatrix|setmiterlimit|setobjectformat|setoverprint|setpacking|setpagedevice|setpattern|setrgbcolor|setscreen|setshared|setstrokeadjust|setsystemparams|settransfer|setucacheparams|setundercolorremoval|setuserparams|setvmthreshold|shareddict|show|showpage|sin|sqrt|srand|stack|stackoverflow|stackunderflow|StandardEncoding|start|startjob|status|statusdict|stop|stopped|store|string|stringwidth|stroke|strokepath|sub|syntaxerror|systemdict|timeout|transform|translate|true|truncate|type|typecheck|token|uappend|ucache|ucachestatus|ueofill|ufill|undef|undefined|undefinedfilename|undefineresource|undefinedresult|undefinefont|undefineresource|undefinedresource|undefineuserobject|unmatchedmark|unregistered|upath|userdict|UserObjects|usertime|ustroke|ustrokepath|version|viewclip|viewclippath|VMerror|vmreclaim|vmstatus|wait|wcheck|where|widthshow|write|writehexstring|writeobject|writestring|wtranslation|xcheck|xor|xshow|xyshow|yield|yshow)\b</string>
252
+ <key>name</key>
253
+ <string>keyword.operator.postscript</string>
254
+ </dict>
255
+ <dict>
256
+ <key>match</key>
257
+ <string>//[^\(\)\&lt;\&gt;\[\]\{\}\/\%\s]+</string>
258
+ <key>name</key>
259
+ <string>variable.other.immediately-evaluated.postscript</string>
260
+ </dict>
261
+ <dict>
262
+ <key>match</key>
263
+ <string>/[^\(\)\&lt;\&gt;\[\]\{\}\/\%\s]+</string>
264
+ <key>name</key>
265
+ <string>variable.other.literal.postscript</string>
266
+ </dict>
267
+ <dict>
268
+ <key>comment</key>
269
+ <string>stuff like 22@ff will show as number 22 followed by name @ff, but should be name 22@ff!</string>
270
+ <key>match</key>
271
+ <string>[^\(\)\&lt;\&gt;\[\]\{\}\/\%\s]+</string>
272
+ <key>name</key>
273
+ <string>variable.other.name.postscript</string>
274
+ </dict>
275
+ </array>
276
+ <key>repository</key>
277
+ <dict>
278
+ <key>string_content</key>
279
+ <dict>
280
+ <key>patterns</key>
281
+ <array>
282
+ <dict>
283
+ <key>match</key>
284
+ <string>\\[0-7]{1,3}</string>
285
+ <key>name</key>
286
+ <string>constant.numeric.octal.postscript</string>
287
+ </dict>
288
+ <dict>
289
+ <key>match</key>
290
+ <string>\\(\\|[nrtbf\(\)]|[0-7]{1,3}|\r?\n)</string>
291
+ <key>name</key>
292
+ <string>constant.character.escape.postscript</string>
293
+ </dict>
294
+ <dict>
295
+ <key>match</key>
296
+ <string>\\</string>
297
+ <key>name</key>
298
+ <string>invalid.illegal.unknown-escape.postscript.ignored</string>
299
+ </dict>
300
+ <dict>
301
+ <key>begin</key>
302
+ <string>\(</string>
303
+ <key>end</key>
304
+ <string>\)</string>
305
+ <key>patterns</key>
306
+ <array>
307
+ <dict>
308
+ <key>include</key>
309
+ <string>#string_content</string>
310
+ </dict>
311
+ </array>
312
+ </dict>
313
+ </array>
314
+ </dict>
315
+ </dict>
316
+ <key>scopeName</key>
317
+ <string>source.postscript</string>
318
+ <key>uuid</key>
319
+ <string>B89483CD-6AE0-4517-BE2C-82F8083B7359</string>
320
+ </dict>
321
+ </plist>
@@ -0,0 +1,296 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>fileTypes</key>
6
+ <array>
7
+ <string>pde</string>
8
+ </array>
9
+ <key>foldingStartMarker</key>
10
+ <string>(/\*\*|\{\s*$)</string>
11
+ <key>foldingStopMarker</key>
12
+ <string>(\*\*/|^\s*\})</string>
13
+ <key>keyEquivalent</key>
14
+ <string>^~P</string>
15
+ <key>name</key>
16
+ <string>Processing</string>
17
+ <key>patterns</key>
18
+ <array>
19
+ <dict>
20
+ <key>match</key>
21
+ <string>\b(abs|acos|alpha|alpha|ambient|ambientLight|append|applyMatrix|arc|asin|atan2|atan|background|beginCamera|beginShape|bezier|bezierDetail|bezierPoint|bezierTangent|bezierVertex|binary|blend|blend|blue|boolean|box|brightness|byte|cache|camera|ceil|char|charAt|color|colorMode|concat|constrain|contract|copy|copy|cos|createFont|cursor|curve|curveDetail|curvePoint|curveSegments|curveTightness|curveVertex|day|degrees|delay|directionalLight|dist|duration|ellipse|ellipseMode|emissive|endCamera|endShape|equals|exp|expand|fill|filter|filter|float|floor|frameRate|frustum|get|get|green|hex|hint|hour|hue|image|imageMode|indexOf|int|join|keyPressed|keyReleased|length|lerp|lightFalloff|lightSpecular|lights|line|link|list|loadBytes|loadFont|loadImage|loadPixels|loadSound|loadStrings|log|lookat|loop|loop|mag|mask|max|millis|min|minute|modelX|modelY|modelZ|month|mouseDragged|mouseMoved|mousePressed|mouseReleased|nf|nfc|nfp|nfs|noCursor|noFill|noLoop|noLoop|noSmooth|noStroke|noTint|noise|noiseDetail|noiseSeed|normal|open|openStream|ortho|param|pause|perspective|play|point|pointLight|popMatrix|pow|print|printCamera|printMatrix|printProjection|println|pushMatrix|quad|radians|random|randomSeed|rect|rectMode|red|redraw|resetMatrix|reverse|rotate|rotateX|rotateY|rotateZ|round|saturation|save|saveBytes|saveFrame|saveStrings|scale|screenX|screenY|screenZ|second|set|set|shininess|shorten|sin|size|smooth|sort|specular|sphere|sphereDetail|splice|split|spotLight|sq|sqrt|status|stop|str|stroke|strokeCap|strokeJoin|strokeWeight|subset|substring|switch|tan|text|textAlign|textAscent|textDescent|textFont|textLeading|textMode|textSize|textWidth|texture|textureMode|time|tint|toLowerCase|toUpperCase|translate|triangle|trim|unHint|unbinary|unhex|updatePixels|vertex|volume|year|draw|setup)\b</string>
22
+ <key>name</key>
23
+ <string>support.function.processing</string>
24
+ </dict>
25
+ <dict>
26
+ <key>captures</key>
27
+ <dict>
28
+ <key>0</key>
29
+ <dict>
30
+ <key>name</key>
31
+ <string>punctuation.definition.comment.processing</string>
32
+ </dict>
33
+ </dict>
34
+ <key>match</key>
35
+ <string>/\*\*/</string>
36
+ <key>name</key>
37
+ <string>comment.block.empty.processing</string>
38
+ </dict>
39
+ <dict>
40
+ <key>begin</key>
41
+ <string>/\*</string>
42
+ <key>captures</key>
43
+ <dict>
44
+ <key>0</key>
45
+ <dict>
46
+ <key>name</key>
47
+ <string>punctuation.definition.comment.processing</string>
48
+ </dict>
49
+ </dict>
50
+ <key>end</key>
51
+ <string>\*/</string>
52
+ <key>name</key>
53
+ <string>comment.block.processing</string>
54
+ </dict>
55
+ <dict>
56
+ <key>begin</key>
57
+ <string>/\*\*</string>
58
+ <key>captures</key>
59
+ <dict>
60
+ <key>0</key>
61
+ <dict>
62
+ <key>name</key>
63
+ <string>punctuation.definition.comment.processing</string>
64
+ </dict>
65
+ </dict>
66
+ <key>end</key>
67
+ <string>\*/</string>
68
+ <key>name</key>
69
+ <string>comment.block.documentation.processing</string>
70
+ <key>patterns</key>
71
+ <array>
72
+ <dict>
73
+ <key>captures</key>
74
+ <dict>
75
+ <key>1</key>
76
+ <dict>
77
+ <key>name</key>
78
+ <string>keyword.other.documentation.params.processing</string>
79
+ </dict>
80
+ <key>2</key>
81
+ <dict>
82
+ <key>name</key>
83
+ <string>keyword.other.documentation.value.processing</string>
84
+ </dict>
85
+ </dict>
86
+ <key>match</key>
87
+ <string>\*\s*@(param)\s*([a-z][a-zA-Z0-9_]+)\s*</string>
88
+ </dict>
89
+ <dict>
90
+ <key>captures</key>
91
+ <dict>
92
+ <key>1</key>
93
+ <dict>
94
+ <key>name</key>
95
+ <string>keyword.other.embedded-docs.params.processing</string>
96
+ </dict>
97
+ </dict>
98
+ <key>match</key>
99
+ <string>\*\s*@([a-zA-Z0-9_-]+)\s*</string>
100
+ </dict>
101
+ </array>
102
+ </dict>
103
+ <dict>
104
+ <key>captures</key>
105
+ <dict>
106
+ <key>1</key>
107
+ <dict>
108
+ <key>name</key>
109
+ <string>punctuation.definition.comment.processing</string>
110
+ </dict>
111
+ </dict>
112
+ <key>match</key>
113
+ <string>(//).*$\n?</string>
114
+ <key>name</key>
115
+ <string>comment.line.double-slash.processing</string>
116
+ </dict>
117
+ <dict>
118
+ <key>match</key>
119
+ <string>\b(class|interface|void|color|string|byte|short|char|int|long|float|double|boolean|[A-Z][A-Za-z0-9]+)\b</string>
120
+ <key>name</key>
121
+ <string>storage.type.processing</string>
122
+ </dict>
123
+ <dict>
124
+ <key>match</key>
125
+ <string>\b(private|protected|public)\b</string>
126
+ <key>name</key>
127
+ <string>storage.modifier.access-control.processing</string>
128
+ </dict>
129
+ <dict>
130
+ <key>match</key>
131
+ <string>\b(abstract|final|native|static|transient|synchronized|volatile|strictfp|extends|implements)\b</string>
132
+ <key>name</key>
133
+ <string>storage.modifier.processing</string>
134
+ </dict>
135
+ <dict>
136
+ <key>match</key>
137
+ <string>\b(try|catch|finally|throw)\b</string>
138
+ <key>name</key>
139
+ <string>keyword.control.catch-exception.processing</string>
140
+ </dict>
141
+ <dict>
142
+ <key>match</key>
143
+ <string>\b(return|break|case|continue|default|do|while|for|switch|if|else)\b</string>
144
+ <key>name</key>
145
+ <string>keyword.control.processing</string>
146
+ </dict>
147
+ <dict>
148
+ <key>match</key>
149
+ <string>\b(import|new|package|throws)\b</string>
150
+ <key>name</key>
151
+ <string>keyword.other.class-fns.processing</string>
152
+ </dict>
153
+ <dict>
154
+ <key>match</key>
155
+ <string>\b(instanceof)\b</string>
156
+ <key>name</key>
157
+ <string>keyword.operator.processing</string>
158
+ </dict>
159
+ <dict>
160
+ <key>match</key>
161
+ <string>\b(false|null|true)\b</string>
162
+ <key>name</key>
163
+ <string>constant.language.processing</string>
164
+ </dict>
165
+ <dict>
166
+ <key>match</key>
167
+ <string>\b(focused|frameCount|frameRate|height|height|key|keyCode|keyPressed|mouseButton|mousePressed|mouseX|mouseY|online|pixels|pmouseX|pmouseY|screen|width)\b</string>
168
+ <key>name</key>
169
+ <string>constant.other.processing</string>
170
+ </dict>
171
+ <dict>
172
+ <key>match</key>
173
+ <string>\b(ADD|ALIGN_CENTER|ALIGN_LEFT|ALIGN_RIGHT|ALPHA|ALPHA_MASK|ALT|AMBIENT|ARGB|ARROW|BACKSPACE|BEVEL|BLEND|BLEND|BLUE_MASK|BLUR|CENTER|CENTER_RADIUS|CHATTER|CODED|COMPLAINT|COMPONENT|COMPOSITE|CONCAVE_POLYGON|CONTROL|CONVEX_POLYGON|CORNER|CORNERS|CROSS|CUSTOM|DARKEST|DEGREES|DEG_TO_RAD|DELETE|DIFFERENCE|DIFFUSE|DISABLED|DISABLE_TEXT_SMOOTH|DOWN|ENTER|EPSILON|ESC|GIF|GREEN_MASK|GREY|HALF|HALF_PI|HALF_PI|HAND|HARD_LIGHT|HSB|IMAGE|INVERT|JAVA2D|JPEG|LEFT|LIGHTEST|LINES|LINE_LOOP|LINE_STRIP|MAX_FLOAT|MITER|MODEL|MOVE|MULTIPLY|NORMALIZED|NO_DEPTH_TEST|NTSC|ONE|OPAQUE|OPENGL|ORTHOGRAPHIC|OVERLAY|P2D|P3D|PAL|PERSPECTIVE|PI|PI|PIXEL_CENTER|POINTS|POLYGON|POSTERIZE|PROBLEM|PROJECT|QUADS|QUAD_STRIP|QUARTER_PI|RADIANS|RAD_TO_DEG|RED_MASK|REPLACE|RETURN|RGB|RIGHT|ROUND|SCREEN|SECAM|SHIFT|SOFT_LIGHT|SPECULAR|SQUARE|SUBTRACT|SVIDEO|TAB|TARGA|TEXT|TFF|THIRD_PI|THRESHOLD|TIFF|TRIANGLES|TRIANGLE_FAN|TRIANGLE_STRIP|TUNER|TWO|TWO_PI|TWO_PI|UP|WAIT|WHITESPACE)\b</string>
174
+ <key>name</key>
175
+ <string>support.constant.processing</string>
176
+ </dict>
177
+ <dict>
178
+ <key>match</key>
179
+ <string>\b(Array|Character|Integer|Math|Object|PFont|PImage|PSound|StringBuffer|Thread)\b</string>
180
+ <key>name</key>
181
+ <string>support.class.processing</string>
182
+ </dict>
183
+ <dict>
184
+ <key>match</key>
185
+ <string>\b(this|super)\b</string>
186
+ <key>name</key>
187
+ <string>variable.language.processing</string>
188
+ </dict>
189
+ <dict>
190
+ <key>match</key>
191
+ <string>\b((0(x|X)[0-9a-fA-F]*)|(([0-9]+\.?[0-9]*)|(\.[0-9]+))((e|E)(\+|-)?[0-9]+)?)([LlFfUuDd]|UL|ul)?\b</string>
192
+ <key>name</key>
193
+ <string>constant.numeric.processing</string>
194
+ </dict>
195
+ <dict>
196
+ <key>begin</key>
197
+ <string>"</string>
198
+ <key>beginCaptures</key>
199
+ <dict>
200
+ <key>0</key>
201
+ <dict>
202
+ <key>name</key>
203
+ <string>punctuation.definition.string.begin.processing</string>
204
+ </dict>
205
+ </dict>
206
+ <key>end</key>
207
+ <string>"</string>
208
+ <key>endCaptures</key>
209
+ <dict>
210
+ <key>0</key>
211
+ <dict>
212
+ <key>name</key>
213
+ <string>punctuation.definition.string.end.processing</string>
214
+ </dict>
215
+ </dict>
216
+ <key>name</key>
217
+ <string>string.quoted.double.processing</string>
218
+ <key>patterns</key>
219
+ <array>
220
+ <dict>
221
+ <key>match</key>
222
+ <string>\\.</string>
223
+ <key>name</key>
224
+ <string>constant.character.escape.processing</string>
225
+ </dict>
226
+ </array>
227
+ </dict>
228
+ <dict>
229
+ <key>begin</key>
230
+ <string>'</string>
231
+ <key>beginCaptures</key>
232
+ <dict>
233
+ <key>0</key>
234
+ <dict>
235
+ <key>name</key>
236
+ <string>punctuation.definition.string.begin.processing</string>
237
+ </dict>
238
+ </dict>
239
+ <key>end</key>
240
+ <string>'</string>
241
+ <key>endCaptures</key>
242
+ <dict>
243
+ <key>0</key>
244
+ <dict>
245
+ <key>name</key>
246
+ <string>punctuation.definition.string.end.processing</string>
247
+ </dict>
248
+ </dict>
249
+ <key>name</key>
250
+ <string>string.quoted.single.processing</string>
251
+ <key>patterns</key>
252
+ <array>
253
+ <dict>
254
+ <key>match</key>
255
+ <string>\\.</string>
256
+ <key>name</key>
257
+ <string>constant.character.escape.processing</string>
258
+ </dict>
259
+ </array>
260
+ </dict>
261
+ <dict>
262
+ <key>captures</key>
263
+ <dict>
264
+ <key>1</key>
265
+ <dict>
266
+ <key>name</key>
267
+ <string>storage.type.class.processing</string>
268
+ </dict>
269
+ <key>2</key>
270
+ <dict>
271
+ <key>name</key>
272
+ <string>entity.name.type.class.processing</string>
273
+ </dict>
274
+ <key>3</key>
275
+ <dict>
276
+ <key>name</key>
277
+ <string>storage.modifier.extends.processing</string>
278
+ </dict>
279
+ <key>4</key>
280
+ <dict>
281
+ <key>name</key>
282
+ <string>entity.other.inherited-class.processing</string>
283
+ </dict>
284
+ </dict>
285
+ <key>match</key>
286
+ <string>\b(class)\s+([a-zA-Z_](?:\w|\.)*)(?:\s+(extends)\s+([a-zA-Z_](?:\w|\.)*))?</string>
287
+ <key>name</key>
288
+ <string>meta.class.processing</string>
289
+ </dict>
290
+ </array>
291
+ <key>scopeName</key>
292
+ <string>source.processing</string>
293
+ <key>uuid</key>
294
+ <string>EF0D256C-2FCB-4A87-9250-0F5F82A366B9</string>
295
+ </dict>
296
+ </plist>