redcar 0.5.2dev → 0.5.3dev
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +25 -13
- data/Rakefile +1 -1
- data/bin/redcar +3 -2
- data/lib/plugin_manager/README.md +3 -0
- data/lib/plugin_manager/lib/plugin_manager.rb +138 -47
- data/lib/plugin_manager/lib/plugin_manager/definition_builder.rb +19 -1
- data/lib/plugin_manager/lib/plugin_manager/plugin_definition.rb +11 -3
- data/lib/plugin_manager/spec/fixtures/{error_in_definition → plugin_loading/error_in_definition}/core/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{error_in_plugin → plugin_loading/error_in_plugin}/core/core.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{error_in_plugin → plugin_loading/error_in_plugin}/core/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{example → plugin_loading/example}/core/core.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{example → plugin_loading/example}/core/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{example → plugin_loading/example}/debug/debug.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{example → plugin_loading/example}/debug/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{example → plugin_loading/example}/extras/extras.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{example → plugin_loading/example}/extras/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{two_versions1 → plugin_loading/two_versions1}/core/core.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{two_versions1 → plugin_loading/two_versions1}/core/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{two_versions1 → plugin_loading/two_versions1}/core2/core.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{two_versions1 → plugin_loading/two_versions1}/core2/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{two_versions2 → plugin_loading/two_versions2}/core/core.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{two_versions2 → plugin_loading/two_versions2}/core/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{two_versions2 → plugin_loading/two_versions2}/core2/core.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{two_versions2 → plugin_loading/two_versions2}/core2/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{unmet_dependencies1 → plugin_loading/unmet_dependencies1}/core/core.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{unmet_dependencies1 → plugin_loading/unmet_dependencies1}/core/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{unmet_dependencies1 → plugin_loading/unmet_dependencies1}/debug/debug.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{unmet_dependencies1 → plugin_loading/unmet_dependencies1}/debug/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{unmet_dependencies2 → plugin_loading/unmet_dependencies2}/core/core.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{unmet_dependencies2 → plugin_loading/unmet_dependencies2}/core/plugin.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{unmet_dependencies2 → plugin_loading/unmet_dependencies2}/debug/debug.rb +0 -0
- data/lib/plugin_manager/spec/fixtures/{unmet_dependencies2 → plugin_loading/unmet_dependencies2}/debug/plugin.rb +0 -0
- data/lib/plugin_manager/spec/plugin_manager_spec.rb +54 -16
- data/lib/redcar.rb +68 -62
- data/lib/redcar/installer.rb +8 -13
- data/lib/redcar/jvm_options_probe.rb +14 -0
- data/lib/redcar/runner.rb +55 -5
- data/plugins/application/features/support/env.rb +6 -6
- data/plugins/application/icons/redcar-splash.png +0 -0
- data/plugins/application/lib/application.rb +44 -2
- data/plugins/application/lib/application/toolbar.rb +91 -0
- data/plugins/application/lib/application/toolbar/builder.rb +80 -0
- data/plugins/application/lib/application/toolbar/builder/group.rb +47 -0
- data/plugins/application/lib/application/toolbar/item.rb +72 -0
- data/plugins/application/lib/application/toolbar/lazy_toolbar.rb +25 -0
- data/plugins/application/lib/application/window.rb +9 -1
- data/plugins/application/spec/spec_helper.rb +1 -1
- data/plugins/application_swt/lib/application_swt.rb +23 -41
- data/plugins/application_swt/lib/application_swt/toolbar.rb +134 -0
- data/plugins/application_swt/lib/application_swt/toolbar/binding_translator.rb +94 -0
- data/plugins/application_swt/lib/application_swt/window.rb +33 -4
- data/plugins/application_swt/plugin.rb +2 -1
- data/plugins/application_swt/spec/spec_helper.rb +1 -1
- data/plugins/auto_indenter/spec/spec_helper.rb +1 -1
- data/plugins/core/spec/spec_helper.rb +1 -1
- data/plugins/declarations/lib/declarations/select_tag_dialog.rb +5 -4
- data/plugins/declarations/spec/spec_helper.rb +1 -1
- data/plugins/document_search/features/replace.feature +17 -4
- data/plugins/document_search/lib/document_search/replace.rb +5 -3
- data/plugins/document_search/lib/document_search/search.rb +9 -10
- data/plugins/edit_view/features/cut_and_paste.feature +8 -10
- data/plugins/edit_view/lib/edit_view/grammars/default.rb +1 -1
- data/plugins/edit_view/lib/edit_view/grammars/ruby.rb +1 -1
- data/plugins/edit_view/spec/spec_helper.rb +1 -1
- data/plugins/edit_view_swt/lib/edit_view_swt.rb +3 -2
- data/plugins/edit_view_swt/spec/spec_helper.rb +1 -1
- data/plugins/project/lib/project/dir_controller.rb +1 -1
- data/plugins/project/lib/project/drb_service.rb +4 -4
- data/plugins/project/plugin.rb +2 -1
- data/plugins/project/spec/spec_helper.rb +1 -1
- data/plugins/redcar/redcar.rb +76 -40
- data/plugins/repl/spec/repl/clojure_mirror_spec.rb +2 -0
- data/plugins/repl/spec/repl/ruby_mirror_spec.rb +1 -1
- data/plugins/repl/spec/spec_helper.rb +1 -1
- data/plugins/runnables/spec/spec_helper.rb +1 -1
- data/plugins/scm/lib/scm.rb +1 -1
- data/plugins/scm/spec/spec_helper.rb +1 -1
- data/plugins/scm_git/vendor/ruby-git/lib/git/lib.rb +1 -1
- data/plugins/{application_swt/lib/application_swt/swt_wrapper.rb → swt/lib/swt.rb} +108 -2
- data/plugins/{application_swt/lib/application_swt → swt/lib/swt}/cucumber_patches.rb +0 -0
- data/plugins/swt/lib/swt/cucumber_runner.rb +23 -0
- data/plugins/swt/lib/swt/event_loop.rb +30 -0
- data/plugins/{application_swt/lib/application_swt → swt/lib}/swt/grid_data.rb +0 -0
- data/plugins/{application_swt/lib/application_swt → swt/lib}/swt/listener_helpers.rb +0 -0
- data/plugins/swt/plugin.rb +8 -0
- data/plugins/textmate/lib/textmate.rb +18 -27
- data/plugins/textmate/plugin.rb +1 -1
- data/plugins/tree/spec/spec_helper.rb +1 -1
- metadata +45 -904
- data/plugins/application_swt/lib/application_swt/cucumber_runner.rb +0 -25
- data/plugins/application_swt/lib/application_swt/event_loop.rb +0 -32
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Completions___Modules.tmPreferences +0 -95
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Completions___Modules_Identifiers.tmPreferences +0 -80
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Default_Tag_Inside_Virtual_Host.tmPreferences +0 -24
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___Directory.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___Location.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___VHost_Directory.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___VHost_Location.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/next_Symbols___Virtual_Host.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Snippets/next_AllowOverride___allow__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Snippets/next_Options___opt__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Snippets/next_VirtualHost___vhost__.plist +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Comments___comments__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Cut___cut__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Date___date__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Keywords___keyw__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Ping___ping__.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Pings___pings__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Tags___tags__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Snippets/next_Title___title__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Preferences/next_Symbol_List.tmPreferences +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Preferences/next_Symbol_List___Repository_Separator__.tmPreferences +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Preferences/next_Symbol_List___Repository_item_scopes__.tmPreferences +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Preferences/next_Symbol_List___Repository_items__.tmPreferences +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Begin_Captures.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Content_Name.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_ENV____TM___________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_End_Captures.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Grammar____Single_Quotes.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Patterns___Repository__.tmSnippet +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Require___Support__lib__________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule___Begin____End__.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule___Repository__.tmSnippet +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule________Begin____End___Inside_Rule__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule________Match___Inside_Rule__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/Snippets/next_Rule________Match___Repository__.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_Qt_C_____Completitions.tmPreferences +0 -161
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_Qt_C_____Indentation_Rules.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_qmake_Comments.tmPreferences +0 -24
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_qmake_Completitions.tmPreferences +0 -44
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Preferences/next_qmake_Typing_Pairs.tmPreferences +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_Block_Comment.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_Block_Comment_Newline.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_QTimer____singleShot_______.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_main___qmain__.tmSnippet +0 -23
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_qSort_______.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_qWarning___warn__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_qmake_Project_template_stub.tmSnippet +0 -36
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_toLatin1_____data_______latin__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C++ Qt.tmbundle/Snippets/next_toUtf8_____data____.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Comments___C______.tmPreferences +0 -42
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Disable_Spell_Checking.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Include_Completion.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Include_Completion___System__.tmPreferences +0 -38
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Include_typing_pairs.plist +0 -37
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Indentation_Rules.plist +0 -38
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Symbol_List___Indent_Class_Methods.tmPreferences +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Preferences/next_Template__cast_typing_pairs.plist +0 -29
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_010_main_______main__.plist +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_030_for_int_loop___fori__.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_Include_header_once_only_guard.plist +0 -28
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___1_begin_________1_end_______beginend__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___endif.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___ifndef__________define__________endif.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___include________Inc__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next___pragma_mark___mark__.plist +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_class______class__.plist +0 -24
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_do___while_loop___do__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_fprintf_______.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_if______if__.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_namespace______namespace__.plist +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_printf______printf__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_read_file___readF__.plist +0 -23
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_std____map___map__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_std____vector___v__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/C.tmbundle/Snippets/next_template___typename________template__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/next_Property_Completions.tmPreferences +0 -151
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/next_Property_Value_Completions.tmPreferences +0 -144
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/next_Symbol_List___Group.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Preferences/next_Symbol_list.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_Fixed_Position_Bottom_100___wide_IE6.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next___important_CSS_______.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background____color_image_repeat_attachment_position___background__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__attachment___scroll__fixed___background__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__color____color__hex___background__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__color____color__name___background__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__color____color__rgb___background__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__color____transparent___background__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__image____none___background__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__image____url___background__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__position____position___background__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_background__repeat____r__r__x__r__y__n__r___background__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border_____size_style_color___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__bottom___size_style_color___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__bottom__color___size_style_color___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__bottom__style___size_style_color___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__bottom__width___size_style_color___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__color___color___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__left___size_style_color___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__left__color___color___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__left__style___style___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__left__width___size___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__right___size_style_color___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__right__color___color___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__right__style___style___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__right__width___size___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__style___style___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__top___size_style_color___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__top__color___color___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__top__style___style___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__top__width___size___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_border__width___width___border__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_clear___value___clear__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_color____color__hex___color__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_color____color__name___color__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_color____color__rgb___color__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_cursor___type___cursor__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_cursor___url___cursor__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_direction___ltr__rtl___direction__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_display___block___display__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_display___common__types___display__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_display___inline___display__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_display___table__types___display__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_filter___AlphaImageLoader___for_IE_PNGs_____background__.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_float___left__right__none___float__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font_____style_variant_weight_size__line__height_font___family___font__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font___size_font___font__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__family_____family___font__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__size___size___font__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__style_____normal__italic__oblique___font__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__variant_____normal__small__caps___font__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_font__weight___weight___font__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_letter__spacing_____length__em___letter__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_letter__spacing_____length__px___letter__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style___type_position_image___list__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__image___url___list__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__position___pos___list__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___asian___list__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___marker__list__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___numeric___list__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___other___list__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_list__style__type___roman__alpha__greek___list__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin___T_R_B_L___margin__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin___V_H___margin__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin_____all___margin__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin__bottom___length___margin__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin__left___length___margin__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin__right___length___margin__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_margin__top___length___margin__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_marker__offset___auto___marker__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_marker__offset___length___marker__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_opacity_____for_Safari___FF_and_IE_____opacity__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_overflow___type___overflow__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding_____T_R_B_L___padding__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding_____V_H___padding__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding_____all___padding__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding__bottom___length___margin__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding__left___length___margin__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding__right___length___margin__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_padding__top___length___margin__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_position___type___position__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_properties_______________.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__align___left__center__right___txt__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__decoration___none__underline__overline__line__through__blink___text__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__indent___length___text__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__shadow___color__hex_x_y_blur___text__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__shadow___color__rgb_x_y_blur___text__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__shadow___none___text__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__transform___capitalize__upper__lower___text__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_text__transform___none___text__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_vertical__align___type___vertical__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_visibility___type___visibility__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_white__space____normal__pre__nowrap___white__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_word__spacing____length___word__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_word__spacing____normal___word__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/CSS.tmbundle/Snippets/next_z__index___index___z__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/next_Cucumber_Plain_Text_Feature_Completions.tmPreferences +0 -30
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/next_Symbol_list___Scenario.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/next_Symbol_list___Steps.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Cucumber.tmbundle/Preferences/next_Symbol_list___Steps_with_String.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Preferences/next_Indentation_Rules.tmPreferences +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Preferences/next_Symbol_List__Method__Constructor.tmPreferences +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_Continue_Block_Comment.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_err_format.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_foreach_reverse.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_if_else.tmSnippet +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_error.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_fatal.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_info.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_trace.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_log_warn.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_main_with_args.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_out_format.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_try_catch.tmSnippet +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_try_catch_finally.tmSnippet +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/D.tmbundle/Snippets/next_try_finally.tmSnippet +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Changed.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Deleted.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Diff_metadata.plist +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Header.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Inserted.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Markup_style___Range.plist +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Diff.tmbundle/Preferences/next_Symbol_List___Indent_Ranges.plist +0 -24
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Preferences/next_Disable_spell_checking_in_raw.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Preferences/next_Show_Heading_in_list.tmPreferences +0 -25
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_1.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_2.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_3.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_4.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Heading_5.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Left_Header.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Numbered_item.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Numbered_item_2.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Table_Cell.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Top_Header.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Unnumbered_item.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/DokuWiki.tmbundle/Snippets/next_Unnumbered_item_2.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Completions_HTML_Attributes.tmPreferences +0 -346
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Empty_tag_typing_pairs.plist +0 -26
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Symbol_List___ID.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Tag_Completions.tmPreferences +0 -30
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Preferences/next_Tag_preferences.plist +0 -48
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Arrow___arrow__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Backspace___backspace__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Backtab___backtab__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Command___command__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Control___control__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Delete___delete__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_HTML_4_0_Strict.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_XHTL_1_0_Frameset.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_XHTML_1_0_Strict.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_XHTML_1_0_Transitional.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_DocType_XHTML_1_1.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Down___down__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Embed_QT_movie___movie__.plist +0 -26
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Enter___enter__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Escape___escape__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_HTML________4_0_Transitional___doctype__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_5_0_only.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_5_5_only.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_5_x.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_6_and_below.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_6_only.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___Internet_Explorer_7__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_IE_Conditional_Comment___NOT_Internet_Explorer.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Input_with_Label.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Left___left__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Option___option__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Return___return__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Right___right__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Select_Box.tmSnippet +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Shift___shift__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Smart_return__indent_for_tag_pairs.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Tab___tab__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Up___up__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Wrap_Selection_In_Tag.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_Wrap_in___________________.plist +0 -14
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML_____input__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML_____textarea__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___a_mailto_____.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___base__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___body__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___br_____.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___div__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___form__.plist +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___h1__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___head__.plist +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___link__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___meta__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___nbsp___NonBreakingSpace.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___script__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___script_src_____.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___style__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___table__.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Snippets/next_XHTML___title__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Preferences/next_Indent_Patterns.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Preferences/next_Symbol_List.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Preferences/next_Typing_Pairs.plist +0 -42
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Snippets/next___.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Haskell.tmbundle/Snippets/next_t______f_t.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Hyperlink Helper.tmbundle/Preferences/next_Bulletin_Board.tmPreferences +0 -24
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Hyperlink Helper.tmbundle/Preferences/next_Fallback___not_supported__.tmPreferences +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Preferences/next_Indentation_Rules.plist +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Preferences/next_Typing_Pairs.plist +0 -37
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/next_Indented_Bracketed_Line.plist +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/next_Indented_return.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/next_Object_clone_do.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Io.tmbundle/Snippets/next_clone_do.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Indentation_Rules.tmPreferences +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Classes.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Inner_Class_Methods.tmPreferences +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Inner_Classes.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Inner_Inner_Class_Methods.tmPreferences +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Inner_Inner_Classes.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Preferences/next_Symbol_List___Method.plist +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_constant_string.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_else_if.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_for___each__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_import_junit_framework_TestCase__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_method___main__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Java.tmbundle/Snippets/next_test_case.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Preferences/next_Prototype_Completions.tmPreferences +0 -185
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Ajax_Options.tmSnippet +0 -23
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Create_Class_Alt.tmSnippet +0 -23
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Effect_Options.tmSnippet +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Enum_each___element__.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next_Enum_each___index__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next___.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/next___function___________.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next______Select_DOM_Element__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_____this__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajaxError.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajaxSend.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajaxSetup.tmSnippet +0 -28
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajaxSuccess.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____ajax__hash__.tmSnippet +0 -28
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____get.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____getIfModified.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____getJSON.tmSnippet +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____getScript.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____post.tmSnippet +0 -23
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next____trim.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___checked.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___contains____test____.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___disabled.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___empty.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___enabled.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___eq__n__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___even.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___first.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___first__child.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___first__of__type.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___gt__n__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___hidden.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___last.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___last__child.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___last__of__type.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___lt__n__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___not__s__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___nth__child__n__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___nth__last__child__n__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___nth__of__type__n__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___odd.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___only__child.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___only__of__type.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___parent.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___root.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next___visible.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_attr__hash__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_css__hash__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_fadeIn____with_callback.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_fadeOut____with_callback.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_fadeTo____with_callback.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_hide____with_callback.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_load___AHAH__.tmSnippet +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_show____with_callback.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_slideDown____with_callback.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_slideUp____with_callback.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript jQuery.tmbundle/Snippets/next_toggle___show__hide__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_JavaScript_Indent.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Banned.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Class.tmPreferences +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Instance.tmPreferences +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Sub_1.tmPreferences +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Preferences/next_Symbol_List_Sub_2.tmPreferences +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Get_Elements.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Object_Method.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Object_Method_String.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Object_Value_JS.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Object_key________key_____value__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_Prototype___proto__.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_for______________________.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_for_________________________faster__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_function___fun__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_if_____else.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/JavaScript.tmbundle/Snippets/next_setTimeout_function.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Beamer_Symbol_List.tmPreferences +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Cite_Completion.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Disable_Smart_Typing_after_Backslashes.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Label_Completion.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Miscellaneous___BibTeX__.tmPreferences +0 -53
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Smart_Typing___Strings__.tmPreferences +0 -65
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Spell_Checking___Disable_for_Comments.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Spell_Checking_in_Strings.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_Symbol_list.plist +0 -28
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Preferences/next_TexShop_comments.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Beamer_Overlay_Specification.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Change_Style_of_selected_text.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Displaymath_________.plist +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Gather__ed__.tmSnippet +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Item__description__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Lines_to_list_environment.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Math_mode__________.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_New_Line.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Sub_Paragraph.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Unnumbered_Equation.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Wrap_Selection_in_Environment.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Wrap_in___left____right.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next_Wrap_selection_in_double_quotes.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next___begin____________end____.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next___section______section__.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next___subsection______sub__.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Latex.tmbundle/Snippets/next___subsubsection______ssub__.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Lisp.tmbundle/Snippets/next_____.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/next_Disable_spell_checking_for_raw.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/next_Indent___Raw.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/next_Symbol_List___Heading.plist +0 -23
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Preferences/next_Typing_Pairs___Disable___for_Raw.plist +0 -42
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Snippets/next_Hard_linebreak.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Add_Magic_Methods_to_the_Symbol_List.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Completion___includes.tmPreferences +0 -30
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Disable_spellcheck_in_require.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Enable_Spellchecking_for_Docblocks.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Indentation_Rules.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Preferences/next_Symbols_List___functions.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_Continue_Block_Comment.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_Include_TextMate_Support_Script.tmSnippet +0 -25
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_class.tmSnippet +0 -26
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_class_var.tmSnippet +0 -23
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_constant_definition.tmSnippet +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_function.tmSnippet +0 -26
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_function_signature.tmSnippet +0 -26
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_header.tmSnippet +0 -30
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHPDoc_interface.tmSnippet +0 -26
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_PHP_Error_Catching.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_Special___Return_Between_PHP_Tags.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_Start_Docblock.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next___GLOBALS________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____COOKIE________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____ENV________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____FILES________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____GET________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____POST________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____REQUEST________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____SERVER________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next____SESSION________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_______________php.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_____.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_echo_________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_echo_htmlentities____________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_else_______.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_foreach_________________php_endforeach_____.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_if______________________php_else______________php_endif_____.tmSnippet +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_____php_if______________________php_endif_____.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_class______.tmSnippet +0 -27
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_define_____.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_defined_____.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_do_while_____.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_echo____.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_else_____.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_elseif_____.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_for_____.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_foreach_____.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_function_xx_____.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_if_____.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_if______a____b__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_if______else_____.tmSnippet +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_include_____.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_include_once_____.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_new_array_____.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_require_____.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_require_once_____.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_return_FALSE__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_return_TRUE__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_return___retVal__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_switch_____.tmSnippet +0 -24
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_switch______case__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_try___________catch__________________.tmSnippet +0 -23
- data/plugins/textmate/vendor/redcar-bundles/Bundles/PHP.tmbundle/Snippets/next_while_____.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl HTML-Template.tmbundle/Snippets/next_If__Else.tmSnippet +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl Template Toolkit.tmbundle/Preferences/next_Filename_Settings.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Conditional_if__else___ife__.plist +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Conditional_if__elsif__else___ifee__.plist +0 -23
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Conditional_one__line___unless__.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Conditional_one__line___xif__.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Function___sub__.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Loop_one__line___xforeach__.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_Loop_one__line___xwhile__.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Perl.tmbundle/Snippets/next_hash_pointer.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_draw___se__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_float_______float______.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_float___float__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_int_______int______.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_int___int__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_opengl___gl__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_setup___se__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_size___size__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_string_______string______.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_string___str__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Processing.tmbundle/Snippets/next_void_method___void__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Property List.tmbundle/Preferences/next_Indentation_Rules.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Property List.tmbundle/Preferences/next_Symbol_List.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Property List.tmbundle/Preferences/next_Typing_Pairs.plist +0 -50
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Preferences/next_Symbol_List.tmPreferences +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Preferences/next_Symbol_List___Hide_Decorator.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Inside_Class_Def___Insert_________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Inside_Function___Insert_________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Inside_String___Insert___________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_New_Class.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_New_Function.tmSnippet +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_New_Method.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_New_Property.tmSnippet +0 -25
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Try__Except.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Try__Except__Else.tmSnippet +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Try__Except__Else__Finally.tmSnippet +0 -23
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_Try__Except__Finally.tmSnippet +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Snippets/next_if___name____________main____.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Preferences/next_Symbol_List___Behaviour.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Preferences/next_Symbol_List___Example.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_Custom_Matcher.tmSnippet +0 -39
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_Require_spec_helper.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_Set_Controller_for_Spec.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_should_____.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_should_eql.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_should_not_____.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Snippets/next_should_not_eql.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Preferences/next_Template___ERB__.tmPreferences +0 -48
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Preferences/next_Template___Haml__.tmPreferences +0 -48
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_180_rails_form_tag.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_binary_column.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_boolean_column.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_controller_class.tmSnippet +0 -25
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_date_column.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_datetime_column.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_decimal_column.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_float_column.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_functional_test_class.tmSnippet +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_integer_column.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_lock_version_column.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_references_column.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_string_column.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_text_column.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_time_column.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_timestamp_column.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Create_timestamps_columns.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Migration_Create_Column_Continue___mccc__.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Migration_Create_Column___mcc__.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Migration_Drop_Create_Table___mdct__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Migration_Remove_and_Add_Column___mrac__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_RAILS_DEFAULT_LOGGER_debug___rdb__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Table_column__s___rename.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Test_Assert_Redirected_To___art__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_Test_Assert_Response___are__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next___3C_____Fixtures_identify____3Asymbol_______3E.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next___LABEL.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert__var____assigns____3Avar____.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert_redirected_to___nested_path__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert_redirected_to___nested_path_plural__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert_redirected_to___path__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_assert_redirected_to___path_plural__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_belongs_to___bt__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_def_create____resource.tmSnippet +0 -30
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_def_get_request.tmSnippet +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_def_post_request.tmSnippet +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_find____3Aall__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_find____3Afirst__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_find__id__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_for_loop_erb.tmSnippet +0 -23
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_check_box.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_checkbox.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_file_field.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_file_field_2.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_hidden_field.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_hidden_field_2.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_label.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_label_2.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_password_field.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_password_field_2.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_radio_box.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_radio_box_2.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_submit.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_submit_2.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_text_area.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_text_area_2.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_text_field.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_text_field_2.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_form_for_with_errors.tmSnippet +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_and_belongs_to_many___habtm__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_many___dependent________destroy.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_many___hm__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_many___through__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_has_one___ho__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to___nested_path__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to___nested_path_plural__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to___path__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to___path_plural__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_link_to_model.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_map______3Asym_proc__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_named_scope_lambda.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_hide_____2Aids__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_insert_html___position___id___partial__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_replace___id___partial__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_replace_html___id___partial__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_show_____2Aids__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_toggle_____2Aids__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_page_visual_effect___effect___id__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_rails_flash.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_rails_params.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_rails_session.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_redirect_to___nested_path__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_redirect_to___nested_path_plural__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_redirect_to___path__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_redirect_to___path_plural__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___action________ra__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___action__layout_____ral__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___file_____rf__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___file__use_full_path_____rfu__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___inline_____ri__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___inline__locals_____ril__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___inline__type_____rit__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___layout_____rl__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___nothing_____rn__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___nothing__status_____rns__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial_____rp__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial__collection_____rpc__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial__locals_____rpl__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial__object_____rpo__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___partial__status_____rps__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___text_____rt__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___text__layout____3Etrue_____rtlt__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___text__layout_____rtl__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___text__status_____rts__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_render___update__.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_respond_to___html__.tmSnippet +0 -21
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_returning_do___7Cvariable__7C___E2__80__A6_end.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_binary___tcbi__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_boolean___tcb__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_date___tcda__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_datetime___tcdt__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_decimal___tcd__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_float___tcf__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_integer___tci__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_lock_version___tcl__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_references___tcr__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_rename___tre__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_string___tcs__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_text___tct__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_time___tcti__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_timestamp___tcts__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_t_timestamps___tctss__.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_acceptance_of_if.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_associated___va__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_associated_if___vaif__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_confirmation_of___vc__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_confirmation_of_if___vcif__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_exclusion_of___ve__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_exclusion_of_if___veif__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_format_of_if.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_inclusion_of_if.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_length_of___vl__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_length_of_if.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_numericality_of_if.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_presence_of___vp__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_presence_of_if___vpif___2.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_uniqueness_of___vu__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_validates_uniqueness_of_if___vuif__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_verify____redirect___verify__.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_verify___verify__.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_xhr_delete.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_xhr_get.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_xhr_post.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Snippets/next_xhr_put.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Block_typing_pairs.plist +0 -42
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Completion___ENV___________variables.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Completion___require_strings.tmPreferences +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Symbo_List___Method.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Preferences/next_Symbol_List___No_Function_Call.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_060_ruby_if_else.plist +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_070_ruby_if.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_080_ruby_case.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Add_____________Marker.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Array_new__10________i____________Arr__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Benchmark_bmbm_______do____end.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Dir__________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Dir_glob___________do___file______end____Dir__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_File_foreach____________do___line______end____File__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_File_open________________file________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_File_read__________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Hash_new______hash___key___hash__key_______________Has__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Insert_ERb__s______________or_______________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Marshal_dump__obj___file______Md__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Marshal_load__obj______Ml__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_PStore_new________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_RDoc_documentation_block.tmSnippet +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_Wrap_in_Begin________Rescue________End.plist +0 -23
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_YAML_dump_______file______Yd____.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_YAML_load__file______Yl____.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_______usr__local__bin__ruby___w.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next___yields___RDoc_comment.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_alias_method_______am__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_all________e____________all__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_any________e____________any__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_application_code_______app__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert__________as__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_in_delta__________asid__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_instance_of__________asio__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_kind_of__________asko__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_match__________asm__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_nil__________asn__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_no_match__________asnm__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_not_equal__________asne__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_not_nil__________asnn__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_not_same__________asns__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_nothing_raised___________________asnr__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_nothing_thrown_____________asnt__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_operator__________aso__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_raise___________________asr__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_respond_to__________asrt__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_same__________ass__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_send__________ass__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_assert_throws___________________ast__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_attr_accessor_______rw__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_attr_reader_______r__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_attr_writer_______w__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_______DelegateClass____initialize____end____class__.plist +0 -24
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_______ParentClass____initialize____end.plist +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_______Struct____initialize____end.plist +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_______Test____Unit____TestCase____end____tc__.plist +0 -24
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class______self____end.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class____end____cla__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class____initialize____end.plist +0 -22
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class____instance_methods____undef____initialize____end____class__.plist +0 -30
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_class_from_name________clafn__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_classify______e____________clas__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_collect______e____________col__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_deep_copy__________dee__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_delegator______defd__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_delegators______defds__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_end.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_method_missing____end____mm__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_self____end____defs__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_def_test_____end____t__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_delete_if______e____________deli__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_detect______e____________det__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_directory____.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_do___obj______end___doo__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_downto__0________n____________dow__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each______e____________ea__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_byte______byte____________eab__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_char______chr____________eac____.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_cons____________group____________eac____.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_index______i____________eai__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_key______key____________eak__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_line______line____________eal__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_pair______name___val____________eap__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_slice______group____________eas__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_value______val____________eav__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_each_with_index______e___i____________eawi__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_elsif____.tmSnippet +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_embed_string_variable.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_extend_Forwardable____Forw__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_fetch__name________key____________fet__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_fill__range________i____________fil__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_find______e____________fin__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_find_all______e____________fina__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_flatten_once____fla__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_flunk__________fl__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_grep____pattern__________match____________gre__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_gsub________________match____________gsu__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_hash_pair_______.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_hash_pointer.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_include_Comparable_______Comp__.plist +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_include_Enumerable_______Enum__.plist +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_inject__init________mem___var____________inj__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_lambda______args____________lam__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_loop_________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_map______e____________map__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_map_with_index______e___i____________mapwi__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_max______a___b____________max__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_min______a___b____________min__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_module____ClassMethods____end.plist +0 -29
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_module____end.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_module____module_function____end.plist +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_namespace______do____end.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_open____path__or__url_______w_____do___doc______end___ope__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_open_yield_block_______.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_option_parse_____________optp__.plist +0 -43
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_partition______e____________par__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_path_from_here________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_randomize____ran__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_reject______e____________rej__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_require___________req__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_require___tc____________ts__.plist +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_require_gem_______.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_results_report_______________.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_reverse_each______e____________rea__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_scan________________match____________sca__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_select______e____________sel__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_singleton_class____.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_sort______a___b____________sor__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_sort_by______e____________sorb__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_step__2________e____________ste__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_sub________________match____________sub__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_task___task_name__________dependent_____tasks___do____end.tmSnippet +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_times______n____________tim__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_transaction_________do____end.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_unix_filter______uni__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_unless___unless__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_until_____end.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_upto__1_0__0_0________n____________upt__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_usage_if________usai__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_usage_unless________usau__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_while_____end.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_xmlread______.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_xpath_______________.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Snippets/next_zip__enums________row____________zip__.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/next_DynamicForward___df__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/next_Host___host__.tmSnippet +0 -20
- data/plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/next_IdentityFile___idf__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/SSH-Config.tmbundle/Snippets/next_LocalForward___lf__.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Scala.tmbundle/Snippets/next_Try__Catch__Finally.tmSnippet +0 -27
- data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_______usr__bin__env_____env__.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_case____esac___case__.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_elif______elif__.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_for________in________done___forin__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_for_____done___for__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_here_document___here__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_if_____then___if__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_until__________done__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/Snippets/next_while__________done__.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/next_Disable_spell_checking_for_all.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/next_Enable_spell_checking_for_strings.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/next_String__comment_typing_pairs.plist +0 -42
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Preferences/next_Symbol_list.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next_Continue_line_comment.plist +0 -35
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next_Escaped_Quote_Pair_____________.plist +0 -14
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next_Escaped_Single_Quote_Pair_____________.plist +0 -14
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next_Frame_text.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Source.tmbundle/Snippets/next___n.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/next_Markup_style___Bold.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/next_Markup_style___Italic.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/next_Markup_style___Underline.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Preferences/next_Spell_checking.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_010_Copyright.plist +0 -14
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Conitnue_bullet.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Conitnue_light_bullet.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Conitnue_star_bullet.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Insert_ISO_date.plist +0 -14
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Text.tmbundle/Snippets/next_Lorem_ipsum.plist +0 -14
- data/plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/next_Smart_Pairs___Regex_Character_Class__.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/next_Spell_Checking___Disable_for_CamelCase_Words.tmPreferences +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/next_Style___Separator.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/TextMate.tmbundle/Preferences/next_Style___Separator____Release_Notes.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Preferences/next_Disable_Spell_Check_in_Raw.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Preferences/next_Symbol_List___Heading.plist +0 -29
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Block_Quotes.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Class_and_Id.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Color_2.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Convert_Tabs_To_Table.plist +0 -14
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_1.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_2.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_3.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_4.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_5.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Heading_6.tmSnippet +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Textile.tmbundle/Snippets/next_Linked_Image.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___enum.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___exception.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___function.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___senum.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___service.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Thrift.tmbundle/Preferences/next_Symbol_List___struct.tmPreferences +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Preferences/next_Symbol_List___Templates.plist +0 -19
- data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_Smart_return__indent_for_tag_pairs.plist +0 -18
- data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_XML_Processing_Instruction.tmSnippet +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_long_attribute_tag.plist +0 -17
- data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_long_tag.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/next_short_tag.plist +0 -16
- data/plugins/textmate/vendor/redcar-bundles/Bundles/groovy.tmbundle/Snippets/next_line___.tmSnippet +0 -19
@@ -1,19 +0,0 @@
|
|
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>name</key>
|
6
|
-
<string>Style: Header</string>
|
7
|
-
<key>scope</key>
|
8
|
-
<string>meta.diff.header</string>
|
9
|
-
<key>settings</key>
|
10
|
-
<dict>
|
11
|
-
<key>background</key>
|
12
|
-
<string>#5685E3</string>
|
13
|
-
<key>foreground</key>
|
14
|
-
<string>#FFFFFF</string>
|
15
|
-
</dict>
|
16
|
-
<key>uuid</key>
|
17
|
-
<string>ED5636AE-09EF-46C4-A4F8-B88F701763E2</string>
|
18
|
-
</dict>
|
19
|
-
</plist>
|
@@ -1,19 +0,0 @@
|
|
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>name</key>
|
6
|
-
<string>Style: Inserted</string>
|
7
|
-
<key>scope</key>
|
8
|
-
<string>markup.inserted</string>
|
9
|
-
<key>settings</key>
|
10
|
-
<dict>
|
11
|
-
<key>background</key>
|
12
|
-
<string>#73FF65</string>
|
13
|
-
<key>foreground</key>
|
14
|
-
<string>#000000</string>
|
15
|
-
</dict>
|
16
|
-
<key>uuid</key>
|
17
|
-
<string>7D036841-43BD-49CA-892F-0A6837EF8FB7</string>
|
18
|
-
</dict>
|
19
|
-
</plist>
|
@@ -1,21 +0,0 @@
|
|
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>name</key>
|
6
|
-
<string>Style: Range</string>
|
7
|
-
<key>scope</key>
|
8
|
-
<string>meta.diff.range</string>
|
9
|
-
<key>settings</key>
|
10
|
-
<dict>
|
11
|
-
<key>background</key>
|
12
|
-
<string>#3467D1</string>
|
13
|
-
<key>fontStyle</key>
|
14
|
-
<string>italic</string>
|
15
|
-
<key>foreground</key>
|
16
|
-
<string>#FFFFFF</string>
|
17
|
-
</dict>
|
18
|
-
<key>uuid</key>
|
19
|
-
<string>71A420A8-0892-4622-BDA4-CC00D98C59E6</string>
|
20
|
-
</dict>
|
21
|
-
</plist>
|
@@ -1,24 +0,0 @@
|
|
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>name</key>
|
6
|
-
<string>Symbol List: Indent Ranges</string>
|
7
|
-
<key>scope</key>
|
8
|
-
<string>source.diff meta.diff.range</string>
|
9
|
-
<key>settings</key>
|
10
|
-
<dict>
|
11
|
-
<key>comment</key>
|
12
|
-
<string>Insert (figure space) padding
|
13
|
-
so that “+nnn,n” becomes “+ nnn, n”</string>
|
14
|
-
<key>symbolTransformation</key>
|
15
|
-
<string>
|
16
|
-
s/[-+](\d)(\d)?(\d)?(\d)?,/(?4:: (?3:: (?2:: )))$0/g;
|
17
|
-
s/,(\d)\b/, $1/g;
|
18
|
-
s/^/ /;
|
19
|
-
</string>
|
20
|
-
</dict>
|
21
|
-
<key>uuid</key>
|
22
|
-
<string>A0B3B6D2-59B1-407F-B310-7FA67222B37A</string>
|
23
|
-
</dict>
|
24
|
-
</plist>
|
@@ -1,17 +0,0 @@
|
|
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>name</key>
|
6
|
-
<string>Disable spell checking in raw</string>
|
7
|
-
<key>scope</key>
|
8
|
-
<string>markup.raw.dokuwiki</string>
|
9
|
-
<key>settings</key>
|
10
|
-
<dict>
|
11
|
-
<key>spellChecking</key>
|
12
|
-
<integer>0</integer>
|
13
|
-
</dict>
|
14
|
-
<key>uuid</key>
|
15
|
-
<string>B5C7FF05-8484-44B6-8343-BE44A9027261</string>
|
16
|
-
</dict>
|
17
|
-
</plist>
|
@@ -1,25 +0,0 @@
|
|
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>name</key>
|
6
|
-
<string>Show Heading in list</string>
|
7
|
-
<key>scope</key>
|
8
|
-
<string>markup.heading.dokuwiki</string>
|
9
|
-
<key>settings</key>
|
10
|
-
<dict>
|
11
|
-
<key>showInSymbolList</key>
|
12
|
-
<integer>1</integer>
|
13
|
-
<key>symbolTransformation</key>
|
14
|
-
<string>
|
15
|
-
s/^\s*==\s*([^=].*)(?<!=)={2,}\s*$/ $1/;
|
16
|
-
s/^\s*===\s*([^=].*)(?<!=)={2,}\s*$/ $1/;
|
17
|
-
s/^\s*====\s*([^=].*)(?<!=)={2,}\s*$/ $1/;
|
18
|
-
s/^\s*=====\s*([^=].*)(?<!=)={2,}\s*$/ $1/;
|
19
|
-
s/^\s*======+\s*([^=].*)(?<!=)={2,}\s*$/$1/;
|
20
|
-
</string>
|
21
|
-
</dict>
|
22
|
-
<key>uuid</key>
|
23
|
-
<string>65F97C49-BBE9-447F-83EC-0A4598EF5558</string>
|
24
|
-
</dict>
|
25
|
-
</plist>
|
@@ -1,17 +0,0 @@
|
|
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>content</key>
|
6
|
-
<string>====== ${1:heading} ======
|
7
|
-
</string>
|
8
|
-
<key>name</key>
|
9
|
-
<string>Heading 1</string>
|
10
|
-
<key>scope</key>
|
11
|
-
<string>text.html.dokuwiki</string>
|
12
|
-
<key>tabTrigger</key>
|
13
|
-
<string>h1</string>
|
14
|
-
<key>uuid</key>
|
15
|
-
<string>43540858-1657-4ECC-BF3A-24EB3FE37F93</string>
|
16
|
-
</dict>
|
17
|
-
</plist>
|
@@ -1,17 +0,0 @@
|
|
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>content</key>
|
6
|
-
<string>===== ${1:heading} =====
|
7
|
-
</string>
|
8
|
-
<key>name</key>
|
9
|
-
<string>Heading 2</string>
|
10
|
-
<key>scope</key>
|
11
|
-
<string>text.html.dokuwiki</string>
|
12
|
-
<key>tabTrigger</key>
|
13
|
-
<string>h2</string>
|
14
|
-
<key>uuid</key>
|
15
|
-
<string>D07A61C8-BB2F-4DF1-B376-C8124F215C8D</string>
|
16
|
-
</dict>
|
17
|
-
</plist>
|
@@ -1,17 +0,0 @@
|
|
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>content</key>
|
6
|
-
<string>==== ${1:heading} ====
|
7
|
-
</string>
|
8
|
-
<key>name</key>
|
9
|
-
<string>Heading 3</string>
|
10
|
-
<key>scope</key>
|
11
|
-
<string>text.html.dokuwiki</string>
|
12
|
-
<key>tabTrigger</key>
|
13
|
-
<string>h3</string>
|
14
|
-
<key>uuid</key>
|
15
|
-
<string>710E6F13-E35B-432C-A414-E9EE6F1C7B6F</string>
|
16
|
-
</dict>
|
17
|
-
</plist>
|
@@ -1,17 +0,0 @@
|
|
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>content</key>
|
6
|
-
<string>=== ${1:heading} ===
|
7
|
-
</string>
|
8
|
-
<key>name</key>
|
9
|
-
<string>Heading 4</string>
|
10
|
-
<key>scope</key>
|
11
|
-
<string>text.html.dokuwiki</string>
|
12
|
-
<key>tabTrigger</key>
|
13
|
-
<string>h4</string>
|
14
|
-
<key>uuid</key>
|
15
|
-
<string>E4985429-C2A8-4B57-B51C-B56AAFB78397</string>
|
16
|
-
</dict>
|
17
|
-
</plist>
|
@@ -1,17 +0,0 @@
|
|
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>content</key>
|
6
|
-
<string>== ${1:heading} ==
|
7
|
-
</string>
|
8
|
-
<key>name</key>
|
9
|
-
<string>Heading 5</string>
|
10
|
-
<key>scope</key>
|
11
|
-
<string>text.html.dokuwiki</string>
|
12
|
-
<key>tabTrigger</key>
|
13
|
-
<string>h5</string>
|
14
|
-
<key>uuid</key>
|
15
|
-
<string>F41642D5-83E1-4F26-88AC-ACA934049E39</string>
|
16
|
-
</dict>
|
17
|
-
</plist>
|
@@ -1,16 +0,0 @@
|
|
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>content</key>
|
6
|
-
<string>^ ${1:header} |$0</string>
|
7
|
-
<key>name</key>
|
8
|
-
<string>Left Header</string>
|
9
|
-
<key>scope</key>
|
10
|
-
<string>text.html.dokuwiki</string>
|
11
|
-
<key>tabTrigger</key>
|
12
|
-
<string>lh</string>
|
13
|
-
<key>uuid</key>
|
14
|
-
<string>F8D115F4-6DC5-43B2-A591-2EF68DD7F421</string>
|
15
|
-
</dict>
|
16
|
-
</plist>
|
@@ -1,16 +0,0 @@
|
|
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>content</key>
|
6
|
-
<string> - </string>
|
7
|
-
<key>name</key>
|
8
|
-
<string>Numbered list</string>
|
9
|
-
<key>scope</key>
|
10
|
-
<string>text.html.dokuwiki</string>
|
11
|
-
<key>tabTrigger</key>
|
12
|
-
<string>nu</string>
|
13
|
-
<key>uuid</key>
|
14
|
-
<string>5F58856F-E66C-498D-A3AE-43C654A08745</string>
|
15
|
-
</dict>
|
16
|
-
</plist>
|
@@ -1,19 +0,0 @@
|
|
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>content</key>
|
6
|
-
<string>
|
7
|
-
- </string>
|
8
|
-
<key>keyEquivalent</key>
|
9
|
-
<string>
|
10
|
-
<key>name</key>
|
11
|
-
<string>Numbered item</string>
|
12
|
-
<key>scope</key>
|
13
|
-
<string>markup.list.numbered.dokuwiki</string>
|
14
|
-
<key>tabTrigger</key>
|
15
|
-
<string>nu</string>
|
16
|
-
<key>uuid</key>
|
17
|
-
<string>655EC983-10E9-4ECD-924B-14B6E7E2023F</string>
|
18
|
-
</dict>
|
19
|
-
</plist>
|
@@ -1,16 +0,0 @@
|
|
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>content</key>
|
6
|
-
<string>| ${1:cell} |$0</string>
|
7
|
-
<key>name</key>
|
8
|
-
<string>Table Cell</string>
|
9
|
-
<key>scope</key>
|
10
|
-
<string>text.html.dokuwiki</string>
|
11
|
-
<key>tabTrigger</key>
|
12
|
-
<string>|</string>
|
13
|
-
<key>uuid</key>
|
14
|
-
<string>26788F47-A936-42E1-A0D4-1860F1B3CC81</string>
|
15
|
-
</dict>
|
16
|
-
</plist>
|
@@ -1,16 +0,0 @@
|
|
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>content</key>
|
6
|
-
<string>^ ${1:header} ^$0</string>
|
7
|
-
<key>name</key>
|
8
|
-
<string>Top Header</string>
|
9
|
-
<key>scope</key>
|
10
|
-
<string>text.html.dokuwiki</string>
|
11
|
-
<key>tabTrigger</key>
|
12
|
-
<string>^</string>
|
13
|
-
<key>uuid</key>
|
14
|
-
<string>FF3A19A1-E063-4026-9FDB-780F6616BB2A</string>
|
15
|
-
</dict>
|
16
|
-
</plist>
|
@@ -1,16 +0,0 @@
|
|
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>content</key>
|
6
|
-
<string> * </string>
|
7
|
-
<key>name</key>
|
8
|
-
<string>Unnumbered list</string>
|
9
|
-
<key>scope</key>
|
10
|
-
<string>text.html.dokuwiki</string>
|
11
|
-
<key>tabTrigger</key>
|
12
|
-
<string>un</string>
|
13
|
-
<key>uuid</key>
|
14
|
-
<string>F3CA2ACA-9CC5-4EF9-B93C-602D67763EFB</string>
|
15
|
-
</dict>
|
16
|
-
</plist>
|
@@ -1,19 +0,0 @@
|
|
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>content</key>
|
6
|
-
<string>
|
7
|
-
* </string>
|
8
|
-
<key>keyEquivalent</key>
|
9
|
-
<string>
|
10
|
-
<key>name</key>
|
11
|
-
<string>Unnumbered item</string>
|
12
|
-
<key>scope</key>
|
13
|
-
<string>markup.list.unnumbered.dokuwiki</string>
|
14
|
-
<key>tabTrigger</key>
|
15
|
-
<string>un</string>
|
16
|
-
<key>uuid</key>
|
17
|
-
<string>7E8E4E0B-B686-4256-947A-BD64888B7F78</string>
|
18
|
-
</dict>
|
19
|
-
</plist>
|
@@ -1,346 +0,0 @@
|
|
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>name</key>
|
6
|
-
<string>Completions HTML Attributes</string>
|
7
|
-
<key>scope</key>
|
8
|
-
<string>text.html meta.tag -(entity.other.attribute-name | punctuation.definition.tag.begin | source | entity.name.tag | string | invalid.illegal.incomplete.html)</string>
|
9
|
-
<key>settings</key>
|
10
|
-
<dict>
|
11
|
-
<key>completions</key>
|
12
|
-
<array>
|
13
|
-
<string>ABBR</string>
|
14
|
-
<string>abbr</string>
|
15
|
-
<string>ABOVE</string>
|
16
|
-
<string>above</string>
|
17
|
-
<string>ACCEPT</string>
|
18
|
-
<string>accept</string>
|
19
|
-
<string>ACCESSKEY</string>
|
20
|
-
<string>accesskey</string>
|
21
|
-
<string>ACTION</string>
|
22
|
-
<string>action</string>
|
23
|
-
<string>ALIGN</string>
|
24
|
-
<string>align</string>
|
25
|
-
<string>ALINK</string>
|
26
|
-
<string>alink</string>
|
27
|
-
<string>ALT</string>
|
28
|
-
<string>alt</string>
|
29
|
-
<string>ARCHIVE</string>
|
30
|
-
<string>archive</string>
|
31
|
-
<string>AUTOSTART</string>
|
32
|
-
<string>autostart</string>
|
33
|
-
<string>AXIS</string>
|
34
|
-
<string>axis</string>
|
35
|
-
<string>BACKGROUND</string>
|
36
|
-
<string>background</string>
|
37
|
-
<string>BALANCE</string>
|
38
|
-
<string>balance</string>
|
39
|
-
<string>BEHAVIOR</string>
|
40
|
-
<string>behavior</string>
|
41
|
-
<string>BELOW</string>
|
42
|
-
<string>below</string>
|
43
|
-
<string>BGCOLOR</string>
|
44
|
-
<string>bgcolor</string>
|
45
|
-
<string>BGPROPERTIES</string>
|
46
|
-
<string>bgproperties</string>
|
47
|
-
<string>BORDER</string>
|
48
|
-
<string>border</string>
|
49
|
-
<string>BORDERCOLOR</string>
|
50
|
-
<string>bordercolor</string>
|
51
|
-
<string>BORDERCOLORDARK</string>
|
52
|
-
<string>bordercolordark</string>
|
53
|
-
<string>BORDERCOLORLIGHT</string>
|
54
|
-
<string>bordercolorlight</string>
|
55
|
-
<string>BOTTOMMARGIN</string>
|
56
|
-
<string>bottommargin</string>
|
57
|
-
<string>CABBASE</string>
|
58
|
-
<string>cabbase</string>
|
59
|
-
<string>CELLPADDING</string>
|
60
|
-
<string>cellpadding</string>
|
61
|
-
<string>CELLSPACING</string>
|
62
|
-
<string>cellspacing</string>
|
63
|
-
<string>CHARSET</string>
|
64
|
-
<string>charset</string>
|
65
|
-
<string>CHECKED</string>
|
66
|
-
<string>checked</string>
|
67
|
-
<string>CITE</string>
|
68
|
-
<string>cite</string>
|
69
|
-
<string>CLASS</string>
|
70
|
-
<string>class</string>
|
71
|
-
<string>CLASSID</string>
|
72
|
-
<string>classid</string>
|
73
|
-
<string>CLEAR</string>
|
74
|
-
<string>clear</string>
|
75
|
-
<string>CLIP</string>
|
76
|
-
<string>clip</string>
|
77
|
-
<string>CODE</string>
|
78
|
-
<string>code</string>
|
79
|
-
<string>CODEBASE</string>
|
80
|
-
<string>codebase</string>
|
81
|
-
<string>CODETYPE</string>
|
82
|
-
<string>codetype</string>
|
83
|
-
<string>COLOR</string>
|
84
|
-
<string>color</string>
|
85
|
-
<string>COLS</string>
|
86
|
-
<string>cols</string>
|
87
|
-
<string>COLSPAN</string>
|
88
|
-
<string>colspan</string>
|
89
|
-
<string>COMPACT</string>
|
90
|
-
<string>compact</string>
|
91
|
-
<string>CONTENT</string>
|
92
|
-
<string>content</string>
|
93
|
-
<string>CONTROLS</string>
|
94
|
-
<string>controls</string>
|
95
|
-
<string>COORDS</string>
|
96
|
-
<string>coords</string>
|
97
|
-
<string>DATA</string>
|
98
|
-
<string>data</string>
|
99
|
-
<string>DATAPAGESIZE</string>
|
100
|
-
<string>datapagesize</string>
|
101
|
-
<string>DATETIME</string>
|
102
|
-
<string>datetime</string>
|
103
|
-
<string>DECLARE</string>
|
104
|
-
<string>declare</string>
|
105
|
-
<string>DEFER</string>
|
106
|
-
<string>defer</string>
|
107
|
-
<string>DELAY</string>
|
108
|
-
<string>delay</string>
|
109
|
-
<string>DIR</string>
|
110
|
-
<string>dir</string>
|
111
|
-
<string>DIRECTION</string>
|
112
|
-
<string>direction</string>
|
113
|
-
<string>DISABLED</string>
|
114
|
-
<string>disabled</string>
|
115
|
-
<string>DYNSRC</string>
|
116
|
-
<string>dynsrc</string>
|
117
|
-
<string>ENCTYPE</string>
|
118
|
-
<string>enctype</string>
|
119
|
-
<string>FACE</string>
|
120
|
-
<string>face</string>
|
121
|
-
<string>FOR</string>
|
122
|
-
<string>for</string>
|
123
|
-
<string>FRAME</string>
|
124
|
-
<string>frame</string>
|
125
|
-
<string>FRAMEBORDER</string>
|
126
|
-
<string>frameborder</string>
|
127
|
-
<string>FRAMESPACING</string>
|
128
|
-
<string>framespacing</string>
|
129
|
-
<string>GUTTER</string>
|
130
|
-
<string>gutter</string>
|
131
|
-
<string>HEADERS</string>
|
132
|
-
<string>headers</string>
|
133
|
-
<string>HEIGHT</string>
|
134
|
-
<string>height</string>
|
135
|
-
<string>HIDDEN</string>
|
136
|
-
<string>hidden</string>
|
137
|
-
<string>HREF</string>
|
138
|
-
<string>href</string>
|
139
|
-
<string>HREFLANG</string>
|
140
|
-
<string>hreflang</string>
|
141
|
-
<string>HSPACE</string>
|
142
|
-
<string>hspace</string>
|
143
|
-
<string>HTTP-EQUIV</string>
|
144
|
-
<string>http-equiv</string>
|
145
|
-
<string>ID</string>
|
146
|
-
<string>id</string>
|
147
|
-
<string>ISMAP</string>
|
148
|
-
<string>ismap</string>
|
149
|
-
<string>LABEL</string>
|
150
|
-
<string>label</string>
|
151
|
-
<string>LANG</string>
|
152
|
-
<string>lang</string>
|
153
|
-
<string>lang</string>
|
154
|
-
<string>language</string>
|
155
|
-
<string>LEFT</string>
|
156
|
-
<string>left</string>
|
157
|
-
<string>LEFTMARGIN</string>
|
158
|
-
<string>leftmargin</string>
|
159
|
-
<string>LINK</string>
|
160
|
-
<string>link</string>
|
161
|
-
<string>LONGDESC</string>
|
162
|
-
<string>longdesc</string>
|
163
|
-
<string>LOOP</string>
|
164
|
-
<string>loop</string>
|
165
|
-
<string>LOWSRC</string>
|
166
|
-
<string>lowsrc</string>
|
167
|
-
<string>MARGINHEIGHT</string>
|
168
|
-
<string>marginheight</string>
|
169
|
-
<string>MARGINWIDTH</string>
|
170
|
-
<string>marginwidth</string>
|
171
|
-
<string>MAXLENGTH</string>
|
172
|
-
<string>maxlength</string>
|
173
|
-
<string>MAYSCRIPT</string>
|
174
|
-
<string>mayscript</string>
|
175
|
-
<string>MEDIA</string>
|
176
|
-
<string>media</string>
|
177
|
-
<string>METHOD</string>
|
178
|
-
<string>method</string>
|
179
|
-
<string>MULTIPLE</string>
|
180
|
-
<string>multiple</string>
|
181
|
-
<string>NAME</string>
|
182
|
-
<string>name</string>
|
183
|
-
<string>NOEXTERNALDATA</string>
|
184
|
-
<string>noexternaldata</string>
|
185
|
-
<string>NORESIZE</string>
|
186
|
-
<string>noresize</string>
|
187
|
-
<string>NOSHADE</string>
|
188
|
-
<string>noshade</string>
|
189
|
-
<string>NOWRAP</string>
|
190
|
-
<string>nowrap</string>
|
191
|
-
<string>onBlur</string>
|
192
|
-
<string>onblur</string>
|
193
|
-
<string>onChange</string>
|
194
|
-
<string>onchange</string>
|
195
|
-
<string>onClick</string>
|
196
|
-
<string>onclick</string>
|
197
|
-
<string>onDblClick</string>
|
198
|
-
<string>ondblclick</string>
|
199
|
-
<string>onError</string>
|
200
|
-
<string>onerror</string>
|
201
|
-
<string>onFocus</string>
|
202
|
-
<string>onfocus</string>
|
203
|
-
<string>onKeyDown</string>
|
204
|
-
<string>onkeydown</string>
|
205
|
-
<string>onKeyPress</string>
|
206
|
-
<string>onkeypress</string>
|
207
|
-
<string>onKeyUp</string>
|
208
|
-
<string>onkeyup</string>
|
209
|
-
<string>onLoad</string>
|
210
|
-
<string>onload</string>
|
211
|
-
<string>onMouseDown</string>
|
212
|
-
<string>onmousedown</string>
|
213
|
-
<string>onMouseMove</string>
|
214
|
-
<string>onmousemove</string>
|
215
|
-
<string>onMouseOut</string>
|
216
|
-
<string>onmouseout</string>
|
217
|
-
<string>onMouseOver</string>
|
218
|
-
<string>onmouseover</string>
|
219
|
-
<string>onMouseUp</string>
|
220
|
-
<string>onmouseup</string>
|
221
|
-
<string>onReset</string>
|
222
|
-
<string>onreset</string>
|
223
|
-
<string>onResize</string>
|
224
|
-
<string>onresize</string>
|
225
|
-
<string>onSelect</string>
|
226
|
-
<string>onselect</string>
|
227
|
-
<string>onSubmit</string>
|
228
|
-
<string>onsubmit</string>
|
229
|
-
<string>onUnload</string>
|
230
|
-
<string>onunload</string>
|
231
|
-
<string>PAGEX</string>
|
232
|
-
<string>pagex</string>
|
233
|
-
<string>PAGEY</string>
|
234
|
-
<string>pagey</string>
|
235
|
-
<string>POINTSIZE</string>
|
236
|
-
<string>pointsize</string>
|
237
|
-
<string>READONLY</string>
|
238
|
-
<string>readonly</string>
|
239
|
-
<string>REL</string>
|
240
|
-
<string>rel</string>
|
241
|
-
<string>REV</string>
|
242
|
-
<string>rev</string>
|
243
|
-
<string>RIGHTMARGIN</string>
|
244
|
-
<string>rightmargin</string>
|
245
|
-
<string>ROWS</string>
|
246
|
-
<string>rows</string>
|
247
|
-
<string>ROWSPAN</string>
|
248
|
-
<string>rowspan</string>
|
249
|
-
<string>RULES</string>
|
250
|
-
<string>rules</string>
|
251
|
-
<string>runat</string>
|
252
|
-
<string>SCOPE</string>
|
253
|
-
<string>scope</string>
|
254
|
-
<string>SCROLLAMOUNT</string>
|
255
|
-
<string>scrollamount</string>
|
256
|
-
<string>SCROLLDELAY</string>
|
257
|
-
<string>scrolldelay</string>
|
258
|
-
<string>SCROLLING</string>
|
259
|
-
<string>scrolling</string>
|
260
|
-
<string>SELECTED</string>
|
261
|
-
<string>selected</string>
|
262
|
-
<string>SHAPE</string>
|
263
|
-
<string>shape</string>
|
264
|
-
<string>SIZE</string>
|
265
|
-
<string>size</string>
|
266
|
-
<string>SPAN</string>
|
267
|
-
<string>span</string>
|
268
|
-
<string>SRC</string>
|
269
|
-
<string>src</string>
|
270
|
-
<string>STANDBY</string>
|
271
|
-
<string>standby</string>
|
272
|
-
<string>START</string>
|
273
|
-
<string>start</string>
|
274
|
-
<string>STYLE</string>
|
275
|
-
<string>style</string>
|
276
|
-
<string>SUMMARY</string>
|
277
|
-
<string>summary</string>
|
278
|
-
<string>TABINDEX</string>
|
279
|
-
<string>tabindex</string>
|
280
|
-
<string>TARGET</string>
|
281
|
-
<string>target</string>
|
282
|
-
<string>TEXT</string>
|
283
|
-
<string>text</string>
|
284
|
-
<string>TITLE</string>
|
285
|
-
<string>title</string>
|
286
|
-
<string>TOP</string>
|
287
|
-
<string>top</string>
|
288
|
-
<string>TOPMARGIN</string>
|
289
|
-
<string>topmargin</string>
|
290
|
-
<string>TRUESPEED</string>
|
291
|
-
<string>truespeed</string>
|
292
|
-
<string>TYPE</string>
|
293
|
-
<string>type</string>
|
294
|
-
<string>USEMAP</string>
|
295
|
-
<string>usemap</string>
|
296
|
-
<string>VALIGN</string>
|
297
|
-
<string>valign</string>
|
298
|
-
<string>VALUE</string>
|
299
|
-
<string>value</string>
|
300
|
-
<string>VALUETYPE</string>
|
301
|
-
<string>valuetype</string>
|
302
|
-
<string>VISIBILITY</string>
|
303
|
-
<string>visibility</string>
|
304
|
-
<string>VLINK</string>
|
305
|
-
<string>vlink</string>
|
306
|
-
<string>VOLUME</string>
|
307
|
-
<string>volume</string>
|
308
|
-
<string>VSPACE</string>
|
309
|
-
<string>vspace</string>
|
310
|
-
<string>WIDTH</string>
|
311
|
-
<string>width</string>
|
312
|
-
<string>WRAP</string>
|
313
|
-
<string>wrap</string>
|
314
|
-
<string>xml:lang</string>
|
315
|
-
<string>xmlns</string>
|
316
|
-
<string>Z-INDEX</string>
|
317
|
-
<string>z-index</string>
|
318
|
-
</array>
|
319
|
-
<key>disableDefaultCompletion</key>
|
320
|
-
<integer>1</integer>
|
321
|
-
<key>shellVariables</key>
|
322
|
-
<array>
|
323
|
-
<dict>
|
324
|
-
<key>name</key>
|
325
|
-
<string>TM_COMPLETION_split</string>
|
326
|
-
<key>value</key>
|
327
|
-
<string>,</string>
|
328
|
-
</dict>
|
329
|
-
<dict>
|
330
|
-
<key>name</key>
|
331
|
-
<string>TM_COMPLETION_scope</string>
|
332
|
-
<key>value</key>
|
333
|
-
<string>html_attributes</string>
|
334
|
-
</dict>
|
335
|
-
<dict>
|
336
|
-
<key>name</key>
|
337
|
-
<string>TM_COMPLETIONS</string>
|
338
|
-
<key>value</key>
|
339
|
-
<string><a href="",<a name="",<a title="",<a target="",<a charset="",<a class="",<a id="",<a style="",<a hreflang="",<a accesskey="",<a tabindex="",<a rel="",<a rev="",<a shape="",<a coords="",<a dir="",<a lang="",<a onfocus="",<a onblur="",<a onclick="",<a ondblclick="",<a onmousedown="",<a onmouseup="",<a onmouseover="",<a onmousemove="",<a onmouseout="",<a onkeypress="",<a onkeydown="",<a onkeyup="",<abbr class="",<abbr id="",<abbr style="",<abbr title="",<abbr dir="",<abbr lang="",<abbr onclick="",<abbr ondblclick="",<abbr onmousedown="",<abbr onmouseup="",<abbr onmouseover="",<abbr onmousemove="",<abbr onmouseout="",<abbr onkeypress="",<abbr onkeydown="",<abbr onkeyup="",<acronym class="",<acronym id="",<acronym style="",<acronym title="",<acronym dir="",<acronym lang="",<acronym onclick="",<acronym ondblclick="",<acronym onmousedown="",<acronym onmouseup="",<acronym onmouseover="",<acronym onmousemove="",<acronym onmouseout="",<acronym onkeypress="",<acronym onkeydown="",<acronym onkeyup="",<address class="",<address id="",<address style="",<address title="",<address dir="",<address lang="",<address onclick="",<address ondblclick="",<address onmousedown="",<address onmouseup="",<address onmouseover="",<address onmousemove="",<address onmouseout="",<address onkeypress="",<address onkeydown="",<address onkeyup="",<applet noexternaldata="",<applet code="",<applet codebase="",<applet name="",<applet alt="",<applet width="",<applet height="",<applet hspace="",<applet vspace="",<applet align="",<applet cabbase="",<applet mayscript="",<applet archive="",<applet class="",<applet id="",<applet style="",<area name="",<area value="",<area shape="",<area coords="",<area href="",<area target="",<area alt="",<area disabled="disabled",<area class="",<area id="",<area style="",<area accesskey="",<area tabindex="",<area title="",<area dir="",<area lang="",<area onfocus="",<area onblur="",<area onclick="",<area ondblclick="",<area onmousedown="",<area onmouseup="",<area onmouseover="",<area onmousemove="",<area onmouseout="",<area onkeypress="",<area onkeydown="",<area onkeyup="",<b class="",<b id="",<b style="",<b title="",<b dir="",<b lang="",<b onclick="",<b ondblclick="",<b onmousedown="",<b onmouseup="",<b onmouseover="",<b onmousemove="",<b onmouseout="",<b onkeypress="",<b onkeydown="",<b onkeyup="",<base href="",<base target="",<basefont size="",<basefont face="",<basefont color="#333333",<basefont id="",<bdo dir="",<bdo lang="",<bdo class="",<bdo id="",<bdo style="",<bdo title="",<bgsound src="",<bgsound loop="",<bgsound balance="",<bgsound volume="",<bgsound delay="",<big class="",<big id="",<big style="",<big title="",<big dir="",<big lang="",<big onclick="",<big ondblclick="",<big onmousedown="",<big onmouseup="",<big onmouseover="",<big onmousemove="",<big onmouseout="",<big onkeypress="",<big onkeydown="",<big onkeyup="",<blockquote cite="",<blockquote class="",<blockquote id="",<blockquote style="",<blockquote title="",<blockquote dir="",<blockquote lang="",<blockquote onclick="",<blockquote ondblclick="",<blockquote onmousedown="",<blockquote onmouseup="",<blockquote onmouseover="",<blockquote onmousemove="",<blockquote onmouseout="",<blockquote onkeypress="",<blockquote onkeydown="",<blockquote onkeyup="",<body bgcolor="",<body background="",<body text="",<body link="",<body vlink="",<body alink="",<body leftmargin="",<body topmargin="",<body bgproperties="",<body rightmargin="",<body bottommargin="",<body marginwidth="",<body marginheight="",<body class="",<body id="",<body style="",<body title="",<body dir="",<body lang="",<body onload="",<body onunload="",<body onblur="",<body onerror="",<body onfocus="",<body onresize="",<br clear="",<br class="",<br id="",<br style="",<br title="",<button name="",<button value="",<button type="",<button disabled="disabled",<button class="",<button id="",<button style="",<button accesskey="",<button tabindex="",<button title="",<button dir="",<button lang="",<button onfocus="",<button onblur="",<button onclick="",<button ondblclick="",<button onmousedown="",<button onmouseup="",<button onmouseover="",<button onmousemove="",<button onmouseout="",<button onkeypress="",<button onkeydown="",<button onkeyup="",<caption align="",<caption valign="",<caption class="",<caption id="",<caption style="",<caption title="",<caption dir="",<caption lang="",<caption onclick="",<caption ondblclick="",<caption onmousedown="",<caption onmouseup="",<caption onmouseover="",<caption onmousemove="",<caption onmouseout="",<caption onkeypress="",<caption onkeydown="",<caption onkeyup="",<cite class="",<cite id="",<cite style="",<cite title="",<cite dir="",<cite lang="",<cite onclick="",<cite ondblclick="",<cite onmousedown="",<cite onmouseup="",<cite onmouseover="",<cite onmousemove="",<cite onmouseout="",<cite onkeypress="",<cite onkeydown="",<cite onkeyup="",<code class="",<code id="",<code style="",<code title="",<code dir="",<code lang="",<code onclick="",<code ondblclick="",<code onmousedown="",<code onmouseup="",<code onmouseover="",<code onmousemove="",<code onmouseout="",<code onkeypress="",<code onkeydown="",<code onkeyup="",<col align="",<col valign="",<col span="",<col width="",<col class="",<col id="",<col style="",<col title="",<col dir="",<col lang="",<col onclick="",<col ondblclick="",<col onmousedown="",<col onmouseup="",<col onmouseover="",<col onmousemove="",<col onmouseout="",<col onkeypress="",<col onkeydown="",<col onkeyup="",<colgroup align="",<colgroup valign="",<colgroup span="",<colgroup width="",<colgroup class="",<colgroup id="",<colgroup style="",<colgroup title="",<colgroup dir="",<colgroup lang="",<colgroup onclick="",<colgroup ondblclick="",<colgroup onmousedown="",<colgroup onmouseup="",<colgroup onmouseover="",<colgroup onmousemove="",<colgroup onmouseout="",<colgroup onkeypress="",<colgroup onkeydown="",<colgroup onkeyup="",<dd class="",<dd id="",<dd style="",<dd title="",<dd dir="",<dd lang="",<dd onclick="",<dd ondblclick="",<dd onmousedown="",<dd onmouseup="",<dd onmouseover="",<dd onmousemove="",<dd onmouseout="",<dd onkeypress="",<dd onkeydown="",<dd onkeyup="",<del cite="",<del datetime="",<del class="",<del id="",<del style="",<del title="",<del dir="",<del lang="",<del onclick="",<del ondblclick="",<del onmousedown="",<del onmouseup="",<del onmouseover="",<del onmousemove="",<del onmouseout="",<del onkeypress="",<del onkeydown="",<del onkeyup="",<dfn class="",<dfn id="",<dfn style="",<dfn title="",<dfn dir="",<dfn lang="",<dfn onclick="",<dfn ondblclick="",<dfn onmousedown="",<dfn onmouseup="",<dfn onmouseover="",<dfn onmousemove="",<dfn onmouseout="",<dfn onkeypress="",<dfn onkeydown="",<dfn onkeyup="",<div align="",<div class="",<div id="",<div style="",<div title="",<div dir="",<div lang="",<div onclick="",<div ondblclick="",<div onmousedown="",<div onmouseup="",<div onmouseover="",<div onmousemove="",<div onmouseout="",<div onkeypress="",<div onkeydown="",<div onkeyup="",<dl compact="",<dl class="",<dl id="",<dl style="",<dl title="",<dl dir="",<dl lang="",<dl onclick="",<dl ondblclick="",<dl onmousedown="",<dl onmouseup="",<dl onmouseover="",<dl onmousemove="",<dl onmouseout="",<dl onkeypress="",<dl onkeydown="",<dl onkeyup="",<dt class="",<dt id="",<dt style="",<dt title="",<dt dir="",<dt lang="",<dt onclick="",<dt ondblclick="",<dt onmousedown="",<dt onmouseup="",<dt onmouseover="",<dt onmousemove="",<dt onmouseout="",<dt onkeypress="",<dt onkeydown="",<dt onkeyup="",<em class="",<em id="",<em style="",<em title="",<em dir="",<em lang="",<em onclick="",<em ondblclick="",<em onmousedown="",<em onmouseup="",<em onmouseover="",<em onmousemove="",<em onmouseout="",<em onkeypress="",<em onkeydown="",<em onkeyup="",<embed src="",<embed width="",<embed height="",<embed hspace="",<embed vspace="",<embed hidden="",<embed autostart="",<embed loop="",<embed align="",<embed class="",<embed style="",<embed dir="",<embed lang="",<fieldset class="",<fieldset id="",<fieldset style="",<fieldset title="",<fieldset accesskey="",<fieldset dir="",<fieldset lang="",<fieldset onclick="",<fieldset ondblclick="",<fieldset onmousedown="",<fieldset onmouseup="",<fieldset onmouseover="",<fieldset onmousemove="",<fieldset onmouseout="",<fieldset onkeypress="",<fieldset onkeydown="",<fieldset onkeyup="",<font color="#333333",<font size="",<font face="",<font pointsize="",<font class="",<font id="",<font style="",<font title="",<font dir="",<font lang="",<form action="",<form method="",<form enctype="",<form name="",<form target="",<form class="",<form id="",<form style="",<form title="",<form dir="",<form lang="",<form runat="",<form onsubmit="",<form onreset="",<form onclick="",<form ondblclick="",<form onmousedown="",<form onmouseup="",<form onmouseover="",<form onmousemove="",<form onmouseout="",<form onkeypress="",<form onkeydown="",<form onkeyup="",<frame src="",<frame name="",<frame frameborder="",<frame scrolling="",<frame noresize="",<frame marginwidth="",<frame marginheight="",<frame bordercolor="#CCCCCC",<frame class="",<frame id="",<frame style="",<frame title="",<frame longdesc="",<frameset rows="",<frameset cols="",<frameset framespacing="",<frameset frameborder="",<frameset border="",<frameset bordercolor="#CCCCCC",<frameset class="",<frameset id="",<frameset style="",<frameset title="",<frameset onload="",<frameset onunload="",<h1 align="",<h1 class="",<h1 id="",<h1 style="",<h1 title="",<h1 dir="",<h1 lang="",<h1 onclick="",<h1 ondblclick="",<h1 onmousedown="",<h1 onmouseup="",<h1 onmouseover="",<h1 onmousemove="",<h1 onmouseout="",<h1 onkeypress="",<h1 onkeydown="",<h1 onkeyup="",<h2 align="",<h2 class="",<h2 id="",<h2 style="",<h2 title="",<h2 dir="",<h2 lang="",<h2 onclick="",<h2 ondblclick="",<h2 onmousedown="",<h2 onmouseup="",<h2 onmouseover="",<h2 onmousemove="",<h2 onmouseout="",<h2 onkeypress="",<h2 onkeydown="",<h2 onkeyup="",<h3 align="",<h3 class="",<h3 id="",<h3 style="",<h3 title="",<h3 dir="",<h3 lang="",<h3 onclick="",<h3 ondblclick="",<h3 onmousedown="",<h3 onmouseup="",<h3 onmouseover="",<h3 onmousemove="",<h3 onmouseout="",<h3 onkeypress="",<h3 onkeydown="",<h3 onkeyup="",<h4 align="",<h4 class="",<h4 id="",<h4 style="",<h4 title="",<h4 dir="",<h4 lang="",<h4 onclick="",<h4 ondblclick="",<h4 onmousedown="",<h4 onmouseup="",<h4 onmouseover="",<h4 onmousemove="",<h4 onmouseout="",<h4 onkeypress="",<h4 onkeydown="",<h4 onkeyup="",<h5 align="",<h5 class="",<h5 id="",<h5 style="",<h5 title="",<h5 dir="",<h5 lang="",<h5 onclick="",<h5 ondblclick="",<h5 onmousedown="",<h5 onmouseup="",<h5 onmouseover="",<h5 onmousemove="",<h5 onmouseout="",<h5 onkeypress="",<h5 onkeydown="",<h5 onkeyup="",<h6 align="",<h6 class="",<h6 id="",<h6 style="",<h6 title="",<h6 dir="",<h6 lang="",<h6 onclick="",<h6 ondblclick="",<h6 onmousedown="",<h6 onmouseup="",<h6 onmouseover="",<h6 onmousemove="",<h6 onmouseout="",<h6 onkeypress="",<h6 onkeydown="",<h6 onkeyup="",<hr align="",<hr width="",<hr size="",<hr noshade="",<hr color="#333333",<hr class="",<hr id="",<hr style="",<hr title="",<hr onclick="",<hr ondblclick="",<hr onmousedown="",<hr onmouseup="",<hr onmouseover="",<hr onmousemove="",<hr onmouseout="",<hr onkeypress="",<hr onkeydown="",<hr onkeyup="",<html xmlns="",<html xml:lang="",<html lang="",<html dir="",<i class="",<i id="",<i style="",<i title="",<i dir="",<i lang="",<i onclick="",<i ondblclick="",<i onmousedown="",<i onmouseup="",<i onmouseover="",<i onmousemove="",<i onmouseout="",<i onkeypress="",<i onkeydown="",<i onkeyup="",<iframe src="",<iframe name="",<iframe width="",<iframe marginwidth="",<iframe height="",<iframe marginheight="",<iframe align="",<iframe scrolling="",<iframe frameborder="",<iframe hspace="",<iframe vspace="",<iframe class="",<iframe id="",<iframe style="",<iframe title="",<iframe longdesc="",<ilayer name="",<ilayer id="",<ilayer left="",<ilayer top="",<ilayer pagex="",<ilayer pagey="",<ilayer above="",<ilayer below="",<ilayer z-index="",<ilayer width="",<ilayer height="",<ilayer visibility="",<ilayer clip="",<ilayer bgcolor="",<ilayer background="",<ilayer src="",<ilayer onfocus="",<ilayer onblur="",<ilayer onload="",<ilayer onmouseover="",<ilayer onmouseout="",<img src="",<img alt="",<img name="",<img width="",<img height="",<img hspace="",<img vspace="",<img border="",<img align="",<img usemap="",<img ismap="ismap",<img dynsrc="",<img controls="",<img start="",<img loop="",<img lowsrc="",<img class="",<img id="",<img style="",<img title="",<img longdesc="",<img dir="",<img lang="",<img onclick="",<img ondblclick="",<img onmousedown="",<img onmouseup="",<img onmouseover="",<img onmousemove="",<img onmouseout="",<img onkeypress="",<img onkeydown="",<img onkeyup="",<input name="",<input type="",<input disabled="disabled",<input class="",<input id="",<input style="",<input accesskey="",<input tabindex="",<input title="",<input dir="",<input lang="",<input onfocus="",<input onblur="",<input onselect="",<input onchange="",<input onclick="",<input ondblclick="",<input onmousedown="",<input onmouseup="",<input onmouseover="",<input onmousemove="",<input onmouseout="",<input onkeypress="",<input onkeydown="",<input onkeyup="",<input value="",<input size="",<input maxlength="",<input readonly="readonly",<input checked="checked",<input src="",<input alt="",<input align="",<input usemap="",<input width="",<input height="",<input hspace="",<input vspace="",<input border="",<input accept="",<ins cite="",<ins datetime="",<ins class="",<ins id="",<ins style="",<ins title="",<ins dir="",<ins lang="",<ins onclick="",<ins ondblclick="",<ins onmousedown="",<ins onmouseup="",<ins onmouseover="",<ins onmousemove="",<ins onmouseout="",<ins onkeypress="",<ins onkeydown="",<ins onkeyup="",<kbd class="",<kbd id="",<kbd style="",<kbd title="",<kbd dir="",<kbd lang="",<kbd onclick="",<kbd ondblclick="",<kbd onmousedown="",<kbd onmouseup="",<kbd onmouseover="",<kbd onmousemove="",<kbd onmouseout="",<kbd onkeypress="",<kbd onkeydown="",<kbd onkeyup="",<label for="",<label class="",<label id="",<label style="",<label accesskey="",<label title="",<label dir="",<label lang="",<label onfocus="",<label onblur="",<label onclick="",<label ondblclick="",<label onmousedown="",<label onmouseup="",<label onmouseover="",<label onmousemove="",<label onmouseout="",<label onkeypress="",<label onkeydown="",<label onkeyup="",<layer name="",<layer left="",<layer top="",<layer pagex="",<layer pagey="",<layer above="",<layer below="",<layer z-index="",<layer width="",<layer height="",<layer visibility="",<layer clip="",<layer bgcolor="",<layer background="",<layer src="",<layer onfocus="",<layer onblur="",<layer onload="",<layer onmouseover="",<layer onmouseout="",<legend align="",<legend class="",<legend id="",<legend style="",<legend accesskey="",<legend title="",<legend dir="",<legend lang="",<legend onclick="",<legend ondblclick="",<legend onmousedown="",<legend onmouseup="",<legend onmouseover="",<legend onmousemove="",<legend onmouseout="",<legend onkeypress="",<legend onkeydown="",<legend onkeyup="",<li type="",<li value="",<li class="",<li id="",<li style="",<li title="",<li dir="",<li lang="",<li onclick="",<li ondblclick="",<li onmousedown="",<li onmouseup="",<li onmouseover="",<li onmousemove="",<li onmouseout="",<li onkeypress="",<li onkeydown="",<li onkeyup="",<link href="",<link rel="",<link rev="",<link title="",<link type="",<link media="",<link disabled="disabled",<link class="",<link id="",<link hreflang="",<link style="",<map name="",<map class="",<map id="",<map style="",<map title="",<map dir="",<map lang="",<map onfocus="",<map onblur="",<map onclick="",<map ondblclick="",<map onmousedown="",<map onmouseup="",<map onmouseover="",<map onmousemove="",<map onmouseout="",<map onkeypress="",<map onkeydown="",<map onkeyup="",<var class="",<var id="",<var style="",<var title="",<var dir="",<var lang="",<var onclick="",<var ondblclick="",<var onmousedown="",<var onmouseup="",<var onmouseover="",<var onmousemove="",<var onmouseout="",<var onkeypress="",<var onkeydown="",<var onkeyup="",<ul type="",<ul compact="",<ul class="",<ul id="",<ul style="",<ul title="",<ul dir="",<ul lang="",<ul onclick="",<ul ondblclick="",<ul onmousedown="",<ul onmouseup="",<ul onmouseover="",<ul onmousemove="",<ul onmouseout="",<ul onkeypress="",<ul onkeydown="",<ul onkeyup="",<tt class="",<tt id="",<tt style="",<tt title="",<tt dir="",<tt lang="",<tt onclick="",<tt ondblclick="",<tt onmousedown="",<tt onmouseup="",<tt onmouseover="",<tt onmousemove="",<tt onmouseout="",<tt onkeypress="",<tt onkeydown="",<tt onkeyup="",<tr align="",<tr valign="",<tr bordercolor="#CCCCCC",<tr bordercolorlight="",<tr bordercolordark="",<tr nowrap="",<tr bgcolor="",<tr class="",<tr id="",<tr style="",<tr title="",<tr dir="",<tr lang="en",<tr onclick="",<tr ondblclick="",<tr onmousedown="",<tr onmouseup="",<tr onmouseover="",<tr onmousemove="",<tr onmouseout="",<tr onkeypress="",<tr onkeydown="",<tr onkeyup="",<thead align="",<thead valign="",<thead bgcolor="",<thead class="",<thead id="",<thead style="",<thead title="",<thead dir="",<thead lang="",<thead onclick="",<thead ondblclick="",<thead onmousedown="",<thead onmouseup="",<thead onmouseover="",<thead onmousemove="",<thead onmouseout="",<thead onkeypress="",<thead onkeydown="",<thead onkeyup="",<th width="",<th height="",<th colspan="",<th rowspan="",<th align="",<th valign="",<th nowrap="",<th bordercolor="#CCCCCC",<th bordercolorlight="",<th bordercolordark="",<th background="",<th bgcolor="",<th class="",<th id="",<th style="",<th title="",<th axis="",<th headers="",<th scope="",<th abbr="",<th dir="",<th lang="",<th onclick="",<th ondblclick="",<th onmousedown="",<th onmouseup="",<th onmouseover="",<th onmousemove="",<th onmouseout="",<th onkeypress="",<th onkeydown="",<th onkeyup="",<tfoot align="",<tfoot valign="",<tfoot bgcolor="",<tfoot class="",<tfoot id="",<tfoot style="",<tfoot title="",<tfoot dir="",<tfoot lang="",<tfoot onclick="",<tfoot ondblclick="",<tfoot onmousedown="",<tfoot onmouseup="",<tfoot onmouseover="",<tfoot onmousemove="",<tfoot onmouseout="",<tfoot onkeypress="",<tfoot onkeydown="",<tfoot onkeyup="",<textarea name="",<textarea cols="",<textarea rows="",<textarea disabled="disabled",<textarea readonly="readonly",<textarea wrap="",<textarea class="",<textarea id="",<textarea style="",<textarea accesskey="",<textarea tabindex="",<textarea title="",<textarea dir="",<textarea lang="",<textarea onfocus="",<textarea onblur="",<textarea onselect="",<textarea onchange="",<textarea onclick="",<textarea ondblclick="",<textarea onmousedown="",<textarea onmouseup="",<textarea onmouseover="",<textarea onmousemove="",<textarea onmouseout="",<textarea onkeypress="",<textarea onkeydown="",<textarea onkeyup="",<td width="",<td height="",<td colspan="",<td rowspan="",<td align="",<td valign="",<td nowrap="",<td bordercolor="#CCCCCC",<td bordercolorlight="",<td bordercolordark="",<td background="",<td bgcolor="",<td class="",<td id="",<td style="",<td title="",<td axis="",<td headers="",<td scope="",<td abbr="",<td dir="",<td lang="",<td onclick="",<td ondblclick="",<td onmousedown="",<td onmouseup="",<td onmouseover="",<td onmousemove="",<td onmouseout="",<td onkeypress="",<td onkeydown="",<td onkeyup="",<tbody align="",<tbody valign="",<tbody bgcolor="",<tbody class="",<tbody id="",<tbody style="",<tbody title="",<tbody dir="",<tbody lang="",<tbody onclick="",<tbody ondblclick="",<tbody onmousedown="",<tbody onmouseup="",<tbody onmouseover="",<tbody onmousemove="",<tbody onmouseout="",<tbody onkeypress="",<tbody onkeydown="",<tbody onkeyup="",<table width="",<table height="",<table border="",<table align="",<table cellpadding="0",<table cellspacing="0",<table bordercolor="#CCCCCC",<table bordercolorlight="",<table bordercolordark="",<table datapagesize="",<table background="",<table cols="",<table bgcolor="",<table frame="",<table rules="",<table dir="",<table lang="",<table onclick="",<table ondblclick="",<table onmousedown="",<table onmouseup="",<table onmouseover="",<table onmousemove="",<table onmouseout="",<table onkeypress="",<table onkeydown="",<table onkeyup="",<table class="",<table id="",<table style="",<table title="",<table summary="",<sup class="",<sup id="",<sup style="",<sup title="",<sup dir="",<sup lang="",<sup onclick="",<sup ondblclick="",<sup onmousedown="",<sup onmouseup="",<sup onmouseover="",<sup onmousemove="",<sup onmouseout="",<sup onkeypress="",<sup onkeydown="",<sup onkeyup="",<sub class="",<sub id="",<sub style="",<sub title="",<sub dir="",<sub lang="",<sub onclick="",<sub ondblclick="",<sub onmousedown="",<sub onmouseup="",<sub onmouseover="",<sub onmousemove="",<sub onmouseout="",<sub onkeypress="",<sub onkeydown="",<sub onkeyup="",<style type="",<style media="",<style disabled="disabled",<style title="",<strong class="",<strong id="",<strong style="",<strong title="",<strong dir="",<strong lang="",<strong onclick="",<strong ondblclick="",<strong onmousedown="",<strong onmouseup="",<strong onmouseover="",<strong onmousemove="",<strong onmouseout="",<strong onkeypress="",<strong onkeydown="",<strong onkeyup="",<span class="",<span id="",<span style="",<span title="",<span dir="",<span lang="",<span onclick="",<span ondblclick="",<span onmousedown="",<span onmouseup="",<span onmouseover="",<span onmousemove="",<span onmouseout="",<span onkeypress="",<span onkeydown="",<span onkeyup="",<sound src="",<sound loop="",<sound delay="",<small class="",<small id="",<small style="",<small title="",<small dir="",<small lang="",<small onclick="",<small ondblclick="",<small onmousedown="",<small onmouseup="",<small onmouseover="",<small onmousemove="",<small onmouseout="",<small onkeypress="",<small onkeydown="",<small onkeyup="",<select name="",<select size="",<select multiple="",<select disabled="disabled",<select class="",<select id="",<select style="",<select accesskey="",<select tabindex="",<select title="",<select dir="",<select lang="",<select onfocus="",<select onblur="",<select onchange="",<script language="",<script src="",<script type="",<script runat="",<script defer="defer",<samp class="",<samp id="",<samp style="",<samp title="",<samp dir="",<samp lang="",<samp onclick="",<samp ondblclick="",<samp onmousedown="",<samp onmouseup="",<samp onmouseover="",<samp onmousemove="",<samp onmouseout="",<samp onkeypress="",<samp onkeydown="",<samp onkeyup="",<q cite="",<q class="",<q id="",<q style="",<q title="",<q dir="",<q lang="",<q onclick="",<q ondblclick="",<q onmousedown="",<q onmouseup="",<q onmouseover="",<q onmousemove="",<q onmouseout="",<q onkeypress="",<q onkeydown="",<q onkeyup="",<pre class="",<pre id="",<pre style="",<pre title="",<pre dir="",<pre lang="",<pre onclick="",<pre ondblclick="",<pre onmousedown="",<pre onmouseup="",<pre onmouseover="",<pre onmousemove="",<pre onmouseout="",<pre onkeypress="",<pre onkeydown="",<pre onkeyup="",<param name="",<param value="",<param valuetype="",<param type="",<param id="",<p align="",<p class="",<p id="",<p style="",<p title="",<p dir="",<p lang="",<p onclick="",<p ondblclick="",<p onmousedown="",<p onmouseup="",<p onmouseover="",<p onmousemove="",<p onmouseout="",<p onkeypress="",<p onkeydown="",<p onkeyup="",<option value="",<option selected="",<option disabled="disabled",<option class="",<option id="",<option style="",<option title="",<option label="",<option dir="",<option lang="",<option onfocus="",<option onblur="",<option onchange="",<option onclick="",<option ondblclick="",<option onmousedown="",<option onmouseup="",<option onmouseover="",<option onmousemove="",<option onmouseout="",<option onkeypress="",<option onkeydown="",<option onkeyup="",<optgroup label="",<optgroup disabled="disabled",<optgroup class="",<optgroup id="",<optgroup style="",<optgroup title="",<optgroup dir="",<optgroup lang="",<optgroup onfocus="",<optgroup onblur="",<optgroup onchange="",<optgroup onclick="",<optgroup ondblclick="",<optgroup onmousedown="",<optgroup onmouseup="",<optgroup onmouseover="",<optgroup onmousemove="",<optgroup onmouseout="",<optgroup onkeypress="",<optgroup onkeydown="",<optgroup onkeyup="",<ol start="",<ol type="",<ol compact="",<ol class="",<ol id="",<ol style="",<ol title="",<ol dir="",<ol lang="",<ol onclick="",<ol ondblclick="",<ol onmousedown="",<ol onmouseup="",<ol onmouseover="",<ol onmousemove="",<ol onmouseout="",<ol onkeypress="",<ol onkeydown="",<ol onkeyup="",<object noexternaldata="",<object classid="",<object codebase="",<object codetype="",<object data="",<object type="",<object archive="",<object declare="",<object name="",<object width="",<object height="",<object hspace="",<object vspace="",<object align="",<object border="",<object standby="",<object class="",<object id="",<object style="",<object accesskey="",<object tabindex="",<object title="",<object usemap="",<object dir="",<object lang="",<object onclick="",<object ondblclick="",<object onmousedown="",<object onmouseup="",<object onmouseover="",<object onmousemove="",<object onmouseout="",<object onkeypress="",<object onkeydown="",<object onkeyup="",<noscript class="",<noscript id="",<noscript style="",<noscript title="",<noframes class="",<noframes id="",<noframes style="",<noframes title="",<multicol cols="",<multicol width="",<multicol gutter="",<meta name="",<meta http-equiv="",<meta content="",<marquee behavior="",<marquee align="",<marquee direction="",<marquee bgcolor="",<marquee width="",<marquee hspace="",<marquee height="",<marquee vspace="",<marquee loop="",<marquee scrollamount="",<marquee scrolldelay="",<marquee truespeed="",<marquee class="",<marquee id="",<marquee style="",<marquee title="",<marquee dir="",<marquee lang="",<marquee onclick="",<marquee ondblclick="",<marquee onmousedown="",<marquee onmouseup="",<marquee onmouseover="",<marquee onmousemove="",<marquee onmouseout="",<marquee onkeypress="",<marquee onkeydown="",<marquee onkeyup="",<A HREF="",<A NAME="",<A TITLE="",<A TARGET="",<A CHARSET="",<A CLASS="",<A ID="",<A STYLE="",<A HREFLANG="",<A ACCESSKEY="",<A TABINDEX="",<A REL="",<A REV="",<A SHAPE="",<A COORDS="",<A DIR="",<A LANG="",<A onFocus="",<A onBlur="",<A onClick="",<A onDblClick="",<A onMouseDown="",<A onMouseUp="",<A onMouseOver="",<A onMouseMove="",<A onMouseOut="",<A onKeyPress="",<A onKeyDown="",<A onKeyUp="",<ABBR CLASS="",<ABBR ID="",<ABBR STYLE="",<ABBR TITLE="",<ABBR DIR="",<ABBR LANG="",<ABBR onClick="",<ABBR onDblClick="",<ABBR onMouseDown="",<ABBR onMouseUp="",<ABBR onMouseOver="",<ABBR onMouseMove="",<ABBR onMouseOut="",<ABBR onKeyPress="",<ABBR onKeyDown="",<ABBR onKeyUp="",<ACRONYM CLASS="",<ACRONYM ID="",<ACRONYM STYLE="",<ACRONYM TITLE="",<ACRONYM DIR="",<ACRONYM LANG="",<ACRONYM onClick="",<ACRONYM onDblClick="",<ACRONYM onMouseDown="",<ACRONYM onMouseUp="",<ACRONYM onMouseOver="",<ACRONYM onMouseMove="",<ACRONYM onMouseOut="",<ACRONYM onKeyPress="",<ACRONYM onKeyDown="",<ACRONYM onKeyUp="",<ADDRESS CLASS="",<ADDRESS ID="",<ADDRESS STYLE="",<ADDRESS TITLE="",<ADDRESS DIR="",<ADDRESS LANG="",<ADDRESS onClick="",<ADDRESS onDblClick="",<ADDRESS onMouseDown="",<ADDRESS onMouseUp="",<ADDRESS onMouseOver="",<ADDRESS onMouseMove="",<ADDRESS onMouseOut="",<ADDRESS onKeyPress="",<ADDRESS onKeyDown="",<ADDRESS onKeyUp="",<APPLET NOEXTERNALDATA="",<APPLET CODE="",<APPLET CODEBASE="",<APPLET NAME="",<APPLET ALT="",<APPLET WIDTH="",<APPLET HEIGHT="",<APPLET HSPACE="",<APPLET VSPACE="",<APPLET ALIGN="",<APPLET CABBASE="",<APPLET MAYSCRIPT="",<APPLET ARCHIVE="",<APPLET CLASS="",<APPLET ID="",<APPLET STYLE="",<AREA NAME="",<AREA VALUE="",<AREA SHAPE="",<AREA COORDS="",<AREA HREF="",<AREA TARGET="",<AREA ALT="",<AREA DISABLED="DISABLED",<AREA CLASS="",<AREA ID="",<AREA STYLE="",<AREA ACCESSKEY="",<AREA TABINDEX="",<AREA TITLE="",<AREA DIR="",<AREA LANG="",<AREA onFocus="",<AREA onBlur="",<AREA onClick="",<AREA onDblClick="",<AREA onMouseDown="",<AREA onMouseUp="",<AREA onMouseOver="",<AREA onMouseMove="",<AREA onMouseOut="",<AREA onKeyPress="",<AREA onKeyDown="",<AREA onKeyUp="",<B CLASS="",<B ID="",<B STYLE="",<B TITLE="",<B DIR="",<B LANG="",<B onClick="",<B onDblClick="",<B onMouseDown="",<B onMouseUp="",<B onMouseOver="",<B onMouseMove="",<B onMouseOut="",<B onKeyPress="",<B onKeyDown="",<B onKeyUp="",<BASE HREF="",<BASE TARGET="",<BASEFONT SIZE="",<BASEFONT FACE="",<BASEFONT COLOR="",<BASEFONT ID="",<BDO DIR="",<BDO LANG="",<BDO CLASS="",<BDO ID="",<BDO STYLE="",<BDO TITLE="",<BGSOUND SRC="",<BGSOUND LOOP="",<BGSOUND BALANCE="",<BGSOUND VOLUME="",<BGSOUND DELAY="",<BIG CLASS="",<BIG ID="",<BIG STYLE="",<BIG TITLE="",<BIG DIR="",<BIG LANG="",<BIG onClick="",<BIG onDblClick="",<BIG onMouseDown="",<BIG onMouseUp="",<BIG onMouseOver="",<BIG onMouseMove="",<BIG onMouseOut="",<BIG onKeyPress="",<BIG onKeyDown="",<BIG onKeyUp="",<BLOCKQUOTE CITE="",<BLOCKQUOTE CLASS="",<BLOCKQUOTE ID="",<BLOCKQUOTE STYLE="",<BLOCKQUOTE TITLE="",<BLOCKQUOTE DIR="",<BLOCKQUOTE LANG="",<BLOCKQUOTE onClick="",<BLOCKQUOTE onDblClick="",<BLOCKQUOTE onMouseDown="",<BLOCKQUOTE onMouseUp="",<BLOCKQUOTE onMouseOver="",<BLOCKQUOTE onMouseMove="",<BLOCKQUOTE onMouseOut="",<BLOCKQUOTE onKeyPress="",<BLOCKQUOTE onKeyDown="",<BLOCKQUOTE onKeyUp="",<BODY BGCOLOR="",<BODY BACKGROUND="",<BODY TEXT="",<BODY LINK="",<BODY VLINK="",<BODY ALINK="",<BODY LEFTMARGIN="",<BODY TOPMARGIN="",<BODY BGPROPERTIES="",<BODY RIGHTMARGIN="",<BODY BOTTOMMARGIN="",<BODY MARGINWIDTH="",<BODY MARGINHEIGHT="",<BODY CLASS="",<BODY ID="",<BODY STYLE="",<BODY TITLE="",<BODY DIR="",<BODY LANG="",<BODY onLoad="",<BODY onUnload="",<BODY onBlur="",<BODY onError="",<BODY onFocus="",<BODY onResize="",<BR CLEAR="",<BR CLASS="",<BR ID="",<BR STYLE="",<BR TITLE="",<BUTTON NAME="",<BUTTON VALUE="",<BUTTON TYPE="",<BUTTON DISABLED="DISABLED",<BUTTON CLASS="",<BUTTON ID="",<BUTTON STYLE="",<BUTTON ACCESSKEY="",<BUTTON TABINDEX="",<BUTTON TITLE="",<BUTTON DIR="",<BUTTON LANG="",<BUTTON onFocus="",<BUTTON onBlur="",<BUTTON onClick="",<BUTTON onDblClick="",<BUTTON onMouseDown="",<BUTTON onMouseUp="",<BUTTON onMouseOver="",<BUTTON onMouseMove="",<BUTTON onMouseOut="",<BUTTON onKeyPress="",<BUTTON onKeyDown="",<BUTTON onKeyUp="",<CAPTION ALIGN="",<CAPTION VALIGN="",<CAPTION CLASS="",<CAPTION ID="",<CAPTION STYLE="",<CAPTION TITLE="",<CAPTION DIR="",<CAPTION LANG="",<CAPTION onClick="",<CAPTION onDblClick="",<CAPTION onMouseDown="",<CAPTION onMouseUp="",<CAPTION onMouseOver="",<CAPTION onMouseMove="",<CAPTION onMouseOut="",<CAPTION onKeyPress="",<CAPTION onKeyDown="",<CAPTION onKeyUp="",<CITE CLASS="",<CITE ID="",<CITE STYLE="",<CITE TITLE="",<CITE DIR="",<CITE LANG="",<CITE onClick="",<CITE onDblClick="",<CITE onMouseDown="",<CITE onMouseUp="",<CITE onMouseOver="",<CITE onMouseMove="",<CITE onMouseOut="",<CITE onKeyPress="",<CITE onKeyDown="",<CITE onKeyUp="",<CODE CLASS="",<CODE ID="",<CODE STYLE="",<CODE TITLE="",<CODE DIR="",<CODE LANG="",<CODE onClick="",<CODE onDblClick="",<CODE onMouseDown="",<CODE onMouseUp="",<CODE onMouseOver="",<CODE onMouseMove="",<CODE onMouseOut="",<CODE onKeyPress="",<CODE onKeyDown="",<CODE onKeyUp="",<COL ALIGN="",<COL VALIGN="",<COL SPAN="",<COL WIDTH="",<COL CLASS="",<COL ID="",<COL STYLE="",<COL TITLE="",<COL DIR="",<COL LANG="",<COL onClick="",<COL onDblClick="",<COL onMouseDown="",<COL onMouseUp="",<COL onMouseOver="",<COL onMouseMove="",<COL onMouseOut="",<COL onKeyPress="",<COL onKeyDown="",<COL onKeyUp="",<COLGROUP ALIGN="",<COLGROUP VALIGN="",<COLGROUP SPAN="",<COLGROUP WIDTH="",<COLGROUP CLASS="",<COLGROUP ID="",<COLGROUP STYLE="",<COLGROUP TITLE="",<COLGROUP DIR="",<COLGROUP LANG="",<COLGROUP onClick="",<COLGROUP onDblClick="",<COLGROUP onMouseDown="",<COLGROUP onMouseUp="",<COLGROUP onMouseOver="",<COLGROUP onMouseMove="",<COLGROUP onMouseOut="",<COLGROUP onKeyPress="",<COLGROUP onKeyDown="",<COLGROUP onKeyUp="",<DD CLASS="",<DD ID="",<DD STYLE="",<DD TITLE="",<DD DIR="",<DD LANG="",<DD onClick="",<DD onDblClick="",<DD onMouseDown="",<DD onMouseUp="",<DD onMouseOver="",<DD onMouseMove="",<DD onMouseOut="",<DD onKeyPress="",<DD onKeyDown="",<DD onKeyUp="",<DEL CITE="",<DEL DATETIME="",<DEL CLASS="",<DEL ID="",<DEL STYLE="",<DEL TITLE="",<DEL DIR="",<DEL LANG="",<DEL onClick="",<DEL onDblClick="",<DEL onMouseDown="",<DEL onMouseUp="",<DEL onMouseOver="",<DEL onMouseMove="",<DEL onMouseOut="",<DEL onKeyPress="",<DEL onKeyDown="",<DEL onKeyUp="",<DFN CLASS="",<DFN ID="",<DFN STYLE="",<DFN TITLE="",<DFN DIR="",<DFN LANG="",<DFN onClick="",<DFN onDblClick="",<DFN onMouseDown="",<DFN onMouseUp="",<DFN onMouseOver="",<DFN onMouseMove="",<DFN onMouseOut="",<DFN onKeyPress="",<DFN onKeyDown="",<DFN onKeyUp="",<DIV ALIGN="",<DIV CLASS="",<DIV ID="",<DIV STYLE="",<DIV TITLE="",<DIV DIR="",<DIV LANG="",<DIV onClick="",<DIV onDblClick="",<DIV onMouseDown="",<DIV onMouseUp="",<DIV onMouseOver="",<DIV onMouseMove="",<DIV onMouseOut="",<DIV onKeyPress="",<DIV onKeyDown="",<DIV onKeyUp="",<DL COMPACT="",<DL CLASS="",<DL ID="",<DL STYLE="",<DL TITLE="",<DL DIR="",<DL LANG="",<DL onClick="",<DL onDblClick="",<DL onMouseDown="",<DL onMouseUp="",<DL onMouseOver="",<DL onMouseMove="",<DL onMouseOut="",<DL onKeyPress="",<DL onKeyDown="",<DL onKeyUp="",<DT CLASS="",<DT ID="",<DT STYLE="",<DT TITLE="",<DT DIR="",<DT LANG="",<DT onClick="",<DT onDblClick="",<DT onMouseDown="",<DT onMouseUp="",<DT onMouseOver="",<DT onMouseMove="",<DT onMouseOut="",<DT onKeyPress="",<DT onKeyDown="",<DT onKeyUp="",<EM CLASS="",<EM ID="",<EM STYLE="",<EM TITLE="",<EM DIR="",<EM LANG="",<EM onClick="",<EM onDblClick="",<EM onMouseDown="",<EM onMouseUp="",<EM onMouseOver="",<EM onMouseMove="",<EM onMouseOut="",<EM onKeyPress="",<EM onKeyDown="",<EM onKeyUp="",<EMBED SRC="",<EMBED WIDTH="",<EMBED HEIGHT="",<EMBED HSPACE="",<EMBED VSPACE="",<EMBED HIDDEN="",<EMBED AUTOSTART="",<EMBED LOOP="",<EMBED ALIGN="",<EMBED CLASS="",<EMBED STYLE="",<EMBED DIR="",<EMBED LANG="",<FIELDSET CLASS="",<FIELDSET ID="",<FIELDSET STYLE="",<FIELDSET TITLE="",<FIELDSET ACCESSKEY="",<FIELDSET DIR="",<FIELDSET LANG="",<FIELDSET onClick="",<FIELDSET onDblClick="",<FIELDSET onMouseDown="",<FIELDSET onMouseUp="",<FIELDSET onMouseOver="",<FIELDSET onMouseMove="",<FIELDSET onMouseOut="",<FIELDSET onKeyPress="",<FIELDSET onKeyDown="",<FIELDSET onKeyUp="",<FONT COLOR="",<FONT SIZE="",<FONT FACE="",<FONT POINTSIZE="",<FONT CLASS="",<FONT ID="",<FONT STYLE="",<FONT TITLE="",<FONT DIR="",<FONT LANG="",<FORM ACTION="",<FORM METHOD="",<FORM ENCTYPE="",<FORM NAME="",<FORM TARGET="",<FORM CLASS="",<FORM ID="",<FORM STYLE="",<FORM TITLE="",<FORM DIR="",<FORM LANG="",<FORM runat="",<FORM onSubmit="",<FORM onReset="",<FORM onClick="",<FORM onDblClick="",<FORM onMouseDown="",<FORM onMouseUp="",<FORM onMouseOver="",<FORM onMouseMove="",<FORM onMouseOut="",<FORM onKeyPress="",<FORM onKeyDown="",<FORM onKeyUp="",<FRAME SRC="",<FRAME NAME="",<FRAME FRAMEBORDER="",<FRAME SCROLLING="",<FRAME NORESIZE="",<FRAME MARGINWIDTH="",<FRAME MARGINHEIGHT="",<FRAME BORDERCOLOR="",<FRAME CLASS="",<FRAME ID="",<FRAME STYLE="",<FRAME TITLE="",<FRAME LONGDESC="",<FRAMESET ROWS="",<FRAMESET COLS="",<FRAMESET FRAMESPACING="",<FRAMESET FRAMEBORDER="",<FRAMESET BORDER="",<FRAMESET BORDERCOLOR="",<FRAMESET CLASS="",<FRAMESET ID="",<FRAMESET STYLE="",<FRAMESET TITLE="",<FRAMESET onLoad="",<FRAMESET onUnload="",<H1 ALIGN="",<H1 CLASS="",<H1 ID="",<H1 STYLE="",<H1 TITLE="",<H1 DIR="",<H1 LANG="",<H1 onClick="",<H1 onDblClick="",<H1 onMouseDown="",<H1 onMouseUp="",<H1 onMouseOver="",<H1 onMouseMove="",<H1 onMouseOut="",<H1 onKeyPress="",<H1 onKeyDown="",<H1 onKeyUp="",<H2 ALIGN="",<H2 CLASS="",<H2 ID="",<H2 STYLE="",<H2 TITLE="",<H2 DIR="",<H2 LANG="",<H2 onClick="",<H2 onDblClick="",<H2 onMouseDown="",<H2 onMouseUp="",<H2 onMouseOver="",<H2 onMouseMove="",<H2 onMouseOut="",<H2 onKeyPress="",<H2 onKeyDown="",<H2 onKeyUp="",<H3 ALIGN="",<H3 CLASS="",<H3 ID="",<H3 STYLE="",<H3 TITLE="",<H3 DIR="",<H3 LANG="",<H3 onClick="",<H3 onDblClick="",<H3 onMouseDown="",<H3 onMouseUp="",<H3 onMouseOver="",<H3 onMouseMove="",<H3 onMouseOut="",<H3 onKeyPress="",<H3 onKeyDown="",<H3 onKeyUp="",<H4 ALIGN="",<H4 CLASS="",<H4 ID="",<H4 STYLE="",<H4 TITLE="",<H4 DIR="",<H4 LANG="",<H4 onClick="",<H4 onDblClick="",<H4 onMouseDown="",<H4 onMouseUp="",<H4 onMouseOver="",<H4 onMouseMove="",<H4 onMouseOut="",<H4 onKeyPress="",<H4 onKeyDown="",<H4 onKeyUp="",<H5 ALIGN="",<H5 CLASS="",<H5 ID="",<H5 STYLE="",<H5 TITLE="",<H5 DIR="",<H5 LANG="",<H5 onClick="",<H5 onDblClick="",<H5 onMouseDown="",<H5 onMouseUp="",<H5 onMouseOver="",<H5 onMouseMove="",<H5 onMouseOut="",<H5 onKeyPress="",<H5 onKeyDown="",<H5 onKeyUp="",<H6 ALIGN="",<H6 CLASS="",<H6 ID="",<H6 STYLE="",<H6 TITLE="",<H6 DIR="",<H6 LANG="",<H6 onClick="",<H6 onDblClick="",<H6 onMouseDown="",<H6 onMouseUp="",<H6 onMouseOver="",<H6 onMouseMove="",<H6 onMouseOut="",<H6 onKeyPress="",<H6 onKeyDown="",<H6 onKeyUp="",<HR ALIGN="",<HR WIDTH="",<HR SIZE="",<HR NOSHADE="",<HR COLOR="",<HR CLASS="",<HR ID="",<HR STYLE="",<HR TITLE="",<HR onClick="",<HR onDblClick="",<HR onMouseDown="",<HR onMouseUp="",<HR onMouseOver="",<HR onMouseMove="",<HR onMouseOut="",<HR onKeyPress="",<HR onKeyDown="",<HR onKeyUp="",<HTML xmlns="",<HTML xml:lang="",<HTML lang="",<HTML dir="",<I CLASS="",<I ID="",<I STYLE="",<I TITLE="",<I DIR="",<I LANG="",<I onClick="",<I onDblClick="",<I onMouseDown="",<I onMouseUp="",<I onMouseOver="",<I onMouseMove="",<I onMouseOut="",<I onKeyPress="",<I onKeyDown="",<I onKeyUp="",<IFRAME SRC="",<IFRAME NAME="",<IFRAME WIDTH="",<IFRAME MARGINWIDTH="",<IFRAME HEIGHT="",<IFRAME MARGINHEIGHT="",<IFRAME ALIGN="",<IFRAME SCROLLING="",<IFRAME FRAMEBORDER="",<IFRAME HSPACE="",<IFRAME VSPACE="",<IFRAME CLASS="",<IFRAME ID="",<IFRAME STYLE="",<IFRAME TITLE="",<IFRAME LONGDESC="",<ILAYER NAME="",<ILAYER ID="",<ILAYER LEFT="",<ILAYER TOP="",<ILAYER PAGEX="",<ILAYER PAGEY="",<ILAYER ABOVE="",<ILAYER BELOW="",<ILAYER Z-INDEX="",<ILAYER WIDTH="",<ILAYER HEIGHT="",<ILAYER VISIBILITY="",<ILAYER CLIP="",<ILAYER BGCOLOR="",<ILAYER BACKGROUND="",<ILAYER SRC="",<ILAYER onFocus="",<ILAYER onBlur="",<ILAYER onLoad="",<ILAYER onMouseOver="",<ILAYER onMouseOut="",<IMG SRC="",<IMG ALT="",<IMG NAME="",<IMG WIDTH="",<IMG HEIGHT="",<IMG HSPACE="",<IMG VSPACE="",<IMG BORDER="",<IMG ALIGN="",<IMG USEMAP="",<IMG ISMAP="ISMAP",<IMG DYNSRC="",<IMG CONTROLS="",<IMG START="",<IMG LOOP="",<IMG LOWSRC="",<IMG CLASS="",<IMG ID="",<IMG STYLE="",<IMG TITLE="",<IMG LONGDESC="",<IMG DIR="",<IMG LANG="",<IMG onClick="",<IMG onDblClick="",<IMG onMouseDown="",<IMG onMouseUp="",<IMG onMouseOver="",<IMG onMouseMove="",<IMG onMouseOut="",<IMG onKeyPress="",<IMG onKeyDown="",<IMG onKeyUp="",<INPUT NAME="",<INPUT TYPE="",<INPUT DISABLED="DISABLED",<INPUT CLASS="",<INPUT ID="",<INPUT STYLE="",<INPUT ACCESSKEY="",<INPUT TABINDEX="",<INPUT TITLE="",<INPUT DIR="",<INPUT LANG="",<INPUT onFocus="",<INPUT onBlur="",<INPUT onSelect="",<INPUT onChange="",<INPUT onClick="",<INPUT onDblClick="",<INPUT onMouseDown="",<INPUT onMouseUp="",<INPUT onMouseOver="",<INPUT onMouseMove="",<INPUT onMouseOut="",<INPUT onKeyPress="",<INPUT onKeyDown="",<INPUT onKeyUp="",<INPUT VALUE="",<INPUT SIZE="",<INPUT MAXLENGTH="",<INPUT READONLY="READONLY",<INPUT CHECKED="CHECKED",<INPUT SRC="",<INPUT ALT="",<INPUT ALIGN="",<INPUT USEMAP="",<INPUT WIDTH="",<INPUT HEIGHT="",<INPUT HSPACE="",<INPUT VSPACE="",<INPUT BORDER="",<INPUT ACCEPT="",<INS CITE="",<INS DATETIME="",<INS CLASS="",<INS ID="",<INS STYLE="",<INS TITLE="",<INS DIR="",<INS LANG="",<INS onClick="",<INS onDblClick="",<INS onMouseDown="",<INS onMouseUp="",<INS onMouseOver="",<INS onMouseMove="",<INS onMouseOut="",<INS onKeyPress="",<INS onKeyDown="",<INS onKeyUp="",<KBD CLASS="",<KBD ID="",<KBD STYLE="",<KBD TITLE="",<KBD DIR="",<KBD LANG="",<KBD onClick="",<KBD onDblClick="",<KBD onMouseDown="",<KBD onMouseUp="",<KBD onMouseOver="",<KBD onMouseMove="",<KBD onMouseOut="",<KBD onKeyPress="",<KBD onKeyDown="",<KBD onKeyUp="",<LABEL FOR="",<LABEL CLASS="",<LABEL ID="",<LABEL STYLE="",<LABEL ACCESSKEY="",<LABEL TITLE="",<LABEL DIR="",<LABEL LANG="",<LABEL onFocus="",<LABEL onBlur="",<LABEL onClick="",<LABEL onDblClick="",<LABEL onMouseDown="",<LABEL onMouseUp="",<LABEL onMouseOver="",<LABEL onMouseMove="",<LABEL onMouseOut="",<LABEL onKeyPress="",<LABEL onKeyDown="",<LABEL onKeyUp="",<LAYER NAME="",<LAYER LEFT="",<LAYER TOP="",<LAYER PAGEX="",<LAYER PAGEY="",<LAYER ABOVE="",<LAYER BELOW="",<LAYER Z-INDEX="",<LAYER WIDTH="",<LAYER HEIGHT="",<LAYER VISIBILITY="",<LAYER CLIP="",<LAYER BGCOLOR="",<LAYER BACKGROUND="",<LAYER SRC="",<LAYER onFocus="",<LAYER onBlur="",<LAYER onLoad="",<LAYER onMouseOver="",<LAYER onMouseOut="",<LEGEND ALIGN="",<LEGEND CLASS="",<LEGEND ID="",<LEGEND STYLE="",<LEGEND ACCESSKEY="",<LEGEND TITLE="",<LEGEND DIR="",<LEGEND LANG="",<LEGEND onClick="",<LEGEND onDblClick="",<LEGEND onMouseDown="",<LEGEND onMouseUp="",<LEGEND onMouseOver="",<LEGEND onMouseMove="",<LEGEND onMouseOut="",<LEGEND onKeyPress="",<LEGEND onKeyDown="",<LEGEND onKeyUp="",<LI TYPE="",<LI VALUE="",<LI CLASS="",<LI ID="",<LI STYLE="",<LI TITLE="",<LI DIR="",<LI LANG="",<LI onClick="",<LI onDblClick="",<LI onMouseDown="",<LI onMouseUp="",<LI onMouseOver="",<LI onMouseMove="",<LI onMouseOut="",<LI onKeyPress="",<LI onKeyDown="",<LI onKeyUp="",<LINK HREF="",<LINK REL="",<LINK REV="",<LINK TITLE="",<LINK TYPE="",<LINK MEDIA="",<LINK DISABLED="DISABLED",<LINK CLASS="",<LINK ID="",<LINK HREFLANG="",<LINK STYLE="",<MAP NAME="",<MAP CLASS="",<MAP ID="",<MAP STYLE="",<MAP TITLE="",<MAP DIR="",<MAP LANG="",<MAP onFocus="",<MAP onBlur="",<MAP onClick="",<MAP onDblClick="",<MAP onMouseDown="",<MAP onMouseUp="",<MAP onMouseOver="",<MAP onMouseMove="",<MAP onMouseOut="",<MAP onKeyPress="",<MAP onKeyDown="",<MAP onKeyUp="",<VAR CLASS="",<VAR ID="",<VAR STYLE="",<VAR TITLE="",<VAR DIR="",<VAR LANG="",<VAR onClick="",<VAR onDblClick="",<VAR onMouseDown="",<VAR onMouseUp="",<VAR onMouseOver="",<VAR onMouseMove="",<VAR onMouseOut="",<VAR onKeyPress="",<VAR onKeyDown="",<VAR onKeyUp="",<UL TYPE="",<UL COMPACT="",<UL CLASS="",<UL ID="",<UL STYLE="",<UL TITLE="",<UL DIR="",<UL LANG="",<UL onClick="",<UL onDblClick="",<UL onMouseDown="",<UL onMouseUp="",<UL onMouseOver="",<UL onMouseMove="",<UL onMouseOut="",<UL onKeyPress="",<UL onKeyDown="",<UL onKeyUp="",<TT CLASS="",<TT ID="",<TT STYLE="",<TT TITLE="",<TT DIR="",<TT LANG="",<TT onClick="",<TT onDblClick="",<TT onMouseDown="",<TT onMouseUp="",<TT onMouseOver="",<TT onMouseMove="",<TT onMouseOut="",<TT onKeyPress="",<TT onKeyDown="",<TT onKeyUp="",<TR ALIGN="",<TR VALIGN="",<TR BORDERCOLOR="",<TR BORDERCOLORLIGHT="",<TR BORDERCOLORDARK="",<TR NOWRAP="",<TR BGCOLOR="",<TR CLASS="",<TR ID="",<TR STYLE="",<TR TITLE="",<TR DIR="",<TR LANG="",<TR onClick="",<TR onDblClick="",<TR onMouseDown="",<TR onMouseUp="",<TR onMouseOver="",<TR onMouseMove="",<TR onMouseOut="",<TR onKeyPress="",<TR onKeyDown="",<TR onKeyUp="",<THEAD ALIGN="",<THEAD VALIGN="",<THEAD BGCOLOR="",<THEAD CLASS="",<THEAD ID="",<THEAD STYLE="",<THEAD TITLE="",<THEAD DIR="",<THEAD LANG="",<THEAD onClick="",<THEAD onDblClick="",<THEAD onMouseDown="",<THEAD onMouseUp="",<THEAD onMouseOver="",<THEAD onMouseMove="",<THEAD onMouseOut="",<THEAD onKeyPress="",<THEAD onKeyDown="",<THEAD onKeyUp="",<TH WIDTH="",<TH HEIGHT="",<TH COLSPAN="",<TH ROWSPAN="",<TH ALIGN="",<TH VALIGN="",<TH NOWRAP="",<TH BORDERCOLOR="",<TH BORDERCOLORLIGHT="",<TH BORDERCOLORDARK="",<TH BACKGROUND="",<TH BGCOLOR="",<TH CLASS="",<TH ID="",<TH STYLE="",<TH TITLE="",<TH AXIS="",<TH HEADERS="",<TH SCOPE="",<TH ABBR="",<TH DIR="",<TH LANG="",<TH onClick="",<TH onDblClick="",<TH onMouseDown="",<TH onMouseUp="",<TH onMouseOver="",<TH onMouseMove="",<TH onMouseOut="",<TH onKeyPress="",<TH onKeyDown="",<TH onKeyUp="",<TFOOT ALIGN="",<TFOOT VALIGN="",<TFOOT BGCOLOR="",<TFOOT CLASS="",<TFOOT ID="",<TFOOT STYLE="",<TFOOT TITLE="",<TFOOT DIR="",<TFOOT LANG="",<TFOOT onClick="",<TFOOT onDblClick="",<TFOOT onMouseDown="",<TFOOT onMouseUp="",<TFOOT onMouseOver="",<TFOOT onMouseMove="",<TFOOT onMouseOut="",<TFOOT onKeyPress="",<TFOOT onKeyDown="",<TFOOT onKeyUp="",<TEXTAREA NAME="",<TEXTAREA COLS="",<TEXTAREA ROWS="",<TEXTAREA DISABLED="DISABLED",<TEXTAREA READONLY="READONLY",<TEXTAREA WRAP="",<TEXTAREA CLASS="",<TEXTAREA ID="",<TEXTAREA STYLE="",<TEXTAREA ACCESSKEY="",<TEXTAREA TABINDEX="",<TEXTAREA TITLE="",<TEXTAREA DIR="",<TEXTAREA LANG="",<TEXTAREA onFocus="",<TEXTAREA onBlur="",<TEXTAREA onSelect="",<TEXTAREA onChange="",<TEXTAREA onClick="",<TEXTAREA onDblClick="",<TEXTAREA onMouseDown="",<TEXTAREA onMouseUp="",<TEXTAREA onMouseOver="",<TEXTAREA onMouseMove="",<TEXTAREA onMouseOut="",<TEXTAREA onKeyPress="",<TEXTAREA onKeyDown="",<TEXTAREA onKeyUp="",<TD WIDTH="",<TD HEIGHT="",<TD COLSPAN="",<TD ROWSPAN="",<TD ALIGN="",<TD VALIGN="",<TD NOWRAP="",<TD BORDERCOLOR="",<TD BORDERCOLORLIGHT="",<TD BORDERCOLORDARK="",<TD BACKGROUND="",<TD BGCOLOR="",<TD CLASS="",<TD ID="",<TD STYLE="",<TD TITLE="",<TD AXIS="",<TD HEADERS="",<TD SCOPE="",<TD ABBR="",<TD DIR="",<TD LANG="",<TD onClick="",<TD onDblClick="",<TD onMouseDown="",<TD onMouseUp="",<TD onMouseOver="",<TD onMouseMove="",<TD onMouseOut="",<TD onKeyPress="",<TD onKeyDown="",<TD onKeyUp="",<TBODY ALIGN="",<TBODY VALIGN="",<TBODY BGCOLOR="",<TBODY CLASS="",<TBODY ID="",<TBODY STYLE="",<TBODY TITLE="",<TBODY DIR="",<TBODY LANG="",<TBODY onClick="",<TBODY onDblClick="",<TBODY onMouseDown="",<TBODY onMouseUp="",<TBODY onMouseOver="",<TBODY onMouseMove="",<TBODY onMouseOut="",<TBODY onKeyPress="",<TBODY onKeyDown="",<TBODY onKeyUp="",<TABLE WIDTH="",<TABLE HEIGHT="",<TABLE BORDER="",<TABLE ALIGN="",<TABLE CELLPADDING="0",<TABLE CELLSPACING="0",<TABLE BORDERCOLOR="",<TABLE BORDERCOLORLIGHT="",<TABLE BORDERCOLORDARK="",<TABLE DATAPAGESIZE="",<TABLE BACKGROUND="",<TABLE COLS="",<TABLE BGCOLOR="",<TABLE FRAME="",<TABLE RULES="",<TABLE DIR="",<TABLE LANG="",<TABLE onClick="",<TABLE onDblClick="",<TABLE onMouseDown="",<TABLE onMouseUp="",<TABLE onMouseOver="",<TABLE onMouseMove="",<TABLE onMouseOut="",<TABLE onKeyPress="",<TABLE onKeyDown="",<TABLE onKeyUp="",<TABLE CLASS="",<TABLE ID="",<TABLE STYLE="",<TABLE TITLE="",<TABLE SUMMARY="",<SUP CLASS="",<SUP ID="",<SUP STYLE="",<SUP TITLE="",<SUP DIR="",<SUP LANG="",<SUP onClick="",<SUP onDblClick="",<SUP onMouseDown="",<SUP onMouseUp="",<SUP onMouseOver="",<SUP onMouseMove="",<SUP onMouseOut="",<SUP onKeyPress="",<SUP onKeyDown="",<SUP onKeyUp="",<SUB CLASS="",<SUB ID="",<SUB STYLE="",<SUB TITLE="",<SUB DIR="",<SUB LANG="",<SUB onClick="",<SUB onDblClick="",<SUB onMouseDown="",<SUB onMouseUp="",<SUB onMouseOver="",<SUB onMouseMove="",<SUB onMouseOut="",<SUB onKeyPress="",<SUB onKeyDown="",<SUB onKeyUp="",<STYLE TYPE="",<STYLE MEDIA="",<STYLE DISABLED="DISABLED",<STYLE TITLE="",<STRONG CLASS="",<STRONG ID="",<STRONG STYLE="",<STRONG TITLE="",<STRONG DIR="",<STRONG LANG="",<STRONG onClick="",<STRONG onDblClick="",<STRONG onMouseDown="",<STRONG onMouseUp="",<STRONG onMouseOver="",<STRONG onMouseMove="",<STRONG onMouseOut="",<STRONG onKeyPress="",<STRONG onKeyDown="",<STRONG onKeyUp="",<SPAN CLASS="",<SPAN ID="",<SPAN STYLE="",<SPAN TITLE="",<SPAN DIR="",<SPAN LANG="",<SPAN onClick="",<SPAN onDblClick="",<SPAN onMouseDown="",<SPAN onMouseUp="",<SPAN onMouseOver="",<SPAN onMouseMove="",<SPAN onMouseOut="",<SPAN onKeyPress="",<SPAN onKeyDown="",<SPAN onKeyUp="",<SOUND SRC="",<SOUND LOOP="",<SOUND DELAY="",<SMALL CLASS="",<SMALL ID="",<SMALL STYLE="",<SMALL TITLE="",<SMALL DIR="",<SMALL LANG="",<SMALL onClick="",<SMALL onDblClick="",<SMALL onMouseDown="",<SMALL onMouseUp="",<SMALL onMouseOver="",<SMALL onMouseMove="",<SMALL onMouseOut="",<SMALL onKeyPress="",<SMALL onKeyDown="",<SMALL onKeyUp="",<SELECT NAME="",<SELECT SIZE="",<SELECT MULTIPLE="",<SELECT DISABLED="DISABLED",<SELECT CLASS="",<SELECT ID="",<SELECT STYLE="",<SELECT ACCESSKEY="",<SELECT TABINDEX="",<SELECT TITLE="",<SELECT DIR="",<SELECT LANG="",<SELECT onFocus="",<SELECT onBlur="",<SELECT onChange="",<SCRIPT language="",<SCRIPT SRC="",<SCRIPT TYPE="",<SCRIPT runat="",<SCRIPT DEFER="DEFER",<SAMP CLASS="",<SAMP ID="",<SAMP STYLE="",<SAMP TITLE="",<SAMP DIR="",<SAMP LANG="",<SAMP onClick="",<SAMP onDblClick="",<SAMP onMouseDown="",<SAMP onMouseUp="",<SAMP onMouseOver="",<SAMP onMouseMove="",<SAMP onMouseOut="",<SAMP onKeyPress="",<SAMP onKeyDown="",<SAMP onKeyUp="",<Q CITE="",<Q CLASS="",<Q ID="",<Q STYLE="",<Q TITLE="",<Q DIR="",<Q LANG="",<Q onClick="",<Q onDblClick="",<Q onMouseDown="",<Q onMouseUp="",<Q onMouseOver="",<Q onMouseMove="",<Q onMouseOut="",<Q onKeyPress="",<Q onKeyDown="",<Q onKeyUp="",<PRE CLASS="",<PRE ID="",<PRE STYLE="",<PRE TITLE="",<PRE DIR="",<PRE LANG="",<PRE onClick="",<PRE onDblClick="",<PRE onMouseDown="",<PRE onMouseUp="",<PRE onMouseOver="",<PRE onMouseMove="",<PRE onMouseOut="",<PRE onKeyPress="",<PRE onKeyDown="",<PRE onKeyUp="",<PARAM NAME="",<PARAM VALUE="",<PARAM VALUETYPE="",<PARAM TYPE="",<PARAM ID="",<P ALIGN="",<P CLASS="",<P ID="",<P STYLE="",<P TITLE="",<P DIR="",<P LANG="",<P onClick="",<P onDblClick="",<P onMouseDown="",<P onMouseUp="",<P onMouseOver="",<P onMouseMove="",<P onMouseOut="",<P onKeyPress="",<P onKeyDown="",<P onKeyUp="",<OPTION VALUE="",<OPTION SELECTED="",<OPTION DISABLED="DISABLED",<OPTION CLASS="",<OPTION ID="",<OPTION STYLE="",<OPTION TITLE="",<OPTION LABEL="",<OPTION DIR="",<OPTION LANG="",<OPTION onFocus="",<OPTION onBlur="",<OPTION onChange="",<OPTION onClick="",<OPTION onDblClick="",<OPTION onMouseDown="",<OPTION onMouseUp="",<OPTION onMouseOver="",<OPTION onMouseMove="",<OPTION onMouseOut="",<OPTION onKeyPress="",<OPTION onKeyDown="",<OPTION onKeyUp="",<OPTGROUP LABEL="",<OPTGROUP DISABLED="DISABLED",<OPTGROUP CLASS="",<OPTGROUP ID="",<OPTGROUP STYLE="",<OPTGROUP TITLE="",<OPTGROUP DIR="",<OPTGROUP LANG="",<OPTGROUP onFocus="",<OPTGROUP onBlur="",<OPTGROUP onChange="",<OPTGROUP onClick="",<OPTGROUP onDblClick="",<OPTGROUP onMouseDown="",<OPTGROUP onMouseUp="",<OPTGROUP onMouseOver="",<OPTGROUP onMouseMove="",<OPTGROUP onMouseOut="",<OPTGROUP onKeyPress="",<OPTGROUP onKeyDown="",<OPTGROUP onKeyUp="",<OL START="",<OL type="",<OL COMPACT="",<OL CLASS="",<OL ID="",<OL STYLE="",<OL TITLE="",<OL DIR="",<OL LANG="",<OL onClick="",<OL onDblClick="",<OL onMouseDown="",<OL onMouseUp="",<OL onMouseOver="",<OL onMouseMove="",<OL onMouseOut="",<OL onKeyPress="",<OL onKeyDown="",<OL onKeyUp="",<OBJECT NOEXTERNALDATA="",<OBJECT CLASSID="",<OBJECT CODEBASE="",<OBJECT CODETYPE="",<OBJECT DATA="",<OBJECT TYPE="",<OBJECT ARCHIVE="",<OBJECT DECLARE="",<OBJECT NAME="",<OBJECT WIDTH="",<OBJECT HEIGHT="",<OBJECT HSPACE="",<OBJECT VSPACE="",<OBJECT ALIGN="",<OBJECT BORDER="",<OBJECT STANDBY="",<OBJECT CLASS="",<OBJECT ID="",<OBJECT STYLE="",<OBJECT ACCESSKEY="",<OBJECT TABINDEX="",<OBJECT TITLE="",<OBJECT USEMAP="",<OBJECT DIR="",<OBJECT LANG="",<OBJECT onClick="",<OBJECT onDblClick="",<OBJECT onMouseDown="",<OBJECT onMouseUp="",<OBJECT onMouseOver="",<OBJECT onMouseMove="",<OBJECT onMouseOut="",<OBJECT onKeyPress="",<OBJECT onKeyDown="",<OBJECT onKeyUp="",<NOSCRIPT CLASS="",<NOSCRIPT ID="",<NOSCRIPT STYLE="",<NOSCRIPT TITLE="",<NOFRAMES CLASS="",<NOFRAMES ID="",<NOFRAMES STYLE="",<NOFRAMES TITLE="",<MULTICOL COLS="",<MULTICOL WIDTH="",<MULTICOL GUTTER="",<META NAME="",<META HTTP-EQUIV="",<META CONTENT="",<MARQUEE BEHAVIOR="",<MARQUEE ALIGN="",<MARQUEE DIRECTION="",<MARQUEE BGCOLOR="",<MARQUEE WIDTH="",<MARQUEE HSPACE="",<MARQUEE HEIGHT="",<MARQUEE VSPACE="",<MARQUEE LOOP="",<MARQUEE SCROLLAMOUNT="",<MARQUEE SCROLLDELAY="",<MARQUEE TRUESPEED="",<MARQUEE CLASS="",<MARQUEE ID="",<MARQUEE STYLE="",<MARQUEE TITLE="",<MARQUEE DIR="",<MARQUEE LANG="",<MARQUEE onClick="",<MARQUEE onDblClick="",<MARQUEE onMouseDown="",<MARQUEE onMouseUp="",<MARQUEE onMouseOver="",<MARQUEE onMouseMove="",<MARQUEE onMouseOut="",<MARQUEE onKeyPress="",<MARQUEE onKeyDown="",<MARQUEE onKeyUp="",</string>
|
340
|
-
</dict>
|
341
|
-
</array>
|
342
|
-
</dict>
|
343
|
-
<key>uuid</key>
|
344
|
-
<string>69BD9C8F-15C0-4F67-8B7E-64E48B5E9E71</string>
|
345
|
-
</dict>
|
346
|
-
</plist>
|