diff --git a/Rakefile b/Rakefile index 3ee59be3e..79a9a5349 100644 --- a/Rakefile +++ b/Rakefile @@ -1,6 +1,7 @@ require 'timeout' ATOM_SRC_PATH = File.dirname(__FILE__) +DOT_ATOM_PATH = ENV['HOME'] + "/.atom" BUILD_DIR = 'atom-build' desc "Create xcode project from gpy file" @@ -48,25 +49,47 @@ task :install => :build do `echo '#!/bin/sh\nopen #{dest} -n --args --resource-path="#{ATOM_SRC_PATH}" --executed-from="$(pwd)" $@' > #{cli_path} && chmod 755 #{cli_path}` Rake::Task["create-dot-atom"].invoke() + Rake::Task["clone-default-bundles"].invoke() puts "\033[32mType `atom` to start Atom! In Atom press `cmd-,` to edit your `.atom` directory\033[0m" end desc "Creates .atom file if non exists" task "create-dot-atom" do - dot_atom_path = ENV['HOME'] + "/.atom" dot_atom_template_path = ATOM_SRC_PATH + "/.atom" replace_dot_atom = false - return if Dir.exists?(dot_atom_path) + next if Dir.exists?(DOT_ATOM_PATH) - `rm -rf "#{dot_atom_path}"` - `mkdir "#{dot_atom_path}"` - `cp "#{dot_atom_template_path}/atom.coffee" "#{dot_atom_path}"` + `rm -rf "#{DOT_ATOM_PATH}"` + `mkdir "#{DOT_ATOM_PATH}"` + `cp "#{dot_atom_template_path}/atom.coffee" "#{DOT_ATOM_PATH}"` for path in Dir.entries(dot_atom_template_path) next if ["..", ".", "atom.coffee"].include? path - `ln -s "#{dot_atom_template_path}/#{path}" "#{dot_atom_path}"` + `ln -s "#{dot_atom_template_path}/#{path}" "#{DOT_ATOM_PATH}"` end +end + +desc "Clone default bundles into .atom directory" +task "clone-default-bundles" => "create-dot-atom" do + bundle_urls = [ + "https://github.com/textmate/css.tmbundle.git", + "https://github.com/textmate/html.tmbundle.git", + "https://github.com/textmate/javascript.tmbundle.git", + "https://github.com/textmate/ruby-on-rails.tmbundle.git", + "https://github.com/textmate/ruby.tmbundle.git", + "https://github.com/textmate/text.tmbundle.git", + "https://github.com/jashkenas/coffee-script-tmbundle.git", + "https://github.com/cburyta/puppet-textmate.tmbundle.git", + ] + + for bundle_url in bundle_urls + bundle_dir = bundle_url[/([^\/]+?)(\.git)?$/, 1] + dest_path = File.join(DOT_ATOM_PATH, "bundles", bundle_dir) + next if Dir.exists? dest_path + `git clone --quiet #{bundle_url} #{dest_path}` + end +end desc "Clean build Atom via `xcodebuild`" task :clean do @@ -85,7 +108,7 @@ task :run, [:atom_arg] => :build do |name, args| end desc "Run the specs" -task :test => :clean do +task :test => ["clean", "create-dot-atom"] do Rake::Task["run"].invoke("--test") end diff --git a/bundles/CoffeeScriptBundle.tmbundle/.gitignore b/bundles/CoffeeScriptBundle.tmbundle/.gitignore deleted file mode 100644 index f05fcdc11..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*.cache \ No newline at end of file diff --git a/bundles/CoffeeScriptBundle.tmbundle/Commands/Align Assignments.tmCommand b/bundles/CoffeeScriptBundle.tmbundle/Commands/Align Assignments.tmCommand deleted file mode 100644 index 8c625724e..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Commands/Align Assignments.tmCommand +++ /dev/null @@ -1,159 +0,0 @@ - - - - - beforeRunningCommand - nop - command - #!/usr/bin/env ruby -# -# Based on (from Source.tmbundle): -# -# Assignment block tidier, version 0.1. -# -# Copyright Chris Poirier 2006. -# Licensed under the Academic Free License version 3.0. -# -# This script can be used as a command for TextMate to align all -# of the assignment signs within a block of text. When using it with -# TextMate, set the command input to "Selected Text" or "Document", -# and the output to "Replace Selected Text". Map it to a key -# equivalent, and any time you want to tidy up a block, either -# select it, or put your cursor somewhere within it; then hit the -# key equivalent. Voila. -# -# Note that this is the first version of the script, and it hasn't -# been heavily tested. You might encounter a bug or two. -# -# Note (by Dr Nic) - the "first version" seems to have worked for years. -# I hope the CoffeeScript version is as successful. -# -# Per the license, use of this script is ENTIRELY at your own risk. -# See the license for full details (they override anything I've -# said here). - -lines = STDIN.readlines() -selected_text = ENV.member?("TM_SELECTED_TEXT") - -relevant_line_pattern = /^[^:]+:/ -column_search_pattern = /[\t ]*:/ - -comments = [] - -begin - # - # If called on a selection, every assignment statement - # is in the block. If called on the document, we start on the - # current line and look up and down for the start and end of the - # block. - - if selected_text then - block_top = 1 - block_bottom = lines.length - else - - # - # We start looking on the current line. However, if the - # current line doesn't match the pattern, we may be just - # after or just before a block, and we should check. If - # neither, we are done. - - start_on = ENV["TM_LINE_NUMBER"].to_i - block_top = lines.length + 1 - block_bottom = 0 - search_top = 1 - search_bottom = lines.length - search_failed = false - - if lines[start_on - 1] !~ relevant_line_pattern then - if lines[start_on - 2] =~ relevant_line_pattern then - search_bottom = start_on = start_on - 1 - elsif lines[start_on] =~ relevant_line_pattern then - search_top = start_on = start_on - else - search_failed = true - end - end - - # - # Now with the search boundaries set, start looking for - # the block top and bottom. - - unless search_failed - start_on.downto(search_top) do |number| - if lines[number-1] =~ relevant_line_pattern then - block_top = number - else - break - end - end - - start_on.upto(search_bottom) do |number| - if lines[number-1] =~ relevant_line_pattern then - block_bottom = number - else - break - end - end - end - end - - # - # Now, iterate over the block and find the best column number - # for the = sign. The pattern will tell us the position of the - # first bit of whitespace before the equal sign. We put the - # equals sign to the right of the furthest-right one. Note that - # we cannot assume every line in the block is relevant. - - best_column = 0 - block_top.upto(block_bottom) do |number| - line = lines[number - 1] - if line =~ relevant_line_pattern then - m = column_search_pattern.match(line) - best_column = m.begin(0) if m.begin(0) > best_column - end - end - - - # - # Reformat the block. Again, we cannot assume all lines in the - # block are relevant. - - block_top.upto(block_bottom) do |number| - if lines[number-1] =~ relevant_line_pattern then - before, after = lines[number-1].split(/[\t ]*:[\t ]*/, 2) - # lines[number-1] = [before.ljust(best_column), after].join(after[0,1] == '>' ? ":" : ": ") - lines[number-1] = ["#{before}:".ljust(best_column + 2), after].join - end - end - - -rescue => e - comments << "Error: #{e.inspect}" - comments << e.backtrace -end - -# -# Output the replacement text - -lines.each do |line| - puts line -end - -comments.flatten.each { |c| puts "# #{c}" } - - - input - selection - keyEquivalent - ~@] - name - Align Assignments - output - replaceSelectedText - scope - source.coffee - uuid - EE3293A5-3761-40BD-9CA8-DAAA176AA19E - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Commands/CoffeeScript.sublime-build b/bundles/CoffeeScriptBundle.tmbundle/Commands/CoffeeScript.sublime-build deleted file mode 100644 index 7fa2c6c77..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Commands/CoffeeScript.sublime-build +++ /dev/null @@ -1,6 +0,0 @@ -{ - "path": "$HOME/bin:/usr/local/bin:$PATH", - "cmd": ["coffee","-c","$file"], - "file_regex": "^(...*?):([0-9]*):?([0-9]*)", - "selector": "source.coffee" -} diff --git a/bundles/CoffeeScriptBundle.tmbundle/Commands/Compile and Display JS.tmCommand b/bundles/CoffeeScriptBundle.tmbundle/Commands/Compile and Display JS.tmCommand deleted file mode 100644 index bacb8a846..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Commands/Compile and Display JS.tmCommand +++ /dev/null @@ -1,33 +0,0 @@ - - - - - beforeRunningCommand - nop - command - #!/bin/bash - -function pre { - echo -n '<pre style="word-wrap: break-word;">' - perl -pe '$| = 1; s/&/&amp;/g; s/</&lt;/g; s/>/&gt;/g; s/$\\n/<br>/' - echo '</pre>' -} - -${TM_COFFEE:=coffee} -scp --bare | pre - - fallbackInput - document - input - selection - keyEquivalent - @b - name - Compile and Display JS - output - showAsHTML - scope - source.coffee - uuid - D749F761-1740-4918-9490-90DF376BA72E - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Commands/Insert Heredoc comment.tmCommand b/bundles/CoffeeScriptBundle.tmbundle/Commands/Insert Heredoc comment.tmCommand deleted file mode 100644 index db50c48a5..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Commands/Insert Heredoc comment.tmCommand +++ /dev/null @@ -1,34 +0,0 @@ - - - - - beforeRunningCommand - nop - command - #!/usr/bin/env ruby - -column_number = ENV['TM_COLUMN_NUMBER'] -whitespace = " " * (column_number.to_i - 1) - -print <<-EOS -### -#{whitespace}$0 -#{whitespace}### -EOS - - fallbackInput - line - input - none - keyEquivalent - ^# - name - Insert Heredoc """ comment - output - insertAsSnippet - scope - source.coffee - uuid - 68A86250-0280-11E0-A976-0800200C9A66 - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Commands/Insert Heredoc triple double quotes.tmCommand b/bundles/CoffeeScriptBundle.tmbundle/Commands/Insert Heredoc triple double quotes.tmCommand deleted file mode 100644 index a3be8546b..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Commands/Insert Heredoc triple double quotes.tmCommand +++ /dev/null @@ -1,34 +0,0 @@ - - - - - beforeRunningCommand - nop - command - #!/usr/bin/env ruby - -column_number = ENV['TM_COLUMN_NUMBER'] -whitespace = " " * (column_number.to_i - 1) - -print <<-EOS -""" -#{whitespace}$0 -#{whitespace}""" -EOS - - fallbackInput - line - input - none - keyEquivalent - @" - name - Insert Heredoc """ quotes - output - insertAsSnippet - scope - source.coffee - uuid - F08537AF-4F02-4040-999D-F0785CF64C02 - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Commands/Insert Heredoc triple single quotes.tmCommand b/bundles/CoffeeScriptBundle.tmbundle/Commands/Insert Heredoc triple single quotes.tmCommand deleted file mode 100644 index 7584d19f5..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Commands/Insert Heredoc triple single quotes.tmCommand +++ /dev/null @@ -1,34 +0,0 @@ - - - - - beforeRunningCommand - nop - command - #!/usr/bin/env ruby - -column_number = ENV['TM_COLUMN_NUMBER'] -whitespace = " " * (column_number.to_i - 1) - -print <<-EOS -''' -#{whitespace}$0 -#{whitespace}''' -EOS - - fallbackInput - line - input - none - keyEquivalent - @' - name - Insert Heredoc ''' quotes - output - insertAsSnippet - scope - source.coffee - uuid - C4F99E3D-1540-4BC1-8038-0A19D65BABC8 - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Commands/New Function.tmCommand b/bundles/CoffeeScriptBundle.tmbundle/Commands/New Function.tmCommand deleted file mode 100644 index 3833b4716..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Commands/New Function.tmCommand +++ /dev/null @@ -1,27 +0,0 @@ - - - - - beforeRunningCommand - nop - command - cat <<SNIPPET -${TM_SELECTED_TEXT:-$TM_CURRENT_WORD} = (\${1:args}) -> - \$0 -SNIPPET - fallbackInput - word - input - selection - keyEquivalent - $ - name - New Function - output - insertAsSnippet - scope - source.coffee - uuid - 192428A1-8684-4172-8728-225B4C9E532F - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Commands/Run selected text.tmCommand b/bundles/CoffeeScriptBundle.tmbundle/Commands/Run selected text.tmCommand deleted file mode 100644 index e1f72fda3..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Commands/Run selected text.tmCommand +++ /dev/null @@ -1,25 +0,0 @@ - - - - - beforeRunningCommand - nop - command - #!/bin/bash - -${TM_COFFEE:=coffee} -s - - input - selection - keyEquivalent - @R - name - Run selected text - output - showAsTooltip - scope - source.coffee - uuid - 90424631-D00B-448C-B157-DAC92DFB2858 - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Commands/Run.tmCommand b/bundles/CoffeeScriptBundle.tmbundle/Commands/Run.tmCommand deleted file mode 100644 index 0e46226d5..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Commands/Run.tmCommand +++ /dev/null @@ -1,32 +0,0 @@ - - - - - beforeRunningCommand - nop - command - #!/bin/bash - -function pre { - echo -n '<pre style="word-wrap: break-word;">' - perl -pe '$| = 1; s/&/&amp;/g; s/</&lt;/g; s/>/&gt;/g; s/$\\n/<br>/' - echo '</pre>' -} - - -${TM_COFFEE:=coffee} -s | pre - - input - selection - keyEquivalent - @r - name - Run - output - showAsHTML - scope - source.coffee - uuid - 30395DAB-44A6-44F7-99E1-02D64621303A - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Preferences/CoffeeScript.tmPreferences b/bundles/CoffeeScriptBundle.tmbundle/Preferences/CoffeeScript.tmPreferences deleted file mode 100644 index 1fdfb720d..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Preferences/CoffeeScript.tmPreferences +++ /dev/null @@ -1,36 +0,0 @@ - - - - - name - Comments - scope - source.coffee - settings - - shellVariables - - - name - TM_COMMENT_START - value - # - - - name - TM_COMMENT_START_2 - value - ### - - - name - TM_COMMENT_END_2 - value - ### - - - - uuid - 0A92C6F6-4D73-4859-B38C-4CC19CBC191F - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Preferences/Disable Indent Corrections.tmPreferences b/bundles/CoffeeScriptBundle.tmbundle/Preferences/Disable Indent Corrections.tmPreferences deleted file mode 100644 index 9974f05e5..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Preferences/Disable Indent Corrections.tmPreferences +++ /dev/null @@ -1,17 +0,0 @@ - - - - - name - Disable Indent Corrections - scope - source.coffee - settings - - disableIndentCorrections - - - uuid - 5E57C0C3-77D5-4809-A131-F777EE264908 - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Preferences/Indent.tmPreferences b/bundles/CoffeeScriptBundle.tmbundle/Preferences/Indent.tmPreferences deleted file mode 100644 index 78b7bdf03..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Preferences/Indent.tmPreferences +++ /dev/null @@ -1,27 +0,0 @@ - - - - - name - Indent - scope - source.coffee - settings - - decreaseIndentPattern - ^\s*(\}|\]|else|catch|finally)$ - increaseIndentPattern - (?x) - ^\s* - (.*class\s+ - |[a-zA-Z\$_](\w|\$|:|\.)*\s*(?=\:(\s*\(.*\))?\s*((=|-)>\s*$)) # function that is not one line - |[a-zA-Z\$_](\w|\$|\.)*\s*(:|=)\s*((if|while)(?!.*?then)|for|$) # assignment using multiline if/while/for - |(if|while)\b(?!.*?then)|for\b - |(try|finally|catch\s+\S.*)\s*$ - |.*[-=]>$ - |.*[\{\[]$) - - uuid - C5D6C716-12FE-4CE8-A916-6CABEDE8AFE7 - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Preferences/Symbol List Method 2.tmPreferences b/bundles/CoffeeScriptBundle.tmbundle/Preferences/Symbol List Method 2.tmPreferences deleted file mode 100644 index ff94bf216..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Preferences/Symbol List Method 2.tmPreferences +++ /dev/null @@ -1,19 +0,0 @@ - - - - - name - Symbol List: Method - scope - source.coffee meta.function.coffee - settings - - showInSymbolList - 1 - symbolTransformation - s/^\s*([a-zA-Z\$_]+)\s*=/$2/ - - uuid - 419D24D8-0DD6-4D9A-8CA0-6D9CD740BEEC - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Preferences/Symbol List Method.tmPreferences b/bundles/CoffeeScriptBundle.tmbundle/Preferences/Symbol List Method.tmPreferences deleted file mode 100644 index 624eee22f..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Preferences/Symbol List Method.tmPreferences +++ /dev/null @@ -1,17 +0,0 @@ - - - - - name - Symbol List: Method Instance - scope - source.coffee entity.name.type.instance - settings - - showInSymbolList - 0 - - uuid - B087AF2F-8946-4EA9-8409-49E7C4A2EEF0 - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/README.markdown b/bundles/CoffeeScriptBundle.tmbundle/README.markdown deleted file mode 100644 index cd6fd7839..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/README.markdown +++ /dev/null @@ -1,21 +0,0 @@ -CoffeeScript.tmbundle ---------------------- - -A **TextMate Bundle** for the **CoffeeScript** programming language. - -Installation: -------------- - - cd ~/Library/Application\ Support/TextMate/Bundles (Textmate 1) - cd /Applications/TextMate.app/Contents/SharedSupport/Bundles (Textmate 1.5.10 & 2) - git clone git://github.com/jashkenas/coffee-script-tmbundle CoffeeScriptBundle.tmbundle - -The bundle includes syntax highlighting, the ability to compile or evaluate CoffeeScript inline, convenient symbol listing for functions, and a number of expando snippets. - -Patches for additions are always welcome. - -![screenshot](http://jashkenas.s3.amazonaws.com/images/coffeescript/textmate-highlighting.png) - -If your TextMate.app is having trouble finding the `coffee` command, remember that [TextMate doesn't inherit your regular PATH](http://wiki.macromates.com/Troubleshooting/TextMateAndThePath). - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Array comprehension.tmSnippet b/bundles/CoffeeScriptBundle.tmbundle/Snippets/Array comprehension.tmSnippet deleted file mode 100644 index 826cb1264..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Array comprehension.tmSnippet +++ /dev/null @@ -1,17 +0,0 @@ - - - - - content - for ${1:name} in ${2:array} - ${0:# body...} - name - Array Comprehension - scope - source.coffee - tabTrigger - fora - uuid - 2D4AC0B4-47AA-4E38-9A11-09A48C2A9439 - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Bound Function.tmSnippet b/bundles/CoffeeScriptBundle.tmbundle/Snippets/Bound Function.tmSnippet deleted file mode 100644 index 1e3fe0e2e..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Bound Function.tmSnippet +++ /dev/null @@ -1,17 +0,0 @@ - - - - - content - (${1:args}) => - ${0:# body...} - name - Function (bound) - scope - source.coffee - tabTrigger - bfun - uuid - 20BDC055-ED67-4D0E-A47F-ADAA828EFF2B - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Class.tmSnippet b/bundles/CoffeeScriptBundle.tmbundle/Snippets/Class.tmSnippet deleted file mode 100644 index a666926fc..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Class.tmSnippet +++ /dev/null @@ -1,20 +0,0 @@ - - - - - content - class ${1:ClassName}${2: extends ${3:Ancestor}} - - ${4:constructor: (${5:args}) -> - ${6:# body...}} - $7 - name - Class - scope - source.coffee - tabTrigger - cla - uuid - 765ACBD3-380A-4CF8-9111-345A36A0DAE7 - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Else if.tmSnippet b/bundles/CoffeeScriptBundle.tmbundle/Snippets/Else if.tmSnippet deleted file mode 100644 index 6e2fd3688..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Else if.tmSnippet +++ /dev/null @@ -1,17 +0,0 @@ - - - - - content - else if ${1:condition} - ${0:# body...} - name - Else if - scope - source.coffee - tabTrigger - elif - uuid - EA8F5EDB-6E1E-4C36-9CA5-12B108F1A7C9 - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Function.tmSnippet b/bundles/CoffeeScriptBundle.tmbundle/Snippets/Function.tmSnippet deleted file mode 100644 index 6e58a6a1c..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Function.tmSnippet +++ /dev/null @@ -1,19 +0,0 @@ - - - - - content - (${1:args}) -> - ${0:# body...} - - - name - Function - scope - source.coffee - tabTrigger - fun - uuid - F2E2E79A-A85D-471D-9847-72AE40205942 - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Snippets/If __ Else.tmSnippet b/bundles/CoffeeScriptBundle.tmbundle/Snippets/If __ Else.tmSnippet deleted file mode 100644 index 409d0aa63..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Snippets/If __ Else.tmSnippet +++ /dev/null @@ -1,19 +0,0 @@ - - - - - content - if ${1:condition} - ${2:# body...} -else - ${3:# body...} - name - If .. Else - scope - source.coffee - tabTrigger - ife - uuid - 2AD19F12-E499-4715-9A47-FC8D594BC550 - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Snippets/If.tmSnippet b/bundles/CoffeeScriptBundle.tmbundle/Snippets/If.tmSnippet deleted file mode 100644 index 734b5c2eb..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Snippets/If.tmSnippet +++ /dev/null @@ -1,17 +0,0 @@ - - - - - content - if ${1:condition} - ${0:# body...} - name - If - scope - source.coffee - tabTrigger - if - uuid - F4FDFB3A-71EF-48A4-93F4-178B949546B1 - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Interpolated Code.tmSnippet b/bundles/CoffeeScriptBundle.tmbundle/Snippets/Interpolated Code.tmSnippet deleted file mode 100644 index 72c839f80..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Interpolated Code.tmSnippet +++ /dev/null @@ -1,18 +0,0 @@ - - - - - content - #{${1:$TM_SELECTED_TEXT}} - keyEquivalent - # - name - Interpolated Code - scope - (string.quoted.double.coffee) - string source, (string.quoted.double.heredoc.coffee) - string source - tabTrigger - # - uuid - C04ED189-6ACB-44E6-AD5B-911B760AD1CC - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Object comprehension.tmSnippet b/bundles/CoffeeScriptBundle.tmbundle/Snippets/Object comprehension.tmSnippet deleted file mode 100644 index faac99251..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Object comprehension.tmSnippet +++ /dev/null @@ -1,17 +0,0 @@ - - - - - content - for ${1:key}, ${2:value} of ${3:Object} - ${0:# body...} - name - Object comprehension - scope - source.coffee - tabTrigger - foro - uuid - 9D126CC5-EA14-4A40-B6D3-6A5FC1AC1420 - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Range comprehension (exclusive).tmSnippet b/bundles/CoffeeScriptBundle.tmbundle/Snippets/Range comprehension (exclusive).tmSnippet deleted file mode 100644 index 9d26ddd69..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Range comprehension (exclusive).tmSnippet +++ /dev/null @@ -1,17 +0,0 @@ - - - - - content - for ${1:name} in [${2:start}...${3:finish}]${4: by ${5:step}} - ${0:# body...} - name - Range comprehension (exclusive) - scope - source.coffee - tabTrigger - forrex - uuid - FA6AB9BF-3444-4A8C-B010-C95C2CF5BAB3 - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Range comprehension (inclusive).tmSnippet b/bundles/CoffeeScriptBundle.tmbundle/Snippets/Range comprehension (inclusive).tmSnippet deleted file mode 100644 index 991a15748..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Range comprehension (inclusive).tmSnippet +++ /dev/null @@ -1,17 +0,0 @@ - - - - - content - for ${1:name} in [${2:start}..${3:finish}]${4: by ${5:step}} - ${0:# body...} - name - Range comprehension (inclusive) - scope - source.coffee - tabTrigger - forr - uuid - E0F8E45A-9262-4DD6-ADFF-B5B9D6CE99C2 - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Raw javascript.tmSnippet b/bundles/CoffeeScriptBundle.tmbundle/Snippets/Raw javascript.tmSnippet deleted file mode 100644 index c51d264ec..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Raw javascript.tmSnippet +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - \`${1:`pbpaste`}\` - keyEquivalent - ^j - name - Raw javascript - scope - source.coffee - uuid - 422A59E7-FC36-4E99-B01C-6353515BB544 - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Switch.tmSnippet b/bundles/CoffeeScriptBundle.tmbundle/Snippets/Switch.tmSnippet deleted file mode 100644 index 6ebe7fb85..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Switch.tmSnippet +++ /dev/null @@ -1,18 +0,0 @@ - - - - - content - switch ${1:object} - when ${2:value} - ${0:# body...} - name - Switch - scope - source.coffee - tabTrigger - swi - uuid - 3931A7C6-F1FB-484F-82D1-26F5A8F779D0 - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Ternary If.tmSnippet b/bundles/CoffeeScriptBundle.tmbundle/Snippets/Ternary If.tmSnippet deleted file mode 100644 index 4f2465d36..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Ternary If.tmSnippet +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - if ${1:condition} then ${2:value} else ${3:other} - name - Ternary If - scope - source.coffee - tabTrigger - ifte - uuid - CF0B4684-E4CB-4E10-8C25-4D15400C3385 - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Try __ Catch.tmSnippet b/bundles/CoffeeScriptBundle.tmbundle/Snippets/Try __ Catch.tmSnippet deleted file mode 100644 index 1b2415357..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Try __ Catch.tmSnippet +++ /dev/null @@ -1,19 +0,0 @@ - - - - - content - try - $1 -catch ${2:error} - $3 - name - Try .. Catch - scope - source.coffee - tabTrigger - try - uuid - CAFB0DED-5E23-4A84-AC20-87FBAF22DBAC - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Unless.tmSnippet b/bundles/CoffeeScriptBundle.tmbundle/Snippets/Unless.tmSnippet deleted file mode 100644 index 3691b0678..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Snippets/Unless.tmSnippet +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - ${1:action} unless ${2:condition} - name - Unless - scope - source.coffee - tabTrigger - unl - uuid - E561AECD-5933-4F59-A6F7-FA96E1203606 - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Snippets/h1.tmSnippet b/bundles/CoffeeScriptBundle.tmbundle/Snippets/h1.tmSnippet deleted file mode 100644 index 0ef035cbf..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Snippets/h1.tmSnippet +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - # $1 -# ============================================================================== -$0 - name - Subheader - scope - source.coffee - tabTrigger - /1 - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Snippets/h2.tmSnippet b/bundles/CoffeeScriptBundle.tmbundle/Snippets/h2.tmSnippet deleted file mode 100644 index ec571fef7..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Snippets/h2.tmSnippet +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - # $1 -# ---------------------------------------------------------------------- -$0 - name - Subheader - scope - source.coffee - tabTrigger - /2 - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Snippets/h3.tmSnippet b/bundles/CoffeeScriptBundle.tmbundle/Snippets/h3.tmSnippet deleted file mode 100644 index 2bb8ad0a1..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Snippets/h3.tmSnippet +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - # $1 -# ------------------------- -$0 - name - Subheader - scope - source.coffee - tabTrigger - /3 - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Snippets/log.tmSnippet b/bundles/CoffeeScriptBundle.tmbundle/Snippets/log.tmSnippet deleted file mode 100644 index 33e7add5e..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Snippets/log.tmSnippet +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - console.log $0 - name - log - scope - source.coffee - tabTrigger - log - uuid - FBC44B18-323A-4C00-A35B-15E41830C5AD - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Snippets/require.tmSnippet b/bundles/CoffeeScriptBundle.tmbundle/Snippets/require.tmSnippet deleted file mode 100644 index 27f7aa7a5..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Snippets/require.tmSnippet +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - ${2/^.*?([\w_]+).*$/\L$1/} = require ${2:'${1:sys}'}$3 - name - require - scope - source.coffee - tabTrigger - req - uuid - 8A65E175-18F2-428F-A695-73E01139E41A - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/Syntaxes/CoffeeScript.tmLanguage b/bundles/CoffeeScriptBundle.tmbundle/Syntaxes/CoffeeScript.tmLanguage deleted file mode 100644 index 461e86744..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/Syntaxes/CoffeeScript.tmLanguage +++ /dev/null @@ -1,736 +0,0 @@ - - - - - comment - CoffeeScript Syntax: version 1 - fileTypes - - coffee - Cakefile - coffee.erb - - firstLineMatch - ^#!.*\bcoffee - foldingStartMarker - ^\s*class\s+\S.*$|.*(->|=>)\s*$|.*[\[{]\s*$ - foldingStopMarker - ^\s*$|^\s*[}\]]\s*$ - keyEquivalent - ^~C - name - CoffeeScript - patterns - - - captures - - 1 - - name - variable.parameter.function.coffee - - 2 - - name - storage.type.function.coffee - - - comment - match stuff like: a -> … - match - (\([^()]*?\))\s*([=-]>) - name - meta.inline.function.coffee - - - captures - - 1 - - name - keyword.operator.new.coffee - - 2 - - name - entity.name.type.instance.coffee - - - match - (new)\s+(\w+(?:\.\w*)*) - name - meta.class.instance.constructor - - - begin - ''' - beginCaptures - - 0 - - name - punctuation.definition.string.begin.coffee - - - end - ''' - endCaptures - - 0 - - name - punctuation.definition.string.end.coffee - - - name - string.quoted.heredoc.coffee - - - begin - """ - beginCaptures - - 0 - - name - punctuation.definition.string.begin.coffee - - - end - """ - endCaptures - - 0 - - name - punctuation.definition.string.end.coffee - - - name - string.quoted.double.heredoc.coffee - patterns - - - match - \\. - name - constant.character.escape.coffee - - - include - #interpolated_coffee - - - - - begin - ` - beginCaptures - - 0 - - name - punctuation.definition.string.begin.coffee - - - end - ` - endCaptures - - 0 - - name - punctuation.definition.string.end.coffee - - - name - string.quoted.script.coffee - patterns - - - match - \\(x\h{2}|[0-2][0-7]{,2}|3[0-6][0-7]|37[0-7]?|[4-7][0-7]?|.) - name - constant.character.escape.coffee - - - - - begin - (?<!#)###(?!#) - captures - - 0 - - name - punctuation.definition.comment.coffee - - - end - ###(?:[ \t]*\n) - name - comment.block.coffee - patterns - - - match - @\w* - name - storage.type.annotation.coffeescript - - - - - captures - - 1 - - name - punctuation.definition.comment.coffee - - - match - (#)(?!\{).*$\n? - name - comment.line.number-sign.coffee - - - begin - /{3} - end - /{3}[imgy]{0,4} - name - string.regexp.coffee - patterns - - - include - #interpolated_coffee - - - include - #embedded_comment - - - - - match - /(?![\s=/*+{}?]).*?[^\\]/[igmy]{0,4}(?![a-zA-Z0-9]) - name - string.regexp.coffee - - - match - (?x) - \b(?<![\.\$])( - break|by|catch|continue|else|finally|for|in|of|if|return|switch| - then|throw|try|unless|when|while|until|loop|do|(?<=for)\s+own - )(?!\s*:)\b - - name - keyword.control.coffee - - - match - (?x) - and=|or=|!|%|&|\^|\*|\/|(\-)?\-(?!>)|\+\+|\+|~|==|=(?!>)|!=|<=|>=|<<=|>>=| - >>>=|<>|<|>|!|&&|\.\.(\.)?|\?|\||\|\||\:|\*=|(?<!\()/=|%=|\+=|\-=|&=| - \^=|\b(?<![\.\$])(instanceof|new|delete|typeof|and|or|is|isnt|not)\b - - name - keyword.operator.coffee - - - captures - - 1 - - name - variable.assignment.coffee - - 4 - - name - punctuation.separator.key-value - - 5 - - name - keyword.operator.coffee - - - match - ([a-zA-Z\$_](\w|\$|\.)*\s*(?!\::)((:)|(=))(?!(\s*\(.*\))?\s*((=|-)>))) - name - variable.assignment.coffee - - - begin - (?<=\s|^)([\[\{])(?=.*?[\]\}]\s+[:=]) - beginCaptures - - 0 - - name - keyword.operator.coffee - - - end - ([\]\}]\s*[:=]) - endCaptures - - 0 - - name - keyword.operator.coffee - - - name - meta.variable.assignment.destructured.coffee - patterns - - - include - #variable_name - - - include - #instance_variable - - - include - #single_quoted_string - - - include - #double_quoted_string - - - include - #numeric - - - - - captures - - 2 - - name - entity.name.function.coffee - - 3 - - name - entity.name.function.coffee - - 4 - - name - variable.parameter.function.coffee - - 5 - - name - storage.type.function.coffee - - - match - (?x) - (\s*) - (?=[a-zA-Z\$_]) - ( - [a-zA-Z\$_](\w|\$|:|\.)*\s* - (?=[:=](\s*\(.*\))?\s*([=-]>)) - ) - - name - meta.function.coffee - - - match - [=-]> - name - storage.type.function.coffee - - - match - \b(?<!\.)(true|on|yes)(?!\s*[:=])\b - name - constant.language.boolean.true.coffee - - - match - \b(?<!\.)(false|off|no)(?!\s*[:=])\b - name - constant.language.boolean.false.coffee - - - match - \b(?<!\.)null(?!\s*[:=])\b - name - constant.language.null.coffee - - - match - \b(?<!\.)(super|this|extends)(?!\s*[:=])\b - name - variable.language.coffee - - - captures - - 1 - - name - storage.type.class.coffee - - 2 - - name - entity.name.type.class.coffee - - 3 - - name - keyword.control.inheritance.coffee - - 4 - - name - entity.other.inherited-class.coffee - - - match - (class\b)\s+(@?[a-zA-Z\$_][\w\.]*)?(?:\s+(extends)\s+(@?[a-zA-Z\$\._][\w\.]*))? - name - meta.class.coffee - - - match - \b(debugger|\\)\b - name - keyword.other.coffee - - - match - (?x)\b( - Array|ArrayBuffer|Blob|Boolean|Date|document|event|Function| - Int(8|16|32|64)Array|Math|Map|Number| - Object|Proxy|RegExp|Set|String|WeakMap| - window|Uint(8|16|32|64)Array|XMLHttpRequest - )\b - name - support.class.coffee - - - match - \b(console)\b - name - entity.name.type.object.coffee - - - match - ((?<=console\.)(debug|warn|info|log|error|time|timeEnd|assert))\b - name - support.function.console.coffee - - - match - (?x)\b( - decodeURI(Component)?|encodeURI(Component)?|eval|parse(Float|Int)|require - )\b - name - support.function.coffee - - - match - (?x)((?<=\.)( - apply|call|concat|every|filter|forEach|from|hasOwnProperty|indexOf| - isPrototypeOf|join|lastIndexOf|map|of|pop|propertyIsEnumerable|push| - reduce(Right)?|reverse|shift|slice|some|sort|splice|to(Locale)?String| - unshift|valueOf - ))\b - name - support.function.method.array.coffee - - - match - (?x)((?<=Array\.)( - isArray - ))\b - name - support.function.static.array.coffee - - - match - (?x)((?<=Object\.)( - create|definePropert(ies|y)|freeze|getOwnProperty(Descriptors?|Names)| - getProperty(Descriptor|Names)|getPrototypeOf|is(Extensible|Frozen|Sealed)?| - isnt|keys|preventExtensions|seal - ))\b - name - support.function.static.object.coffee - - - match - (?x)((?<=Math\.)( - abs|acos|acosh|asin|asinh|atan|atan2|atanh|ceil|cos|cosh|exp|expm1|floor| - hypot|log|log10|log1p|log2|max|min|pow|random|round|sign|sin|sinh|sqrt| - tan|tanh|trunc - ))\b - name - support.function.static.math.coffee - - - match - (?x)((?<=Number\.)( - is(Finite|Integer|NaN)|toInteger - ))\b - name - support.function.static.number.coffee - - - match - \b(Infinity|NaN|undefined)\b - name - constant.language.coffee - - - match - \; - name - punctuation.terminator.statement.coffee - - - match - ,[ |\t]* - name - meta.delimiter.object.comma.coffee - - - match - \. - name - meta.delimiter.method.period.coffee - - - match - \{|\} - name - meta.brace.curly.coffee - - - match - \(|\) - name - meta.brace.round.coffee - - - match - \[|\]\s* - name - meta.brace.square.coffee - - - include - #instance_variable - - - include - #single_quoted_string - - - include - #double_quoted_string - - - include - #numeric - - - repository - - double_quoted_string - - patterns - - - begin - " - beginCaptures - - 0 - - name - punctuation.definition.string.begin.coffee - - - end - " - endCaptures - - 0 - - name - punctuation.definition.string.end.coffee - - - name - string.quoted.double.coffee - patterns - - - match - \\(x\h{2}|[0-2][0-7]{,2}|3[0-6][0-7]|37[0-7]?|[4-7][0-7]?|.) - name - constant.character.escape.coffee - - - include - #interpolated_coffee - - - - - - embedded_comment - - patterns - - - captures - - 1 - - name - punctuation.definition.comment.coffee - - - match - (?<!\\)(#).*$\n? - name - comment.line.number-sign.coffee - - - - instance_variable - - patterns - - - match - (@)([a-zA-Z_\$]\w*)? - name - variable.other.readwrite.instance.coffee - - - - interpolated_coffee - - patterns - - - begin - \#\{ - captures - - 0 - - name - punctuation.section.embedded.coffee - - - end - \} - name - source.coffee.embedded.source - patterns - - - include - $self - - - - - - numeric - - patterns - - - match - (?<!\$)\b((0([box])[0-9a-fA-F]+)|([0-9]+(\.[0-9]+)?(e[+\-]?[0-9]+)?))\b - name - constant.numeric.coffee - - - - single_quoted_string - - patterns - - - begin - ' - beginCaptures - - 0 - - name - punctuation.definition.string.begin.coffee - - - end - ' - endCaptures - - 0 - - name - punctuation.definition.string.end.coffee - - - name - string.quoted.single.coffee - patterns - - - match - \\(x\h{2}|[0-2][0-7]{,2}|3[0-6][0-7]?|37[0-7]?|[4-7][0-7]?|.) - name - constant.character.escape.coffee - - - - - - variable_name - - patterns - - - captures - - 1 - - name - variable.assignment.coffee - - - match - ([a-zA-Z\$_]\w*(\.\w+)*) - name - variable.assignment.coffee - - - - - scopeName - source.coffee - uuid - 5B520980-A7D5-4E10-8582-1A4C889A8DE5 - - diff --git a/bundles/CoffeeScriptBundle.tmbundle/info.plist b/bundles/CoffeeScriptBundle.tmbundle/info.plist deleted file mode 100644 index c2d0c4469..000000000 --- a/bundles/CoffeeScriptBundle.tmbundle/info.plist +++ /dev/null @@ -1,114 +0,0 @@ - - - - - mainMenu - - items - - D77D67C9-7BA6-4B42-A563-2E2416DEEB53 - E11D7545-67B4-4191-8012-756E2C9AD382 - 5786C9CC-C7ED-46FA-9D0B-069E52DAF268 - 1C7FD768-1DEA-4825-8220-FACA8D507E80 - - submenus - - 1C7FD768-1DEA-4825-8220-FACA8D507E80 - - items - - F08537AF-4F02-4040-999D-F0785CF64C02 - C4F99E3D-1540-4BC1-8038-0A19D65BABC8 - 68A86250-0280-11E0-A976-0800200C9A66 - EE3293A5-3761-40BD-9CA8-DAAA176AA19E - 422A59E7-FC36-4E99-B01C-6353515BB544 - 8A65E175-18F2-428F-A695-73E01139E41A - C04ED189-6ACB-44E6-AD5B-911B760AD1CC - FBC44B18-323A-4C00-A35B-15E41830C5AD - - name - Other - - 5786C9CC-C7ED-46FA-9D0B-069E52DAF268 - - items - - 192428A1-8684-4172-8728-225B4C9E532F - F2E2E79A-A85D-471D-9847-72AE40205942 - 20BDC055-ED67-4D0E-A47F-ADAA828EFF2B - 2D4AC0B4-47AA-4E38-9A11-09A48C2A9439 - 9D126CC5-EA14-4A40-B6D3-6A5FC1AC1420 - FA6AB9BF-3444-4A8C-B010-C95C2CF5BAB3 - E0F8E45A-9262-4DD6-ADFF-B5B9D6CE99C2 - 3931A7C6-F1FB-484F-82D1-26F5A8F779D0 - 765ACBD3-380A-4CF8-9111-345A36A0DAE7 - CAFB0DED-5E23-4A84-AC20-87FBAF22DBAC - - name - Constructs - - D77D67C9-7BA6-4B42-A563-2E2416DEEB53 - - items - - 30395DAB-44A6-44F7-99E1-02D64621303A - D749F761-1740-4918-9490-90DF376BA72E - 90424631-D00B-448C-B157-DAC92DFB2858 - - name - Run - - E11D7545-67B4-4191-8012-756E2C9AD382 - - items - - F4FDFB3A-71EF-48A4-93F4-178B949546B1 - 2AD19F12-E499-4715-9A47-FC8D594BC550 - EA8F5EDB-6E1E-4C36-9CA5-12B108F1A7C9 - CF0B4684-E4CB-4E10-8C25-4D15400C3385 - E561AECD-5933-4F59-A6F7-FA96E1203606 - - name - Control - - - - name - CoffeeScript - ordering - - 5B520980-A7D5-4E10-8582-1A4C889A8DE5 - 0A92C6F6-4D73-4859-B38C-4CC19CBC191F - 419D24D8-0DD6-4D9A-8CA0-6D9CD740BEEC - B087AF2F-8946-4EA9-8409-49E7C4A2EEF0 - C5D6C716-12FE-4CE8-A916-6CABEDE8AFE7 - EE3293A5-3761-40BD-9CA8-DAAA176AA19E - 192428A1-8684-4172-8728-225B4C9E532F - 30395DAB-44A6-44F7-99E1-02D64621303A - D749F761-1740-4918-9490-90DF376BA72E - 90424631-D00B-448C-B157-DAC92DFB2858 - F08537AF-4F02-4040-999D-F0785CF64C02 - C4F99E3D-1540-4BC1-8038-0A19D65BABC8 - F2E2E79A-A85D-471D-9847-72AE40205942 - 20BDC055-ED67-4D0E-A47F-ADAA828EFF2B - F4FDFB3A-71EF-48A4-93F4-178B949546B1 - 2AD19F12-E499-4715-9A47-FC8D594BC550 - EA8F5EDB-6E1E-4C36-9CA5-12B108F1A7C9 - CF0B4684-E4CB-4E10-8C25-4D15400C3385 - E561AECD-5933-4F59-A6F7-FA96E1203606 - 2D4AC0B4-47AA-4E38-9A11-09A48C2A9439 - 9D126CC5-EA14-4A40-B6D3-6A5FC1AC1420 - FA6AB9BF-3444-4A8C-B010-C95C2CF5BAB3 - E0F8E45A-9262-4DD6-ADFF-B5B9D6CE99C2 - 3931A7C6-F1FB-484F-82D1-26F5A8F779D0 - 765ACBD3-380A-4CF8-9111-345A36A0DAE7 - CAFB0DED-5E23-4A84-AC20-87FBAF22DBAC - 422A59E7-FC36-4E99-B01C-6353515BB544 - 8A65E175-18F2-428F-A695-73E01139E41A - C04ED189-6ACB-44E6-AD5B-911B760AD1CC - FBC44B18-323A-4C00-A35B-15E41830C5AD - - uuid - A46E4382-F1AC-405B-8F22-65FF470F34D7 - - diff --git a/bundles/Readme.md b/bundles/Readme.md new file mode 100644 index 000000000..3a6e9c1e6 --- /dev/null +++ b/bundles/Readme.md @@ -0,0 +1 @@ +For best results use bundles from https://github.com/textmate diff --git a/bundles/css.tmbundle/Commands/CodeCompletion CSS 2.tmCommand b/bundles/css.tmbundle/Commands/CodeCompletion CSS 2.tmCommand deleted file mode 100644 index ab1a5cabf..000000000 --- a/bundles/css.tmbundle/Commands/CodeCompletion CSS 2.tmCommand +++ /dev/null @@ -1,40 +0,0 @@ - - - - - beforeRunningCommand - nop - bundleUUID - 467B298F-6227-11D9-BFB1-000D93589AF6 - command - #!/usr/bin/env ruby -require "#{ENV['TM_SUPPORT_PATH']}/lib/codecompletion" -preference = 'Completions' -choices = [] - -parsed_choices = TextmateCompletionsParser.new(nil, :scope => :css).to_ary -choices += parsed_choices if parsed_choices - -choices += ['--'] - -plist_choices = TextmateCompletionsPlist.new( "#{ENV['TM_BUNDLE_PATH']}/Preferences/#{preference}.tmPreferences" ).to_ary -choices += plist_choices if plist_choices - -print TextmateCodeCompletion.new(choices,STDIN.read, :scope => :css).to_snippet - - fallbackInput - line - input - selection - keyEquivalent - ~ - name - CodeCompletion CSS - output - insertAsSnippet - scope - source.css -meta.property-list - uuid - E6FB4209-818E-40F5-9AFF-96E204F52A11 - - diff --git a/bundles/css.tmbundle/Commands/CodeCompletion CSS Property Values.tmCommand b/bundles/css.tmbundle/Commands/CodeCompletion CSS Property Values.tmCommand deleted file mode 100644 index 7bb564007..000000000 --- a/bundles/css.tmbundle/Commands/CodeCompletion CSS Property Values.tmCommand +++ /dev/null @@ -1,40 +0,0 @@ - - - - - beforeRunningCommand - nop - bundleUUID - 467B298F-6227-11D9-BFB1-000D93589AF6 - command - #!/usr/bin/env ruby -require "#{ENV['TM_SUPPORT_PATH']}/lib/codecompletion" -preference = 'Property Value Completions' -choices = [] - -parsed_choices = TextmateCompletionsParser.new(nil, :scope => :css_values).to_ary -choices += parsed_choices if parsed_choices - -choices += ['--'] - -plist_choices = TextmateCompletionsPlist.new( "#{ENV['TM_BUNDLE_PATH']}/Preferences/#{preference}.tmPreferences" ).to_ary -choices += plist_choices if plist_choices - -print TextmateCodeCompletion.new(choices,STDIN.read).to_snippet - - fallbackInput - line - input - selection - keyEquivalent - ~ - name - CodeCompletion CSS Property Values - output - insertAsSnippet - scope - source.css meta.property-value - uuid - 35DFB6D6-E48B-4907-9030-019904DA0C5B - - diff --git a/bundles/css.tmbundle/Commands/CodeCompletion CSS.tmCommand b/bundles/css.tmbundle/Commands/CodeCompletion CSS.tmCommand deleted file mode 100644 index 8d0868173..000000000 --- a/bundles/css.tmbundle/Commands/CodeCompletion CSS.tmCommand +++ /dev/null @@ -1,29 +0,0 @@ - - - - - beforeRunningCommand - nop - bundleUUID - 467B298F-6227-11D9-BFB1-000D93589AF6 - command - #!/usr/bin/env ruby -require "#{ENV['TM_SUPPORT_PATH']}/lib/codecompletion" -TextmateCodeCompletion.plist('Property Completions') - - fallbackInput - line - input - selection - keyEquivalent - ~ - name - CodeCompletion CSS Properties - output - insertAsSnippet - scope - source.css meta.property-list -meta.property-value, source.css meta.property-value punctuation.separator.key-value - uuid - 42E26C97-72AB-4953-807F-645AF7EDF59F - - diff --git a/bundles/css.tmbundle/Commands/Documentation for Property.plist b/bundles/css.tmbundle/Commands/Documentation for Property.plist deleted file mode 100644 index af49ff2d7..000000000 --- a/bundles/css.tmbundle/Commands/Documentation for Property.plist +++ /dev/null @@ -1,182 +0,0 @@ - - - - - beforeRunningCommand - nop - command - #!/usr/bin/env ruby -# -# Lookup current word as a CSS property on w3c.org -# -# The mapping below was generated using: -# echo '$props = {'; curl -s http://www.w3.org/TR/CSS2/propidx.html|egrep "(^|<tr><td>)<a href=\".*\" class=\"noxref\"><span class=\".*\">'.*'</span></a>"|perl -pe "s|(?:<tr><td>)?<a href=\"(.*)\" class=\"noxref\"><span class=\".*\">'(.*)'</span></a>|\t\"\$2\"\t=> \"\$1\",|"; echo '}' - -$props = { - "azimuth" => "aural.html#propdef-azimuth", - "background" => "colors.html#propdef-background", - "background-attachment" => "colors.html#propdef-background-attachment", - "background-color" => "colors.html#propdef-background-color", - "background-image" => "colors.html#propdef-background-image", - "background-position" => "colors.html#propdef-background-position", - "background-repeat" => "colors.html#propdef-background-repeat", - "border" => "box.html#propdef-border", - "border-collapse" => "tables.html#propdef-border-collapse", - "border-color" => "box.html#propdef-border-color", - "border-spacing" => "tables.html#propdef-border-spacing", - "border-style" => "box.html#propdef-border-style", - "border-top" => "box.html#propdef-border-top", - "border-right" => "box.html#propdef-border-right", - "border-bottom" => "box.html#propdef-border-bottom", - "border-left" => "box.html#propdef-border-left", - "border-top-color" => "box.html#propdef-border-top-color", - "border-right-color" => "box.html#propdef-border-right-color", - "border-bottom-color" => "box.html#propdef-border-bottom-color", - "border-left-color" => "box.html#propdef-border-left-color", - "border-top-style" => "box.html#propdef-border-top-style", - "border-right-style" => "box.html#propdef-border-right-style", - "border-bottom-style" => "box.html#propdef-border-bottom-style", - "border-left-style" => "box.html#propdef-border-left-style", - "border-top-width" => "box.html#propdef-border-top-width", - "border-right-width" => "box.html#propdef-border-right-width", - "border-bottom-width" => "box.html#propdef-border-bottom-width", - "border-left-width" => "box.html#propdef-border-left-width", - "border-width" => "box.html#propdef-border-width", - "bottom" => "visuren.html#propdef-bottom", - "caption-side" => "tables.html#propdef-caption-side", - "clear" => "visuren.html#propdef-clear", - "clip" => "visufx.html#propdef-clip", - "color" => "colors.html#propdef-color", - "content" => "generate.html#propdef-content", - "counter-increment" => "generate.html#propdef-counter-increment", - "counter-reset" => "generate.html#propdef-counter-reset", - "cue" => "aural.html#propdef-cue", - "cue-after" => "aural.html#propdef-cue-after", - "cue-before" => "aural.html#propdef-cue-before", - "cursor" => "ui.html#propdef-cursor", - "direction" => "visuren.html#propdef-direction", - "display" => "visuren.html#propdef-display", - "elevation" => "aural.html#propdef-elevation", - "empty-cells" => "tables.html#propdef-empty-cells", - "float" => "visuren.html#propdef-float", - "font" => "fonts.html#propdef-font", - "font-family" => "fonts.html#propdef-font-family", - "font-size" => "fonts.html#propdef-font-size", - "font-size-adjust" => "fonts.html#propdef-font-size-adjust", - "font-stretch" => "fonts.html#propdef-font-stretch", - "font-style" => "fonts.html#propdef-font-style", - "font-variant" => "fonts.html#propdef-font-variant", - "font-weight" => "fonts.html#propdef-font-weight", - "height" => "visudet.html#propdef-height", - "left" => "visuren.html#propdef-left", - "letter-spacing" => "text.html#propdef-letter-spacing", - "line-height" => "visudet.html#propdef-line-height", - "list-style" => "generate.html#propdef-list-style", - "list-style-image" => "generate.html#propdef-list-style-image", - "list-style-position" => "generate.html#propdef-list-style-position", - "list-style-type" => "generate.html#propdef-list-style-type", - "margin" => "box.html#propdef-margin", - "margin-top" => "box.html#propdef-margin-top", - "margin-right" => "box.html#propdef-margin-right", - "margin-bottom" => "box.html#propdef-margin-bottom", - "margin-left" => "box.html#propdef-margin-left", - "marker-offset" => "generate.html#propdef-marker-offset", - "marks" => "page.html#propdef-marks", - "max-height" => "visudet.html#propdef-max-height", - "max-width" => "visudet.html#propdef-max-width", - "min-height" => "visudet.html#propdef-min-height", - "min-width" => "visudet.html#propdef-min-width", - "orphans" => "page.html#propdef-orphans", - "outline" => "ui.html#propdef-outline", - "outline-color" => "ui.html#propdef-outline-color", - "outline-style" => "ui.html#propdef-outline-style", - "outline-width" => "ui.html#propdef-outline-width", - "overflow" => "visufx.html#propdef-overflow", - "padding" => "box.html#propdef-padding", - "padding-top" => "box.html#propdef-padding-top", - "padding-right" => "box.html#propdef-padding-right", - "padding-bottom" => "box.html#propdef-padding-bottom", - "padding-left" => "box.html#propdef-padding-left", - "page" => "page.html#propdef-page", - "page-break-after" => "page.html#propdef-page-break-after", - "page-break-before" => "page.html#propdef-page-break-before", - "page-break-inside" => "page.html#propdef-page-break-inside", - "pause" => "aural.html#propdef-pause", - "pause-after" => "aural.html#propdef-pause-after", - "pause-before" => "aural.html#propdef-pause-before", - "pitch" => "aural.html#propdef-pitch", - "pitch-range" => "aural.html#propdef-pitch-range", - "play-during" => "aural.html#propdef-play-during", - "position" => "visuren.html#propdef-position", - "quotes" => "generate.html#propdef-quotes", - "richness" => "aural.html#propdef-richness", - "right" => "visuren.html#propdef-right", - "size" => "page.html#propdef-size", - "speak" => "aural.html#propdef-speak", - "speak-header" => "tables.html#propdef-speak-header", - "speak-numeral" => "aural.html#propdef-speak-numeral", - "speak-punctuation" => "aural.html#propdef-speak-punctuation", - "speech-rate" => "aural.html#propdef-speech-rate", - "stress" => "aural.html#propdef-stress", - "table-layout" => "tables.html#propdef-table-layout", - "text-align" => "text.html#propdef-text-align", - "text-decoration" => "text.html#propdef-text-decoration", - "text-indent" => "text.html#propdef-text-indent", - "text-shadow" => "text.html#propdef-text-shadow", - "text-transform" => "text.html#propdef-text-transform", - "top" => "visuren.html#propdef-top", - "unicode-bidi" => "visuren.html#propdef-unicode-bidi", - "vertical-align" => "visudet.html#propdef-vertical-align", - "visibility" => "visufx.html#propdef-visibility", - "voice-family" => "aural.html#propdef-voice-family", - "volume" => "aural.html#propdef-volume", - "white-space" => "text.html#propdef-white-space", - "widows" => "page.html#propdef-widows", - "width" => "visudet.html#propdef-width", - "word-spacing" => "text.html#propdef-word-spacing", - "z-index" => "visuren.html#propdef-z-index", -} - -cur_line = ENV['TM_CURRENT_LINE'] -cur_word = ENV['TM_CURRENT_WORD'] - -# since dash (‘-’) is not a word character, extend current word to neighboring word and dash characters -$prop_name = /[-\w]*#{Regexp.escape cur_word}[-\w]*/.match(cur_line)[0] - -def request_prop_name - s = `\"#{ENV['TM_SUPPORT_PATH']}/bin/CocoaDialog.app/Contents/MacOS/CocoaDialog\" inputbox --float --title 'Documentation for Property' --informative-text 'What property would you like to lookup?' --text '#{$prop_name}' --button1 'Lookup' --button2 'Cancel' --button3 'Show All Properties'` - case (a = s.split("\n"))[0].to_i - when 1 then $props[a[1].to_s] || "propidx.html" - when 2 then abort "<script>window.close()</script>" - when 3 then "propidx.html" - end -end - -prop_url = $props[$prop_name] || request_prop_name -url = "http://www.w3.org/TR/CSS2/" + prop_url -puts "<meta http-equiv='Refresh' content='0;URL=#{url}'>" - - input - none - inputFormat - text - keyEquivalent - ^h - name - Documentation for Property - outputCaret - afterOutput - outputFormat - html - outputLocation - newWindow - scope - source.css - semanticClass - lookup.define.css - uuid - 50AA6E95-A754-4EBC-9C2A-68418C70D689 - version - 2 - - diff --git a/bundles/css.tmbundle/Commands/Insert Color.plist b/bundles/css.tmbundle/Commands/Insert Color.plist deleted file mode 100644 index 55efda94b..000000000 --- a/bundles/css.tmbundle/Commands/Insert Color.plist +++ /dev/null @@ -1,204 +0,0 @@ - - - - - beforeRunningCommand - nop - hideFromUser - - command - #!/usr/bin/env ruby - -require ENV['TM_SUPPORT_PATH'] + "/lib/ui" -require ENV['TM_SUPPORT_PATH'] + "/lib/exit_codes" -colour = STDIN.read - -# http://www.w3schools.com/css/css_colornames.asp -COLOURS = { - 'aliceblue' => 'F0F8FF', - 'antiquewhite' => 'FAEBD7', - 'aqua' => '00FFFF', - 'aquamarine' => '7FFFD4', - 'azure' => 'F0FFFF', - 'beige' => 'F5F5DC', - 'bisque' => 'FFE4C4', - 'black' => '000000', - 'blanchedalmond' => 'FFEBCD', - 'blue' => '0000FF', - 'blueviolet' => '8A2BE2', - 'brown' => 'A52A2A', - 'burlywood' => 'DEB887', - 'cadetblue' => '5F9EA0', - 'chartreuse' => '7FFF00', - 'chocolate' => 'D2691E', - 'coral' => 'FF7F50', - 'cornflowerblue' => '6495ED', - 'cornsilk' => 'FFF8DC', - 'crimson' => 'DC143C', - 'cyan' => '00FFFF', - 'darkblue' => '00008B', - 'darkcyan' => '008B8B', - 'darkgoldenrod' => 'B8860B', - 'darkgray' => 'A9A9A9', - 'darkgrey' => 'A9A9A9', - 'darkgreen' => '006400', - 'darkkhaki' => 'BDB76B', - 'darkmagenta' => '8B008B', - 'darkolivegreen' => '556B2F', - 'darkorange' => 'FF8C00', - 'darkorchid' => '9932CC', - 'darkred' => '8B0000', - 'darksalmon' => 'E9967A', - 'darkseagreen' => '8FBC8F', - 'darkslateblue' => '483D8B', - 'darkslategray' => '2F4F4F', - 'darkslategrey' => '2F4F4F', - 'darkturquoise' => '00CED1', - 'darkviolet' => '9400D3', - 'deeppink' => 'FF1493', - 'deepskyblue' => '00BFFF', - 'dimgray' => '696969', - 'dimgrey' => '696969', - 'dodgerblue' => '1E90FF', - 'firebrick' => 'B22222', - 'floralwhite' => 'FFFAF0', - 'forestgreen' => '228B22', - 'fuchsia' => 'FF00FF', - 'gainsboro' => 'DCDCDC', - 'ghostwhite' => 'F8F8FF', - 'gold' => 'FFD700', - 'goldenrod' => 'DAA520', - 'gray' => '808080', - 'grey' => '808080', - 'green' => '008000', - 'greenyellow' => 'ADFF2F', - 'honeydew' => 'F0FFF0', - 'hotpink' => 'FF69B4', - 'indianred' => 'CD5C5C', - 'indigo' => '4B0082', - 'ivory' => 'FFFFF0', - 'khaki' => 'F0E68C', - 'lavender' => 'E6E6FA', - 'lavenderblush' => 'FFF0F5', - 'lawngreen' => '7CFC00', - 'lemonchiffon' => 'FFFACD', - 'lightblue' => 'ADD8E6', - 'lightcoral' => 'F08080', - 'lightcyan' => 'E0FFFF', - 'lightgoldenrodyellow' => 'FAFAD2', - 'lightgray' => 'D3D3D3', - 'lightgrey' => 'D3D3D3', - 'lightgreen' => '90EE90', - 'lightpink' => 'FFB6C1', - 'lightsalmon' => 'FFA07A', - 'lightseagreen' => '20B2AA', - 'lightskyblue' => '87CEFA', - 'lightslategray' => '778899', - 'lightslategrey' => '778899', - 'lightsteelblue' => 'B0C4DE', - 'lightyellow' => 'FFFFE0', - 'lime' => '00FF00', - 'limegreen' => '32CD32', - 'linen' => 'FAF0E6', - 'magenta' => 'FF00FF', - 'maroon' => '800000', - 'mediumaquamarine' => '66CDAA', - 'mediumblue' => '0000CD', - 'mediumorchid' => 'BA55D3', - 'mediumpurple' => '9370D8', - 'mediumseagreen' => '3CB371', - 'mediumslateblue' => '7B68EE', - 'mediumspringgreen' => '00FA9A', - 'mediumturquoise' => '48D1CC', - 'mediumvioletred' => 'C71585', - 'midnightblue' => '191970', - 'mintcream' => 'F5FFFA', - 'mistyrose' => 'FFE4E1', - 'moccasin' => 'FFE4B5', - 'navajowhite' => 'FFDEAD', - 'navy' => '000080', - 'oldlace' => 'FDF5E6', - 'olive' => '808000', - 'olivedrab' => '6B8E23', - 'orange' => 'FFA500', - 'orangered' => 'FF4500', - 'orchid' => 'DA70D6', - 'palegoldenrod' => 'EEE8AA', - 'palegreen' => '98FB98', - 'paleturquoise' => 'AFEEEE', - 'palevioletred' => 'D87093', - 'papayawhip' => 'FFEFD5', - 'peachpuff' => 'FFDAB9', - 'peru' => 'CD853F', - 'pink' => 'FFC0CB', - 'plum' => 'DDA0DD', - 'powderblue' => 'B0E0E6', - 'purple' => '800080', - 'red' => 'FF0000', - 'rosybrown' => 'BC8F8F', - 'royalblue' => '4169E1', - 'saddlebrown' => '8B4513', - 'salmon' => 'FA8072', - 'sandybrown' => 'F4A460', - 'seagreen' => '2E8B57', - 'seashell' => 'FFF5EE', - 'sienna' => 'A0522D', - 'silver' => 'C0C0C0', - 'skyblue' => '87CEEB', - 'slateblue' => '6A5ACD', - 'slategray' => '708090', - 'slategrey' => '708090', - 'snow' => 'FFFAFA', - 'springgreen' => '00FF7F', - 'steelblue' => '4682B4', - 'tan' => 'D2B48C', - 'teal' => '008080', - 'thistle' => 'D8BFD8', - 'tomato' => 'FF6347', - 'turquoise' => '40E0D0', - 'violet' => 'EE82EE', - 'wheat' => 'F5DEB3', - 'white' => 'FFFFFF', - 'whitesmoke' => 'F5F5F5', - 'yellow' => 'FFFF00', - 'yellowgreen' => '9ACD32', -} - -if colour.length > 0 and colour[0] != ?# - colour.downcase! - # Convert named colours to their hex values - colour = '#' + COLOURS[colour] if COLOURS.has_key? colour -end - -if res = TextMate::UI.request_color(colour) - print res -else - TextMate.exit_discard -end - - fallbackInput - word - input - selection - inputFormat - text - isDisabled - - keyEquivalent - @C - name - Insert Color… - outputCaret - heuristic - outputFormat - text - outputLocation - replaceInput - scope - source.css, meta.tag string.quoted -source - uuid - CC30D708-6E49-11D9-B411-000D93589AF6 - version - 2 - - diff --git a/bundles/css.tmbundle/Commands/Preview.plist b/bundles/css.tmbundle/Commands/Preview.plist deleted file mode 100644 index e6f6a7e38..000000000 --- a/bundles/css.tmbundle/Commands/Preview.plist +++ /dev/null @@ -1,277 +0,0 @@ - - - - - beforeRunningCommand - nop - command - #!/usr/bin/env ruby - -LIPSUM = "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat." - -def tag_preview(selector_list) - html = 'TEXT_INSERT' - selectors = selector_list.split(/\s+/) - last_tag = '' - text_insert = "Generated preview for CSS selector #{selector_list}." - - star_class = '' - star_id = '' - html_class = '' - html_id = '' - body_class = '' - body_id = '' - - selectors.reverse.each do | selector | - singlet = false - tag = selector.clone - if (tag =~ /#(.+)/) - id = (tag.scan(/#(.+)/))[0][0] - id.gsub!(/\..+/, '') - else - id = nil - end - if (tag =~ /\.(.+)/) - cls = (tag.scan(/\.(.+)/))[0][0] - cls.gsub!(/\./, ' ') - cls.gsub!(/\#.+/, '') - else - cls = nil - end - - tag.downcase! - tag.sub!(/#(.+)/, ''); - tag.sub!(/\.(.+)/, ''); - tag.sub!(/:.+/, '') - - case tag - when '*' - star_class = " #{cls}" if cls - star_id = " id=\"#{id}\"" if id - cls = nil - id = nil - tag = 'div' - when 'body' - body_class = " #{cls}" if cls - body_id = " id=\"#{id}\"" if id - cls = nil - id = nil - tag = 'div' - when 'html' - html_class = " #{cls}" if cls - html_id = " id=\"#{id}\"" if id - cls = nil - id = nil - tag = 'div' - end - - next if tag == '+' - - if selector =~ /^[#.]/ - case last_tag - when 'li' - tag = 'ul' - when 'td' - tag = 'tr' - when 'tr' - tag = 'table' - when /^h\d/ - tag = 'div' - else - tag = 'span' - end - end - - if (tag =~ /\[(.+?)\]/) - tag_attr = (tag.scan(/\[(.+?)\]/))[0][0] - tag.gsub!(/\[.+?\]/, '') - else - tag_attr = nil - end - part = "<" + tag - part += " #{tag_attr}" if tag_attr - part += " id=\"#{id}\"" if id - part += " class=\"#{cls}\"" if cls - - # defaults for img tag - case tag - when 'img' - part += " src=\"http://www.google.com/intl/en/images/logo.gif\"" - part += " alt=\"Preview of #{selector_list}\"" - singlet = true - when 'a' - part += " href=\"\#\"" - when 'input' - open_tag = part.clone - part += " type=\"radio\" /> Radio" - part += "#{open_tag} type=\"checkbox\" /> Checkbox<br />" - part += "#{open_tag} type=\"text\" value=\"Text Field\" />" - part += "#{open_tag} type=\"button\" value=\"Button\"" - singlet = true - when 'select' - part += "><option>Option 1</option><option>Option 2</option" - html = '' - end - - if (singlet) - part += " />" - else - part += ">" - part += html - part += "</" + tag + ">" - end - - case tag - when /^h\d/ - text_insert = tag.sub(/^h(\d+)/, "Heading \\1") - when 'p' - text_insert = LIPSUM - when 'object', 'img', 'input' - text_insert = "" - end - - html = part - last_tag = tag - end - - if (last_tag) - case last_tag - when 'em', 'strong', 'b', 'i' - html = "<p>#{html}</p>" - when 'li' - html = "<ul>#{html}</ul>" - when 'td' - html = "<table><tr>#{html}</tr></table>" - when 'tr' - html = "<table>#{html}</table>" - when 'input', 'textarea', 'select' - html = "<form method=\"get\">#{html}</form>" - end - end - - html = "<div>#{html}</div>" - html.sub!(/TEXT_INSERT/, text_insert) - - return <<EOT -<div class="__wrap_wrap"><div class="__star_wrap#{star_class}"#{star_id}><div class="__html_wrap#{html_class}"#{html_id}><div class="__body_wrap#{body_class}"#{body_id}>#{html}</div></div></div></div> -EOT -end - -def preview_css(str) - orig_css = str.clone - orig_css.gsub!(/<entity\.name\.tag\.wildcard\.css>\*<\/entity\.name\.tag\.wildcard\.css>/, '.__star_wrap') - orig_css.gsub!(/<entity\.name\.tag\.css>body<\/entity\.name\.tag\.css>/, '.__body_wrap') - orig_css.gsub!(/<entity\.name\.tag\.css>html<\/entity\.name\.tag\.css>/, '.__html_wrap') - - orig_css.gsub!(/<.+?>/, '') - orig_css.gsub!(/&lt;\/?style\b.*?&gt;/m, '') - orig_css.strip! - - #meta.selector.css -> wraps the selector - #meta.property-list.css -> wraps the properties - rules = str.scan(/<meta\.selector\.css>\s*(.+?)\s*<\/meta\.selector\.css>.*?<meta\.property-list\.css>(.+?)<\/meta\.property-list\.css>/m) - - html = '' - css = '' - rule_num = 0 - - rules.each do | rule | - selector = rule[0].gsub(/<.+?>/, '') - styles = rule[1].gsub(/<.+?>/, '') - styles.gsub!(/^\s*\{\n*/m, '') - styles.gsub!(/\s*\}\s*$/m, '') - styles.gsub!(/\t/, ' ' * ENV['TM_TAB_SIZE'].to_i) - selectors = selector.split(/\s*,\s*/m) - selectors.each do | single_selector | - rule_num += 1 - html += "<div class=\"__rule_clear\"></div>\n\n" if html != '' - html += "<div class=\"__rule_selector\">#{single_selector} <a class=\"__view_link\" href=\"javascript:viewCSS('__rule#{rule_num}')\" title=\"Click to toggle CSS view\">CSS</a><div class=\"__rule\" id=\"__rule#{rule_num}\" style=\"display: none\">#{styles}</div></div>\n\n" - html += tag_preview(single_selector) + "\n\n" - end - end - - filename = ENV['TM_FILENAME'] || 'untitled' - base = '' - base = "<base href=\"file://#{ENV['TM_FILEPATH']}\" />" if ENV['TM_FILEPATH'] - - return <<EOT -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> - <head> - #{base} - <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> - <meta http-equiv="Content-Language" content="en-us" /> - <title>CSS Preview for #{filename}</title> - <style type="text/css"> -#{orig_css} -.__wrap_wrap { - position: relative; - margin-top: 5px; - margin-bottom: 20px; - border-top: 1px solid #ccc; -} -.__rule_selector { - font-family: Times; - font-size: 16px; - border-top: 1px solid #ccc; -} -.__rule { - white-space: pre; - word-wrap: break-word; - font-family: Monaco; - font-size: 11px; -} -.__view_link { - font-family: Monaco; - font-size: 11px; -} -.__rule_clear:after { - content: "."; - display: block; - height: 0; - clear: both; - visibility: hidden; -} - </style> - <script type="text/javascript"> - function viewCSS(rule_id) { - var el = document.getElementById(rule_id); - if (el) { - if (el.style.display == 'none') - el.style.display = 'block'; - else - el.style.display = 'none'; - } - } - </script> - </head> - - <body> -#{html} - </body> -</html> -EOT -end - -print preview_css(STDIN.read) - - fallbackInput - scope - input - selection - inputFormat - xml - keyEquivalent - ^~@p - name - Preview - output - showAsHTML - scope - source.css - text.html - uuid - 05554FE0-4A70-4F3E-81C5-72855D7EB428 - - diff --git a/bundles/css.tmbundle/Commands/Validate Selected CSS.plist b/bundles/css.tmbundle/Commands/Validate Selected CSS.plist deleted file mode 100644 index 1ff50adab..000000000 --- a/bundles/css.tmbundle/Commands/Validate Selected CSS.plist +++ /dev/null @@ -1,44 +0,0 @@ - - - - - beforeRunningCommand - nop - command - #!/usr/bin/env ruby - -print '<html><head><meta http-equiv="Refresh" content="0; URL=' -print 'http://jigsaw.w3.org/css-validator/validator?warning=1&profile=none&usermedium=all&text=' - -scope = STDIN.read - -scope.gsub!(/<\/?style.*?>/, '') - -((scope != nil && scope.size > 0) ? scope : $< ).each_byte do |b| - - if b == 32 - print '+' - elsif b.chr =~ /\w/ - print b.chr - else - printf '%%%02x', b - end -end - -puts '#errors"></head><body></body></html>' - fallbackInput - scope - input - selection - keyEquivalent - ^V - name - Validate CSS - output - showAsHTML - scope - source.css - uuid - 45E5E5A1-84CC-11D9-970D-0011242E4184 - - diff --git a/bundles/css.tmbundle/DragCommands/Insert Image URL.tmDragCommand b/bundles/css.tmbundle/DragCommands/Insert Image URL.tmDragCommand deleted file mode 100644 index 0c7f379b0..000000000 --- a/bundles/css.tmbundle/DragCommands/Insert Image URL.tmDragCommand +++ /dev/null @@ -1,42 +0,0 @@ - - - - - bundleUUID - 4675F24E-6227-11D9-BFB1-000D93589AF6 - command - if echo "$TM_SCOPE" | grep -q meta.property-list.css - then - if echo "$TM_SCOPE" | grep -q meta.property-value.css - then - if echo "$TM_CURRENT_WORD" | grep -q url\(\) - then echo -n "'$TM_DROPPED_FILE'" - elif echo "$TM_SCOPE" | grep -q string.quoted.single.css - then echo -n "$TM_DROPPED_FILE" - else - echo -n "url('$TM_DROPPED_FILE')" - fi - else - echo -ne "background:\${1: #\${2:DDD}} url('$TM_DROPPED_FILE')\${3: \${4:repeat/repeat-x/repeat-y/no-repeat} \${5:scroll/fixed} \${6:top/center/bottom/x-%/x-pos} \${7:left/center/right/y-%/y-pos}};\n\$0" - fi -else - echo -ne "\${1:#selector} {\n background: url('$TM_DROPPED_FILE')\${3: \${4:no-repeat} \${5:scroll} \${6:top} \${7:left}};\n" - sips -g pixelWidth -g pixelHeight "$TM_DROPPED_FILE"|awk '/pixelWidth/ { printf(" width: %dpx;\n", $2) } /pixelHeight/ { printf(" height: %dpx;\n}\$0", $2) }' -fi - draggedFileExtensions - - png - jpeg - jpg - gif - - name - Insert Image URL - output - insertAsSnippet - scope - source.css - uuid - 6ED38063-8791-41BB-9F9F-F9EA378B1526 - - diff --git a/bundles/css.tmbundle/Macros/Format CSS Compressed.tmMacro b/bundles/css.tmbundle/Macros/Format CSS Compressed.tmMacro deleted file mode 100644 index 67efc3727..000000000 --- a/bundles/css.tmbundle/Macros/Format CSS Compressed.tmMacro +++ /dev/null @@ -1,190 +0,0 @@ - - - - - commands - - - argument - - action - replaceAll - findInProjectIgnoreCase - - findInProjectRegularExpression - - findString - \n+ - ignoreCase - - regularExpression - - replaceAllScope - selection - replaceString - \n - wrapAround - - - command - findWithOptions: - - - argument - - action - replaceAll - findInProjectIgnoreCase - - findInProjectRegularExpression - - findString - [ \t]+ - ignoreCase - - regularExpression - - replaceAllScope - selection - replaceString - - wrapAround - - - command - findWithOptions: - - - argument - - action - replaceAll - findInProjectIgnoreCase - - findInProjectRegularExpression - - findString - (?m)([;:])\s+ - ignoreCase - - regularExpression - - replaceAllScope - selection - replaceString - $1 - wrapAround - - - command - findWithOptions: - - - argument - - action - replaceAll - findInProjectIgnoreCase - - findInProjectRegularExpression - - findString - \s*}\s* - ignoreCase - - regularExpression - - replaceAllScope - selection - replaceString - }\n - wrapAround - - - command - findWithOptions: - - - argument - - action - replaceAll - findInProjectIgnoreCase - - findInProjectRegularExpression - - findString - \s*{\s* - ignoreCase - - regularExpression - - replaceAllScope - selection - replaceString - { - wrapAround - - - command - findWithOptions: - - - argument - - action - replaceAll - findInProjectIgnoreCase - - findInProjectRegularExpression - - findString - [ \t]*,[ \t]* - ignoreCase - - regularExpression - - replaceAllScope - selection - replaceString - , - wrapAround - - - command - findWithOptions: - - - argument - - action - replaceAll - findInProjectIgnoreCase - - findInProjectRegularExpression - - findString - ^\s+ - ignoreCase - - regularExpression - - replaceAllScope - selection - wrapAround - - - command - findWithOptions: - - - keyEquivalent - ^~q - name - Format CSS Compressed - scope - source.css - uuid - 3556C0BE-73B3-45CE-8C9C-7B3AA3BB038B - - diff --git a/bundles/css.tmbundle/Macros/Format CSS.tmMacro b/bundles/css.tmbundle/Macros/Format CSS.tmMacro deleted file mode 100644 index ea08e1884..000000000 --- a/bundles/css.tmbundle/Macros/Format CSS.tmMacro +++ /dev/null @@ -1,100 +0,0 @@ - - - - - commands - - - argument - - action - replaceAll - findInProjectIgnoreCase - - findInProjectRegularExpression - - findString - (?m)({|;)\s*([-\w]+:)\s*(?=\S) - ignoreCase - - regularExpression - - replaceAllScope - selection - replaceString - $1\n$2 - wrapAround - - - command - findWithOptions: - - - argument - - action - replaceAll - findInProjectIgnoreCase - - findInProjectRegularExpression - - findString - (?m)\s*}[ \t]*\n? - ignoreCase - - regularExpression - - replaceAllScope - selection - replaceString - \n}\n - wrapAround - - - command - findWithOptions: - - - argument - - action - replaceAll - findInProjectIgnoreCase - - findInProjectRegularExpression - - findString - (?m)\s*{[ \t]* - ignoreCase - - regularExpression - - replaceAllScope - selection - replaceString - { - wrapAround - - - command - findWithOptions: - - - command - alignLeft: - - - command - indent: - - - keyEquivalent - ^q - name - Format CSS - scope - source.css - uuid - 64180C76-8C8D-4F29-82BE-6096BE1B14D8 - - diff --git a/bundles/css.tmbundle/Preferences/Comments.tmPreferences b/bundles/css.tmbundle/Preferences/Comments.tmPreferences deleted file mode 100644 index 6de289f65..000000000 --- a/bundles/css.tmbundle/Preferences/Comments.tmPreferences +++ /dev/null @@ -1,36 +0,0 @@ - - - - - name - Comments - scope - source.css - settings - - shellVariables - - - name - TM_COMMENT_START - value - /* - - - name - TM_COMMENT_END - value - */ - - - name - TM_COMMENT_DISABLE_INDENT - value - yes - - - - uuid - 375CF370-8A7B-450A-895C-FD18B47957E2 - - diff --git a/bundles/css.tmbundle/Preferences/Completions.tmPreferences b/bundles/css.tmbundle/Preferences/Completions.tmPreferences deleted file mode 100644 index 4e79c6882..000000000 --- a/bundles/css.tmbundle/Preferences/Completions.tmPreferences +++ /dev/null @@ -1,102 +0,0 @@ - - - - - name - Completions - scope - source.css -meta.property-list - settings - - completions - - * - # - . - a - abbr - acronym - address - area - b - base - big - blockquote - body - br - button - caption - cite - code - col - colgroup - dd - del - dfn - div - dl - dt - em - fieldset - form - frame - frameset - h1 - h2 - h3 - h4 - h5 - h6 - head - hr - html - i - iframe - img - input - ins - kbd - label - legend - li - link - map - meta - noframes - noscript - object - ol - optgroup - option - p - param - pre - q - samp - script - select - small - span - strike - strong - style - sub - sup - table - tbody - td - textarea - tfoot - th - thead - title - tr - tt - ul - var - - - uuid - 92B0C9FE-CC81-498A-B93C-376A9C47CF2D - - diff --git a/bundles/css.tmbundle/Preferences/Folding.tmPreferences b/bundles/css.tmbundle/Preferences/Folding.tmPreferences deleted file mode 100644 index 7a862f017..000000000 --- a/bundles/css.tmbundle/Preferences/Folding.tmPreferences +++ /dev/null @@ -1,19 +0,0 @@ - - - - - name - Folding - scope - source.css - settings - - foldingStartMarker - /\*\*(?!\*)|\{\s*($|/\*(?!.*?\*/.*\S))|\/\*\s*@group\s*.*\s*\*\/ - foldingStopMarker - (?<!\*)\*\*/|^\s*\}|\/*\s*@end\s*\*\/ - - uuid - 37393068-A217-494A-9DA4-68FD43FB4F8B - - diff --git a/bundles/css.tmbundle/Preferences/Miscellaneous.tmPreferences b/bundles/css.tmbundle/Preferences/Miscellaneous.tmPreferences deleted file mode 100644 index 9769c4b3e..000000000 --- a/bundles/css.tmbundle/Preferences/Miscellaneous.tmPreferences +++ /dev/null @@ -1,46 +0,0 @@ - - - - - name - Miscellaneous - scope - source.css - settings - - smartTypingPairs - - - " - " - - - ( - ) - - - { - } - - - [ - ] - - - - - - - ' - ' - - - ` - ` - - - - uuid - 623154CA-0EDF-4365-9441-80D396C11979 - - diff --git a/bundles/css.tmbundle/Preferences/Property Completions.tmPreferences b/bundles/css.tmbundle/Preferences/Property Completions.tmPreferences deleted file mode 100644 index 65741a97d..000000000 --- a/bundles/css.tmbundle/Preferences/Property Completions.tmPreferences +++ /dev/null @@ -1,151 +0,0 @@ - - - - - name - Property Completions - scope - source.css meta.property-list -meta.property-value - settings - - completions - - -moz-border-radius - azimuth - background - background-attachment - background-color - background-image - background-position - background-repeat - border - border-bottom - border-bottom-color - border-bottom-style - border-bottom-width - border-collapse - border-color - border-left - border-left-color - border-left-style - border-left-width - border-right - border-right-color - border-right-style - border-right-width - border-spacing - border-style - border-top - border-top-color - border-top-style - border-top-width - border-width - bottom - caption-side - clear - clip - color - content - counter-increment - counter-reset - cue - cue-after - cue-before - cursor - direction - display - elevation - empty-cells - float - font - font-family - font-size - font-size-adjust - font-stretch - font-style - font-variant - font-weight - height - left - letter - letter-spacing - line-height - list - list-style - list-style-image - list-style-position - list-style-type - margin - margin-bottom - margin-left - margin-right - margin-top - marker - marker-offset - marks - max-height - max-width - min-height - min-width - opacity - orphans - outline - outline-color - outline-style - outline-width - overflow - overflow(-[xy])? - padding - padding-bottom - padding-left - padding-right - padding-top - page - page-break-after - page-break-before - page-break-inside - pause - pause-after - pause-before - pitch - pitch-range - play-during - position - quotes - richness - right - scrollbar - size - speak - speak-header - speak-numeral - speak-punctuation - speech-rate - stress - table-layout - text - text-align - text-decoration - text-indent - text-shadow - text-transform - top - unicode-bidi - vertical - vertical-align - visibility - voice-family - volume - white - white-space - widows - width - word - word-spacing - z-index - - - uuid - BCAF7514-033E-45D7-9E46-07FACF84DAAD - - diff --git a/bundles/css.tmbundle/Preferences/Property Value Completions.tmPreferences b/bundles/css.tmbundle/Preferences/Property Value Completions.tmPreferences deleted file mode 100644 index 5c1150cde..000000000 --- a/bundles/css.tmbundle/Preferences/Property Value Completions.tmPreferences +++ /dev/null @@ -1,144 +0,0 @@ - - - - - name - Property Value Completions - scope - source.css meta.property-value - settings - - completions - - absolute - all-scroll - always - auto - baseline - below - bidi-override - block - bold - bolder - both - bottom - break-all - break-word - capitalize - center - char - circle - col-resize - collapse - crosshair - dashed - decimal - default - disabled - disc - distribute - distribute-all-lines - distribute-letter - distribute-space - dotted - double - e-resize - ellipsis - fixed - groove - hand - help - hidden - horizontal - ideograph-alpha - ideograph-numeric - ideograph-parenthesis - ideograph-space - inactive - inherit - inline - inline-block - inset - inside - inter-ideograph - inter-word - italic - justify - keep-all - left - lighter - line - line-edge - line-through - list-item - loose - lower-alpha - lower-roman - lowercase - lr-tb - ltr - medium - middle - move - n-resize - ne-resize - newspaper - no-drop - no-repeat - none - normal - not-allowed - nowrap - nw-resize - oblique - outset - outside - overline - pointer - progress - relative - repeat - repeat-x - repeat-y - ridge - right - row-resize - rtl - s-resize - scroll - se-resize - separate - small-caps - solid - square - static - strict - super - sw-resize - table-footer-group - table-header-group - tb-rl - text - text-bottom - text-top - thick - thin - top - transparent - underline - upper-alpha - upper-roman - uppercase - url("") - vertical-ideographic - vertical-text - visible - w-resize - wait - whitespace - - - uuid - 1E4F54FD-1940-42E0-9D0A-0EC11D81E446 - - diff --git a/bundles/css.tmbundle/Preferences/PropertyName.tmPreferences b/bundles/css.tmbundle/Preferences/PropertyName.tmPreferences deleted file mode 100644 index 98db1ac5b..000000000 --- a/bundles/css.tmbundle/Preferences/PropertyName.tmPreferences +++ /dev/null @@ -1,22 +0,0 @@ - - - - - name - PropertyName - scope - meta.property-list.css -meta.property-value - settings - - smartTypingPairs - - - : - ; - - - - uuid - 45707407-3307-4B4D-AE9B-78BDCFB6F920 - - diff --git a/bundles/css.tmbundle/Preferences/Symbol List: Group.tmPreferences b/bundles/css.tmbundle/Preferences/Symbol List: Group.tmPreferences deleted file mode 100644 index 82ef163f3..000000000 --- a/bundles/css.tmbundle/Preferences/Symbol List: Group.tmPreferences +++ /dev/null @@ -1,19 +0,0 @@ - - - - - name - Symbol List: Group - scope - source.css comment.block.css -source.css.embedded - settings - - showInSymbolList - 1 - symbolTransformation - s/\/\*\*\s*(.*?)\s*\*\//** $1 **/; s/\/\*.*?\*\*\//./; s/\/\*[^\*].*?[^\*]\*\/// - - uuid - 096894D8-6A5A-4F1D-B68C-782F0A850E52 - - diff --git a/bundles/css.tmbundle/Preferences/Symbol list.tmPreferences b/bundles/css.tmbundle/Preferences/Symbol list.tmPreferences deleted file mode 100644 index 7e235548f..000000000 --- a/bundles/css.tmbundle/Preferences/Symbol list.tmPreferences +++ /dev/null @@ -1,19 +0,0 @@ - - - - - name - Symbol List: Selector - scope - source.css meta.selector, source.css meta.at-rule.media - settings - - showInSymbolList - 1 - symbolTransformation - s/^\s*/CSS: /; s/\s+/ /g - - uuid - 17B2DD5B-D2EA-4DC5-9C7D-B09B505156C5 - - diff --git a/bundles/css.tmbundle/README.mdown b/bundles/css.tmbundle/README.mdown deleted file mode 100644 index 32d8f85a4..000000000 --- a/bundles/css.tmbundle/README.mdown +++ /dev/null @@ -1,20 +0,0 @@ -# Installation - -You can install this bundle in TextMate by opening the preferences and going to the bundles tab. After installation it will be automatically updated for you. - -# General - -* [Bundle Styleguide](http://kb.textmate.org/bundle_styleguide) — _before you make changes_ -* [Commit Styleguide](http://kb.textmate.org/commit_styleguide) — _before you send a pull request_ -* [Writing Bug Reports](http://kb.textmate.org/writing_bug_reports) — _before you report an issue_ - -# License - -If not otherwise specified (see below), files in this repository fall under the following license: - - Permission to copy, use, modify, sell and distribute this - software is granted. This software is provided "as is" without - express or implied warranty, and with no claim as to its - suitability for any purpose. - -An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”. \ No newline at end of file diff --git a/bundles/css.tmbundle/Snippets/!important CSS (!).plist b/bundles/css.tmbundle/Snippets/!important CSS (!).plist deleted file mode 100644 index 1cee42155..000000000 --- a/bundles/css.tmbundle/Snippets/!important CSS (!).plist +++ /dev/null @@ -1,18 +0,0 @@ - - - - - content - ${1:!important} - keyEquivalent - - name - !important CSS - scope - source.css - tabTrigger - ! - uuid - EF1F2D38-A71A-4D1D-9B07-B1CBB6D84B81 - - diff --git a/bundles/css.tmbundle/Snippets/Fixed Position Bottom 100% wide IE6.tmSnippet b/bundles/css.tmbundle/Snippets/Fixed Position Bottom 100% wide IE6.tmSnippet deleted file mode 100644 index 5394b20d5..000000000 --- a/bundles/css.tmbundle/Snippets/Fixed Position Bottom 100% wide IE6.tmSnippet +++ /dev/null @@ -1,18 +0,0 @@ - - - - - content - ${2:bottom: auto;}top: expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-${1:THE HEIGHT OF THIS THING IN PIXELS})); -${3:left: expression(eval(document.documentElement.scrollLeft)); -}${4:width: expression(eval(document.documentElement.clientWidth));}$0 - name - Fixed Position Bottom 100% wide IE6 - scope - source.css meta.property-list - tabTrigger - fixed - uuid - FCDDB549-681A-436F-894E-1A408C0E114C - - diff --git a/bundles/css.tmbundle/Snippets/background-attachment: scroll:fixed (background).plist b/bundles/css.tmbundle/Snippets/background-attachment: scroll:fixed (background).plist deleted file mode 100644 index 84dfd254a..000000000 --- a/bundles/css.tmbundle/Snippets/background-attachment: scroll:fixed (background).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - background-attachment: ${1|scroll,fixed|};$0 - name - background-attachment: scroll/fixed - scope - source.css - tabTrigger - background - uuid - 9E194D74-B73B-4D2B-A89F-51F7468A3E97 - - diff --git a/bundles/css.tmbundle/Snippets/background-color: color-hex (background).plist b/bundles/css.tmbundle/Snippets/background-color: color-hex (background).plist deleted file mode 100644 index 3513fdb7f..000000000 --- a/bundles/css.tmbundle/Snippets/background-color: color-hex (background).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - background-color: #${1:DDD};$0 - name - background-color: hex - scope - source.css - tabTrigger - background - uuid - 32B7B151-17CB-4DA4-AC0B-7D02BC606403 - - diff --git a/bundles/css.tmbundle/Snippets/background-color: color-name (background).plist b/bundles/css.tmbundle/Snippets/background-color: color-name (background).plist deleted file mode 100644 index df392cdaa..000000000 --- a/bundles/css.tmbundle/Snippets/background-color: color-name (background).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - background-color: ${1:red};$0 - name - background-color: name - scope - source.css - tabTrigger - background - uuid - 913410E0-623A-43F0-B71F-2E8FB9D5EBC8 - - diff --git a/bundles/css.tmbundle/Snippets/background-color: color-rgb (background).plist b/bundles/css.tmbundle/Snippets/background-color: color-rgb (background).plist deleted file mode 100644 index c3e9fc15a..000000000 --- a/bundles/css.tmbundle/Snippets/background-color: color-rgb (background).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - background-color: rgb(${1:255},${2:255},${3:255});$0 - name - background-color: rgb - scope - source.css - tabTrigger - background - uuid - 12241B4B-197C-41AF-ACC2-6B9A7AEC7039 - - diff --git a/bundles/css.tmbundle/Snippets/background-color: transparent (background).plist b/bundles/css.tmbundle/Snippets/background-color: transparent (background).plist deleted file mode 100644 index fffc44abe..000000000 --- a/bundles/css.tmbundle/Snippets/background-color: transparent (background).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - background-color: transparent;$0 - name - background-color: transparent - scope - source.css - tabTrigger - background - uuid - C71B1388-2815-4CAE-8652-CD159095AEAD - - diff --git a/bundles/css.tmbundle/Snippets/background-image: none (background).plist b/bundles/css.tmbundle/Snippets/background-image: none (background).plist deleted file mode 100644 index ede86fd9a..000000000 --- a/bundles/css.tmbundle/Snippets/background-image: none (background).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - background-image: none;$0 - name - background-image: none - scope - source.css - tabTrigger - background - uuid - 7D71DF8B-492E-493D-BD94-1A4AFCCDCBBF - - diff --git a/bundles/css.tmbundle/Snippets/background-image: url (background).plist b/bundles/css.tmbundle/Snippets/background-image: url (background).plist deleted file mode 100644 index b4ebbd5c9..000000000 --- a/bundles/css.tmbundle/Snippets/background-image: url (background).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - background-image: url($1);$0 - name - background-image: url - scope - source.css - tabTrigger - background - uuid - 978CBFF6-62D6-45B1-93F7-5644E1C6262B - - diff --git a/bundles/css.tmbundle/Snippets/background-position: position (background).plist b/bundles/css.tmbundle/Snippets/background-position: position (background).plist deleted file mode 100644 index 5bf9633dd..000000000 --- a/bundles/css.tmbundle/Snippets/background-position: position (background).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - background-position: ${1|top left,top center,top right,center left,center center,center right,bottom left,bottom center,bottom right,x-% y-%,x-pos y-pos|};$0 - name - background-position: position - scope - source.css - tabTrigger - background - uuid - E198D2D5-6B52-42FD-BCBC-01B0A7E5E80E - - diff --git a/bundles/css.tmbundle/Snippets/background-repeat: r:r-x:r-y:n-r (background).plist b/bundles/css.tmbundle/Snippets/background-repeat: r:r-x:r-y:n-r (background).plist deleted file mode 100644 index ecd8e4569..000000000 --- a/bundles/css.tmbundle/Snippets/background-repeat: r:r-x:r-y:n-r (background).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - background-repeat: ${1|repeat,repeat-x,repeat-y,no-repeat|};$0 - name - background-repeat: r/r-x/r-y/n-r - scope - source.css - tabTrigger - background - uuid - 4EE66583-26BE-4DBA-BD18-8DAF593835F9 - - diff --git a/bundles/css.tmbundle/Snippets/background: color image repeat attachment position (background).plist b/bundles/css.tmbundle/Snippets/background: color image repeat attachment position (background).plist deleted file mode 100644 index a594029e8..000000000 --- a/bundles/css.tmbundle/Snippets/background: color image repeat attachment position (background).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - background:${6: #${1:DDD}} url($2) ${3|repeat,repeat-x,repeat-y,no-repeat|} ${4|scroll,fixed|} ${5|top left,top center,top right,center left,center center,center right,bottom left,bottom center,bottom right,x-% y-%,x-pos y-pos|};$0 - name - background: color image repeat attachment position - scope - source.css - tabTrigger - background - uuid - D09967B1-2215-4B10-A331-7A372281DDA6 - - diff --git a/bundles/css.tmbundle/Snippets/border-bottom-color: size style color (border).plist b/bundles/css.tmbundle/Snippets/border-bottom-color: size style color (border).plist deleted file mode 100644 index 618a62a30..000000000 --- a/bundles/css.tmbundle/Snippets/border-bottom-color: size style color (border).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - border-bottom-color: #${1:999};$0 - name - border-bottom-color: color - scope - source.css - tabTrigger - border - uuid - 05AFB9EB-F4AB-4F86-8170-535CF508176C - - diff --git a/bundles/css.tmbundle/Snippets/border-bottom-style: size style color (border).plist b/bundles/css.tmbundle/Snippets/border-bottom-style: size style color (border).plist deleted file mode 100644 index 26fff89e6..000000000 --- a/bundles/css.tmbundle/Snippets/border-bottom-style: size style color (border).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - border-bottom-style: ${1|none,hidden,dotted,dashed,solid,double,groove,ridge,inset,outset|};$0 - name - border-bottom-style: style - scope - source.css - tabTrigger - border - uuid - 39FA441C-3A8F-49D4-BBFE-270B4C962782 - - diff --git a/bundles/css.tmbundle/Snippets/border-bottom-width: size style color (border).plist b/bundles/css.tmbundle/Snippets/border-bottom-width: size style color (border).plist deleted file mode 100644 index ac1992df6..000000000 --- a/bundles/css.tmbundle/Snippets/border-bottom-width: size style color (border).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - border-bottom-width: ${1:1}px ${2:solid} #${3:999};$0 - name - border-bottom-width: size - scope - source.css - tabTrigger - border - uuid - 6F1126A9-5916-4E6F-8812-AB82C4638B6B - - diff --git a/bundles/css.tmbundle/Snippets/border-bottom: size style color (border).plist b/bundles/css.tmbundle/Snippets/border-bottom: size style color (border).plist deleted file mode 100644 index b6b86d686..000000000 --- a/bundles/css.tmbundle/Snippets/border-bottom: size style color (border).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - border-bottom: ${1:1}px ${2:solid} #${3:999};$0 - name - border-bottom: size style color - scope - source.css - tabTrigger - border - uuid - 1998EF7F-D855-4EAF-8CE0-D76CE8C905A4 - - diff --git a/bundles/css.tmbundle/Snippets/border-color: color (border).plist b/bundles/css.tmbundle/Snippets/border-color: color (border).plist deleted file mode 100644 index 2af1a3620..000000000 --- a/bundles/css.tmbundle/Snippets/border-color: color (border).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - border-color: ${1:999};$0 - name - border-color: color - scope - source.css - tabTrigger - border - uuid - AB0759F4-4243-4807-B297-2902459EBE02 - - diff --git a/bundles/css.tmbundle/Snippets/border-left-color: color (border).plist b/bundles/css.tmbundle/Snippets/border-left-color: color (border).plist deleted file mode 100644 index ff8e233c0..000000000 --- a/bundles/css.tmbundle/Snippets/border-left-color: color (border).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - border-right-color: #${1:999};$0 - name - border-left-color: color - scope - source.css - tabTrigger - border - uuid - 189DD463-0331-4B99-8CA2-ADEEF7CC078D - - diff --git a/bundles/css.tmbundle/Snippets/border-left-style: style (border).plist b/bundles/css.tmbundle/Snippets/border-left-style: style (border).plist deleted file mode 100644 index 587cd2b22..000000000 --- a/bundles/css.tmbundle/Snippets/border-left-style: style (border).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - border-left-style: ${1|none,hidden,dotted,dashed,solid,double,groove,ridge,inset,outset|};$0 - name - border-left-style: style - scope - source.css - tabTrigger - border - uuid - 8AD77320-0E31-48B9-94A9-982FD8DD1885 - - diff --git a/bundles/css.tmbundle/Snippets/border-left-width: size (border).plist b/bundles/css.tmbundle/Snippets/border-left-width: size (border).plist deleted file mode 100644 index 9c3e10b77..000000000 --- a/bundles/css.tmbundle/Snippets/border-left-width: size (border).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - border-left-width: ${1:1}px - name - border-left-width: size - scope - source.css - tabTrigger - border - uuid - 1A667AFE-208F-4697-AD44-3FA1A23AA4C7 - - diff --git a/bundles/css.tmbundle/Snippets/border-left: size style color (border).plist b/bundles/css.tmbundle/Snippets/border-left: size style color (border).plist deleted file mode 100644 index 5200b434b..000000000 --- a/bundles/css.tmbundle/Snippets/border-left: size style color (border).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - border-left: ${1:1}px ${2:solid} #${3:999};$0 - name - border-left: size style color - scope - source.css - tabTrigger - border - uuid - BDA03041-39C6-461C-A6F3-F6145D99AB5E - - diff --git a/bundles/css.tmbundle/Snippets/border-right-color: color (border).plist b/bundles/css.tmbundle/Snippets/border-right-color: color (border).plist deleted file mode 100644 index 48c74138a..000000000 --- a/bundles/css.tmbundle/Snippets/border-right-color: color (border).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - border-right-color: #${1:999};$0 - name - border-right-color: color - scope - source.css - tabTrigger - border - uuid - 321FFAF7-5699-45E6-8696-DE84AD607690 - - diff --git a/bundles/css.tmbundle/Snippets/border-right-style: style (border).plist b/bundles/css.tmbundle/Snippets/border-right-style: style (border).plist deleted file mode 100644 index 1e8ec2f5f..000000000 --- a/bundles/css.tmbundle/Snippets/border-right-style: style (border).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - border-right-style: ${1|none,hidden,dotted,dashed,solid,double,groove,ridge,inset,outset|};$0 - name - border-right-style: style - scope - source.css - tabTrigger - border - uuid - 6AE8DB39-F8E2-4DC9-ADBA-460E952439D8 - - diff --git a/bundles/css.tmbundle/Snippets/border-right-width: size (border).plist b/bundles/css.tmbundle/Snippets/border-right-width: size (border).plist deleted file mode 100644 index 367d6cf0e..000000000 --- a/bundles/css.tmbundle/Snippets/border-right-width: size (border).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - border-right-width: ${1:1}px - name - border-right-width: size - scope - source.css - tabTrigger - border - uuid - 8B059A97-7F2C-48CD-8422-0ECAB678E8AE - - diff --git a/bundles/css.tmbundle/Snippets/border-right: size style color (border).plist b/bundles/css.tmbundle/Snippets/border-right: size style color (border).plist deleted file mode 100644 index c8a055d4d..000000000 --- a/bundles/css.tmbundle/Snippets/border-right: size style color (border).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - border-right: ${1:1}px ${2:solid} #${3:999};$0 - name - border-right: size style color - scope - source.css - tabTrigger - border - uuid - 5FFC4EDE-9AEE-4854-BA78-34BD98BE7FBE - - diff --git a/bundles/css.tmbundle/Snippets/border-style: style (border).plist b/bundles/css.tmbundle/Snippets/border-style: style (border).plist deleted file mode 100644 index 6a948079a..000000000 --- a/bundles/css.tmbundle/Snippets/border-style: style (border).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - border-style: ${1|none,hidden,dotted,dashed,solid,double,groove,ridge,inset,outset|};$0 - name - border-style: style - scope - source.css - tabTrigger - border - uuid - E4BD9171-E053-4EEF-8631-CFC74F1DCB97 - - diff --git a/bundles/css.tmbundle/Snippets/border-top-color: color (border).plist b/bundles/css.tmbundle/Snippets/border-top-color: color (border).plist deleted file mode 100644 index 3959cf08b..000000000 --- a/bundles/css.tmbundle/Snippets/border-top-color: color (border).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - border-top-color: #${1:999};$0 - name - border-top-color: color - scope - source.css - tabTrigger - border - uuid - DAF7114F-B5DC-4E70-A7CD-66FF028F93B1 - - diff --git a/bundles/css.tmbundle/Snippets/border-top-style: style (border).plist b/bundles/css.tmbundle/Snippets/border-top-style: style (border).plist deleted file mode 100644 index 2c77a170a..000000000 --- a/bundles/css.tmbundle/Snippets/border-top-style: style (border).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - border-top-style: ${1|none,hidden,dotted,dashed,solid,double,groove,ridge,inset,outset|};$0 - name - border-top-style: style - scope - source.css - tabTrigger - border - uuid - C5039010-E264-4D3D-A12E-02C2DB7DC4BF - - diff --git a/bundles/css.tmbundle/Snippets/border-top-width: size (border).plist b/bundles/css.tmbundle/Snippets/border-top-width: size (border).plist deleted file mode 100644 index 437b8f35b..000000000 --- a/bundles/css.tmbundle/Snippets/border-top-width: size (border).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - border-top-width: ${1:1}px - name - border-top-width: size - scope - source.css - tabTrigger - border - uuid - EE19367C-6634-4854-910D-90C6F5752A46 - - diff --git a/bundles/css.tmbundle/Snippets/border-top: size style color (border).plist b/bundles/css.tmbundle/Snippets/border-top: size style color (border).plist deleted file mode 100644 index 434e264d4..000000000 --- a/bundles/css.tmbundle/Snippets/border-top: size style color (border).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - border-top: ${1:1}px ${2:solid} #${3:999};$0 - name - border-top: size style color - scope - source.css - tabTrigger - border - uuid - 0FEBF51B-77B0-4D38-9CDB-276744CAF455 - - diff --git a/bundles/css.tmbundle/Snippets/border-width: width (border).plist b/bundles/css.tmbundle/Snippets/border-width: width (border).plist deleted file mode 100644 index c691ade14..000000000 --- a/bundles/css.tmbundle/Snippets/border-width: width (border).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - border-width: ${1:1px};$0 - name - border-width: size - scope - source.css - tabTrigger - border - uuid - 979C3D46-E8B1-484D-9DBB-E3B1FCD3BCF9 - - diff --git a/bundles/css.tmbundle/Snippets/border: size style color (border).plist b/bundles/css.tmbundle/Snippets/border: size style color (border).plist deleted file mode 100644 index 68c9c0975..000000000 --- a/bundles/css.tmbundle/Snippets/border: size style color (border).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - border: ${1:1px} ${2:solid} #${3:999};$0 - name - border: size style color - scope - source.css - tabTrigger - border - uuid - A2EA7266-AE50-4987-A86B-E3C4DFA5B643 - - diff --git a/bundles/css.tmbundle/Snippets/clear: value (clear).plist b/bundles/css.tmbundle/Snippets/clear: value (clear).plist deleted file mode 100644 index a8d196bd4..000000000 --- a/bundles/css.tmbundle/Snippets/clear: value (clear).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - clear: ${1|left,right,both,none|};$0 - name - clear: value - scope - source.css - tabTrigger - clear - uuid - 8E9366D7-BB0B-456C-B9F3-0CE8072A10C3 - - diff --git a/bundles/css.tmbundle/Snippets/color: color-hex (color).plist b/bundles/css.tmbundle/Snippets/color: color-hex (color).plist deleted file mode 100644 index 8de93fa8a..000000000 --- a/bundles/css.tmbundle/Snippets/color: color-hex (color).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - color: #${1:DDD};$0 - name - color: hex - scope - source.css - tabTrigger - color - uuid - D69E7EB0-07E2-48A3-AD32-A7C3E6CAFBBC - - diff --git a/bundles/css.tmbundle/Snippets/color: color-name (color).plist b/bundles/css.tmbundle/Snippets/color: color-name (color).plist deleted file mode 100644 index cf517d0a1..000000000 --- a/bundles/css.tmbundle/Snippets/color: color-name (color).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - color: ${1:red};$0 - name - color: name - scope - source.css - tabTrigger - color - uuid - 45D80BAF-0B0A-4334-AFBC-3601B5903707 - - diff --git a/bundles/css.tmbundle/Snippets/color: color-rgb (color).plist b/bundles/css.tmbundle/Snippets/color: color-rgb (color).plist deleted file mode 100644 index 3cc122aaa..000000000 --- a/bundles/css.tmbundle/Snippets/color: color-rgb (color).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - color: rgb(${1:255},${2:255},${3:255});$0 - name - color: rgb - scope - source.css - tabTrigger - color - uuid - FBA1210B-33DB-49D0-B026-FF31DBC41FD6 - - diff --git a/bundles/css.tmbundle/Snippets/cursor: type (cursor).plist b/bundles/css.tmbundle/Snippets/cursor: type (cursor).plist deleted file mode 100644 index c51029de1..000000000 --- a/bundles/css.tmbundle/Snippets/cursor: type (cursor).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - cursor: ${1|default,auto,crosshair,pointer,move,*-resize,text,wait,help|};$0 - name - cursor: type - scope - source.css - tabTrigger - cursor - uuid - 5EDCDB17-5DB0-459A-A61D-29984DD3A3B8 - - diff --git a/bundles/css.tmbundle/Snippets/cursor: url (cursor).plist b/bundles/css.tmbundle/Snippets/cursor: url (cursor).plist deleted file mode 100644 index 9d0b4e087..000000000 --- a/bundles/css.tmbundle/Snippets/cursor: url (cursor).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - cursor: url($1);$0 - name - cursor: url - scope - source.css - tabTrigger - cursor - uuid - 5C9011B1-B8A8-4FD3-8EA8-848AF6509ADF - - diff --git a/bundles/css.tmbundle/Snippets/direction: ltr|rtl (direction).plist b/bundles/css.tmbundle/Snippets/direction: ltr|rtl (direction).plist deleted file mode 100644 index 8d531cca4..000000000 --- a/bundles/css.tmbundle/Snippets/direction: ltr|rtl (direction).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - direction: ${1:ltr|rtl};$0 - name - direction: ltr/rtl - scope - source.css - tabTrigger - direction - uuid - A723DACA-3819-4E8D-8BCF-9BD1B98AF651 - - diff --git a/bundles/css.tmbundle/Snippets/display: block (display).plist b/bundles/css.tmbundle/Snippets/display: block (display).plist deleted file mode 100644 index 64c7a2661..000000000 --- a/bundles/css.tmbundle/Snippets/display: block (display).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - display: block;$0 - name - display: block - scope - source.css - tabTrigger - display - uuid - 2FC3C35E-88A6-4DA0-808D-3034A96E7794 - - diff --git a/bundles/css.tmbundle/Snippets/display: common-types (display).plist b/bundles/css.tmbundle/Snippets/display: common-types (display).plist deleted file mode 100644 index 4e2cec881..000000000 --- a/bundles/css.tmbundle/Snippets/display: common-types (display).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - display: ${1|none,inline,block,list-item,run-in,compact,marker|};$0 - name - display: common-types - scope - source.css - tabTrigger - display - uuid - 56940467-7D99-4F31-83C2-1554638F552A - - diff --git a/bundles/css.tmbundle/Snippets/display: inline (display).plist b/bundles/css.tmbundle/Snippets/display: inline (display).plist deleted file mode 100644 index fdd191e59..000000000 --- a/bundles/css.tmbundle/Snippets/display: inline (display).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - display: inline;$0 - name - display: inline - scope - source.css - tabTrigger - display - uuid - CA506D09-9EAE-445D-AE1E-7058937304B7 - - diff --git a/bundles/css.tmbundle/Snippets/display: table-types (display).plist b/bundles/css.tmbundle/Snippets/display: table-types (display).plist deleted file mode 100644 index 2a5747502..000000000 --- a/bundles/css.tmbundle/Snippets/display: table-types (display).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - display: ${1|table,inline-table,table-row-group,table-header-group,table-footer-group,table-row,table-column-group,table-column,table-cell,table-caption|};$0 - name - display: table-types - scope - source.css - tabTrigger - display - uuid - 98BE34AD-3CB1-4FB9-98A0-5E5A4BA63286 - - diff --git a/bundles/css.tmbundle/Snippets/filter: AlphaImageLoader [for IE PNGs] (background).plist b/bundles/css.tmbundle/Snippets/filter: AlphaImageLoader [for IE PNGs] (background).plist deleted file mode 100644 index 17573738b..000000000 --- a/bundles/css.tmbundle/Snippets/filter: AlphaImageLoader [for IE PNGs] (background).plist +++ /dev/null @@ -1,19 +0,0 @@ - - - - - content - ${3:background-image: none; -}filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='${1:${TM_SELECTED_TEXT:/images/transparent.png}}', sizingMethod='${2|image,scale,crop|}'); - keyEquivalent - - name - filter: AlphaImageLoader [for IE PNGs] - scope - source.css - tabTrigger - background - uuid - 81CCEB84-6241-4E4F-BB26-54BAAFA3FF2E - - diff --git a/bundles/css.tmbundle/Snippets/float: left:right:none (float).plist b/bundles/css.tmbundle/Snippets/float: left:right:none (float).plist deleted file mode 100644 index 006fb6b42..000000000 --- a/bundles/css.tmbundle/Snippets/float: left:right:none (float).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - float: ${1|left,right,none|};$0 - name - float: left/right/none - scope - source.css - tabTrigger - float - uuid - 39244453-6D06-4265-9894-14D7FC0B277F - - diff --git a/bundles/css.tmbundle/Snippets/font-family: family (font).plist b/bundles/css.tmbundle/Snippets/font-family: family (font).plist deleted file mode 100644 index a843a108d..000000000 --- a/bundles/css.tmbundle/Snippets/font-family: family (font).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - font-family: ${1:Arial, "MS Trebuchet"}, ${2:sans-}serif;$0 - name - font-family: family - scope - source.css - tabTrigger - font - uuid - 25388EC7-EA59-4C87-9F11-52870ADBF1AB - - diff --git a/bundles/css.tmbundle/Snippets/font-size: size (font).plist b/bundles/css.tmbundle/Snippets/font-size: size (font).plist deleted file mode 100644 index 53c8b87cb..000000000 --- a/bundles/css.tmbundle/Snippets/font-size: size (font).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - font-size: ${1:100%};$0 - name - font-size: size - scope - source.css - tabTrigger - font - uuid - CD8E3F13-2B14-401D-9646-E309FB04B678 - - diff --git a/bundles/css.tmbundle/Snippets/font-style: normal:italic:oblique (font).plist b/bundles/css.tmbundle/Snippets/font-style: normal:italic:oblique (font).plist deleted file mode 100644 index 5a4e63ff9..000000000 --- a/bundles/css.tmbundle/Snippets/font-style: normal:italic:oblique (font).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - font-style: ${1|normal,italic,oblique|};$0 - name - font-style: normal/italic/oblique - scope - source.css - tabTrigger - font - uuid - 128D7494-86EA-4615-87F4-C4D45E8C04AA - - diff --git a/bundles/css.tmbundle/Snippets/font-variant: normal:small-caps (font).plist b/bundles/css.tmbundle/Snippets/font-variant: normal:small-caps (font).plist deleted file mode 100644 index 397020908..000000000 --- a/bundles/css.tmbundle/Snippets/font-variant: normal:small-caps (font).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - font-variant: ${1|normal,small-caps|};$0 - name - font-variant: normal/small-caps - scope - source.css - tabTrigger - font - uuid - B6C9A8F9-2942-4592-B73F-2833B9F648E5 - - diff --git a/bundles/css.tmbundle/Snippets/font-weight: weight (font).plist b/bundles/css.tmbundle/Snippets/font-weight: weight (font).plist deleted file mode 100644 index 6116fdb77..000000000 --- a/bundles/css.tmbundle/Snippets/font-weight: weight (font).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - font-weight: ${1|normal,bold|};$0 - name - font-weight: weight - scope - source.css - tabTrigger - font - uuid - F2DC92D8-43D4-4044-9D85-D96F734FF81E - - diff --git a/bundles/css.tmbundle/Snippets/font: style variant weight size:line-height font -family (font).plist b/bundles/css.tmbundle/Snippets/font: style variant weight size:line-height font -family (font).plist deleted file mode 100644 index 77133561f..000000000 --- a/bundles/css.tmbundle/Snippets/font: style variant weight size:line-height font -family (font).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - font: ${1|normal,italic,oblique|} ${2|normal,small-caps|} ${3|normal,bold|} ${4|1em,1.5em|} ${5:Arial}, ${6:sans-}serif;$0 - name - font: style variant weight size/line-height font-family - scope - source.css - tabTrigger - font - uuid - 30C6CFA2-C00A-4F2A-8770-096A49C3F95F - - diff --git a/bundles/css.tmbundle/Snippets/font: size font (font).plist b/bundles/css.tmbundle/Snippets/font: size font (font).plist deleted file mode 100644 index 404eb01bb..000000000 --- a/bundles/css.tmbundle/Snippets/font: size font (font).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - font: ${1:75%} ${2:"Lucida Grande", "Trebuchet MS", Verdana,} ${3:sans-}serif;$0 - name - font: size font - scope - source.css - tabTrigger - font - uuid - F5EDF655-440B-4E1B-908F-4291F3A0A3A8 - - diff --git a/bundles/css.tmbundle/Snippets/letter-spacing: length-em (letter).plist b/bundles/css.tmbundle/Snippets/letter-spacing: length-em (letter).plist deleted file mode 100644 index 1499e3380..000000000 --- a/bundles/css.tmbundle/Snippets/letter-spacing: length-em (letter).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - letter-spacing: $1em;$0 - name - letter-spacing: em - scope - source.css - tabTrigger - letter - uuid - D612A3B7-7C49-4447-9AAF-CCCFDE4408FF - - diff --git a/bundles/css.tmbundle/Snippets/letter-spacing: length-px (letter).plist b/bundles/css.tmbundle/Snippets/letter-spacing: length-px (letter).plist deleted file mode 100644 index f37d3065f..000000000 --- a/bundles/css.tmbundle/Snippets/letter-spacing: length-px (letter).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - letter-spacing: $1px;$0 - name - letter-spacing: px - scope - source.css - tabTrigger - letter - uuid - 17BBB1F1-1F83-4386-97B8-23144EB2441A - - diff --git a/bundles/css.tmbundle/Snippets/list-style-image: url (list).plist b/bundles/css.tmbundle/Snippets/list-style-image: url (list).plist deleted file mode 100644 index 5aad4be19..000000000 --- a/bundles/css.tmbundle/Snippets/list-style-image: url (list).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - list-style-image: url($1);$0 - name - list-style-image: url - scope - source.css - tabTrigger - list - uuid - BDEF3B0F-6414-4B1A-8841-864702B51EC6 - - diff --git a/bundles/css.tmbundle/Snippets/list-style-position: pos (list).plist b/bundles/css.tmbundle/Snippets/list-style-position: pos (list).plist deleted file mode 100644 index 25d941705..000000000 --- a/bundles/css.tmbundle/Snippets/list-style-position: pos (list).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - list-style-position: ${1|inside,outside|};$0 - name - list-style-position: pos - scope - source.css - tabTrigger - list - uuid - 9B10C768-5DA7-4570-98E4-70A36261C823 - - diff --git a/bundles/css.tmbundle/Snippets/list-style-type: asian (list).plist b/bundles/css.tmbundle/Snippets/list-style-type: asian (list).plist deleted file mode 100644 index 3ab984eed..000000000 --- a/bundles/css.tmbundle/Snippets/list-style-type: asian (list).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - list-style-type: ${1|cjk-ideographic,hiragana,katakana,hiragana-iroha,katakana-iroha|};$0 - name - list-style-type: asian - scope - source.css - tabTrigger - list - uuid - E024086F-94B8-401F-A903-7F0CDA8E0B8A - - diff --git a/bundles/css.tmbundle/Snippets/list-style-type: marker(list).plist b/bundles/css.tmbundle/Snippets/list-style-type: marker(list).plist deleted file mode 100644 index 2404557dc..000000000 --- a/bundles/css.tmbundle/Snippets/list-style-type: marker(list).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - list-style-type: ${1|none,disc,circle,square|};$0 - name - list-style-type: marker - scope - source.css - tabTrigger - list - uuid - C5CE7E29-9EB1-4A63-8173-190D12E4E4E4 - - diff --git a/bundles/css.tmbundle/Snippets/list-style-type: numeric (list).plist b/bundles/css.tmbundle/Snippets/list-style-type: numeric (list).plist deleted file mode 100644 index 023fbecd0..000000000 --- a/bundles/css.tmbundle/Snippets/list-style-type: numeric (list).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - list-style-type: ${1|decimal,decimal-leading-zero,zero|};$0 - name - list-style-type: numeric - scope - source.css - tabTrigger - list - uuid - 24436F96-2383-48AB-844F-AE791DEAF080 - - diff --git a/bundles/css.tmbundle/Snippets/list-style-type: other (list).plist b/bundles/css.tmbundle/Snippets/list-style-type: other (list).plist deleted file mode 100644 index efc8a00ec..000000000 --- a/bundles/css.tmbundle/Snippets/list-style-type: other (list).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - list-style-type: ${1|hebrew,armenian,georgian|};$0 - name - list-style-type: other - scope - source.css - tabTrigger - list - uuid - B8E9019D-3419-4CC3-87BB-DC54098CBFD0 - - diff --git a/bundles/css.tmbundle/Snippets/list-style-type: roman-alpha-greek (list).plist b/bundles/css.tmbundle/Snippets/list-style-type: roman-alpha-greek (list).plist deleted file mode 100644 index 35a7935fb..000000000 --- a/bundles/css.tmbundle/Snippets/list-style-type: roman-alpha-greek (list).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - list-style-type: ${1|lower-roman,upper-roman,lower-alpha,upper-alpha,lower-greek,lower-latin,upper-latin|};$0 - name - list-style-type: roman-alpha-greek - scope - source.css - tabTrigger - list - uuid - 97A55488-5DD9-4347-B5F1-722F580715E4 - - diff --git a/bundles/css.tmbundle/Snippets/list-style: type position image (list).plist b/bundles/css.tmbundle/Snippets/list-style: type position image (list).plist deleted file mode 100644 index 959a15edf..000000000 --- a/bundles/css.tmbundle/Snippets/list-style: type position image (list).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - list-style: ${1|none,disc,circle,square,decimal,zero|} ${2|inside,outside|} url($3);$0 - name - list-style: type position image - scope - source.css - tabTrigger - list - uuid - 1C7E0430-2A67-4CEF-9D68-4ED6315A8567 - - diff --git a/bundles/css.tmbundle/Snippets/margin-bottom: length (margin).plist b/bundles/css.tmbundle/Snippets/margin-bottom: length (margin).plist deleted file mode 100644 index fa1fd8cea..000000000 --- a/bundles/css.tmbundle/Snippets/margin-bottom: length (margin).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - margin-bottom: ${1:20px};$0 - name - margin-bottom: length - scope - source.css - tabTrigger - margin - uuid - 6354F6AC-74E2-42CF-96B0-7EE2733B9B34 - - diff --git a/bundles/css.tmbundle/Snippets/margin-left: length (margin).plist b/bundles/css.tmbundle/Snippets/margin-left: length (margin).plist deleted file mode 100644 index 0555f2808..000000000 --- a/bundles/css.tmbundle/Snippets/margin-left: length (margin).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - margin-left: ${1:20px};$0 - name - margin-left: length - scope - source.css - tabTrigger - margin - uuid - C19985FF-A12C-49B9-9BA3-EDC726E919A0 - - diff --git a/bundles/css.tmbundle/Snippets/margin-right: length (margin).plist b/bundles/css.tmbundle/Snippets/margin-right: length (margin).plist deleted file mode 100644 index 33c282a57..000000000 --- a/bundles/css.tmbundle/Snippets/margin-right: length (margin).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - margin-right: ${1:20px};$0 - name - margin-right: length - scope - source.css - tabTrigger - margin - uuid - 1FDAB8C2-7A0D-4C0A-97FF-77AD2CC86083 - - diff --git a/bundles/css.tmbundle/Snippets/margin-top: length (margin).plist b/bundles/css.tmbundle/Snippets/margin-top: length (margin).plist deleted file mode 100644 index c8da762e9..000000000 --- a/bundles/css.tmbundle/Snippets/margin-top: length (margin).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - margin-top: ${1:20px};$0 - name - margin-top: length - scope - source.css - tabTrigger - margin - uuid - 412AA532-762F-4270-961A-54BF6014996D - - diff --git a/bundles/css.tmbundle/Snippets/margin: all (margin).plist b/bundles/css.tmbundle/Snippets/margin: all (margin).plist deleted file mode 100644 index 251b7098e..000000000 --- a/bundles/css.tmbundle/Snippets/margin: all (margin).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - margin: ${1:20px};$0 - name - margin: all - scope - source.css - tabTrigger - margin - uuid - FA3D9F50-C5F6-4193-81D2-98A3E8FFBB2F - - diff --git a/bundles/css.tmbundle/Snippets/margin: T R B L (margin).plist b/bundles/css.tmbundle/Snippets/margin: T R B L (margin).plist deleted file mode 100644 index e014dee2e..000000000 --- a/bundles/css.tmbundle/Snippets/margin: T R B L (margin).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - margin: ${1:20px} ${2:0px} ${3:40px} ${4:0px};$0 - name - margin: T R B L - scope - source.css - tabTrigger - margin - uuid - 68A3178C-A024-48BD-ABA6-0A03A69BD82E - - diff --git a/bundles/css.tmbundle/Snippets/margin: V H (margin).plist b/bundles/css.tmbundle/Snippets/margin: V H (margin).plist deleted file mode 100644 index f227fae3c..000000000 --- a/bundles/css.tmbundle/Snippets/margin: V H (margin).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - margin: ${1:20px} ${2:0px};$0 - name - margin: V H - scope - source.css - tabTrigger - margin - uuid - 99315B12-6A41-4D8F-8477-F38DE0EBBEF8 - - diff --git a/bundles/css.tmbundle/Snippets/marker-offset: auto (marker).plist b/bundles/css.tmbundle/Snippets/marker-offset: auto (marker).plist deleted file mode 100644 index b38730afc..000000000 --- a/bundles/css.tmbundle/Snippets/marker-offset: auto (marker).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - marker-offset: auto;$0 - name - marker-offset: auto - scope - source.css - tabTrigger - marker - uuid - E10366F8-CA83-4447-89D3-B36AFD1EAECD - - diff --git a/bundles/css.tmbundle/Snippets/marker-offset: length (marker).plist b/bundles/css.tmbundle/Snippets/marker-offset: length (marker).plist deleted file mode 100644 index 2351d19f2..000000000 --- a/bundles/css.tmbundle/Snippets/marker-offset: length (marker).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - marker-offset: ${1:10px};$0 - name - marker-offset: length - scope - source.css - tabTrigger - marker - uuid - 5FDD30D8-7EF8-41E9-8A44-DC3C22EFD75D - - diff --git a/bundles/css.tmbundle/Snippets/opacity: [for Safari, FF and IE] (opacity).plist b/bundles/css.tmbundle/Snippets/opacity: [for Safari, FF and IE] (opacity).plist deleted file mode 100644 index e965a7189..000000000 --- a/bundles/css.tmbundle/Snippets/opacity: [for Safari, FF and IE] (opacity).plist +++ /dev/null @@ -1,18 +0,0 @@ - - - - - content - opacity: ${1:0.5};${100: -}-moz-opacity: ${1:0.5};${100: -}filter:alpha(opacity=${2:${1/(1?)0?\.(.*)/$1$2/}${1/^\d*\.\d\d+$|^\d*$|(^\d\.\d$)/(?1:0)/}});$0 - name - opacity: [for Safari, FF & IE] - scope - source.css - tabTrigger - opacity - uuid - 50C748B6-C8B6-447F-A9EE-DD41CF1CD707 - - diff --git a/bundles/css.tmbundle/Snippets/overflow: type (overflow).plist b/bundles/css.tmbundle/Snippets/overflow: type (overflow).plist deleted file mode 100644 index 3a253c5f7..000000000 --- a/bundles/css.tmbundle/Snippets/overflow: type (overflow).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - overflow: ${1|visible,hidden,scroll,auto|};$0 - name - overflow: type - scope - source.css - tabTrigger - overflow - uuid - 6523B6C5-8741-4766-98D6-1B1DE2E6A5F3 - - diff --git a/bundles/css.tmbundle/Snippets/padding-bottom: length (margin).plist b/bundles/css.tmbundle/Snippets/padding-bottom: length (margin).plist deleted file mode 100644 index 4574de649..000000000 --- a/bundles/css.tmbundle/Snippets/padding-bottom: length (margin).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - padding-bottom: ${1:20px};$0 - name - padding-bottom: length - scope - source.css - tabTrigger - padding - uuid - 1644E167-7A29-46A7-A100-7BD6C7EFA2F3 - - diff --git a/bundles/css.tmbundle/Snippets/padding-left: length (margin).plist b/bundles/css.tmbundle/Snippets/padding-left: length (margin).plist deleted file mode 100644 index c9c984aa9..000000000 --- a/bundles/css.tmbundle/Snippets/padding-left: length (margin).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - padding-left: ${1:20px};$0 - name - padding-left: length - scope - source.css - tabTrigger - padding - uuid - 772DD28C-80C2-4C9B-8023-1E71A974E1C4 - - diff --git a/bundles/css.tmbundle/Snippets/padding-right: length (margin).plist b/bundles/css.tmbundle/Snippets/padding-right: length (margin).plist deleted file mode 100644 index 4bfe0ad5b..000000000 --- a/bundles/css.tmbundle/Snippets/padding-right: length (margin).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - padding-right: ${1:20px};$0 - name - padding-right: length - scope - source.css - tabTrigger - padding - uuid - C1667E5D-3A50-42F8-8129-6C3EEB43D7C2 - - diff --git a/bundles/css.tmbundle/Snippets/padding-top: length (margin).plist b/bundles/css.tmbundle/Snippets/padding-top: length (margin).plist deleted file mode 100644 index 3b4c86a19..000000000 --- a/bundles/css.tmbundle/Snippets/padding-top: length (margin).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - padding-top: ${1:20px};$0 - name - padding-top: length - scope - source.css - tabTrigger - padding - uuid - E5B92C27-8602-4E50-9DF7-DE476E63BA1A - - diff --git a/bundles/css.tmbundle/Snippets/padding: T R B L (padding).plist b/bundles/css.tmbundle/Snippets/padding: T R B L (padding).plist deleted file mode 100644 index 7a5596873..000000000 --- a/bundles/css.tmbundle/Snippets/padding: T R B L (padding).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - padding: ${1:20px} ${2:0px} ${3:40px} ${4:0px};$0 - name - padding: T R B L - scope - source.css - tabTrigger - padding - uuid - DD5BB93D-4F99-4A41-8864-85A557B922C7 - - diff --git a/bundles/css.tmbundle/Snippets/padding: V H (padding).plist b/bundles/css.tmbundle/Snippets/padding: V H (padding).plist deleted file mode 100644 index e65f8fb97..000000000 --- a/bundles/css.tmbundle/Snippets/padding: V H (padding).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - padding: ${1:20px} ${2:0px};$0 - name - padding: V H - scope - source.css - tabTrigger - padding - uuid - 4602BFF3-C7F1-4CF5-93CE-125EC8ABC7C8 - - diff --git a/bundles/css.tmbundle/Snippets/padding: all (padding).plist b/bundles/css.tmbundle/Snippets/padding: all (padding).plist deleted file mode 100644 index 4e1a73ec9..000000000 --- a/bundles/css.tmbundle/Snippets/padding: all (padding).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - padding: ${1:20px};$0 - name - padding: all - scope - source.css - tabTrigger - padding - uuid - 6E64EA4A-A10E-49B3-AC9C-D53DBF9ED14A - - diff --git a/bundles/css.tmbundle/Snippets/position: type (position).plist b/bundles/css.tmbundle/Snippets/position: type (position).plist deleted file mode 100644 index ce224ccdf..000000000 --- a/bundles/css.tmbundle/Snippets/position: type (position).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - position: ${1|static,relative,absolute,fixed|};$0 - name - position: type - scope - source.css - tabTrigger - position - uuid - 1398502F-D4FD-437B-9033-49E254159BDE - - diff --git a/bundles/css.tmbundle/Snippets/properties { } ( } ).plist b/bundles/css.tmbundle/Snippets/properties { } ( } ).plist deleted file mode 100644 index 8720267a4..000000000 --- a/bundles/css.tmbundle/Snippets/properties { } ( } ).plist +++ /dev/null @@ -1,19 +0,0 @@ - - - - - content - { - /* $1 */ - $0 - - name - properties { } ( } ) - scope - source.css - tabTrigger - { - uuid - 0975B58C-C7A1-441E-90E4-C7C413975D42 - - diff --git a/bundles/css.tmbundle/Snippets/scrollbar.tmSnippet b/bundles/css.tmbundle/Snippets/scrollbar.tmSnippet deleted file mode 100644 index 56a4e04bd..000000000 --- a/bundles/css.tmbundle/Snippets/scrollbar.tmSnippet +++ /dev/null @@ -1,23 +0,0 @@ - - - - - content - scrollbar-base-color: ${1:#CCCCCC};${2: -scrollbar-arrow-color: ${3:#000000}; -scrollbar-track-color: ${4:#999999}; -scrollbar-3dlight-color: ${5:#EEEEEE}; -scrollbar-highlight-color: ${6:#FFFFFF}; -scrollbar-face-color: ${7:#CCCCCC}; -scrollbar-shadow-color: ${9:#999999}; -scrollbar-darkshadow-color: ${8:#666666};} - name - scrollbar - scope - source.css meta.property-list - tabTrigger - scrollbar - uuid - 749295F4-F139-422A-80A0-EA11364396E3 - - diff --git a/bundles/css.tmbundle/Snippets/selection.tmSnippet b/bundles/css.tmbundle/Snippets/selection.tmSnippet deleted file mode 100644 index 31d6d30a3..000000000 --- a/bundles/css.tmbundle/Snippets/selection.tmSnippet +++ /dev/null @@ -1,20 +0,0 @@ - - - - - content - $1::-moz-selection, -$1::selection { - color: ${2:inherit}; - background: ${3:inherit}; -} - name - selection - scope - source.css -meta.property-list - tabTrigger - selection - uuid - 1B042CEF-7C82-472D-92A2-FF555BFD6927 - - diff --git a/bundles/css.tmbundle/Snippets/text-align: left:center:right (txt).plist b/bundles/css.tmbundle/Snippets/text-align: left:center:right (txt).plist deleted file mode 100644 index df7d6755d..000000000 --- a/bundles/css.tmbundle/Snippets/text-align: left:center:right (txt).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - text-align: ${1|left,right,center,justify|};$0 - name - text-align: left/center/right - scope - source.css - tabTrigger - text - uuid - F6CB9433-601A-4F95-A6B9-27D76B50DEE3 - - diff --git a/bundles/css.tmbundle/Snippets/text-decoration: none:underline:overline:line-through:blink (text).plist b/bundles/css.tmbundle/Snippets/text-decoration: none:underline:overline:line-through:blink (text).plist deleted file mode 100644 index 5f434bb6d..000000000 --- a/bundles/css.tmbundle/Snippets/text-decoration: none:underline:overline:line-through:blink (text).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - text-decoration: ${1|none,underline,overline,line-through,blink|};$0 - name - text-decoration: none/underline/overline/line-through/blink - scope - source.css - tabTrigger - text - uuid - B1916E73-D417-42C2-A5C1-E95428DA6C45 - - diff --git a/bundles/css.tmbundle/Snippets/text-indent: length (text).plist b/bundles/css.tmbundle/Snippets/text-indent: length (text).plist deleted file mode 100644 index 7d771a569..000000000 --- a/bundles/css.tmbundle/Snippets/text-indent: length (text).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - text-indent: ${1:10}px;$0 - name - text-indent: length - scope - source.css - tabTrigger - text - uuid - 2CFA68DC-947B-4C43-872C-FB4DC0704D27 - - diff --git a/bundles/css.tmbundle/Snippets/text-shadow: color-hex x y blur (text).plist b/bundles/css.tmbundle/Snippets/text-shadow: color-hex x y blur (text).plist deleted file mode 100644 index 6c609417b..000000000 --- a/bundles/css.tmbundle/Snippets/text-shadow: color-hex x y blur (text).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - text-shadow: #${1:DDD} ${2:10px} ${3:10px} ${4:2px};$0 - name - text-shadow: color-hex x y blur - scope - source.css - tabTrigger - text - uuid - 77EF6A55-9814-492C-B8E2-EFF0FFAC272E - - diff --git a/bundles/css.tmbundle/Snippets/text-shadow: color-rgb x y blur (text).plist b/bundles/css.tmbundle/Snippets/text-shadow: color-rgb x y blur (text).plist deleted file mode 100644 index 657363d10..000000000 --- a/bundles/css.tmbundle/Snippets/text-shadow: color-rgb x y blur (text).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - text-shadow: rgb(${1:255},${2:255},${3:255}) ${4:10px} ${5:10px} ${6:2px};$0 - name - text-shadow: color-rgb x y blur - scope - source.css - tabTrigger - text - uuid - 005905FF-544A-434C-803E-B51689332034 - - diff --git a/bundles/css.tmbundle/Snippets/text-shadow: none (text).plist b/bundles/css.tmbundle/Snippets/text-shadow: none (text).plist deleted file mode 100644 index b363e5b9e..000000000 --- a/bundles/css.tmbundle/Snippets/text-shadow: none (text).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - text-shadow: none;$0 - name - text-shadow: none - scope - source.css - tabTrigger - text - uuid - 1A6AD6F4-E0F7-406B-B28B-06EC54660650 - - diff --git a/bundles/css.tmbundle/Snippets/text-transform: capitalize:upper:lower (text).plist b/bundles/css.tmbundle/Snippets/text-transform: capitalize:upper:lower (text).plist deleted file mode 100644 index 4e8da1a64..000000000 --- a/bundles/css.tmbundle/Snippets/text-transform: capitalize:upper:lower (text).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - text-transform: ${1|capitalize,uppercase,lowercase|};$0 - name - text-transform: capitalize/upper/lower - scope - source.css - tabTrigger - text - uuid - 32CD0FA8-7BE7-4D58-A28A-7388F4CF6F9A - - diff --git a/bundles/css.tmbundle/Snippets/text-transform: none (text).plist b/bundles/css.tmbundle/Snippets/text-transform: none (text).plist deleted file mode 100644 index 7420a72a5..000000000 --- a/bundles/css.tmbundle/Snippets/text-transform: none (text).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - text-transform: none;$0 - name - text-transform: none - scope - source.css - tabTrigger - text - uuid - 2FF51006-7E07-4296-B89D-5ADF7B9B4232 - - diff --git a/bundles/css.tmbundle/Snippets/vertical-align: type (vertical).plist b/bundles/css.tmbundle/Snippets/vertical-align: type (vertical).plist deleted file mode 100644 index a973bf0f1..000000000 --- a/bundles/css.tmbundle/Snippets/vertical-align: type (vertical).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - vertical-align: ${1|baseline,sub,super,top,text-top,middle,bottom,text-bottom,length,%|};$0 - name - vertical-align: type - scope - source.css - tabTrigger - vertical - uuid - 0C94F6A6-8AFB-47BC-8448-2383CF0D6C5B - - diff --git a/bundles/css.tmbundle/Snippets/visibility: type (visibility).plist b/bundles/css.tmbundle/Snippets/visibility: type (visibility).plist deleted file mode 100644 index 4f4c98c58..000000000 --- a/bundles/css.tmbundle/Snippets/visibility: type (visibility).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - visibility: ${1|visible,hidden,collapse|};$0 - name - visibility: type - scope - source.css - tabTrigger - visibility - uuid - DE6D5C37-AC74-467E-9029-9844D8F4153A - - diff --git a/bundles/css.tmbundle/Snippets/white-space: normal:pre:nowrap (white).plist b/bundles/css.tmbundle/Snippets/white-space: normal:pre:nowrap (white).plist deleted file mode 100644 index ee1f4784c..000000000 --- a/bundles/css.tmbundle/Snippets/white-space: normal:pre:nowrap (white).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - white-space: ${1|normal,pre,nowrap|};$0 - name - white-space: normal/pre/nowrap - scope - source.css - tabTrigger - white - uuid - A7D10908-72FE-4502-A267-42C5B03F0D66 - - diff --git a/bundles/css.tmbundle/Snippets/word-spacing: length (word).plist b/bundles/css.tmbundle/Snippets/word-spacing: length (word).plist deleted file mode 100644 index f9a95f7fd..000000000 --- a/bundles/css.tmbundle/Snippets/word-spacing: length (word).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - word-spacing: ${1:10px};$0 - name - word-spacing: length - scope - source.css - tabTrigger - word - uuid - B121F84A-CE4A-491D-BF3D-35ED51C82554 - - diff --git a/bundles/css.tmbundle/Snippets/word-spacing: normal (word).plist b/bundles/css.tmbundle/Snippets/word-spacing: normal (word).plist deleted file mode 100644 index 4ecd699ba..000000000 --- a/bundles/css.tmbundle/Snippets/word-spacing: normal (word).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - word-spacing: normal;$0 - name - word-spacing: normal - scope - source.css - tabTrigger - word - uuid - DA7DF131-7351-4F3B-B680-57159E50E6DE - - diff --git a/bundles/css.tmbundle/Snippets/z-index: index (z).plist b/bundles/css.tmbundle/Snippets/z-index: index (z).plist deleted file mode 100644 index 231123c4e..000000000 --- a/bundles/css.tmbundle/Snippets/z-index: index (z).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - z-index: $1;$0 - name - z-index: index - scope - source.css - tabTrigger - z - uuid - 2EED405C-FBAF-4AEB-9B30-ED8EB2252378 - - diff --git a/bundles/css.tmbundle/Syntaxes/CSS.plist b/bundles/css.tmbundle/Syntaxes/CSS.plist deleted file mode 100644 index 65ed17563..000000000 --- a/bundles/css.tmbundle/Syntaxes/CSS.plist +++ /dev/null @@ -1,1004 +0,0 @@ - - - - - fileTypes - - css - css.erb - - keyEquivalent - ^~C - name - CSS - patterns - - - include - #comment-block - - - include - #selector - - - begin - \s*((@)charset\b)\s* - captures - - 1 - - name - keyword.control.at-rule.charset.css - - 2 - - name - punctuation.definition.keyword.css - - - end - \s*((?=;|$)) - name - meta.at-rule.charset.css - patterns - - - include - #string-double - - - include - #string-single - - - - - begin - \s*((@)import\b)\s* - captures - - 1 - - name - keyword.control.at-rule.import.css - - 2 - - name - punctuation.definition.keyword.css - - - end - \s*((?=;|\})) - name - meta.at-rule.import.css - patterns - - - include - #string-double - - - include - #string-single - - - begin - \s*(url)\s*(\()\s* - beginCaptures - - 1 - - name - support.function.url.css - - 2 - - name - punctuation.section.function.css - - - end - \s*(\))\s* - endCaptures - - 1 - - name - punctuation.section.function.css - - - patterns - - - match - [^'") \t]+ - name - variable.parameter.url.css - - - include - #string-single - - - include - #string-double - - - - - include - #media-query-list - - - - - begin - ^\s*((@)font-face)\s*(?=\{) - beginCaptures - - 1 - - name - keyword.control.at-rule.font-face.css - - 2 - - name - punctuation.definition.keyword.css - - - end - \s*(\}) - endCaptures - - 1 - - name - punctuation.section.property-list.css - - - name - meta.at-rule.font-face.css - patterns - - - include - #rule-list - - - - - begin - (?=^\s*@media\s*.*?\{) - end - \s*(\}) - endCaptures - - 1 - - name - punctuation.section.property-list.css - - - patterns - - - begin - ^\s*((@)media)(?=.*?\{) - beginCaptures - - 1 - - name - keyword.control.at-rule.media.css - - 2 - - name - punctuation.definition.keyword.css - - 3 - - name - support.constant.media.css - - - end - \s*(?=\{) - name - meta.at-rule.media.css - patterns - - - include - #media-query-list - - - - - begin - \s*(\{) - beginCaptures - - 1 - - name - punctuation.section.property-list.css - - - end - (?=\}) - patterns - - - include - $self - - - - - - - begin - (?=\{) - end - (\}) - endCaptures - - 1 - - name - punctuation.section.property-list.css - - - patterns - - - include - #rule-list - - - - - repository - - color-values - - patterns - - - comment - http://www.w3.org/TR/CSS21/syndata.html#value-def-color - match - \b(aqua|black|blue|fuchsia|gray|green|lime|maroon|navy|olive|orange|purple|red|silver|teal|white|yellow)\b - name - support.constant.color.w3c-standard-color-name.css - - - comment - These colours are mostly recognised but will not validate. ref: http://www.w3schools.com/css/css_colornames.asp - match - \b(aliceblue|antiquewhite|aquamarine|azure|beige|bisque|blanchedalmond|blueviolet|brown|burlywood|cadetblue|chartreuse|chocolate|coral|cornflowerblue|cornsilk|crimson|cyan|darkblue|darkcyan|darkgoldenrod|darkgray|darkgreen|darkgrey|darkkhaki|darkmagenta|darkolivegreen|darkorange|darkorchid|darkred|darksalmon|darkseagreen|darkslateblue|darkslategray|darkslategrey|darkturquoise|darkviolet|deeppink|deepskyblue|dimgray|dimgrey|dodgerblue|firebrick|floralwhite|forestgreen|gainsboro|ghostwhite|gold|goldenrod|greenyellow|grey|honeydew|hotpink|indianred|indigo|ivory|khaki|lavender|lavenderblush|lawngreen|lemonchiffon|lightblue|lightcoral|lightcyan|lightgoldenrodyellow|lightgray|lightgreen|lightgrey|lightpink|lightsalmon|lightseagreen|lightskyblue|lightslategray|lightslategrey|lightsteelblue|lightyellow|limegreen|linen|magenta|mediumaquamarine|mediumblue|mediumorchid|mediumpurple|mediumseagreen|mediumslateblue|mediumspringgreen|mediumturquoise|mediumvioletred|midnightblue|mintcream|mistyrose|moccasin|navajowhite|oldlace|olivedrab|orangered|orchid|palegoldenrod|palegreen|paleturquoise|palevioletred|papayawhip|peachpuff|peru|pink|plum|powderblue|rosybrown|royalblue|saddlebrown|salmon|sandybrown|seagreen|seashell|sienna|skyblue|slateblue|slategray|slategrey|snow|springgreen|steelblue|tan|thistle|tomato|turquoise|violet|wheat|whitesmoke|yellowgreen)\b - name - invalid.deprecated.color.w3c-non-standard-color-name.css - - - begin - (hsla?|rgba?)\s*(\() - beginCaptures - - 1 - - name - support.function.misc.css - - 2 - - name - punctuation.section.function.css - - - end - (\)) - endCaptures - - 1 - - name - punctuation.section.function.css - - - patterns - - - match - (?x)\b - (0*((1?[0-9]{1,2})|(2([0-4][0-9]|5[0-5])))\s*,\s*){2} - (0*((1?[0-9]{1,2})|(2([0-4][0-9]|5[0-5])))\b) - (\s*,\s*((0?\.[0-9]+)|[0-1]))? - - name - constant.other.color.rgb-value.css - - - match - \b([0-9]{1,2}|100)\s*%,\s*([0-9]{1,2}|100)\s*%,\s*([0-9]{1,2}|100)\s*% - name - constant.other.color.rgb-percentage.css - - - include - #numeric-values - - - - - - comment-block - - begin - /\* - captures - - 0 - - name - punctuation.definition.comment.css - - - end - \*/ - name - comment.block.css - - media-query - - begin - (?i)\s*(only|not)?\s*(all|aural|braille|embossed|handheld|print|projection|screen|tty|tv)? - beginCaptures - - 1 - - name - keyword.operator.logic.media.css - - 2 - - name - support.constant.media.css - - - end - \s*(?:(,)|(?=[{;])) - endCaptures - - 1 - - name - punctuation.definition.arbitrary-repitition.css - - - patterns - - - begin - \s*(and)?\s*(\()\s* - beginCaptures - - 1 - - name - keyword.operator.logic.media.css - - - end - \) - patterns - - - begin - (?x) - ( - ((min|max)-)? - ( - ((device-)?(height|width|aspect-ratio))| - (color(-index)?)|monochrome|resolution - ) - )|grid|scan|orientation - \s*(?=[:)]) - beginCaptures - - 0 - - name - support.type.property-name.media.css - - - end - (:)|(?=\)) - endCaptures - - 1 - - name - punctuation.separator.key-value.css - - - - - match - \b(portrait|landscape|progressive|interlace) - name - support.constant.property-value.css - - - captures - - 1 - - name - constant.numeric.css - - 2 - - name - keyword.operator.arithmetic.css - - 3 - - name - constant.numeric.css - - - match - \s*(\d+)(/)(\d+) - - - include - #numeric-values - - - - - - media-query-list - - begin - \s*(?=[^{;]) - end - \s*(?=[{;]) - patterns - - - include - #media-query - - - - numeric-values - - patterns - - - captures - - 1 - - name - punctuation.definition.constant.css - - - match - (#)([0-9a-fA-F]{3}|[0-9a-fA-F]{6})\b - name - constant.other.color.rgb-value.css - - - captures - - 1 - - name - keyword.other.unit.css - - - match - (?x) - (?:-|\+)?(?:(?:[0-9]+(?:\.[0-9]+)?)|(?:\.[0-9]+)) - ((?:px|pt|ch|cm|mm|in|r?em|ex|pc|deg|g?rad|dpi|dpcm|s)\b|%)? - - name - constant.numeric.css - - - - property-values - - patterns - - - match - \b(absolute|all(-scroll)?|always|armenian|auto|avoid|baseline|below|bidi-override|block|bold|bolder|both|bottom|break-all|break-word|capitalize|center|char|circle|cjk-ideographic|col-resize|collapse|crosshair|dashed|decimal-leading-zero|decimal|default|disabled|disc|distribute-all-lines|distribute-letter|distribute-space|distribute|dotted|double|e-resize|ellipsis|fixed|geometricPrecision|georgian|groove|hand|hebrew|help|hidden|hiragana-iroha|hiragana|horizontal|ideograph-alpha|ideograph-numeric|ideograph-parenthesis|ideograph-space|inactive|inherit|inline-block|inline|inset|inside|inter-ideograph|inter-word|italic|justify|katakana-iroha|katakana|keep-all|left|lighter|line-edge|line-through|line|list-item|loose|lower-alpha|lower-greek|lower-latin|lower-roman|lowercase|lr-tb|ltr|medium|middle|move|n-resize|ne-resize|newspaper|no-drop|no-repeat|nw-resize|none|normal|not-allowed|nowrap|oblique|optimize(Legibility|Quality|Speed)|outset|outside|overline|pointer|pre(-(wrap|line))?|progress|relative|repeat-x|repeat-y|repeat|right|ridge|row-resize|rtl|s-resize|scroll|se-resize|separate|small-caps|solid|square|static|strict|sub|super|sw-resize|table-footer-group|table-header-group|tb-rl|text-bottom|text-top|text|thick|thin|top|transparent|underline|upper-alpha|upper-latin|upper-roman|uppercase|vertical(-(ideographic|text))?|visible(Painted|Fill|Stroke)?|w-resize|wait|whitespace|zero|smaller|larger|((xx?-)?(small|large))|painted|fill|stroke)\b - name - support.constant.property-value.css - - - match - (\b(?i:arial|century|comic|courier|garamond|georgia|helvetica|impact|lucida|symbol|system|tahoma|times|trebuchet|utopia|verdana|webdings|sans-serif|serif|monospace)\b) - name - support.constant.font-name.css - - - include - #numeric-values - - - include - #color-values - - - include - #string-double - - - include - #string-single - - - begin - (rect)\s*(\() - beginCaptures - - 1 - - name - support.function.misc.css - - 2 - - name - punctuation.section.function.css - - - end - (\)) - endCaptures - - 1 - - name - punctuation.section.function.css - - - patterns - - - include - #numeric-values - - - - - begin - (format|local|url|attr|counter|counters)\s*(\() - beginCaptures - - 1 - - name - support.function.misc.css - - 2 - - name - punctuation.section.function.css - - - end - (\)) - endCaptures - - 1 - - name - punctuation.section.function.css - - - patterns - - - include - #string-single - - - include - #string-double - - - match - [^'") \t]+ - name - variable.parameter.misc.css - - - - - match - \!\s*important - name - keyword.other.important.css - - - - rule-list - - begin - \{ - beginCaptures - - 0 - - name - punctuation.section.property-list.css - - - end - (?=\s*\}) - name - meta.property-list.css - patterns - - - include - #comment-block - - - begin - (?<![-a-z])(?=[-a-z]) - end - $|(?![-a-z]) - name - meta.property-name.css - patterns - - - match - \b(azimuth|background-attachment|background-color|background-image|background-position|background-repeat|background|box-shadow|border-radius|border-bottom-color|border-bottom-style|border-bottom-width|border-bottom|border-collapse|border-color|border-left-color|border-left-style|border-left-width|border-left|border-right-color|border-right-style|border-right-width|border-right|border-spacing|border-style|border-top-color|border-top-style|border-top-width|border-top|border-width|border|bottom|caption-side|clear|clip|color|content|counter-increment|counter-reset|cue-after|cue-before|cue|cursor|direction|display|elevation|empty-cells|float|font-family|font-size-adjust|font-size|font-stretch|font-style|font-variant|font-weight|font|height|image-rendering|left|letter-spacing|line-height|list-style-image|list-style-position|list-style-type|list-style|margin-bottom|margin-left|margin-right|margin-top|marker-offset|margin|marks|max-height|max-width|min-height|min-width|-moz-border-radius|opacity|orphans|outline-color|outline-style|outline-width|outline|overflow(-[xy])?|padding-bottom|padding-left|padding-right|padding-top|padding|page-break-after|page-break-before|page-break-inside|page|pause-after|pause-before|pause|pitch-range|pitch|play-during|pointer-events|position|quotes|resize|richness|right|size|speak-header|speak-numeral|speak-punctuation|speech-rate|speak|src|stress|table-layout|text-(align|decoration|indent|rendering|shadow|transform)|top|unicode-bidi|vertical-align|visibility|voice-family|volume|white-space|widows|width|word-(spacing|wrap)|zoom|z-index)\b - name - support.type.property-name.css - - - - - begin - (:)\s* - beginCaptures - - 1 - - name - punctuation.separator.key-value.css - - - end - \s*(;|(?=\})) - endCaptures - - 1 - - name - punctuation.terminator.rule.css - - - name - meta.property-value.css - patterns - - - include - #property-values - - - - - - selector - - begin - \s*(?=[:.*#a-zA-Z]) - end - (?=[/@{)]) - name - meta.selector.css - patterns - - - match - \b(a|abbr|acronym|address|area|article|aside|audio|b|base|big|blockquote|body|br|button|canvas|caption|cite|code|col|colgroup|datalist|dd|del|details|dfn|dialog|div|dl|dt|em|eventsource|fieldset|figure|figcaption|footer|form|frame|frameset|(h[1-6])|head|header|hgroup|hr|html|i|iframe|img|input|ins|kbd|label|legend|li|link|map|mark|menu|meta|meter|nav|noframes|noscript|object|ol|optgroup|option|output|p|param|pre|progress|q|samp|script|section|select|small|span|strike|strong|style|sub|summary|sup|table|tbody|td|textarea|tfoot|th|thead|time|title|tr|tt|ul|var|video)\b - name - entity.name.tag.css - - - captures - - 1 - - name - punctuation.definition.entity.css - - - match - (\.)[a-zA-Z0-9_-]+ - name - entity.other.attribute-name.class.css - - - captures - - 1 - - name - punctuation.definition.entity.css - - - match - (#)[a-zA-Z][a-zA-Z0-9_-]* - name - entity.other.attribute-name.id.css - - - match - \* - name - entity.name.tag.wildcard.css - - - captures - - 1 - - name - punctuation.definition.entity.css - - - match - (:+)(after|before|first-letter|first-line|selection)\b - name - entity.other.attribute-name.pseudo-element.css - - - captures - - 1 - - name - punctuation.definition.entity.css - - - match - (:)((first|last)-child|(first|last|only)-of-type|empty|root|target|first|left|right)\b - name - entity.other.attribute-name.pseudo-class.css - - - captures - - 1 - - name - punctuation.definition.entity.css - - - match - (:)(checked|enabled|default|disabled|indeterminate|invalid|optional|required|valid)\b - name - entity.other.attribute-name.pseudo-class.ui-state.css - - - begin - ((:)not)(\() - beginCaptures - - 1 - - name - entity.other.attribute-name.pseudo-class.css - - 2 - - name - punctuation.definition.entity.css - - 3 - - name - punctuation.section.function.css - - - end - \) - endCaptures - - 0 - - name - punctuation.section.function.css - - - patterns - - - include - #selector - - - - - captures - - 1 - - name - entity.other.attribute-name.pseudo-class.css - - 2 - - name - punctuation.definition.entity.css - - 3 - - name - punctuation.section.function.css - - 4 - - name - constant.numeric.css - - 5 - - name - punctuation.section.function.css - - - match - ((:)nth-(?:(?:last-)?child|(?:last-)?of-type))(\()(\-?(?:\d+n?|n)(?:\+\d+)?|even|odd)(\)) - - - captures - - 1 - - name - punctuation.definition.entity.css - - - match - (:)(active|hover|link|visited|focus)\b - name - entity.other.attribute-name.pseudo-class.css - - - captures - - 1 - - name - punctuation.definition.entity.css - - 2 - - name - entity.other.attribute-name.attribute.css - - 3 - - name - punctuation.separator.operator.css - - 4 - - name - string.unquoted.attribute-value.css - - 5 - - name - string.quoted.double.attribute-value.css - - 6 - - name - punctuation.definition.string.begin.css - - 7 - - name - punctuation.definition.string.end.css - - - match - (?i)(\[)\s*(-?[_a-z\\[[:^ascii:]]][_a-z0-9\-\\[[:^ascii:]]]*)(?:\s*([~|^$*]?=)\s*(?:(-?[_a-z\\[[:^ascii:]]][_a-z0-9\-\\[[:^ascii:]]]*)|((?>(['"])(?:[^\\]|\\.)*?(\6)))))?\s*(\]) - name - meta.attribute-selector.css - - - - string-double - - begin - " - beginCaptures - - 0 - - name - punctuation.definition.string.begin.css - - - end - " - endCaptures - - 0 - - name - punctuation.definition.string.end.css - - - name - string.quoted.double.css - patterns - - - match - \\. - name - constant.character.escape.css - - - - string-single - - begin - ' - beginCaptures - - 0 - - name - punctuation.definition.string.begin.css - - - end - ' - endCaptures - - 0 - - name - punctuation.definition.string.end.css - - - name - string.quoted.single.css - patterns - - - match - \\. - name - constant.character.escape.css - - - - - scopeName - source.css - uuid - 69AA0917-B7BB-11D9-A7E2-000D93C8BE28 - - diff --git a/bundles/css.tmbundle/Tests/tests.css b/bundles/css.tmbundle/Tests/tests.css deleted file mode 100644 index efb028f3f..000000000 --- a/bundles/css.tmbundle/Tests/tests.css +++ /dev/null @@ -1,255 +0,0 @@ -@charset 'UTF-8'; -@charset "utf-8"; - -/* HTML+HTML5 elements */ -html, body, div, span, object, iframe, -h1, h2, h3, h4, h5, h6, p, blockquote, pre, -abbr, address, cite, code, -del, dfn, em, img, ins, kbd, q, samp, -small, strong, sub, sup, var, -b, i, -dl, dt, dd, ol, ul, li, -fieldset, form, label, legend, -table, caption, tbody, tfoot, thead, tr, th, td, -article, aside, canvas, details, figcaption, figure, -footer, header, hgroup, menu, nav, section, summary, -time, mark, audio, video { -} -.color-defs { - color: #aaa; - color: #abcdef; - color: red; - color: rgb(123,255,201); - color: rgba(123,255,201,0.5); - color: rgba(123,255,201,.5); - color: hsl(85,55%,55%); - color: hsla(85,55%,55%,.5); -} - -#foo { color: blue; } -.foo { color: blue } -foo { color: blue; } -::selection { color: blue; } - -div -{ - color: blue; -} - -garbagehere -@import url('foo.css'); -@import 'foo.css'; -@import "foo.css"; - -garbage -/* Test */ - -.sizes { - top: -50px; - width: 1px; - width: 1pt; - width: 1ch; - width: 1cm; - width: 1mm; - width: 1in; - width: 1em; - width: 1rem; - width: 1ex; - width: 1pc; - width: 1deg; - width: 1rad; - width: 1grad; -} -unknowntag { - color: blue; -} -div { - pointer-events: auto none visiblePainted visibleFill visibleStroke visible painted fill stroke all inherit; -} - -body { - counter-reset: section; /* Set the section counter to 0 */ -} -h1:before { - counter-increment: section; /* Increment the section counter */ - content: "Section " counter(section) ": "; /* Display the counter */ -} - -span:nth-child(even), -span:nth-child(odd), -span:nth-child(2n+1), -span:nth-child(-2n+1), -span:nth-child(-n+1), -span:nth-child(1) { -} - -/* These are obviously not valid rules, but they easily show all of the possible values for each - rule, so that we're sure we're matching them all */ -.foo { - font-size: xx-small x-small small medium large x-large xx-large smaller larger; - image-rendering: auto inherit optimizeSpeed optimizeQuality; - text-rendering: auto optimizeSpeed optimizeLegibility geometricPrecision inherit; - resize: none both horizontal vertical inherit; - vertical-align: sub super middle; - white-space: pre pre-wrap pre-line; - page-break-after: avoid; - page-break-inside: avoid !important; - word-wrap: break-word normal; - zoom: 1; - clip: rect(1px 1px 1px 1px); - color: rgba(0,0,0,.1); - background-color: hsl(235,25%,55%); - background-color: #646464; - background-image: -moz-linear-gradient(top, #747474 30%, #545454); - background-image: -webkit-gradient(linear, left top, left bottom, - from(#747474), - color-stop(30%, #747474), - to(#545454) - ); - border-radius: 4px; - box-shadow: 0 0 5px #000; - -moz-box-shadow: 0 0 5px #000; - -webkit-box-shadow: 0 0 5px #000; - -moz-transform: rotate(30deg); -} - -div:after, -div::after, -div:before, -div::before, -div:first-letter, -div::first-letter, -div:first-line, -div::first-line, -div::selection, -a:link, -a:visited, -a:active, -a:hover, -a:focus, -a:not(a.blah:nth-child(2n+1)), -a:first, -a:left, -a:right, -a:root, -a:nth-last-child(-n+1), -a:nth-of-type(5n), -a:nth-last-of-type(1), -a:first-child, -a:last-child, -a:first-of-type, -a:last-of-type, -a:only-of-type, -a:empty, -a:target, -input:checked, -input:enabled, -input:default, -input:disabled, -input:indeterminate, -input:invalid, -input:optional, -input:required, -input:valid, -div { } - - -/* Media queries */ -@media all { - div { - font-weight: normal; - } -} -/* Test */ -@media screen { - div { - font-weight: normal; - } -} -@media (width:300px) { div { font-weight: normal; } } -@media (min-width:300px) { div { font-weight: normal; } } -@media (max-width:300px) { div { font-weight: normal; } } -@media (device-width:300px) { div { font-weight: normal; } } -@media (min-device-width:300px) { div { font-weight: normal; } } -@media (max-device-width:300px) { div { font-weight: normal; } } -@media (height:300px) { div { font-weight: normal; } } -@media (min-height:300px) { div { font-weight: normal; } } -@media (max-height:300px) { div { font-weight: normal; } } -@media (device-height:300px) { div { font-weight: normal; } } -@media (min-device-height:300px) { div { font-weight: normal; } } -@media (max-device-height:300px) { div { font-weight: normal; } } -@media (aspect-ratio:20/40) { div { font-weight: normal; } } -@media (min-aspect-ratio:20/40) { div { font-weight: normal; } } -@media (max-aspect-ratio:20/40) { div { font-weight: normal; } } -@media (device-aspect-ratio:20/40) { div { font-weight: normal; } } -@media (min-device-aspect-ratio:20/40) { div { font-weight: normal; } } -@media (max-device-aspect-ratio:10/40) { div { font-weight: normal; } } -@media (color) { div { font-weight: normal; } } -@media (min-color) { div { font-weight: normal; } } -@media (max-color) { div { font-weight: normal; } } -@media (color-index) { div { font-weight: normal; } } -@media (min-color-index) { div { font-weight: normal; } } -@media (max-color-index) { div { font-weight: normal; } } -@media (color:50) { div { font-weight: normal; } } -@media (resolution:50dpi) { div { font-weight: normal; } } -@media (resolution:50dpcm) { div { font-weight: normal; } } -@media (min-resolution:50dpi) { div { font-weight: normal; } } -@media (max-resolution:50dpi) { div { font-weight: normal; } } -@media (monochrome) { div { font-weight: normal; } } -@media (min-monochrome:1) { div { font-weight: normal; } } -@media (max-monochrome:1) { div { font-weight: normal; } } -@media (scan:interlace) { div { font-weight: normal; } } -@media (scan:progressive) { div { font-weight: normal; } } -@media (grid) { div { font-weight: normal; } } -@media (orientation:portrait) { div { font-weight: normal; } } -@media (orientation:landscape) { div { font-weight: normal; } } -@media { div { font-weight: bold; } } -@media all and (min-width: 500px) and (color) { div { font-weight: bold; } } -@media (min-width: 500px) { div { font-weight: bold; } } -@media screen and (color), projection and (color) { div { font-weight: bold; } } -@media only screen { div { font-weight: normal; } } -@media screen { div { font-weight: normal; } } -@media screen, print { div { font-weight: normal; } } - -garbage - -@media all and (orientation:portrait) { - div { - font-weight: normal; - } -} -@media all and (orientation:landscape) { - div { - font-weight: normal; - } -} -@media screen and (max-device-width: 480px) { - div { - font-weight: normal; - } -} -@media print { - div { - font-weight: normal; - } -} -@font-face { - font-family: 'foo'; - src: url('foo.eot'); - src: local('☺'), - url('foo.woff') format('woff'), - url('foo.ttf') format('truetype'), - url('foo.svg#webfontsocnK1fE') format('svg'); - font-weight: normal; - font-style: italic; -} -@font-face { - font-family: 'foo2'; - src: url('foo2.eot'); - src: local('☺'), - url('foo2.woff') format('woff'), - url('foo2.ttf') format('truetype'), - url('foo2.svg#webfontsocnK1fE') format('svg'); - font-weight: normal; - font-style: italic; -} diff --git a/bundles/css.tmbundle/info.plist b/bundles/css.tmbundle/info.plist deleted file mode 100644 index 24181aacb..000000000 --- a/bundles/css.tmbundle/info.plist +++ /dev/null @@ -1,391 +0,0 @@ - - - - - contactEmailRot13 - boyvivbhf@fhogyrTenqvrag.pbz - contactName - Thomas Aylott - deleted - - F7870105-1F57-47E5-9A1C-F8E87DFCA24F - - description - The <a href="http://www.w3.org/Style/CSS/">cascading stylesheet language</a> is used in web pages. This bundle has syntax highlight, lots of snippets, validation, and more. - mainMenu - - excludedItems - - 0975B58C-C7A1-441E-90E4-C7C413975D42 - - items - - 50AA6E95-A754-4EBC-9C2A-68418C70D689 - 45E5E5A1-84CC-11D9-970D-0011242E4184 - 05554FE0-4A70-4F3E-81C5-72855D7EB428 - ------------------------------------ - 9F64EFE2-09C2-4F87-80D6-448A0C177E7B - 59F1C716-CF05-4B66-8BBB-579964D6A5EB - D0D7941C-EE21-4445-88B2-4050CBCC2E1E - 633A9FE3-2D09-45EE-AE9A-36567290F5D8 - EB34703E-A048-4F3B-B65B-C4B79C5FD17B - E443AF34-F5C8-4F9E-A0CB-AD06F7544AF6 - D2E0AA97-9315-4D15-BBD4-6970099B2898 - DA768A1E-2E7A-4258-BB71-5CA8BDB28517 - F61DB38E-02C8-42ED-8B4C-9338B8730C21 - F1DB915E-493A-4F5F-9E27-E9137628BB4D - ------------------------------------ - 5D65DB63-6397-447C-92BB-DA544933B951 - 22BE15A9-0DCC-4989-93AD-048C4EE4CD84 - ------------------------------------ - 435F30F3-90A8-40D8-A263-E22A1DA0BBDE - ------------------------------------ - 64180C76-8C8D-4F29-82BE-6096BE1B14D8 - 3556C0BE-73B3-45CE-8C9C-7B3AA3BB038B - - submenus - - 22BE15A9-0DCC-4989-93AD-048C4EE4CD84 - - items - - 749295F4-F139-422A-80A0-EA11364396E3 - FCDDB549-681A-436F-894E-1A408C0E114C - 81CCEB84-6241-4E4F-BB26-54BAAFA3FF2E - - name - Proprietary - - 435F30F3-90A8-40D8-A263-E22A1DA0BBDE - - items - - E6FB4209-818E-40F5-9AFF-96E204F52A11 - 42E26C97-72AB-4953-807F-645AF7EDF59F - 35DFB6D6-E48B-4907-9030-019904DA0C5B - - name - CodeCompletion - - 59F1C716-CF05-4B66-8BBB-579964D6A5EB - - items - - A2EA7266-AE50-4987-A86B-E3C4DFA5B643 - 0FEBF51B-77B0-4D38-9CDB-276744CAF455 - 5FFC4EDE-9AEE-4854-BA78-34BD98BE7FBE - 1998EF7F-D855-4EAF-8CE0-D76CE8C905A4 - BDA03041-39C6-461C-A6F3-F6145D99AB5E - ------------------------------------ - 979C3D46-E8B1-484D-9DBB-E3B1FCD3BCF9 - EE19367C-6634-4854-910D-90C6F5752A46 - 8B059A97-7F2C-48CD-8422-0ECAB678E8AE - 6F1126A9-5916-4E6F-8812-AB82C4638B6B - 1A667AFE-208F-4697-AD44-3FA1A23AA4C7 - ------------------------------------ - E4BD9171-E053-4EEF-8631-CFC74F1DCB97 - C5039010-E264-4D3D-A12E-02C2DB7DC4BF - 6AE8DB39-F8E2-4DC9-ADBA-460E952439D8 - 39FA441C-3A8F-49D4-BBFE-270B4C962782 - 8AD77320-0E31-48B9-94A9-982FD8DD1885 - ------------------------------------ - AB0759F4-4243-4807-B297-2902459EBE02 - DAF7114F-B5DC-4E70-A7CD-66FF028F93B1 - 321FFAF7-5699-45E6-8696-DE84AD607690 - 05AFB9EB-F4AB-4F86-8170-535CF508176C - 189DD463-0331-4B99-8CA2-ADEEF7CC078D - - name - Border - - 5D65DB63-6397-447C-92BB-DA544933B951 - - items - - EF1F2D38-A71A-4D1D-9B07-B1CBB6D84B81 - 8E9366D7-BB0B-456C-B9F3-0CE8072A10C3 - A723DACA-3819-4E8D-8BCF-9BD1B98AF651 - 39244453-6D06-4265-9894-14D7FC0B277F - D612A3B7-7C49-4447-9AAF-CCCFDE4408FF - 17BBB1F1-1F83-4386-97B8-23144EB2441A - 5FDD30D8-7EF8-41E9-8A44-DC3C22EFD75D - E10366F8-CA83-4447-89D3-B36AFD1EAECD - 6523B6C5-8741-4766-98D6-1B1DE2E6A5F3 - 50C748B6-C8B6-447F-A9EE-DD41CF1CD707 - 1398502F-D4FD-437B-9033-49E254159BDE - 1B042CEF-7C82-472D-92A2-FF555BFD6927 - 0C94F6A6-8AFB-47BC-8448-2383CF0D6C5B - DE6D5C37-AC74-467E-9029-9844D8F4153A - A7D10908-72FE-4502-A267-42C5B03F0D66 - B121F84A-CE4A-491D-BF3D-35ED51C82554 - DA7DF131-7351-4F3B-B680-57159E50E6DE - 2EED405C-FBAF-4AEB-9B30-ED8EB2252378 - - name - Other - - 633A9FE3-2D09-45EE-AE9A-36567290F5D8 - - items - - D69E7EB0-07E2-48A3-AD32-A7C3E6CAFBBC - FBA1210B-33DB-49D0-B026-FF31DBC41FD6 - 45D80BAF-0B0A-4334-AFBC-3601B5903707 - - name - Color - - 9F64EFE2-09C2-4F87-80D6-448A0C177E7B - - items - - D09967B1-2215-4B10-A331-7A372281DDA6 - ------------------------------------ - 32B7B151-17CB-4DA4-AC0B-7D02BC606403 - 12241B4B-197C-41AF-ACC2-6B9A7AEC7039 - 913410E0-623A-43F0-B71F-2E8FB9D5EBC8 - C71B1388-2815-4CAE-8652-CD159095AEAD - ------------------------------------ - 978CBFF6-62D6-45B1-93F7-5644E1C6262B - 7D71DF8B-492E-493D-BD94-1A4AFCCDCBBF - ------------------------------------ - 9E194D74-B73B-4D2B-A89F-51F7468A3E97 - E198D2D5-6B52-42FD-BCBC-01B0A7E5E80E - 4EE66583-26BE-4DBA-BD18-8DAF593835F9 - - name - Background - - D0D7941C-EE21-4445-88B2-4050CBCC2E1E - - items - - 5EDCDB17-5DB0-459A-A61D-29984DD3A3B8 - 5C9011B1-B8A8-4FD3-8EA8-848AF6509ADF - - name - Cursor - - D2E0AA97-9315-4D15-BBD4-6970099B2898 - - items - - 1C7E0430-2A67-4CEF-9D68-4ED6315A8567 - BDEF3B0F-6414-4B1A-8841-864702B51EC6 - 9B10C768-5DA7-4570-98E4-70A36261C823 - ------------------------------------ - C5CE7E29-9EB1-4A63-8173-190D12E4E4E4 - 24436F96-2383-48AB-844F-AE791DEAF080 - 97A55488-5DD9-4347-B5F1-722F580715E4 - E024086F-94B8-401F-A903-7F0CDA8E0B8A - B8E9019D-3419-4CC3-87BB-DC54098CBFD0 - - name - List Style - - DA768A1E-2E7A-4258-BB71-5CA8BDB28517 - - items - - FA3D9F50-C5F6-4193-81D2-98A3E8FFBB2F - 99315B12-6A41-4D8F-8477-F38DE0EBBEF8 - 68A3178C-A024-48BD-ABA6-0A03A69BD82E - ------------------------------------ - 412AA532-762F-4270-961A-54BF6014996D - 1FDAB8C2-7A0D-4C0A-97FF-77AD2CC86083 - 6354F6AC-74E2-42CF-96B0-7EE2733B9B34 - C19985FF-A12C-49B9-9BA3-EDC726E919A0 - - name - Margin - - E443AF34-F5C8-4F9E-A0CB-AD06F7544AF6 - - items - - F5EDF655-440B-4E1B-908F-4291F3A0A3A8 - 30C6CFA2-C00A-4F2A-8770-096A49C3F95F - ------------------------------------ - 25388EC7-EA59-4C87-9F11-52870ADBF1AB - CD8E3F13-2B14-401D-9646-E309FB04B678 - 128D7494-86EA-4615-87F4-C4D45E8C04AA - B6C9A8F9-2942-4592-B73F-2833B9F648E5 - F2DC92D8-43D4-4044-9D85-D96F734FF81E - - name - Font - - EB34703E-A048-4F3B-B65B-C4B79C5FD17B - - items - - CA506D09-9EAE-445D-AE1E-7058937304B7 - 2FC3C35E-88A6-4DA0-808D-3034A96E7794 - 56940467-7D99-4F31-83C2-1554638F552A - 98BE34AD-3CB1-4FB9-98A0-5E5A4BA63286 - - name - Display - - F1DB915E-493A-4F5F-9E27-E9137628BB4D - - items - - F6CB9433-601A-4F95-A6B9-27D76B50DEE3 - B1916E73-D417-42C2-A5C1-E95428DA6C45 - 2CFA68DC-947B-4C43-872C-FB4DC0704D27 - ------------------------------------ - 77EF6A55-9814-492C-B8E2-EFF0FFAC272E - 005905FF-544A-434C-803E-B51689332034 - 1A6AD6F4-E0F7-406B-B28B-06EC54660650 - ------------------------------------ - 32CD0FA8-7BE7-4D58-A28A-7388F4CF6F9A - 2FF51006-7E07-4296-B89D-5ADF7B9B4232 - - name - Text - - F61DB38E-02C8-42ED-8B4C-9338B8730C21 - - items - - 6E64EA4A-A10E-49B3-AC9C-D53DBF9ED14A - 4602BFF3-C7F1-4CF5-93CE-125EC8ABC7C8 - DD5BB93D-4F99-4A41-8864-85A557B922C7 - ------------------------------------ - E5B92C27-8602-4E50-9DF7-DE476E63BA1A - C1667E5D-3A50-42F8-8129-6C3EEB43D7C2 - 1644E167-7A29-46A7-A100-7BD6C7EFA2F3 - 772DD28C-80C2-4C9B-8023-1E71A974E1C4 - - name - Padding - - - - name - CSS - ordering - - 05554FE0-4A70-4F3E-81C5-72855D7EB428 - 50AA6E95-A754-4EBC-9C2A-68418C70D689 - CC30D708-6E49-11D9-B411-000D93589AF6 - 45E5E5A1-84CC-11D9-970D-0011242E4184 - 0975B58C-C7A1-441E-90E4-C7C413975D42 - D09967B1-2215-4B10-A331-7A372281DDA6 - 32B7B151-17CB-4DA4-AC0B-7D02BC606403 - 12241B4B-197C-41AF-ACC2-6B9A7AEC7039 - 913410E0-623A-43F0-B71F-2E8FB9D5EBC8 - C71B1388-2815-4CAE-8652-CD159095AEAD - 978CBFF6-62D6-45B1-93F7-5644E1C6262B - 7D71DF8B-492E-493D-BD94-1A4AFCCDCBBF - 9E194D74-B73B-4D2B-A89F-51F7468A3E97 - E198D2D5-6B52-42FD-BCBC-01B0A7E5E80E - 4EE66583-26BE-4DBA-BD18-8DAF593835F9 - 81CCEB84-6241-4E4F-BB26-54BAAFA3FF2E - A2EA7266-AE50-4987-A86B-E3C4DFA5B643 - AB0759F4-4243-4807-B297-2902459EBE02 - E4BD9171-E053-4EEF-8631-CFC74F1DCB97 - 979C3D46-E8B1-484D-9DBB-E3B1FCD3BCF9 - 1998EF7F-D855-4EAF-8CE0-D76CE8C905A4 - 05AFB9EB-F4AB-4F86-8170-535CF508176C - 39FA441C-3A8F-49D4-BBFE-270B4C962782 - 6F1126A9-5916-4E6F-8812-AB82C4638B6B - 0FEBF51B-77B0-4D38-9CDB-276744CAF455 - DAF7114F-B5DC-4E70-A7CD-66FF028F93B1 - C5039010-E264-4D3D-A12E-02C2DB7DC4BF - EE19367C-6634-4854-910D-90C6F5752A46 - 5FFC4EDE-9AEE-4854-BA78-34BD98BE7FBE - 321FFAF7-5699-45E6-8696-DE84AD607690 - 6AE8DB39-F8E2-4DC9-ADBA-460E952439D8 - 8B059A97-7F2C-48CD-8422-0ECAB678E8AE - BDA03041-39C6-461C-A6F3-F6145D99AB5E - 189DD463-0331-4B99-8CA2-ADEEF7CC078D - 8AD77320-0E31-48B9-94A9-982FD8DD1885 - 1A667AFE-208F-4697-AD44-3FA1A23AA4C7 - 8E9366D7-BB0B-456C-B9F3-0CE8072A10C3 - 5EDCDB17-5DB0-459A-A61D-29984DD3A3B8 - 5C9011B1-B8A8-4FD3-8EA8-848AF6509ADF - D69E7EB0-07E2-48A3-AD32-A7C3E6CAFBBC - FBA1210B-33DB-49D0-B026-FF31DBC41FD6 - 45D80BAF-0B0A-4334-AFBC-3601B5903707 - A723DACA-3819-4E8D-8BCF-9BD1B98AF651 - CA506D09-9EAE-445D-AE1E-7058937304B7 - 2FC3C35E-88A6-4DA0-808D-3034A96E7794 - 56940467-7D99-4F31-83C2-1554638F552A - 98BE34AD-3CB1-4FB9-98A0-5E5A4BA63286 - 39244453-6D06-4265-9894-14D7FC0B277F - F5EDF655-440B-4E1B-908F-4291F3A0A3A8 - 30C6CFA2-C00A-4F2A-8770-096A49C3F95F - 25388EC7-EA59-4C87-9F11-52870ADBF1AB - CD8E3F13-2B14-401D-9646-E309FB04B678 - 128D7494-86EA-4615-87F4-C4D45E8C04AA - B6C9A8F9-2942-4592-B73F-2833B9F648E5 - F2DC92D8-43D4-4044-9D85-D96F734FF81E - D612A3B7-7C49-4447-9AAF-CCCFDE4408FF - 17BBB1F1-1F83-4386-97B8-23144EB2441A - 1C7E0430-2A67-4CEF-9D68-4ED6315A8567 - BDEF3B0F-6414-4B1A-8841-864702B51EC6 - 9B10C768-5DA7-4570-98E4-70A36261C823 - C5CE7E29-9EB1-4A63-8173-190D12E4E4E4 - 24436F96-2383-48AB-844F-AE791DEAF080 - 97A55488-5DD9-4347-B5F1-722F580715E4 - E024086F-94B8-401F-A903-7F0CDA8E0B8A - B8E9019D-3419-4CC3-87BB-DC54098CBFD0 - 68A3178C-A024-48BD-ABA6-0A03A69BD82E - FA3D9F50-C5F6-4193-81D2-98A3E8FFBB2F - 99315B12-6A41-4D8F-8477-F38DE0EBBEF8 - 6354F6AC-74E2-42CF-96B0-7EE2733B9B34 - C19985FF-A12C-49B9-9BA3-EDC726E919A0 - 1FDAB8C2-7A0D-4C0A-97FF-77AD2CC86083 - 412AA532-762F-4270-961A-54BF6014996D - 5FDD30D8-7EF8-41E9-8A44-DC3C22EFD75D - E10366F8-CA83-4447-89D3-B36AFD1EAECD - 6523B6C5-8741-4766-98D6-1B1DE2E6A5F3 - 50C748B6-C8B6-447F-A9EE-DD41CF1CD707 - DD5BB93D-4F99-4A41-8864-85A557B922C7 - 6E64EA4A-A10E-49B3-AC9C-D53DBF9ED14A - 4602BFF3-C7F1-4CF5-93CE-125EC8ABC7C8 - 1644E167-7A29-46A7-A100-7BD6C7EFA2F3 - 772DD28C-80C2-4C9B-8023-1E71A974E1C4 - C1667E5D-3A50-42F8-8129-6C3EEB43D7C2 - E5B92C27-8602-4E50-9DF7-DE476E63BA1A - 1398502F-D4FD-437B-9033-49E254159BDE - F6CB9433-601A-4F95-A6B9-27D76B50DEE3 - B1916E73-D417-42C2-A5C1-E95428DA6C45 - 2CFA68DC-947B-4C43-872C-FB4DC0704D27 - 77EF6A55-9814-492C-B8E2-EFF0FFAC272E - 005905FF-544A-434C-803E-B51689332034 - 1A6AD6F4-E0F7-406B-B28B-06EC54660650 - 32CD0FA8-7BE7-4D58-A28A-7388F4CF6F9A - 2FF51006-7E07-4296-B89D-5ADF7B9B4232 - 0C94F6A6-8AFB-47BC-8448-2383CF0D6C5B - DE6D5C37-AC74-467E-9029-9844D8F4153A - A7D10908-72FE-4502-A267-42C5B03F0D66 - B121F84A-CE4A-491D-BF3D-35ED51C82554 - DA7DF131-7351-4F3B-B680-57159E50E6DE - 2EED405C-FBAF-4AEB-9B30-ED8EB2252378 - EF1F2D38-A71A-4D1D-9B07-B1CBB6D84B81 - 749295F4-F139-422A-80A0-EA11364396E3 - 69AA0917-B7BB-11D9-A7E2-000D93C8BE28 - 375CF370-8A7B-450A-895C-FD18B47957E2 - 623154CA-0EDF-4365-9441-80D396C11979 - 45707407-3307-4B4D-AE9B-78BDCFB6F920 - 92B0C9FE-CC81-498A-B93C-376A9C47CF2D - E6FB4209-818E-40F5-9AFF-96E204F52A11 - BCAF7514-033E-45D7-9E46-07FACF84DAAD - 42E26C97-72AB-4953-807F-645AF7EDF59F - 1E4F54FD-1940-42E0-9D0A-0EC11D81E446 - 35DFB6D6-E48B-4907-9030-019904DA0C5B - 17B2DD5B-D2EA-4DC5-9C7D-B09B505156C5 - 096894D8-6A5A-4F1D-B68C-782F0A850E52 - 6ED38063-8791-41BB-9F9F-F9EA378B1526 - FCDDB549-681A-436F-894E-1A408C0E114C - 1B042CEF-7C82-472D-92A2-FF555BFD6927 - 64180C76-8C8D-4F29-82BE-6096BE1B14D8 - 3556C0BE-73B3-45CE-8C9C-7B3AA3BB038B - - uuid - 4675F24E-6227-11D9-BFB1-000D93589AF6 - - diff --git a/bundles/html.tmbundle/Commands/About Persistent Includes.tmCommand b/bundles/html.tmbundle/Commands/About Persistent Includes.tmCommand deleted file mode 100644 index ecca90f5d..000000000 --- a/bundles/html.tmbundle/Commands/About Persistent Includes.tmCommand +++ /dev/null @@ -1,145 +0,0 @@ - - - - - beforeRunningCommand - nop - command - . "$TM_SUPPORT_PATH/lib/webpreview.sh" -html_header "About Persistent Includes" "HTML" -Markdown.pl <<'EOF'|SmartyPants.pl -The "Add Persistent Include" command allows you to embed an external file inside your HTML document. This inclusion is handled by TextMate itself. Once you've added the include statement, use the "Update Document" command to refresh any included files. - -Including Files ---------------- - -An inclusion is done using a special HTML comment: - - <!-- #tminclude "footer.html" --> - <!-- end tminclude --> - -Once you've updated the document, the contents are pulled inside the inclusion markup: - - <!-- #tminclude "footer.html" --> - <div class="footer">Copyright (c) 2006, WebDesignCorp.</div> - <!-- end tminclude --> - -Note: Included documents are also processed for additional inclusions and placeholders. - -Include Parameters ------------------- - -You can optionally specify parameters for the included file. Parameters are provided following the filename. - - <!-- #tminclude "header.html" #title#="Home Page" --> - <!-- end tminclude --> - -With a header.html file that looks like this: - - <h1 class="header">#title#</h1> - -Producing: - - <!-- #tminclude "header.html" #title#="Home Page" --> - <h1 class="header">Home Page</h1> - <!-- end tminclude --> - -Placeholders ------------- - -The update command also processes document "placeholders". Placeholders are written in this format: - - #variable# - -The following placeholders are available: - -<table class="pro_table" border="0" width="100%" cellpadding="5" cellspacing="0"> -<tr><th>Placeholder</th><th>Example Result</th></tr> -<tr><td><tt>#abbrevdate# </tt></td><td>Abbreviated date: Sun, Aug 15, 2006</td></tr> -<tr><td><tt>#basename# </tt></td><td>Filename without extension.</td></tr> -<tr><td><tt>#compdate# </tt></td><td>Compact date: 15-Aug-06</td></tr> -<tr><td><tt>#creationdate# </tt></td><td>Creation date: 15-Aug-06</td></tr> -<tr><td><tt>#creationtime# </tt></td><td>Creation time: 1:20 PM</td></tr> -<tr><td><tt>#docsize# </tt></td><td>Resulting document length in bytes</td></tr> -<tr><td><tt>#dont_update# </tt></td><td>Special: presence will prevent document updating</td></tr> -<tr><td><tt>#filename# </tt></td><td>Document filename</td></tr> -<tr><td><tt>#file_extension#</tt></td><td>Document file extension</td></tr> -<tr><td><tt>#generator# </tt></td><td>TextMate</td></tr> -<tr><td><tt>#gmtime# </tt></td><td>GMT time</td></tr> -<tr><td><tt>#localpath# </tt></td><td>Full path to current file</td></tr> -<tr><td><tt>#localtime# </tt></td><td>Local computer time</td></tr> -<tr><td><tt>#longdate# </tt></td><td>Long Date: Tuesday, August 15, 2006</td></tr> -<tr><td><tt>#modifieddate# </tt></td><td>Modified date: 15-Aug-06</td></tr> -<tr><td><tt>#modifiedtime# </tt></td><td>Modified time: 1:20 PM</td></tr> -<tr><td><tt>#monthdaynum# </tt></td><td>Day of Month: 15</td></tr> -<tr><td><tt>#monthnum# </tt></td><td>Month Number: 08</td></tr> -<tr><td><tt>#shortdate# </tt></td><td>Short Date: 08/15/06</td></tr> -<tr><td><tt>#shortusername# </tt></td><td>Login name of current user</td></tr> -<tr><td><tt>#username# </tt></td><td>Name of current user</td></tr> -<tr><td><tt>#yearnum# </tt></td><td>Current Year: 2006</td></tr> -</table> - -In addition to these, all of the TextMate environment variables (those starting with a "TM_" prefix) are available as placeholders. For example: - - #organization_name# - -Will populate using the `TM_ORGANIZATION_NAME` environment variable. - -Formatting Time ---------------- - -The date-based placeholders may also specify a format that can be used to customize the date output. For example: - - #gmtime %b %e, %Y# (Aug 15, 2006) - -Placeholder Example -------------------- - -If you want to make that footer.html include more useful, you can use placeholders. For example: - - <div class="footer">Copyright (c) #yearnum#, #oragnization_name#.</div> - -This would then produce the following, when included and processed: - - <!-- #tminclude "footer.html" --> - <div class="footer">Copyright (c) 2006, WebDesignCorp.</div> - <!-- end tminclude --> - -Scripted Includes ------------------ - -It is also possible to produce included content using scripts. If the included file is a script, it is run and the output is placed inside the include block. - - <!-- #tminclude "scripts/header.pl" #class#="huge" --> - <!-- end tminclude --> - -.pl (Perl), .py (Python) and .rb (Ruby) scripts are currently recognized. For the above example, the "header.pl" script is run with the following parameters: - - header.pl (source_filename) class huge - -The Perl script in this case can process the parameters like this. - - #!/usr/bin/perl - my ($filename, %args) = @ARGV; - print "<h1 class='$args{class}'>Header for $filename</h1>" - -That would end up producing this: - - <!-- #tminclude "scripts/header.pl" #class#="huge" --> - <h1 class='huge'>Header for /path/to/example.html</h1> - <!-- end tminclude --> - -EOF -html_footer - input - none - name - Help: Persistent Includes - output - showAsHTML - scope - text.html - uuid - 9AFDEB2C-D9F0-423E-8211-EBB089F51F0C - - diff --git a/bundles/html.tmbundle/Commands/CodeCompletion HTML Attributes.tmCommand b/bundles/html.tmbundle/Commands/CodeCompletion HTML Attributes.tmCommand deleted file mode 100644 index 45817889c..000000000 --- a/bundles/html.tmbundle/Commands/CodeCompletion HTML Attributes.tmCommand +++ /dev/null @@ -1,28 +0,0 @@ - - - - - beforeRunningCommand - nop - bundleUUID - 467B298F-6227-11D9-BFB1-000D93589AF6 - command - #!/usr/bin/env ruby -require "#{ENV['TM_SUPPORT_PATH']}/lib/codecompletion" -TextmateCodeCompletion.go! - fallbackInput - line - input - selection - keyEquivalent - ~ - name - CodeCompletion HTML Attributes - output - insertAsSnippet - scope - text.html punctuation.definition.tag -source, text.html meta.tag -entity.other.attribute-name -source - uuid - CBD82CF3-74E9-4E7A-B3F6-9348754EB5AA - - diff --git a/bundles/html.tmbundle/Commands/CodeCompletion HTML Tags.tmCommand b/bundles/html.tmbundle/Commands/CodeCompletion HTML Tags.tmCommand deleted file mode 100644 index a76854224..000000000 --- a/bundles/html.tmbundle/Commands/CodeCompletion HTML Tags.tmCommand +++ /dev/null @@ -1,29 +0,0 @@ - - - - - beforeRunningCommand - nop - bundleUUID - 467B298F-6227-11D9-BFB1-000D93589AF6 - command - #!/usr/bin/env ruby -require "#{ENV['TM_SUPPORT_PATH']}/lib/codecompletion" -TextmateCodeCompletion.go! - - fallbackInput - line - input - selection - keyEquivalent - ~ - name - CodeCompletion HTML Tags - output - insertAsSnippet - scope - text.html -entity.other.attribute-name -string.quoted, invalid.illegal.incomplete.html - uuid - 3463E85F-F500-49A0-8631-D78ED85F9D60 - - diff --git a/bundles/html.tmbundle/Commands/Convert Line : Selection to URL Escapes.plist b/bundles/html.tmbundle/Commands/Convert Line : Selection to URL Escapes.plist deleted file mode 100644 index b88f60974..000000000 --- a/bundles/html.tmbundle/Commands/Convert Line : Selection to URL Escapes.plist +++ /dev/null @@ -1,29 +0,0 @@ - - - - - beforeRunningCommand - nop - command - #!/usr/bin/env ruby - -print STDIN.read.gsub(/([^a-zA-Z0-9_.-]+)/n) { - '%' + $1.unpack('H2' * $1.size).join('%').upcase -} - - fallbackInput - line - input - selection - keyEquivalent - @& - name - URL Escape Line / Selection - output - replaceSelectedText - scope - text.html - uuid - 6B024865-6095-4CE3-8EDD-DC6F2230C2FF - - diff --git a/bundles/html.tmbundle/Commands/Convert to HTML Entities.plist b/bundles/html.tmbundle/Commands/Convert to HTML Entities.plist deleted file mode 100644 index 0bb8821c2..000000000 --- a/bundles/html.tmbundle/Commands/Convert to HTML Entities.plist +++ /dev/null @@ -1,40 +0,0 @@ - - - - - beforeRunningCommand - nop - command - #!/usr/bin/env ruby -$KCODE = 'U' - -$char_to_entity = { } -File.open("#{ENV['TM_BUNDLE_SUPPORT']}/entities.txt").read.scan(/^(\d+)\t(.+)$/) do |key, value| - $char_to_entity[[key.to_i].pack('U')] = value -end - -def encode (text) - text.gsub(/[^\x00-\x7F]|["'<>&]/) do |ch| - ent = $char_to_entity[ch] - ent ? "&#{ent};" : sprintf("&#x%02X;", ch.unpack("U")[0]) - end -end - -print encode(STDIN.read) - - fallbackInput - character - input - selection - keyEquivalent - @& - name - Convert Character / Selection to Entities - output - replaceSelectedText - scope - text.html - uuid - 3DD8406C-A116-11D9-A5A2-000D93C8BE28 - - diff --git a/bundles/html.tmbundle/Commands/Convert to named entities excl tags.plist b/bundles/html.tmbundle/Commands/Convert to named entities excl tags.plist deleted file mode 100644 index e6eb0d022..000000000 --- a/bundles/html.tmbundle/Commands/Convert to named entities excl tags.plist +++ /dev/null @@ -1,53 +0,0 @@ - - - - - beforeRunningCommand - nop - command - #!/usr/bin/env ruby -$KCODE = 'U' - -$char_to_entity = { } -File.open("#{ENV['TM_BUNDLE_SUPPORT']}/entities.txt").read.scan(/^(\d+)\t(.+)$/) do |key, value| - $char_to_entity[[key.to_i].pack('U')] = value -end - -def encode (text) - text.gsub(/[^\x00-\x7F]|["'<>&]/) do |ch| - ent = $char_to_entity[ch] - ent ? "&#{ent};" : sprintf("&#x%02X;", ch.unpack("U")[0]) - end -end - -STDIN.read.scan(/(?x) - - ( <\?(?:[^?]*|\?(?!>))*\?> - | <!-- (?m:.*?) --> - | <\/? (?i:a|abbr|acronym|address|applet|area|b|base|basefont|bdo|big|blockquote|body|br|button|caption|center|cite|code|col|colgroup|dd|del|dfn|dir|div|dl|dt|em|fieldset|font|form|frame|frameset|h1|h2|h3|h4|h5|h6|head|hr|html|i|iframe|img|input|ins|isindex|kbd|label|legend|li|link|map|menu|meta|noframes|noscript|object|ol|optgroup|option|p|param|pre|q|s|samp|script|select|small|span|strike|strong|style|sub|sup|table|tbody|td|textarea|tfoot|th|thead|title|tr|tt|u|ul|var)\b - (?:[^>"']|"[^"]*"|'[^']*')* - > - | &(?:[a-zA-Z0-9]+|\#[0-9]+|\#x[0-9a-fA-F]+); - ) - |([^<&]+|[<&]) - - /x) do |tag, text| - print tag.to_s, encode(text.to_s) -end - - fallbackInput - character - input - selection - keyEquivalent - @& - name - Convert Character / Selection to Entities Excl. Tags - output - replaceSelectedText - scope - text.html - uuid - 43C9E8AE-3E53-4B82-A1AF-56697BB3EF09 - - diff --git a/bundles/html.tmbundle/Commands/Decode HTML Entities.plist b/bundles/html.tmbundle/Commands/Decode HTML Entities.plist deleted file mode 100644 index ca67f17cd..000000000 --- a/bundles/html.tmbundle/Commands/Decode HTML Entities.plist +++ /dev/null @@ -1,41 +0,0 @@ - - - - - beforeRunningCommand - nop - command - #!/usr/bin/env ruby -$KCODE = 'U' - -$entity_to_char = { } -File.open("#{ENV['TM_BUNDLE_SUPPORT']}/entities.txt").read.scan(/^(\d+)\t(.+)$/) do |key, value| - $entity_to_char[value] = [key.to_i].pack('U') -end - -res = STDIN.read.gsub(/&(?:([a-z0-9]+)|#([0-9]+)|#x([0-9A-F]+));/i) do |m| - if $1 then - $entity_to_char[$1] || m - else - [$2 ? $2.to_i : $3.hex].pack("U") - end -end - -print res - - fallbackInput - line - input - selection - keyEquivalent - @& - name - Decode Entities in Line / Selection - output - replaceSelectedText - scope - text.html - uuid - C183920D-A126-11D9-A5A2-000D93C8BE28 - - diff --git a/bundles/html.tmbundle/Commands/Decode Numeric URL Escapes in Line : Selection.plist b/bundles/html.tmbundle/Commands/Decode Numeric URL Escapes in Line : Selection.plist deleted file mode 100644 index 35013b102..000000000 --- a/bundles/html.tmbundle/Commands/Decode Numeric URL Escapes in Line : Selection.plist +++ /dev/null @@ -1,27 +0,0 @@ - - - - - beforeRunningCommand - nop - command - #!/usr/bin/env ruby -require 'cgi' -print CGI.unescape(STDIN.read) - - fallbackInput - line - input - selection - keyEquivalent - @& - name - URL Unescape Line / Selection - output - replaceSelectedText - scope - text.html - uuid - 2C4C9673-B166-432A-8938-75A5CA622481 - - diff --git a/bundles/html.tmbundle/Commands/Documentation for Tag.plist b/bundles/html.tmbundle/Commands/Documentation for Tag.plist deleted file mode 100644 index 22265e633..000000000 --- a/bundles/html.tmbundle/Commands/Documentation for Tag.plist +++ /dev/null @@ -1,153 +0,0 @@ - - - - - beforeRunningCommand - nop - command - #!/usr/bin/env ruby -# -# Lookup current word as a tag name on w3c.org -# -# The mapping below was generated using: -# ruby -e 'STDOUT << "$tags = {\n" << `curl -s http://www.w3.org/TR/html4/index/elements.html`.scan(%r{<td title="Name"><a href="(.*?)">\n?(.*?)</a></td>}).map { |e| " \"#{e[1]}\"".ljust(14) + " => \"#{e[0]}\"" }.join(",\n") << "\n}\n"' - -$tags = { - "A" => "../struct/links.html#edef-A", - "ABBR" => "../struct/text.html#edef-ABBR", - "ACRONYM" => "../struct/text.html#edef-ACRONYM", - "ADDRESS" => "../struct/global.html#edef-ADDRESS", - "APPLET" => "../struct/objects.html#edef-APPLET", - "AREA" => "../struct/objects.html#edef-AREA", - "B" => "../present/graphics.html#edef-B", - "BASE" => "../struct/links.html#edef-BASE", - "BASEFONT" => "../present/graphics.html#edef-BASEFONT", - "BDO" => "../struct/dirlang.html#edef-BDO", - "BIG" => "../present/graphics.html#edef-BIG", - "BLOCKQUOTE" => "../struct/text.html#edef-BLOCKQUOTE", - "BODY" => "../struct/global.html#edef-BODY", - "BR" => "../struct/text.html#edef-BR", - "BUTTON" => "../interact/forms.html#edef-BUTTON", - "CAPTION" => "../struct/tables.html#edef-CAPTION", - "CENTER" => "../present/graphics.html#edef-CENTER", - "CITE" => "../struct/text.html#edef-CITE", - "CODE" => "../struct/text.html#edef-CODE", - "COL" => "../struct/tables.html#edef-COL", - "COLGROUP" => "../struct/tables.html#edef-COLGROUP", - "DD" => "../struct/lists.html#edef-DD", - "DEL" => "../struct/text.html#edef-del", - "DFN" => "../struct/text.html#edef-DFN", - "DIR" => "../struct/lists.html#edef-DIR", - "DIV" => "../struct/global.html#edef-DIV", - "DL" => "../struct/lists.html#edef-DL", - "DT" => "../struct/lists.html#edef-DT", - "EM" => "../struct/text.html#edef-EM", - "FIELDSET" => "../interact/forms.html#edef-FIELDSET", - "FONT" => "../present/graphics.html#edef-FONT", - "FORM" => "../interact/forms.html#edef-FORM", - "FRAME" => "../present/frames.html#edef-FRAME", - "FRAMESET" => "../present/frames.html#edef-FRAMESET", - "H1" => "../struct/global.html#edef-H1", - "H2" => "../struct/global.html#edef-H2", - "H3" => "../struct/global.html#edef-H3", - "H4" => "../struct/global.html#edef-H4", - "H5" => "../struct/global.html#edef-H5", - "H6" => "../struct/global.html#edef-H6", - "HEAD" => "../struct/global.html#edef-HEAD", - "HR" => "../present/graphics.html#edef-HR", - "HTML" => "../struct/global.html#edef-HTML", - "I" => "../present/graphics.html#edef-I", - "IFRAME" => "../present/frames.html#edef-IFRAME", - "IMG" => "../struct/objects.html#edef-IMG", - "INPUT" => "../interact/forms.html#edef-INPUT", - "INS" => "../struct/text.html#edef-ins", - "ISINDEX" => "../interact/forms.html#edef-ISINDEX", - "KBD" => "../struct/text.html#edef-KBD", - "LABEL" => "../interact/forms.html#edef-LABEL", - "LEGEND" => "../interact/forms.html#edef-LEGEND", - "LI" => "../struct/lists.html#edef-LI", - "LINK" => "../struct/links.html#edef-LINK", - "MAP" => "../struct/objects.html#edef-MAP", - "MENU" => "../struct/lists.html#edef-MENU", - "META" => "../struct/global.html#edef-META", - "NOFRAMES" => "../present/frames.html#edef-NOFRAMES", - "NOSCRIPT" => "../interact/scripts.html#edef-NOSCRIPT", - "OBJECT" => "../struct/objects.html#edef-OBJECT", - "OL" => "../struct/lists.html#edef-OL", - "OPTGROUP" => "../interact/forms.html#edef-OPTGROUP", - "OPTION" => "../interact/forms.html#edef-OPTION", - "P" => "../struct/text.html#edef-P", - "PARAM" => "../struct/objects.html#edef-PARAM", - "PRE" => "../struct/text.html#edef-PRE", - "Q" => "../struct/text.html#edef-Q", - "S" => "../present/graphics.html#edef-S", - "SAMP" => "../struct/text.html#edef-SAMP", - "SCRIPT" => "../interact/scripts.html#edef-SCRIPT", - "SELECT" => "../interact/forms.html#edef-SELECT", - "SMALL" => "../present/graphics.html#edef-SMALL", - "SPAN" => "../struct/global.html#edef-SPAN", - "STRIKE" => "../present/graphics.html#edef-STRIKE", - "STRONG" => "../struct/text.html#edef-STRONG", - "STYLE" => "../present/styles.html#edef-STYLE", - "SUB" => "../struct/text.html#edef-SUB", - "SUP" => "../struct/text.html#edef-SUP", - "TABLE" => "../struct/tables.html#edef-TABLE", - "TBODY" => "../struct/tables.html#edef-TBODY", - "TD" => "../struct/tables.html#edef-TD", - "TEXTAREA" => "../interact/forms.html#edef-TEXTAREA", - "TFOOT" => "../struct/tables.html#edef-TFOOT", - "TH" => "../struct/tables.html#edef-TH", - "THEAD" => "../struct/tables.html#edef-THEAD", - "TITLE" => "../struct/global.html#edef-TITLE", - "TR" => "../struct/tables.html#edef-TR", - "TT" => "../present/graphics.html#edef-TT", - "U" => "../present/graphics.html#edef-U", - "UL" => "../struct/lists.html#edef-UL", - "VAR" => "../struct/text.html#edef-VAR" -} - -def request_tag_name (default_tag = "body") - res, tag = %x{ "$TM_SUPPORT_PATH/bin/CocoaDialog.app/Contents/MacOS/CocoaDialog" \ - inputbox --float --title 'Documentation for Tag' \ - --informative-text 'What tag would you like to lookup?' \ - --text '#{default_tag}' --button1 'Lookup' --button2 'Cancel' \ - --button3 'Show All Tags' - }.split("\n") - case res.to_i - when 1 then $tags[tag.to_s.upcase] || "elements.html" - when 2 then abort "<script>window.close()</script>" - when 3 then "elements.html" - end -end - -line, col = ENV["TM_CURRENT_LINE"].to_s, ENV["TM_LINE_INDEX"].to_i -tag = line =~ /\A.{0,#{col}}<\s*(\w+)/ ? $1 : ENV["TM_CURRENT_WORD"].to_s - -path = $tags[tag.upcase] || request_tag_name(tag) -url = "http://www.w3.org/TR/html4/index/" + path -puts "<meta http-equiv='Refresh' content='0;URL=#{url}'>" - - input - none - inputFormat - text - keyEquivalent - ^h - name - Documentation for Tag - outputCaret - afterOutput - outputFormat - html - outputLocation - newWindow - scope - text.html, text.html entity.name.tag - semanticClass - lookup.define.html - uuid - 637CEA2B-578C-429C-BB74-30E8D42BFA22 - version - 2 - - diff --git a/bundles/html.tmbundle/Commands/Encrypt Line : Selection (ROT 13).tmCommand b/bundles/html.tmbundle/Commands/Encrypt Line : Selection (ROT 13).tmCommand deleted file mode 100644 index 679622018..000000000 --- a/bundles/html.tmbundle/Commands/Encrypt Line : Selection (ROT 13).tmCommand +++ /dev/null @@ -1,37 +0,0 @@ - - - - - beforeRunningCommand - nop - command - #!/usr/bin/env ruby - -def e_js(str) - str.gsub(/(?=[\\"])/, '\\').gsub(/\n/, '\n').gsub(/[@.\/]/) { |ch| sprintf('\\%03o', ch[0]) } -end - -def rot_13(str) - str.tr('A-Za-z', 'N-ZA-Mn-za-m') -end - -print %{<script type="text/javascript">document.write( -"#{e_js(rot_13(STDIN.read))}".replace(/[a-zA-Z]/g, function(c){return String.fromCharCode((c<="Z"?90:122)>=(c=c.charCodeAt(0)+13)?c:c-26);})); -</script>} - - fallbackInput - line - input - selection - keyEquivalent - @& - name - Encrypt Line / Selection (ROT 13) - output - replaceSelectedText - scope - text.html - uuid - 9B13543F-8356-443C-B6E7-D9259B604927 - - diff --git a/bundles/html.tmbundle/Commands/Insert Close Tag.plist b/bundles/html.tmbundle/Commands/Insert Close Tag.plist deleted file mode 100644 index 227623572..000000000 --- a/bundles/html.tmbundle/Commands/Insert Close Tag.plist +++ /dev/null @@ -1,60 +0,0 @@ - - - - - beforeRunningCommand - nop - command - #!/usr/bin/env ruby - -doc = STDIN.read -line = ENV['TM_LINE_NUMBER'].to_i -line_index = ENV['TM_LINE_INDEX'].to_i - -if ENV.has_key? 'TM_INPUT_START_LINE' then - line = ENV['TM_INPUT_START_LINE'].to_i - line_index = ENV['TM_INPUT_START_LINE_INDEX'].to_i -end - -before = /(.*\n){#{line-1}}.{#{line_index}}/.match(doc)[0] - -before.gsub!(/<[^>]+\/\s*>/i, '') - -# remove all self-closing tags -if ENV.has_key?('TM_HTML_EMPTY_TAGS') then - empty_tags = ENV['TM_HTML_EMPTY_TAGS'] - before.gsub!(/<(#{empty_tags})\b[^>]*>/i, '') -end - -# remove all comments -before.gsub!(/<!--.*?-->/m, '') - -stack = [ ] -before.scan(/<\s*(\/)?\s*(\w[\w:-]*)[^>]*>/) do |m| - if m[0].nil? then - stack << m[1] - else - until stack.empty? do - close_tag = stack.pop - break if close_tag == m[1] - end - end -end - -if stack.empty? then - %x{ osascript -e beep &>/dev/null & } -else - print "</#{stack.pop}>" -end - input - document - keyEquivalent - ~@. - name - Insert Close Tag - output - afterSelectedText - uuid - 0658019F-3635-462E-AAC2-74E4FE508A9B - - diff --git a/bundles/html.tmbundle/Commands/Insert Entity….plist b/bundles/html.tmbundle/Commands/Insert Entity….plist deleted file mode 100644 index 4b7e8b908..000000000 --- a/bundles/html.tmbundle/Commands/Insert Entity….plist +++ /dev/null @@ -1,48 +0,0 @@ - - - - - beforeRunningCommand - nop - command - #!/usr/bin/env ruby -w -SUPPORT = ENV['TM_SUPPORT_PATH'] -DIALOG = SUPPORT + '/bin/tm_dialog' - -require "#{SUPPORT}/lib/osx/plist" -require "#{SUPPORT}/lib/escape" - -entities = [ ] -File.read("#{ENV['TM_BUNDLE_SUPPORT']}/entities.txt").scan(/^(\d+)\t(.+)$/) do |key, value| - char = [key.to_i].pack('U') - entities << { 'display' => "#{value} (#{char})", 'char' => char, 'entity' => value } -end - -plist = { 'entities' => entities, 'insertAsEntity' => true }.to_plist -open("|#{e_sh DIALOG} -cm 'Insert Entity'", 'w+') do |io| - io << plist; io.close_write - - res = OSX::PropertyList.load(io.read)['result'] - abort if res.nil? - - if res['asEntity'] - print '&' + res['returnArgument'].first['entity'] + ';' - else - print res['returnArgument'].first['char'] - end -end - - input - none - keyEquivalent - @& - name - Insert Entity… - output - afterSelectedText - scope - text.html - uuid - 89E5CC0A-3EFF-4DEF-A299-2E9651DE6529 - - diff --git a/bundles/html.tmbundle/Commands/Insert Tag Pair.plist b/bundles/html.tmbundle/Commands/Insert Tag Pair.plist deleted file mode 100644 index 451f867fa..000000000 --- a/bundles/html.tmbundle/Commands/Insert Tag Pair.plist +++ /dev/null @@ -1,61 +0,0 @@ - - - - - beforeRunningCommand - nop - command - #!/usr/bin/env ruby -wKU -# -# This script will expand the current word into: <word></word> -# It will recognize HTML 4.0 tags that need no close tag. -# -# With no current word, it will insert: <p></p> and allows you -# to overwrite the tag name and add potential arguments. -# -# The result is inserted as a snippet, so it's -# possible to tab through the place holders. - -# single tags -single_no_arg = /^(?:br|hr)$/i -single = /^(?:img|meta|link|input|base|area|col|frame|param)$/i -other_tag = /^[\w\-:_]+$/i - -# we are not in HTML mode, so let’s scrap the above hardcoded tag lists -unless ENV.has_key? 'TM_HTML_EMPTY_TAGS' then - single_no_arg = /(?=not)possible/ - single = /(?=not)possible/ -end - -# handle the case where caret is in the middle of a word, assume only the left part is the tag -index = ENV['TM_LINE_INDEX'].to_i - ENV['TM_INPUT_START_LINE_INDEX'].to_i -tag, suffix = STDIN.read, '' -if index < tag.length && !ENV['TM_SELECTED_TEXT'] - tag, suffix = tag[0...index], tag[index..-1] -end - -xhtml = ENV['TM_XHTML'].to_s - -print case tag - when single_no_arg then "<#{tag}#{xhtml}>" - when single then "<#{tag} $1#{xhtml}>" - when other_tag then "<#{tag}>$1</#{tag.strip[/^\S+/]}>" - else "#{tag}<${1:#{ENV['TM_DEFAULT_TAG'] || 'p'}}>$2</${1/\\s.*//}>" -end - -print suffix - - fallbackInput - word - input - selection - keyEquivalent - ^< - name - Insert Open/Close Tag (With Current Word) - output - insertAsSnippet - uuid - 2ED44A32-C353-447F-BAE4-E3522DB6944D - - diff --git a/bundles/html.tmbundle/Commands/Persistent Include.tmCommand b/bundles/html.tmbundle/Commands/Persistent Include.tmCommand deleted file mode 100644 index bc42674ae..000000000 --- a/bundles/html.tmbundle/Commands/Persistent Include.tmCommand +++ /dev/null @@ -1,25 +0,0 @@ - - - - - beforeRunningCommand - nop - command - #!/usr/bin/env ruby -require "#{ENV['TM_BUNDLE_SUPPORT']}/tminclude.rb" -TextMate::Includes.instance.include_command - - input - none - keyEquivalent - ^@i - name - Add Persistent Include - output - afterSelectedText - scope - text.html - uuid - 0D814247-7A00-46EE-A2A4-45FBBF4B1181 - - diff --git a/bundles/html.tmbundle/Commands/Preview in All Active Browsers.plist b/bundles/html.tmbundle/Commands/Preview in All Active Browsers.plist deleted file mode 100644 index 1839d64cf..000000000 --- a/bundles/html.tmbundle/Commands/Preview in All Active Browsers.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - beforeRunningCommand - saveActiveFile - command - #!/usr/bin/env ruby -wKU -# -# Open Document in Running Browser(s) -# -# Now supports multiple running versions of a single browser along -# with a range of new/old browsers. Bring back support for Firefox. -# -# Options: Set TM_PROJECT_SITEURL in your TM Project Window Info Button -# in the following form: "http://example.com/" - -require "#{ENV['TM_SUPPORT_PATH']}/lib/escape.rb" - -if ENV['TM_PROJECT_SITEURL'] - url = "#{ENV['TM_PROJECT_SITEURL']}" + ENV['TM_FILEPATH'].sub(/^#{Regexp.escape(ENV['TM_PROJECT_DIRECTORY'])}\//, '') -else - url = "file://#{ENV['TM_FILEPATH']}" -end - -proclist = `ps -x -o command` -active = [] -os = `defaults read /System/Library/CoreServices/SystemVersion ProductVersion` - -browsers = %w[ Safari OmniWeb Camino Shiira firefox(-bin)? Xyle\ scope Opera Internet\ Explorer flock-bin iCab Sunrise seamonkey-bin navigator-bin Google\ Chrome].join('|') - -# Build paths to each active browser -# -# Notes: -# - 'WebKit' look ahead is to rule it out so we can use the working -# rule below. -# - 'LaunchCFMApp' portion is so iCab works. -active = proclist.scan(%r{^(?:/.*LaunchCFMApp )?(/.*\.app)(?=/Contents/MacOS/(?:#{browsers})\b(?!.*WebKit))}) - -# Special check for WebKit as it appears as Safari -# Note: Only supports one running instance of WebKit, picked at random. -if proclist =~ %r{/Contents/MacOS/Safari.*WebKit} - active << "WebKit" -end - -# TODO: Change when Leopard Only -# On Leopard use the -g option to open in background. -if os =~ /^10\.(5|6|7)/ - active.each {|p| `open -g -a #{e_sh(p)} #{e_sh(url)}` } -else - active.each {|p| `open -a #{e_sh(p)} #{e_sh(url)}` } -end - input - none - name - Open Document in Running Browser(s) - output - discard - scope - text.html - uuid - 970EE6B4-A091-11D9-A5A2-000D93C8BE28 - - diff --git a/bundles/html.tmbundle/Commands/Refresh All Active Browsers.plist b/bundles/html.tmbundle/Commands/Refresh All Active Browsers.plist deleted file mode 100644 index 9ed929e2c..000000000 --- a/bundles/html.tmbundle/Commands/Refresh All Active Browsers.plist +++ /dev/null @@ -1,55 +0,0 @@ - - - - - beforeRunningCommand - saveActiveFile - command - ### Refresh All Active Browsers - OmniWeb, Safari, Firefox & IE -### v1.0. 2005-03-29 -### - -# Check if Internet Explorer is running, if so refresh -ps -xc|grep -sq "Internet Explorer" && osascript -e 'tell app "Internet Explorer"' -e 'activate' -e 'OpenURL "JavaScript:window.location.reload();" toWindow -1' -e 'end tell' - -# Check if OmniWeb is running, if so refresh -ps -xc|grep -sq OmniWeb && osascript -e 'tell app "OmniWeb"' -e 'activate' -e 'reload first browser' -e 'end tell' - -# Check if Firefox is running, if so refresh -ps -xc|grep -sqi firefox && osascript <<'APPLESCRIPT' - tell app "Firefox" to activate - tell app "System Events" - if UI elements enabled then - keystroke "r" using command down - -- Fails if System Preferences > Universal access > "Enable access for assistive devices" is not on - else - -- Comment out until Firefox regains Applescript support - -- tell app "Firefox" to Get URL "JavaScript:window.location.reload();" inside window 1 - -- Fails if Firefox is set to open URLs from external apps in new tabs. - end if - end tell -APPLESCRIPT - -# Check if Safari is running, if so refresh -ps -xc|grep -sq Safari && osascript -e 'tell app "Safari"' -e 'activate' -e 'do JavaScript "window.location.reload();" in first document' -e 'end tell' - -# Check if Camino is running, if so refresh -ps -xc|grep -sq Camino && osascript -e 'tell app "Camino"' -e 'activate' -e 'tell app "System Events" to keystroke "r" using {command down}' -e 'end tell' - -# Check if Chrome is running, if so refresh -ps -xc|grep -sq Chrome && osascript -e 'tell app "Google Chrome"' -e 'activate' -e 'tell app "System Events" to keystroke "r" using {command down}' -e 'end tell' - - input - none - keyEquivalent - @r - name - Refresh Running Browser(s) - output - discard - scope - text.html, source.css - uuid - B8651C6E-A05E-11D9-86AC-000D93C8BE28 - - diff --git a/bundles/html.tmbundle/Commands/Show Web Preview.tmCommand b/bundles/html.tmbundle/Commands/Show Web Preview.tmCommand deleted file mode 100644 index c3ea594f8..000000000 --- a/bundles/html.tmbundle/Commands/Show Web Preview.tmCommand +++ /dev/null @@ -1,25 +0,0 @@ - - - - - beforeRunningCommand - nop - command - #!/bin/sh -if [[ -e "$TM_FILEPATH" ]]; then - echo "<base href=\"file://$TM_FILEPATH\">" -fi -cat - - input - document - keyEquivalent - ^~@p - name - Show Web Preview - output - showAsHTML - uuid - AC5F664E-86BA-4D81-B6CE-1B12F69FA490 - - diff --git a/bundles/html.tmbundle/Commands/Strip HTML tags.plist b/bundles/html.tmbundle/Commands/Strip HTML tags.plist deleted file mode 100644 index f291bd752..000000000 --- a/bundles/html.tmbundle/Commands/Strip HTML tags.plist +++ /dev/null @@ -1,29 +0,0 @@ - - - - - beforeRunningCommand - nop - command - ## Strip HTML and PHP tags from the selected text -php -r 'echo strip_tags( file_get_contents("/dev/stdin") );' - -### If you want to keep a particular tag, such as <p> comment the above line and uncomment the next line -# php -r 'echo strip_tags( file_get_contents("/dev/stdin"), "<p>" );' -### end - fallbackInput - document - input - selection - keyEquivalent - - name - Strip HTML Tags from Document / Selection - output - replaceSelectedText - scope - text.html - uuid - 20D760B5-A127-11D9-A5A2-000D93C8BE28 - - diff --git a/bundles/html.tmbundle/Commands/Tidy.plist b/bundles/html.tmbundle/Commands/Tidy.plist deleted file mode 100644 index 1fb5028a8..000000000 --- a/bundles/html.tmbundle/Commands/Tidy.plist +++ /dev/null @@ -1,84 +0,0 @@ - - - - - beforeRunningCommand - nop - captureFormatString - $3 - capturePattern - line (\d+) column (\d+) - (.*?)$ - command - #!/usr/bin/env ruby -wKU - -require ENV['TM_SUPPORT_PATH'] + '/lib/ui.rb' -require ENV['TM_SUPPORT_PATH'] + '/lib/exit_codes.rb' - -result = `"${TM_TIDY:-tidy}" -f /tmp/tm_tidy_errors -iq -utf8 \ - -wrap 0 --tab-size $TM_TAB_SIZE --indent-spaces $TM_TAB_SIZE \ - --indent yes \ - ${TM_XHTML:+-asxhtml --output-xhtml yes} \ - ${TM_SELECTED_TEXT:+--show-body-only yes} \ - --enclose-text yes \ - --doctype strict \ - --wrap-php no \ - --tidy-mark no` -status = $?.exitstatus - -at_exit { File.unlink('/tmp/tm_tidy_errors') } # Clean up error log - -if status == 2 # Errors - - msg = "Errors: " + File.read('/tmp/tm_tidy_errors') - TextMate.exit_show_tool_tip msg - -elsif status == 1 # Warnings - use output but also display notification with warnings - - log = File.read('/tmp/tm_tidy_errors').to_a.select do |line| - ! (ENV['TM_SELECTED_TEXT'] and (line.include?('Warning: missing <!DOCTYPE> declaration') or line.include?("Warning: inserting missing 'title' element"))) - end.join rescue nil - - unless log.empty? - options = { - :title => "Tidy Warnings", - :summary => "Warnings for tidying your document (press escape to close):", - :log => log - } - TextMate::UI.simple_notification(options) - end - -end - -if ENV['TM_SOFT_TABS'] == "YES" - print result -else - in_pre = false - result.each_line do |line| - unless in_pre - tab_size = ENV["TM_TAB_SIZE"].to_i - space, text = /( *)(.*)/m.match(line)[1..2] - line = "\t" * (space.length / tab_size).floor + " " * (space.length % tab_size) + text - end - - print line - - in_pre = true if line.include?("<pre>") - in_pre = false if line.include?("</pre>") - end -end - input - selection - keyEquivalent - ^H - lineCaptureRegister - 1 - name - Tidy - output - replaceSelectedText - scope - text.html - uuid - 45F92B81-6F0E-11D9-A1E4-000D9332809C - - diff --git a/bundles/html.tmbundle/Commands/Update Includes.tmCommand b/bundles/html.tmbundle/Commands/Update Includes.tmCommand deleted file mode 100644 index 4fbf23f61..000000000 --- a/bundles/html.tmbundle/Commands/Update Includes.tmCommand +++ /dev/null @@ -1,25 +0,0 @@ - - - - - beforeRunningCommand - nop - command - #!/usr/bin/env ruby -require "#{ENV['TM_BUNDLE_SUPPORT']}/tminclude.rb" -TextMate::Includes.instance.process_persistent_includes - - input - document - keyEquivalent - ^@u - name - Update Document - output - replaceDocument - scope - text.html - uuid - 4400BCE9-20E3-426E-B1D7-2C0BCA53BCF8 - - diff --git a/bundles/html.tmbundle/Commands/Update Project.tmCommand b/bundles/html.tmbundle/Commands/Update Project.tmCommand deleted file mode 100644 index 9000b6008..000000000 --- a/bundles/html.tmbundle/Commands/Update Project.tmCommand +++ /dev/null @@ -1,25 +0,0 @@ - - - - - beforeRunningCommand - nop - command - #!/usr/bin/env ruby -require "#{ENV['TM_BUNDLE_SUPPORT']}/tminclude.rb" -TextMate::Includes.instance.process_persistent_includes_for_project - - input - none - keyEquivalent - ^@u - name - Update Project / Selected Files - output - showAsTooltip - scope - text.html - uuid - CA24BD98-E4B6-48F8-B15A-84CC533BE1BD - - diff --git a/bundles/html.tmbundle/Commands/W3C validation.plist b/bundles/html.tmbundle/Commands/W3C validation.plist deleted file mode 100644 index 08099c67b..000000000 --- a/bundles/html.tmbundle/Commands/W3C validation.plist +++ /dev/null @@ -1,41 +0,0 @@ - - - - - beforeRunningCommand - nop - command - #!/usr/bin/env ruby -wKU -STDOUT.sync = true - -page = STDIN.read -page.gsub!(/<\?(php|=).*?\?>|<%.*?%>/m, '') - -open('|curl -sF uploaded_file=@-\;type=text/html http://validator.w3.org/check', 'r+') do |io| - io << page; io.close_write - - result = io.read - - result.gsub!(/<\/title>/, '\&<base href="http://validator.w3.org/">') - result.gsub!(/Line (\d+),?\s*Column (\d+)/mi) do - "<a href=\"txmt://open?line=#$1&amp;column=#{$2.to_i + 1}\">#$&</a>" - end - puts result -end - - dontFollowNewOutput - - input - document - keyEquivalent - ^V - name - Validate Syntax (W3C) - output - showAsHTML - scope - text.html - uuid - 3F26240E-6E4A-11D9-B411-000D93589AF6 - - diff --git a/bundles/html.tmbundle/Commands/Wrap Each Selected Line in Open:Close Tag.plist b/bundles/html.tmbundle/Commands/Wrap Each Selected Line in Open:Close Tag.plist deleted file mode 100644 index e8c48568c..000000000 --- a/bundles/html.tmbundle/Commands/Wrap Each Selected Line in Open:Close Tag.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - beforeRunningCommand - nop - command - perl -pe 's/[\$`\\]/\\$&/g; s/([ \t]*)(.+)/$1<\${1:li}>$2<\/\${1\/\\s.*\/\/}>/' - fallbackInput - line - input - selection - keyEquivalent - ^@W - name - Wrap Each Selected Line in Open/Close Tag - output - insertAsSnippet - scope - text.html - uuid - 991E7EBD-F3F5-469A-BA01-DC30E04AD472 - - diff --git a/bundles/html.tmbundle/DragCommands/Anchor Tag.plist b/bundles/html.tmbundle/DragCommands/Anchor Tag.plist deleted file mode 100644 index cb51864d4..000000000 --- a/bundles/html.tmbundle/DragCommands/Anchor Tag.plist +++ /dev/null @@ -1,33 +0,0 @@ - - - - - command - title=`echo $TM_DROPPED_FILE | perl -pe 's/^(.*\/)?(.*?)(\..*)?$/$2/g'` -echo -n "<a href=\"$TM_DROPPED_FILE\" id=\"\" title=\"\${1:$title}\">\${1:$title}</a>" - draggedFileExtensions - - html - htm - rhtml - shtml - phtml - php - php3 - php4 - php5 - cfm - cfml - dbm - dbml - - name - Insert Anchor - output - insertAsSnippet - scope - text.html - uuid - B23D6E15-6B33-11D9-86C1-000D93589AF6 - - diff --git a/bundles/html.tmbundle/DragCommands/CSS Link.plist b/bundles/html.tmbundle/DragCommands/CSS Link.plist deleted file mode 100644 index 03fade775..000000000 --- a/bundles/html.tmbundle/DragCommands/CSS Link.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - command - echo "<link rel=\"stylesheet\" href=\"$TM_DROPPED_FILE\" type=\"text/css\" media=\"screen\" title=\"no title\" charset=\"utf-8\"$TM_XHTML>" - draggedFileExtensions - - css - - name - Insert CSS Link - output - insertAsSnippet - scope - text.html - uuid - C8B717C2-6B33-11D9-BB47-000D93589AF6 - - diff --git a/bundles/html.tmbundle/DragCommands/Image Tag.plist b/bundles/html.tmbundle/DragCommands/Image Tag.plist deleted file mode 100644 index 0064d7dc4..000000000 --- a/bundles/html.tmbundle/DragCommands/Image Tag.plist +++ /dev/null @@ -1,52 +0,0 @@ - - - - - command - #!/usr/bin/env ruby -wKU -require "#{ENV['TM_SUPPORT_PATH']}/lib/escape" -require "shellwords" -require "cgi" - -def tag_for_file(file, tab_stop = 0) - file_path = File.expand_path file - - tag = "<img src=\"#{e_sn(CGI::escapeHTML file)}\"" - - dim = %x{ sips -g pixelWidth -g pixelHeight #{e_sh file_path} } - tag << " width=\"#$1\"" if dim =~ /pixelWidth: (\d+)/ - tag << " height=\"#$1\"" if dim =~ /pixelHeight: (\d+)/ - - alt = File.basename(file, File.extname(file)) - alt = alt.gsub(/[_-]+/, ' ').strip.gsub(/\b[a-z]/) { $&.upcase } - tag << " alt=\"\${#{tab_stop+1}:#{e_snp(CGI::escapeHTML alt)}}\"" - - tag << "#{ENV['TM_XHTML']}>" -end - -if ENV.has_key? 'TM_DROPPED_FILES' - files = Shellwords.shellwords(ENV['TM_DROPPED_FILES']) - files.each_with_index do |file, tab_stop| - STDOUT << tag_for_file(file, tab_stop) << "\n" - end -else - STDOUT << tag_for_file(ENV['TM_DROPPED_FILE']) -end - - draggedFileExtensions - - png - jpeg - jpg - gif - - name - Insert Image With Dimensions - output - insertAsSnippet - scope - text.html - uuid - CD6D2CC6-6B33-11D9-BDFD-000D93589AF6 - - diff --git a/bundles/html.tmbundle/DragCommands/Insert Anchor href 2.tmDragCommand b/bundles/html.tmbundle/DragCommands/Insert Anchor href 2.tmDragCommand deleted file mode 100644 index 2ab295422..000000000 --- a/bundles/html.tmbundle/DragCommands/Insert Anchor href 2.tmDragCommand +++ /dev/null @@ -1,33 +0,0 @@ - - - - - command - title=`echo $TM_DROPPED_FILE | perl -pe 's/^(.*\/)?(.*?)(\..*)?$/$2/g'` -echo -n "href=\"$TM_DROPPED_FILE\" title=\"\${1:$title}\" " - draggedFileExtensions - - html - htm - rhtml - shtml - phtml - php - php3 - php4 - php5 - cfm - cfml - dbm - dbml - - name - Insert Anchor href - output - insertAsSnippet - scope - text.html meta.tag entity.other.attribute-name -string.quoted - uuid - 6F71B1E5-81D0-4D94-A2C5-7688A3D3EDB3 - - diff --git a/bundles/html.tmbundle/DragCommands/Insert Anchor href.tmDragCommand b/bundles/html.tmbundle/DragCommands/Insert Anchor href.tmDragCommand deleted file mode 100644 index 8bf0412c9..000000000 --- a/bundles/html.tmbundle/DragCommands/Insert Anchor href.tmDragCommand +++ /dev/null @@ -1,33 +0,0 @@ - - - - - command - title=`echo $TM_DROPPED_FILE | perl -pe 's/^(.*\/)?(.*?)(\..*)?$/$2/g'` -echo -n " href=\"$TM_DROPPED_FILE\" title=\"\${1:$title}\"" - draggedFileExtensions - - html - htm - rhtml - shtml - phtml - php - php3 - php4 - php5 - cfm - cfml - dbm - dbml - - name - Insert Anchor href - output - insertAsSnippet - scope - text.html meta.tag -string.quoted -entity - uuid - BD4AEF38-638B-4C47-A762-4A0A6190F9C7 - - diff --git a/bundles/html.tmbundle/DragCommands/Insert Flash Movie (Swf).tmDragCommand b/bundles/html.tmbundle/DragCommands/Insert Flash Movie (Swf).tmDragCommand deleted file mode 100644 index caaf19ec2..000000000 --- a/bundles/html.tmbundle/DragCommands/Insert Flash Movie (Swf).tmDragCommand +++ /dev/null @@ -1,143 +0,0 @@ - - - - - beforeRunningCommand - nop - command - #!/usr/bin/ruby - -require "zlib" - -# Test for broken pack/unpack -if [1].pack('n') == "\001\000" - class String - alias_method :broken_unpack, :unpack - def unpack(spec) - broken_unpack(spec.tr("nNvV","vVnN")) - end - end - class Array - alias_method :broken_pack, :pack - def pack(spec) - broken_pack(spec.tr("nNvV","vVnN")) - end - end -end - -class Swf - @bits - @width - @height - @version - @bgcolor - @buffer - - - attr_reader :width - attr_reader :height - attr_reader :version - attr_reader :bgcolor - - def initialize(f) - @bits = "" - @buffer = File.new(f,"r").read - is_zip = ("" << @buffer.slice(0)) == "C" - @version = @buffer.slice(3).to_i - - @buffer.slice!(0..7) - - if is_zip - @buffer = Zlib::Inflate.inflate(@buffer) - end - - nbits = getBits(5) - xmin = getBits(nbits) - xmax = getBits(nbits) - ymin = getBits(nbits) - ymax = getBits(nbits) - - @width = (xmax - xmin) / 20 - @height = (ymax - ymin) / 20 - - @buffer.slice!(0..3) - - @bits = "" - - while(true) - tag = getNextTag() - if(tag[:id] == 9) - @bgcolor = sprintf("#%02X%02X%02X", tag[:data][0], tag[:data][1], tag[:data][2]) - break - end - end - - end - -private - - def getNextTag() - tag_and_size = @buffer.slice!(0..1).unpack("v")[0] - tag = {} - tag[:id] = tag_and_size >> 6 - tag[:length] = tag_and_size & 0x3f - if(tag[:length] == 63) - tag[:length] = @buffer.slice!(0..3).unpack("V")[0] - end - - tag[:data] = @buffer.slice!(0...tag[:length]) - return tag - end - - def getBits(n) - bytes = (n / 8.0).ceil - (0...bytes).each { - @bits << sprintf("%08b", @buffer.slice!(0)) - } - out = @bits[0...n].to_i(2); - @bits = @bits[n..-1] - return out - end - -end - -file = ENV["TM_DROPPED_FILE"] || "test.swf" -name = file.match(/([^\/]+)\.swf$/)[1] -swf = Swf.new(file) - -if (ENV["TM_MODIFIER_FLAGS"] == "OPTION") -print <<HTML -$1<div id="${10:#{name}}"></div> -<script type="text/javascript" charset="utf-8"> - var so = new SWFObject("#{file}", "${20:#{name}_swf}", "#{swf.width}", "#{swf.height}", "#{swf.version}", "#{swf.bgcolor}"); - so.write("$10"); -</script> -HTML -else -xhtml = ENV['TM_XHTML'] -print <<HTML -<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=#{swf.version},0,0,0" width="#{swf.width}" height="#{swf.height}" id="#{name}" align="middle"> -<param name="allowScriptAccess" value="sameDomain"#{xhtml}> -<param name="movie" value="#{file}"#{xhtml}> -<param name="quality" value="high"#{xhtml}> -<param name="bgcolor" value="#{swf.bgcolor}"#{xhtml}> -<embed src="#{file}" quality="high" bgcolor="#{swf.bgcolor}" width="#{swf.width}" height="#{swf.height}" name="#{name}" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"#{xhtml}> -</object> -HTML -end - draggedFileExtensions - - swf - - input - selection - name - Insert Flash Movie (Swf) - output - insertAsSnippet - scope - text.html - uuid - 92F77050-74F9-4DF7-9A6E-2B42641849F7 - - diff --git a/bundles/html.tmbundle/DragCommands/Insert JS Link.tmDragCommand b/bundles/html.tmbundle/DragCommands/Insert JS Link.tmDragCommand deleted file mode 100644 index 54d128d0c..000000000 --- a/bundles/html.tmbundle/DragCommands/Insert JS Link.tmDragCommand +++ /dev/null @@ -1,22 +0,0 @@ - - - - - bundleUUID - 4676FC6D-6227-11D9-BFB1-000D93589AF6 - command - echo "<script src=\"$TM_DROPPED_FILE\" type=\"text/javascript\" charset=\"utf-8\"></script>" - draggedFileExtensions - - js - - name - Insert JS Link - output - insertAsSnippet - scope - text.html - uuid - 52124611-B363-40AD-B9F0-0A811941CD20 - - diff --git a/bundles/html.tmbundle/DragCommands/Insert QuickTime Movie.tmDragCommand b/bundles/html.tmbundle/DragCommands/Insert QuickTime Movie.tmDragCommand deleted file mode 100644 index e63fde61e..000000000 --- a/bundles/html.tmbundle/DragCommands/Insert QuickTime Movie.tmDragCommand +++ /dev/null @@ -1,48 +0,0 @@ - - - - - beforeRunningCommand - nop - command - DIM=$(osascript <<APPLESCRIPT - tell app "QuickTime Player" - open POSIX file "$TM_DROPPED_FILEPATH" - set w to item 1 of (get dimensions of movie 1) - set h to item 2 of (get dimensions of movie 1) - close movie 1 - return "width=\"" & w & "\" height=\"" & h & "\"" - end tell -APPLESCRIPT -) - -cat <<SNIPPET -<object $DIM classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab"> - <param name="src" value="$TM_DROPPED_FILE"${TM_XHTML}> - <param name="controller" value="\$1"${TM_XHTML}> - <param name="autoplay" value="\$2"${TM_XHTML}> - <embed src="$TM_DROPPED_FILE" - $DIM - controller="\${1:true}" autoplay="\${2:true}" - scale="tofit" cache="true" - pluginspage="http://www.apple.com/quicktime/download/" - ${TM_XHTML}> -</object> -SNIPPET - - draggedFileExtensions - - mov - - input - selection - name - Insert QuickTime Movie - output - insertAsSnippet - scope - text.html - uuid - EBE53CE6-AEBB-4318-AE98-D07F3755E3F9 - - diff --git a/bundles/html.tmbundle/DragCommands/Insert URL.tmDragCommand b/bundles/html.tmbundle/DragCommands/Insert URL.tmDragCommand deleted file mode 100644 index 7363338b7..000000000 --- a/bundles/html.tmbundle/DragCommands/Insert URL.tmDragCommand +++ /dev/null @@ -1,33 +0,0 @@ - - - - - command - title=`echo $TM_DROPPED_FILE | perl -pe 's/^(.*\/)?(.*?)(\..*)?$/$2/g'` -echo -n "$TM_DROPPED_FILE\" title=\"\${1:$title}" - draggedFileExtensions - - html - htm - rhtml - shtml - phtml - php - php3 - php4 - php5 - cfm - cfml - dbm - dbml - - name - Insert URL - output - insertAsSnippet - scope - text.html meta.tag string.quoted - uuid - 30130739-4E58-4720-9B27-88C7EE168D83 - - diff --git a/bundles/html.tmbundle/Macros/Delete whitespace between tags.plist b/bundles/html.tmbundle/Macros/Delete whitespace between tags.plist deleted file mode 100644 index abc082e82..000000000 --- a/bundles/html.tmbundle/Macros/Delete whitespace between tags.plist +++ /dev/null @@ -1,42 +0,0 @@ - - - - - commands - - - argument - - action - findNext - findInProjectIgnoreCase - 0 - findString - (?=\S)|\s+ - ignoreCase - 0 - regularExpression - 1 - replaceAllScope - document - wrapAround - 0 - - command - findWithOptions: - - - command - deleteBackward: - - - keyEquivalent - ^~ - name - Forward Delete All Whitespace - scope - text.html - uuid - 7B7E945E-A112-11D9-A5A2-000D93C8BE28 - - diff --git a/bundles/html.tmbundle/Preferences/Comments.plist b/bundles/html.tmbundle/Preferences/Comments.plist deleted file mode 100644 index ad25a4ec0..000000000 --- a/bundles/html.tmbundle/Preferences/Comments.plist +++ /dev/null @@ -1,30 +0,0 @@ - - - - - name - Comments - scope - text.html - settings - - shellVariables - - - name - TM_COMMENT_START - value - <!-- - - - name - TM_COMMENT_END - value - --> - - - - uuid - B79BDBCF-D0C9-468E-BE62-744074D7825F - - diff --git a/bundles/html.tmbundle/Preferences/Completions HTML Attributes.tmPreferences b/bundles/html.tmbundle/Preferences/Completions HTML Attributes.tmPreferences deleted file mode 100644 index ae59eeaf5..000000000 --- a/bundles/html.tmbundle/Preferences/Completions HTML Attributes.tmPreferences +++ /dev/null @@ -1,346 +0,0 @@ - - - - - name - Completions HTML Attributes - scope - text.html meta.tag -(entity.other.attribute-name | punctuation.definition.tag.begin | source | entity.name.tag | string | invalid.illegal.incomplete.html) - settings - - completions - - ABBR - abbr - ABOVE - above - ACCEPT - accept - ACCESSKEY - accesskey - ACTION - action - ALIGN - align - ALINK - alink - ALT - alt - ARCHIVE - archive - AUTOSTART - autostart - AXIS - axis - BACKGROUND - background - BALANCE - balance - BEHAVIOR - behavior - BELOW - below - BGCOLOR - bgcolor - BGPROPERTIES - bgproperties - BORDER - border - BORDERCOLOR - bordercolor - BORDERCOLORDARK - bordercolordark - BORDERCOLORLIGHT - bordercolorlight - BOTTOMMARGIN - bottommargin - CABBASE - cabbase - CELLPADDING - cellpadding - CELLSPACING - cellspacing - CHARSET - charset - CHECKED - checked - CITE - cite - CLASS - class - CLASSID - classid - CLEAR - clear - CLIP - clip - CODE - code - CODEBASE - codebase - CODETYPE - codetype - COLOR - color - COLS - cols - COLSPAN - colspan - COMPACT - compact - CONTENT - content - CONTROLS - controls - COORDS - coords - DATA - data - DATAPAGESIZE - datapagesize - DATETIME - datetime - DECLARE - declare - DEFER - defer - DELAY - delay - DIR - dir - DIRECTION - direction - DISABLED - disabled - DYNSRC - dynsrc - ENCTYPE - enctype - FACE - face - FOR - for - FRAME - frame - FRAMEBORDER - frameborder - FRAMESPACING - framespacing - GUTTER - gutter - HEADERS - headers - HEIGHT - height - HIDDEN - hidden - HREF - href - HREFLANG - hreflang - HSPACE - hspace - HTTP-EQUIV - http-equiv - ID - id - ISMAP - ismap - LABEL - label - LANG - lang - lang - language - LEFT - left - LEFTMARGIN - leftmargin - LINK - link - LONGDESC - longdesc - LOOP - loop - LOWSRC - lowsrc - MARGINHEIGHT - marginheight - MARGINWIDTH - marginwidth - MAXLENGTH - maxlength - MAYSCRIPT - mayscript - MEDIA - media - METHOD - method - MULTIPLE - multiple - NAME - name - NOEXTERNALDATA - noexternaldata - NORESIZE - noresize - NOSHADE - noshade - NOWRAP - nowrap - onBlur - onblur - onChange - onchange - onClick - onclick - onDblClick - ondblclick - onError - onerror - onFocus - onfocus - onKeyDown - onkeydown - onKeyPress - onkeypress - onKeyUp - onkeyup - onLoad - onload - onMouseDown - onmousedown - onMouseMove - onmousemove - onMouseOut - onmouseout - onMouseOver - onmouseover - onMouseUp - onmouseup - onReset - onreset - onResize - onresize - onSelect - onselect - onSubmit - onsubmit - onUnload - onunload - PAGEX - pagex - PAGEY - pagey - POINTSIZE - pointsize - READONLY - readonly - REL - rel - REV - rev - RIGHTMARGIN - rightmargin - ROWS - rows - ROWSPAN - rowspan - RULES - rules - runat - SCOPE - scope - SCROLLAMOUNT - scrollamount - SCROLLDELAY - scrolldelay - SCROLLING - scrolling - SELECTED - selected - SHAPE - shape - SIZE - size - SPAN - span - SRC - src - STANDBY - standby - START - start - STYLE - style - SUMMARY - summary - TABINDEX - tabindex - TARGET - target - TEXT - text - TITLE - title - TOP - top - TOPMARGIN - topmargin - TRUESPEED - truespeed - TYPE - type - USEMAP - usemap - VALIGN - valign - VALUE - value - VALUETYPE - valuetype - VISIBILITY - visibility - VLINK - vlink - VOLUME - volume - VSPACE - vspace - WIDTH - width - WRAP - wrap - xml:lang - xmlns - Z-INDEX - z-index - - disableDefaultCompletion - 1 - shellVariables - - - name - TM_COMPLETION_split - value - , - - - name - TM_COMPLETION_scope - value - html_attributes - - - name - TM_COMPLETIONS - value - <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="", - - - - uuid - 69BD9C8F-15C0-4F67-8B7E-64E48B5E9E71 - - diff --git a/bundles/html.tmbundle/Preferences/Empty tag typing pairs.plist b/bundles/html.tmbundle/Preferences/Empty tag typing pairs.plist deleted file mode 100644 index e1324da77..000000000 --- a/bundles/html.tmbundle/Preferences/Empty tag typing pairs.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - name - Typing Pairs: Empty Tag - scope - text.html invalid.illegal.incomplete - settings - - smartTypingPairs - - - ? - ? - - - % - % - - - - uuid - 6D6B631D-0D6C-413C-B4FA-1D535CBCE890 - - diff --git a/bundles/html.tmbundle/Preferences/Folding.tmPreferences b/bundles/html.tmbundle/Preferences/Folding.tmPreferences deleted file mode 100644 index 442944916..000000000 --- a/bundles/html.tmbundle/Preferences/Folding.tmPreferences +++ /dev/null @@ -1,35 +0,0 @@ - - - - - name - Folding - scope - text.html - settings - - foldingStartMarker - (?x) - (<(?i:head|body|table|thead|tbody|tfoot|tr|div|select|fieldset|style|script|ul|ol|li|form|dl|section|article|header|footer|nav|aside)\b.*?> - |<!--(?!.*--\s*>) - |^<!--\ \#tminclude\ (?>.*?-->)$ - |<\?(?:php)?.*\b(if|for(each)?|while)\b.+: - |\{\{?(if|foreach|capture|literal|foreach|php|section|strip) - |\{\s*($|\?>\s*$|//|/\*(.*\*/\s*$|(?!.*?\*/))) - |array\s?\(\s*$ - ) - foldingStopMarker - (?x) - (</(?i:head|body|table|thead|tbody|tfoot|tr|div|select|fieldset|style|script|ul|ol|li|form|dl|section|article|header|footer|nav|aside)> - |^(?!.*?<!--).*?--\s*> - |^<!--\ end\ tminclude\ -->$ - |<\?(?:php)?.*\bend(if|for(each)?|while)\b - |\{\{?/(if|foreach|capture|literal|foreach|php|section|strip) - |^[^{]*\} - |^\s*\)[,;] - ) - - uuid - 559D87E0-20C9-4424-AD7C-F3CDD315177C - - diff --git a/bundles/html.tmbundle/Preferences/Indent Corrections.tmPreferences b/bundles/html.tmbundle/Preferences/Indent Corrections.tmPreferences deleted file mode 100644 index 36e65d0e3..000000000 --- a/bundles/html.tmbundle/Preferences/Indent Corrections.tmPreferences +++ /dev/null @@ -1,19 +0,0 @@ - - - - - name - Indent Corrections - scope - text.html - settings - - disableIndentCorrections - - indentOnPaste - default - - uuid - B842F0A4-DB70-48CD-ACA7-CC3C760D4C0D - - diff --git a/bundles/html.tmbundle/Preferences/Miscellaneous.plist b/bundles/html.tmbundle/Preferences/Miscellaneous.plist deleted file mode 100644 index 751bee5f1..000000000 --- a/bundles/html.tmbundle/Preferences/Miscellaneous.plist +++ /dev/null @@ -1,93 +0,0 @@ - - - - - name - Miscellaneous - scope - text.html - settings - - decreaseIndentPattern - (?x) - ^\s* - (</(?!html) - [A-Za-z0-9]+\b[^>]*> - |--> - |<\?(php)?\s+(else(if)?|end(if|for(each)?|while)) - |\} - ) - highlightPairs - - - ( - ) - - - { - } - - - [ - ] - - - - - - - < - > - - - increaseIndentPattern - (?x) - <(?!\?|area|base|br|col|frame|hr|html|img|input|link|meta|param|[^>]*/>) - ([A-Za-z0-9]+)(?=\s|>)\b[^>]*>(?!.*</\1>) - |<!--(?!.*-->) - |<\?php.+?\b(if|else(?:if)?|for(?:each)?|while)\b.*:(?!.*end\1) - |\{[^}"']*$ - - indentNextLinePattern - <!DOCTYPE(?!.*>) - shellVariables - - - name - TM_HTML_EMPTY_TAGS - value - area|base|basefont|br|col|frame|hr|img|input|isindex|link|meta|param - - - smartTypingPairs - - - " - " - - - ( - ) - - - { - } - - - [ - ] - - - - - - - < - > - - - - uuid - FC34BE82-69DC-47B0-997A-37A8763D4E69 - - diff --git a/bundles/html.tmbundle/Preferences/Symbol List: ID.plist b/bundles/html.tmbundle/Preferences/Symbol List: ID.plist deleted file mode 100644 index d3cf92351..000000000 --- a/bundles/html.tmbundle/Preferences/Symbol List: ID.plist +++ /dev/null @@ -1,17 +0,0 @@ - - - - - name - Symbol List: ID - scope - text.html meta.toc-list.id.html - settings - - symbolTransformation - s/^/ID: / - - uuid - E7C5859E-122D-4382-84BE-5AB584DC2409 - - diff --git a/bundles/html.tmbundle/Preferences/Tag Completions.tmPreferences b/bundles/html.tmbundle/Preferences/Tag Completions.tmPreferences deleted file mode 100644 index aa35a4bc3..000000000 --- a/bundles/html.tmbundle/Preferences/Tag Completions.tmPreferences +++ /dev/null @@ -1,30 +0,0 @@ - - - - - name - Completions HTML Tags - scope - text.html -(meta.tag | source), invalid.illegal.incomplete.html -source - settings - - shellVariables - - - name - TM_COMPLETION_split - value - , - - - name - TM_COMPLETIONS - value - a,abbr,acronym,address,applet,area,article,aside,audio,b,base,basefont,bdo,big,blockquote,br,button,canvas,caption,center,cite,code,col,colgroup,dd,del,dfn,dir,div,dl,dt,em,fieldset,figcaption,figure,font,footer,form,frame,frameset,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,i,iframe,img,input,ins,isindex,kbd,label,legend,li,link,map,menu,meta,nav,noframes,noscript,object,ol,optgroup,option,p,param,pre,q,s,samp,script,section,select,small,span,strike,strong,style,sub,sup,table,tbody,td,textarea,tfoot,th,thead,time,title,tr,tt,u,ul,var,video - - - - uuid - 4720ADB8-DD17-4F97-A715-AFD72E22CE45 - - diff --git a/bundles/html.tmbundle/Preferences/Tag preferences.plist b/bundles/html.tmbundle/Preferences/Tag preferences.plist deleted file mode 100644 index 98f24bc52..000000000 --- a/bundles/html.tmbundle/Preferences/Tag preferences.plist +++ /dev/null @@ -1,48 +0,0 @@ - - - - - name - Tag Preferences - scope - meta.tag - settings - - smartTypingPairs - - - " - " - - - ( - ) - - - { - } - - - [ - ] - - - - - - - < - > - - - ' - ' - - - spellChecking - 0 - - uuid - 73251DBE-EBD2-470F-8148-E6F2EC1A9641 - - diff --git a/bundles/html.tmbundle/README.mdown b/bundles/html.tmbundle/README.mdown deleted file mode 100644 index 32d8f85a4..000000000 --- a/bundles/html.tmbundle/README.mdown +++ /dev/null @@ -1,20 +0,0 @@ -# Installation - -You can install this bundle in TextMate by opening the preferences and going to the bundles tab. After installation it will be automatically updated for you. - -# General - -* [Bundle Styleguide](http://kb.textmate.org/bundle_styleguide) — _before you make changes_ -* [Commit Styleguide](http://kb.textmate.org/commit_styleguide) — _before you send a pull request_ -* [Writing Bug Reports](http://kb.textmate.org/writing_bug_reports) — _before you report an issue_ - -# License - -If not otherwise specified (see below), files in this repository fall under the following license: - - Permission to copy, use, modify, sell and distribute this - software is granted. This software is provided "as is" without - express or implied warranty, and with no claim as to its - suitability for any purpose. - -An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”. \ No newline at end of file diff --git a/bundles/html.tmbundle/Snippets/Arrow (arrow).plist b/bundles/html.tmbundle/Snippets/Arrow (arrow).plist deleted file mode 100644 index ec1abe29c..000000000 --- a/bundles/html.tmbundle/Snippets/Arrow (arrow).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - &#x2192; - name - - scope - text.html - tabTrigger - arrow - uuid - AC15621A-8A16-40DD-A671-EA4C37637215 - - diff --git a/bundles/html.tmbundle/Snippets/Backspace (backspace).plist b/bundles/html.tmbundle/Snippets/Backspace (backspace).plist deleted file mode 100644 index fb543c1fb..000000000 --- a/bundles/html.tmbundle/Snippets/Backspace (backspace).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - &#x232B; - name - - scope - text.html - tabTrigger - backspace - uuid - 38E50882-27AF-4246-A039-355C3E1A699E - - diff --git a/bundles/html.tmbundle/Snippets/Backtab (backtab).plist b/bundles/html.tmbundle/Snippets/Backtab (backtab).plist deleted file mode 100644 index b8c6293c5..000000000 --- a/bundles/html.tmbundle/Snippets/Backtab (backtab).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - &#x21E4; - name - - scope - text.html - tabTrigger - backtab - uuid - 7F102705-27D8-4029-BF61-2F042FB61E06 - - diff --git a/bundles/html.tmbundle/Snippets/Command (command).plist b/bundles/html.tmbundle/Snippets/Command (command).plist deleted file mode 100644 index 593b01c14..000000000 --- a/bundles/html.tmbundle/Snippets/Command (command).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - &#x2318; - name - - scope - text.html - tabTrigger - command - uuid - 7214ACD1-93D9-4D3F-A428-8A7302E0A35E - - diff --git a/bundles/html.tmbundle/Snippets/Control (control).plist b/bundles/html.tmbundle/Snippets/Control (control).plist deleted file mode 100644 index 7ba800565..000000000 --- a/bundles/html.tmbundle/Snippets/Control (control).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - &#x2303; - name - - scope - text.html - tabTrigger - control - uuid - B4987DA5-9C2F-4D2D-AC14-678115079205 - - diff --git a/bundles/html.tmbundle/Snippets/Delete (delete).plist b/bundles/html.tmbundle/Snippets/Delete (delete).plist deleted file mode 100644 index 4956c9a1f..000000000 --- a/bundles/html.tmbundle/Snippets/Delete (delete).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - &#x2326; - name - - scope - text.html - tabTrigger - delete - uuid - 44E448B6-37CE-4BFE-8611-C5113593B74B - - diff --git a/bundles/html.tmbundle/Snippets/DocType HTML 4.0 Strict.plist b/bundles/html.tmbundle/Snippets/DocType HTML 4.0 Strict.plist deleted file mode 100644 index 87d86e6ce..000000000 --- a/bundles/html.tmbundle/Snippets/DocType HTML 4.0 Strict.plist +++ /dev/null @@ -1,18 +0,0 @@ - - - - - content - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" - "http://www.w3.org/TR/html4/strict.dtd"> - - name - HTML — 4.01 Strict - scope - text.html - tabTrigger - doctype - uuid - 944F1410-188C-4D70-8340-CECAA56FC7F2 - - diff --git a/bundles/html.tmbundle/Snippets/DocType HTML 5.plist b/bundles/html.tmbundle/Snippets/DocType HTML 5.plist deleted file mode 100644 index 50f4d9096..000000000 --- a/bundles/html.tmbundle/Snippets/DocType HTML 5.plist +++ /dev/null @@ -1,17 +0,0 @@ - - - - - content - <!DOCTYPE html> - - name - HTML — 5 - scope - text.html - tabTrigger - doctype - uuid - 08E4F47C-A570-4F9B-A6AE-DCAC0D2E2420 - - diff --git a/bundles/html.tmbundle/Snippets/DocType XHTL 1.0 Frameset.plist b/bundles/html.tmbundle/Snippets/DocType XHTL 1.0 Frameset.plist deleted file mode 100644 index f343c304c..000000000 --- a/bundles/html.tmbundle/Snippets/DocType XHTL 1.0 Frameset.plist +++ /dev/null @@ -1,18 +0,0 @@ - - - - - content - <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> - - name - XHTML — 1.0 Frameset - scope - text.html - tabTrigger - doctype - uuid - 9ED6ABBE-A802-11D9-BFC8-000D93C8BE28 - - diff --git a/bundles/html.tmbundle/Snippets/DocType XHTML 1.0 Strict.plist b/bundles/html.tmbundle/Snippets/DocType XHTML 1.0 Strict.plist deleted file mode 100644 index a39e4886b..000000000 --- a/bundles/html.tmbundle/Snippets/DocType XHTML 1.0 Strict.plist +++ /dev/null @@ -1,18 +0,0 @@ - - - - - content - <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - - name - XHTML — 1.0 Strict - scope - text.html - tabTrigger - doctype - uuid - C8B83564-A802-11D9-BFC8-000D93C8BE28 - - diff --git a/bundles/html.tmbundle/Snippets/DocType XHTML 1.0 Transitional.plist b/bundles/html.tmbundle/Snippets/DocType XHTML 1.0 Transitional.plist deleted file mode 100644 index ce850fa02..000000000 --- a/bundles/html.tmbundle/Snippets/DocType XHTML 1.0 Transitional.plist +++ /dev/null @@ -1,18 +0,0 @@ - - - - - content - <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - - name - XHTML — 1.0 Transitional - scope - text.html - tabTrigger - doctype - uuid - 7D8C2F74-A802-11D9-BFC8-000D93C8BE28 - - diff --git a/bundles/html.tmbundle/Snippets/DocType XHTML 1.1.plist b/bundles/html.tmbundle/Snippets/DocType XHTML 1.1.plist deleted file mode 100644 index 850eec593..000000000 --- a/bundles/html.tmbundle/Snippets/DocType XHTML 1.1.plist +++ /dev/null @@ -1,18 +0,0 @@ - - - - - content - <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" - "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> - - name - XHTML — 1.1 - scope - text.html - tabTrigger - doctype - uuid - 5CE8FC6E-A802-11D9-BFC8-000D93C8BE28 - - diff --git a/bundles/html.tmbundle/Snippets/Down (down).plist b/bundles/html.tmbundle/Snippets/Down (down).plist deleted file mode 100644 index 5370e3e2e..000000000 --- a/bundles/html.tmbundle/Snippets/Down (down).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - &#x2193; - name - - scope - text.html - tabTrigger - down - uuid - 35654B4E-2D76-4CD3-8FBB-2DA1F314BA19 - - diff --git a/bundles/html.tmbundle/Snippets/Embed QT movie (movie).plist b/bundles/html.tmbundle/Snippets/Embed QT movie (movie).plist deleted file mode 100644 index e9e2de213..000000000 --- a/bundles/html.tmbundle/Snippets/Embed QT movie (movie).plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - content - <object width="$2" height="$3" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab"> - <param name="src" value="$1"${TM_XHTML}> - <param name="controller" value="$4"${TM_XHTML}> - <param name="autoplay" value="$5"${TM_XHTML}> - <embed src="${1:movie.mov}" - width="${2:320}" height="${3:240}" - controller="${4:true}" autoplay="${5:true}" - scale="tofit" cache="true" - pluginspage="http://www.apple.com/quicktime/download/" - ${TM_XHTML}> -</object> - name - Embed QT Movie - scope - text.html - tabTrigger - movie - uuid - 42F15753-9B6D-4DD8-984C-807B94363277 - - diff --git a/bundles/html.tmbundle/Snippets/Emphasize.tmSnippet b/bundles/html.tmbundle/Snippets/Emphasize.tmSnippet deleted file mode 100644 index 1d7faf76c..000000000 --- a/bundles/html.tmbundle/Snippets/Emphasize.tmSnippet +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - ${0:${TM_SELECTED_TEXT/\A<em>(.*)<\/em>\z|.*/(?1:$1:<em>$0</em>)/m}} - keyEquivalent - @i - name - Emphasize - scope - text.html - uuid - EBB98620-3292-4621-BA38-D8A9A65D9551 - - diff --git a/bundles/html.tmbundle/Snippets/Enter (enter).plist b/bundles/html.tmbundle/Snippets/Enter (enter).plist deleted file mode 100644 index d94bd0ea1..000000000 --- a/bundles/html.tmbundle/Snippets/Enter (enter).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - &#x2305; - name - - scope - text.html - tabTrigger - enter - uuid - 7062316B-4236-4793-AD35-05E4A6577393 - - diff --git a/bundles/html.tmbundle/Snippets/Escape (escape).plist b/bundles/html.tmbundle/Snippets/Escape (escape).plist deleted file mode 100644 index 85967b0eb..000000000 --- a/bundles/html.tmbundle/Snippets/Escape (escape).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - &#x238B; - name - - scope - text.html - tabTrigger - escape - uuid - D7CC7C7C-CD01-4357-AF91-AEFFD914DF98 - - diff --git a/bundles/html.tmbundle/Snippets/Fieldset.tmSnippet b/bundles/html.tmbundle/Snippets/Fieldset.tmSnippet deleted file mode 100644 index b2fdbc8a7..000000000 --- a/bundles/html.tmbundle/Snippets/Fieldset.tmSnippet +++ /dev/null @@ -1,22 +0,0 @@ - - - - - bundleUUID - 4676FC6D-6227-11D9-BFB1-000D93589AF6 - content - <fieldset id="${1/[[:alpha:]]+|( )/(?1:_:\L$0)/g}" ${2:class="${3:}"}> - <legend>${1:$TM_SELECTED_TEXT}</legend> - - $0 -</fieldset> - name - Fieldset - scope - text.html - tabTrigger - fieldset - uuid - 9BD2BE01-A854-4D55-B584-725D04C075C0 - - diff --git a/bundles/html.tmbundle/Snippets/HTML — 4.0 Transitional (doctype).plist b/bundles/html.tmbundle/Snippets/HTML — 4.0 Transitional (doctype).plist deleted file mode 100644 index 559854642..000000000 --- a/bundles/html.tmbundle/Snippets/HTML — 4.0 Transitional (doctype).plist +++ /dev/null @@ -1,18 +0,0 @@ - - - - - content - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" - "http://www.w3.org/TR/html4/loose.dtd"> - - name - HTML — 4.01 Transitional - scope - text.html - tabTrigger - doctype - uuid - B2AAEE56-42D8-42C3-8F67-865473F50E8D - - diff --git a/bundles/html.tmbundle/Snippets/IE Conditional Comment: Internet Explorer 5_0 only.tmSnippet b/bundles/html.tmbundle/Snippets/IE Conditional Comment: Internet Explorer 5_0 only.tmSnippet deleted file mode 100644 index 53c2ffab1..000000000 --- a/bundles/html.tmbundle/Snippets/IE Conditional Comment: Internet Explorer 5_0 only.tmSnippet +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - <!--[if IE 5.0]>${1:${TM_SELECTED_TEXT: IE Conditional Comment: Internet Explorer 5.0 only }}<![endif]-->$0 - name - IE Conditional Comment: Internet Explorer 5.0 only - scope - text.html - tabTrigger - ! - uuid - 3A517A94-001E-464D-8184-1FE56D0D0D70 - - diff --git a/bundles/html.tmbundle/Snippets/IE Conditional Comment: Internet Explorer 5_5 only.tmSnippet b/bundles/html.tmbundle/Snippets/IE Conditional Comment: Internet Explorer 5_5 only.tmSnippet deleted file mode 100644 index 67f0c949f..000000000 --- a/bundles/html.tmbundle/Snippets/IE Conditional Comment: Internet Explorer 5_5 only.tmSnippet +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - <!--[if IE 5.5000]>${1:${TM_SELECTED_TEXT: IE Conditional Comment: Internet Explorer 5.5 only }}<![endif]-->$0 - name - IE Conditional Comment: Internet Explorer 5.5 only - scope - text.html - tabTrigger - ! - uuid - E3F8984E-7269-4981-9D30-967AB56A6ACE - - diff --git a/bundles/html.tmbundle/Snippets/IE Conditional Comment: Internet Explorer 5_x.tmSnippet b/bundles/html.tmbundle/Snippets/IE Conditional Comment: Internet Explorer 5_x.tmSnippet deleted file mode 100644 index b4857574a..000000000 --- a/bundles/html.tmbundle/Snippets/IE Conditional Comment: Internet Explorer 5_x.tmSnippet +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - <!--[if lt IE 6]>${1:${TM_SELECTED_TEXT: IE Conditional Comment: Internet Explorer 5.x }}<![endif]-->$0 - name - IE Conditional Comment: Internet Explorer 5.x - scope - text.html - tabTrigger - ! - uuid - F3512848-7889-45DA-993B-0547976C8E6D - - diff --git a/bundles/html.tmbundle/Snippets/IE Conditional Comment: Internet Explorer 6 and below.tmSnippet b/bundles/html.tmbundle/Snippets/IE Conditional Comment: Internet Explorer 6 and below.tmSnippet deleted file mode 100644 index b2a8b7c4b..000000000 --- a/bundles/html.tmbundle/Snippets/IE Conditional Comment: Internet Explorer 6 and below.tmSnippet +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - <!--[if lte IE 6]>${1:${TM_SELECTED_TEXT: IE Conditional Comment: Internet Explorer 6 and below }}<![endif]-->$0 - name - IE Conditional Comment: Internet Explorer 6 and below - scope - text.html - tabTrigger - ! - uuid - 32BBB9AB-8732-4F91-A587-354941A27B69 - - diff --git a/bundles/html.tmbundle/Snippets/IE Conditional Comment: Internet Explorer 6 only.tmSnippet b/bundles/html.tmbundle/Snippets/IE Conditional Comment: Internet Explorer 6 only.tmSnippet deleted file mode 100644 index 6255f7ce1..000000000 --- a/bundles/html.tmbundle/Snippets/IE Conditional Comment: Internet Explorer 6 only.tmSnippet +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - <!--[if IE 6]>${1:${TM_SELECTED_TEXT: IE Conditional Comment: Internet Explorer 6 only }}<![endif]-->$0 - name - IE Conditional Comment: Internet Explorer 6 only - scope - text.html - tabTrigger - ! - uuid - 48DF7485-52EA-49B3-88AF-3A41F933F325 - - diff --git a/bundles/html.tmbundle/Snippets/IE Conditional Comment: Internet Explorer 7+.tmSnippet b/bundles/html.tmbundle/Snippets/IE Conditional Comment: Internet Explorer 7+.tmSnippet deleted file mode 100644 index 4d0d91c37..000000000 --- a/bundles/html.tmbundle/Snippets/IE Conditional Comment: Internet Explorer 7+.tmSnippet +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - <!--[if gte IE 7]>${1:${TM_SELECTED_TEXT: IE Conditional Comment: Internet Explorer 7 and above }}<![endif]-->$0 - name - IE Conditional Comment: Internet Explorer 7 and above - scope - text.html - tabTrigger - ! - uuid - CBC24AF4-88E0-498B-BE50-934B9CF29EC7 - - diff --git a/bundles/html.tmbundle/Snippets/IE Conditional Comment: Internet Explorer.tmSnippet b/bundles/html.tmbundle/Snippets/IE Conditional Comment: Internet Explorer.tmSnippet deleted file mode 100644 index c71a122b8..000000000 --- a/bundles/html.tmbundle/Snippets/IE Conditional Comment: Internet Explorer.tmSnippet +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - <!--[if IE]>${1:${TM_SELECTED_TEXT: IE Conditional Comment: Internet Explorer }}<![endif]-->$0 - name - IE Conditional Comment: Internet Explorer - scope - text.html - tabTrigger - ! - uuid - 0ED6DA73-F38F-4A65-B18F-3379D2BA9387 - - diff --git a/bundles/html.tmbundle/Snippets/IE Conditional Comment: NOT Internet Explorer.tmSnippet b/bundles/html.tmbundle/Snippets/IE Conditional Comment: NOT Internet Explorer.tmSnippet deleted file mode 100644 index 7e90f502a..000000000 --- a/bundles/html.tmbundle/Snippets/IE Conditional Comment: NOT Internet Explorer.tmSnippet +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - <!--[if !IE]><!-->${1:${TM_SELECTED_TEXT: IE Conditional Comment: NOT Internet Explorer }}<!-- <![endif]-->$0 - name - IE Conditional Comment: NOT Internet Explorer - scope - text.html - tabTrigger - ! - uuid - F00170EE-4A82-413F-A88B-85293E69A88B - - diff --git a/bundles/html.tmbundle/Snippets/Input with Label.tmSnippet b/bundles/html.tmbundle/Snippets/Input with Label.tmSnippet deleted file mode 100644 index ccd264db3..000000000 --- a/bundles/html.tmbundle/Snippets/Input with Label.tmSnippet +++ /dev/null @@ -1,19 +0,0 @@ - - - - - bundleUUID - 4676FC6D-6227-11D9-BFB1-000D93589AF6 - content - <label for="${2:${1/[[:alpha:]]+|( )/(?1:_:\L$0)/g}}">$1</label><input type="${3|text,submit,hidden,button|}" name="${4:$2}" value="$5"${6: id="${7:$2}"}${TM_XHTML}> - - name - Input with Label - scope - text.html - tabTrigger - input - uuid - D8DCCC81-749A-4E2A-B4BC-D109D5799CAA - - diff --git a/bundles/html.tmbundle/Snippets/Left (left).plist b/bundles/html.tmbundle/Snippets/Left (left).plist deleted file mode 100644 index 394c06e15..000000000 --- a/bundles/html.tmbundle/Snippets/Left (left).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - &#x2190; - name - - scope - text.html - tabTrigger - left - uuid - C0418A4A-7E42-4D49-8F86-6E339296CB84 - - diff --git a/bundles/html.tmbundle/Snippets/Option (option).plist b/bundles/html.tmbundle/Snippets/Option (option).plist deleted file mode 100644 index d146262f8..000000000 --- a/bundles/html.tmbundle/Snippets/Option (option).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - &#x2325; - name - - scope - text.html - tabTrigger - option - uuid - 980A8D39-CA8B-4EC2-9739-DC36A262F28E - - diff --git a/bundles/html.tmbundle/Snippets/Option.tmSnippet b/bundles/html.tmbundle/Snippets/Option.tmSnippet deleted file mode 100644 index ef5ca0ef9..000000000 --- a/bundles/html.tmbundle/Snippets/Option.tmSnippet +++ /dev/null @@ -1,18 +0,0 @@ - - - - - bundleUUID - 4676FC6D-6227-11D9-BFB1-000D93589AF6 - content - <option${1: value="${2:option}"}>${3:$2}</option> - name - Option - scope - text.html - tabTrigger - opt - uuid - 5820372E-A093-4F38-B25C-B0CCC50A0FC4 - - diff --git a/bundles/html.tmbundle/Snippets/Return (return).plist b/bundles/html.tmbundle/Snippets/Return (return).plist deleted file mode 100644 index acc6255bf..000000000 --- a/bundles/html.tmbundle/Snippets/Return (return).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - &#x21A9; - name - - scope - text.html - tabTrigger - return - uuid - 9B216475-D73D-4518-851F-CACD0066A909 - - diff --git a/bundles/html.tmbundle/Snippets/Right (right).plist b/bundles/html.tmbundle/Snippets/Right (right).plist deleted file mode 100644 index bc07f0d03..000000000 --- a/bundles/html.tmbundle/Snippets/Right (right).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - &#x2192; - name - - scope - text.html - tabTrigger - right - uuid - C70BB693-0954-4440-AEB4-F2ADD6D923F0 - - diff --git a/bundles/html.tmbundle/Snippets/Select Box.tmSnippet b/bundles/html.tmbundle/Snippets/Select Box.tmSnippet deleted file mode 100644 index f86f34731..000000000 --- a/bundles/html.tmbundle/Snippets/Select Box.tmSnippet +++ /dev/null @@ -1,22 +0,0 @@ - - - - - bundleUUID - 4676FC6D-6227-11D9-BFB1-000D93589AF6 - content - <select name="${1:some_name}" id="${2:$1}"${3:${4: multiple}${5: onchange="${6:}"}${7: size="${8:1}"}}> - <option${9: value="${10:option1}"}>${11:$10}</option> - <option${12: value="${13:option2}"}>${14:$13}</option>${15:} - $0 -</select> - name - Select Box - scope - text.html - tabTrigger - select - uuid - 26023CFF-C73F-4EF5-9803-E4DBA2CBEADD - - diff --git a/bundles/html.tmbundle/Snippets/Shift (shift).plist b/bundles/html.tmbundle/Snippets/Shift (shift).plist deleted file mode 100644 index 1c1d783f7..000000000 --- a/bundles/html.tmbundle/Snippets/Shift (shift).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - &#x21E7; - name - - scope - text.html - tabTrigger - shift - uuid - 1B8D58B9-D9DB-484C-AACD-5D5DF5385308 - - diff --git a/bundles/html.tmbundle/Snippets/Smart return:indent for tag pairs.plist b/bundles/html.tmbundle/Snippets/Smart return:indent for tag pairs.plist deleted file mode 100644 index d819f1e4d..000000000 --- a/bundles/html.tmbundle/Snippets/Smart return:indent for tag pairs.plist +++ /dev/null @@ -1,18 +0,0 @@ - - - - - content - - $0 - - keyEquivalent - - name - Special: Return Inside Empty Open/Close Tags - scope - meta.scope.between-tag-pair - uuid - 3C44EABE-8D6F-4B1B-AB91-F419FAD1A0AD - - diff --git a/bundles/html.tmbundle/Snippets/Strong.tmSnippet b/bundles/html.tmbundle/Snippets/Strong.tmSnippet deleted file mode 100644 index a78b78257..000000000 --- a/bundles/html.tmbundle/Snippets/Strong.tmSnippet +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - ${0:${TM_SELECTED_TEXT/\A<strong>(.*)<\/strong>\z|.*/(?1:$1:<strong>$0</strong>)/m}} - keyEquivalent - @b - name - Strong - scope - text.html - uuid - 4117D930-B6FA-4022-97E7-ECCAF4E70F63 - - diff --git a/bundles/html.tmbundle/Snippets/Tab (tab).plist b/bundles/html.tmbundle/Snippets/Tab (tab).plist deleted file mode 100644 index 0f0098a29..000000000 --- a/bundles/html.tmbundle/Snippets/Tab (tab).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - &#x21E5; - name - - scope - text.html - tabTrigger - tab - uuid - ADC78A82-40C2-4AAC-8968-93AF0ED98DF0 - - diff --git a/bundles/html.tmbundle/Snippets/Up (up).plist b/bundles/html.tmbundle/Snippets/Up (up).plist deleted file mode 100644 index df5066279..000000000 --- a/bundles/html.tmbundle/Snippets/Up (up).plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - &#x2191; - name - - scope - text.html - tabTrigger - up - uuid - 0E2F4A47-EADE-4A05-931E-FC874FA28FC3 - - diff --git a/bundles/html.tmbundle/Snippets/Wrap Selection In Tag.plist b/bundles/html.tmbundle/Snippets/Wrap Selection In Tag.plist deleted file mode 100644 index 3dead5d23..000000000 --- a/bundles/html.tmbundle/Snippets/Wrap Selection In Tag.plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - <${1:p}>$TM_SELECTED_TEXT</${1/\s.*//}> - keyEquivalent - ^W - name - Wrap Selection in Open/Close Tag - scope - text.html, - uuid - BC8B8AE2-5F16-11D9-B9C3-000D93589AF6 - - diff --git a/bundles/html.tmbundle/Snippets/Wrap in .plist b/bundles/html.tmbundle/Snippets/Wrap in .plist deleted file mode 100644 index 7619e51c3..000000000 --- a/bundles/html.tmbundle/Snippets/Wrap in .plist +++ /dev/null @@ -1,14 +0,0 @@ - - - - - content - <?= $TM_SELECTED_TEXT ?> - name - Wrap in <?= … ?> - scope - text.html string - uuid - 912906A0-9A29-434B-AE98-E9DFDE6E48B4 - - diff --git a/bundles/html.tmbundle/Snippets/XHTML .plist b/bundles/html.tmbundle/Snippets/XHTML .plist deleted file mode 100644 index ddcfc8081..000000000 --- a/bundles/html.tmbundle/Snippets/XHTML .plist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - content - <input type="${1|text,submit,hidden,button|}" name="${2:some_name}" value="$3"${4: id="${5:$2}"}${TM_XHTML}> - name - Input - scope - text.html - tabTrigger - input - uuid - 44180979-A08E-11D9-A5A2-000D93C8BE28 - - diff --git a/bundles/html.tmbundle/Snippets/XHTML