commit d169b775178d7974a4bcc37937342573f15be809 Author: Yann Date: Thu Jul 30 20:34:08 2009 -0400 first commit diff --git a/Commands/clean text +

.tmCommand b/Commands/clean text +

.tmCommand new file mode 100644 index 0000000..1a2b45c --- /dev/null +++ b/Commands/clean text +

.tmCommand @@ -0,0 +1,29 @@ + + + + + beforeRunningCommand + nop + command + #!/usr/bin/env ruby +txt = STDIN.read +txt = txt.gsub(/\n+/, "++dabreak++").gsub(/[  ]/, "").gsub(/\s+/, " ") +txt = txt.split('++dabreak++').collect do |line| + puts "<p>#{line}</p>" +end + fallbackInput + none + input + selection + keyEquivalent + ^@c + name + clean text + <p> + output + replaceSelectedText + scope + text.html + uuid + 581FECF3-E833-45B5-9C6F-3FE87824DD81 + + diff --git a/Commands/navbar + title.tmCommand b/Commands/navbar + title.tmCommand new file mode 100644 index 0000000..8a76fec --- /dev/null +++ b/Commands/navbar + title.tmCommand @@ -0,0 +1,31 @@ + + + + + beforeRunningCommand + nop + command + #!/usr/bin/env ruby +sections = STDIN.readlines +puts "<ol>" +sections.each do |s| + section = s.gsub(/\n/,'') + css_class = section.gsub(/ /, '_').gsub(/[\W\n]/, '').downcase + url = css_class.gsub('_', '-') + puts "\t<li class=\"#{css_class}\" title=\"Got to the #{section} section\"><a href=\"#{url}.php\">#{section}</a></li>" +end +puts "</ol>" + input + selection + keyEquivalent + ^~@N + name + navbar + title + output + replaceSelectedText + scope + text.html + uuid + 52A2EA44-4931-4E1A-987A-C4082A74CC31 + + diff --git a/Commands/navbar.tmCommand b/Commands/navbar.tmCommand new file mode 100644 index 0000000..72403db --- /dev/null +++ b/Commands/navbar.tmCommand @@ -0,0 +1,33 @@ + + + + + beforeRunningCommand + nop + command + #!/usr/bin/env ruby +sections = STDIN.readlines +puts "<ol>" +sections.each do |s| + section = s.gsub(/\n/,'') + css_class = section.gsub(/ /, '_').gsub(/[\W\n]/, '').downcase + url = css_class.gsub('_', '-') + puts "\t<li class=\"#{css_class}\"><a href=\"#{url}.php\">#{section}</a></li>" +end +puts "</ol>" + fallbackInput + none + input + selection + keyEquivalent + ^~@N + name + navbar + output + replaceSelectedText + scope + text.html + uuid + B376B24A-6E17-4817-A181-BCCCB45CDB45 + + diff --git a/Commands/tabs -> table (th left).tmCommand b/Commands/tabs -> table (th left).tmCommand new file mode 100644 index 0000000..f972e4c --- /dev/null +++ b/Commands/tabs -> table (th left).tmCommand @@ -0,0 +1,33 @@ + + + + + beforeRunningCommand + nop + command + #!/usr/bin/env ruby +table = STDIN.readlines +table = table.collect { |row| row.gsub(/\n/, '').split(/\t+/) } +puts "<table>" +table.each do |row| + print "\t<tr>" + row.each_with_index do |cell, index| + print index == 0 ? "<th>#{cell}</th>" : "<td>#{cell}</td>" + end + print "</tr>\n" +end +puts "</table>" + input + selection + keyEquivalent + ^~@T + name + tabs -> table (th left) + output + replaceSelectedText + scope + text.html + uuid + AC460DE9-5703-4FDA-8729-D635BD3F50B3 + + diff --git a/Commands/tabs -> table (th top).tmCommand b/Commands/tabs -> table (th top).tmCommand new file mode 100644 index 0000000..3dddb0c --- /dev/null +++ b/Commands/tabs -> table (th top).tmCommand @@ -0,0 +1,35 @@ + + + + + beforeRunningCommand + nop + command + #!/usr/bin/env ruby +table = STDIN.readlines +table = table.collect { |row| row.gsub(/\n/, '').split(/\t+/) } +puts "<table>" +table.each_with_index do |row, index| + print "\t<tr>" + if index == 0 + row.each { |cell| print "<th>#{cell}</th>" } + else + row.each { |cell| print "<td>#{cell}</td>" } + end + print "</tr>\n" +end +puts "</table>" + input + selection + keyEquivalent + ^~@T + name + tabs -> table (th top) + output + replaceSelectedText + scope + text.html + uuid + 479101F9-D223-422E-927D-97E97BAC326F + + diff --git a/Commands/tabs -> table.tmCommand b/Commands/tabs -> table.tmCommand new file mode 100644 index 0000000..209fc97 --- /dev/null +++ b/Commands/tabs -> table.tmCommand @@ -0,0 +1,31 @@ + + + + + beforeRunningCommand + nop + command + #!/usr/bin/env ruby +table = STDIN.readlines +table = table.collect { |row| row.gsub(/\n/, '').split(/\t+/) } +puts "<table>" +table.each do |row| + print "\t<tr>" + row.each { |cell| print "<td>#{cell}</td>" } + print "</tr>\n" +end +puts "</table>" + input + selection + keyEquivalent + ^~@T + name + tabs -> table + output + replaceSelectedText + scope + text.html + uuid + 8B7C5284-8665-408A-9EA5-469503B7EE54 + + diff --git a/DragCommands/Insert Image Path.tmDragCommand b/DragCommands/Insert Image Path.tmDragCommand new file mode 100644 index 0000000..6f95917 --- /dev/null +++ b/DragCommands/Insert Image Path.tmDragCommand @@ -0,0 +1,27 @@ + + + + + bundleUUID + 99BA94C1-0202-4A79-BBF5-A9279B16E2A6 + command + img="$TM_DROPPED_FILE" +echo -n $img + + draggedFileExtensions + + png + jpeg + jpg + gif + + name + Insert Image Path + output + insertAsSnippet + scope + text.html + uuid + 8C3B4AE6-7DDE-4B71-B8DE-187CDD609F66 + + diff --git a/README b/README new file mode 100644 index 0000000..e69de29 diff --git a/Snippets/a (link) short.tmSnippet b/Snippets/a (link) short.tmSnippet new file mode 100644 index 0000000..34af464 --- /dev/null +++ b/Snippets/a (link) short.tmSnippet @@ -0,0 +1,20 @@ + + + + + bundleUUID + 4676FC6D-6227-11D9-BFB1-000D93589AF6 + content + <a href="${1:#}">${2:$TM_SELECTED_TEXT}</a>$0 + keyEquivalent + ^@a + name + a (link) short + scope + text.html + tabTrigger + a + uuid + 4366E3CB-1B3A-43B2-B32C-EC99707B6B3C + + diff --git a/Snippets/a (link).tmSnippet b/Snippets/a (link).tmSnippet new file mode 100644 index 0000000..4596b84 --- /dev/null +++ b/Snippets/a (link).tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <a href="${1:$TM_SELECTED_TEXT}" title="${2:$TM_SELECTED_TEXT}">${3:$TM_SELECTED_TEXT}</a>$0 + keyEquivalent + ^@a + name + a (link) + scope + text.html + tabTrigger + a + uuid + 21093360-77A2-4C7D-829B-64DCEA24B5AD + + diff --git a/Snippets/a (word).tmSnippet b/Snippets/a (word).tmSnippet new file mode 100644 index 0000000..ddf0888 --- /dev/null +++ b/Snippets/a (word).tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <a href="http://${1:www.}${2:$TM_SELECTED_TEXT}${3:.com}" title="${4:}">${5:$TM_SELECTED_TEXT}</a>$0 + keyEquivalent + ^@a + name + a (word) + scope + text.html + tabTrigger + a + uuid + 6F65C3BF-237E-4B28-8AE3-792BBC905902 + + diff --git a/Snippets/a mailto.tmSnippet b/Snippets/a mailto.tmSnippet new file mode 100644 index 0000000..a8e1ea9 --- /dev/null +++ b/Snippets/a mailto.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <a href="mailto:${1:$TM_SELECTED_TEXT}${2:?subject=${3:feedback}}">${4:$TM_SELECTED_TEXT}</a>$0 + keyEquivalent + ^@a + name + a mailto + scope + text.html + tabTrigger + a + uuid + 81DA4C74-A530-11D9-9BCD-000D93C8BE28 + + diff --git a/Snippets/abbr copy.tmSnippet b/Snippets/abbr copy.tmSnippet new file mode 100644 index 0000000..cfe0747 --- /dev/null +++ b/Snippets/abbr copy.tmSnippet @@ -0,0 +1,16 @@ + + + + + content + <abbr${1: title="${2:name}"}>${3:$TM_SELECTED_TEXT}</abbr>$0 + name + abbr copy + scope + text.html + tabTrigger + abbr + uuid + EA08E6D4-9432-491D-9D0C-9366B40DF797 + + diff --git a/Snippets/abbr.tmSnippet b/Snippets/abbr.tmSnippet new file mode 100644 index 0000000..ec876df --- /dev/null +++ b/Snippets/abbr.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <abbr${1: title="${2:name}"}>${3:$TM_SELECTED_TEXT}</abbr>$0 + keyEquivalent + ^@p + name + abbr + scope + text.html + tabTrigger + abb + uuid + 1E56094F-C4FE-4D73-B312-866D8E4C2278 + + diff --git a/Snippets/acronym.tmSnippet b/Snippets/acronym.tmSnippet new file mode 100644 index 0000000..73697d0 --- /dev/null +++ b/Snippets/acronym.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <acronym${1: title="${2:name}"}>${3:$TM_SELECTED_TEXT}</acronym>$0 + keyEquivalent + ^@p + name + acronym + scope + text.html + tabTrigger + acr + uuid + 30EB469D-BF1F-4B89-B68F-9A4B4714EA2D + + diff --git a/Snippets/address.tmSnippet b/Snippets/address.tmSnippet new file mode 100644 index 0000000..9fbc97c --- /dev/null +++ b/Snippets/address.tmSnippet @@ -0,0 +1,20 @@ + + + + + content + <address> + ${1:$TM_SELECTED_TEXT} +</address>$0 + keyEquivalent + ^@b + name + address + scope + text.html + tabTrigger + add + uuid + E4B833B2-79A8-4CA0-A451-38A48318547B + + diff --git a/Snippets/blockquote.tmSnippet b/Snippets/blockquote.tmSnippet new file mode 100644 index 0000000..644907e --- /dev/null +++ b/Snippets/blockquote.tmSnippet @@ -0,0 +1,20 @@ + + + + + content + <blockquote> + ${1:$TM_SELECTED_TEXT} +</blockquote>$0 + keyEquivalent + ^@b + name + blockquote + scope + text.html + tabTrigger + blo + uuid + 4A632141-DBE8-4D33-8D8E-76C2568D9D56 + + diff --git a/Snippets/br.tmSnippet b/Snippets/br.tmSnippet new file mode 100644 index 0000000..9184c5e --- /dev/null +++ b/Snippets/br.tmSnippet @@ -0,0 +1,16 @@ + + + + + content + <br /> + keyEquivalent + @ + name + br + scope + text.html + uuid + 3E008E42-A5C9-11D9-9BCD-000D93C8BE28 + + diff --git a/Snippets/cite copy.tmSnippet b/Snippets/cite copy.tmSnippet new file mode 100644 index 0000000..0591c38 --- /dev/null +++ b/Snippets/cite copy.tmSnippet @@ -0,0 +1,16 @@ + + + + + content + <cite>${1:$TM_SELECTED_TEXT}</cite>$0 + name + cite copy + scope + text.html + tabTrigger + cite + uuid + C9682A44-C0D8-418C-9850-DACA4108E450 + + diff --git a/Snippets/cite.tmSnippet b/Snippets/cite.tmSnippet new file mode 100644 index 0000000..6913251 --- /dev/null +++ b/Snippets/cite.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <cite>${1:$TM_SELECTED_TEXT}</cite>$0 + keyEquivalent + ^@p + name + cite + scope + text.html + tabTrigger + cit + uuid + 8B60E854-252B-42B5-B028-7B89C22B9A98 + + diff --git a/Snippets/code copy.tmSnippet b/Snippets/code copy.tmSnippet new file mode 100644 index 0000000..1af2230 --- /dev/null +++ b/Snippets/code copy.tmSnippet @@ -0,0 +1,16 @@ + + + + + content + <code>${1:$TM_SELECTED_TEXT}</code>$0 + name + code copy + scope + text.html + tabTrigger + code + uuid + 609B5634-26A4-49D8-8F4D-8D0895027641 + + diff --git a/Snippets/code.tmSnippet b/Snippets/code.tmSnippet new file mode 100644 index 0000000..49481f3 --- /dev/null +++ b/Snippets/code.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <code>${1:$TM_SELECTED_TEXT}</code>$0 + keyEquivalent + ^@p + name + code + scope + text.html + tabTrigger + cod + uuid + 3615A12D-4CAC-4EDE-9E3B-BF63668389A5 + + diff --git a/Snippets/del.tmSnippet b/Snippets/del.tmSnippet new file mode 100644 index 0000000..87e71ca --- /dev/null +++ b/Snippets/del.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <del${1: datetime="`date +%Y-%m-%dT%H:%M:%S%z`"}${2: cite="${3:source}"}>${4:$TM_SELECTED_TEXT}</del>$0 + keyEquivalent + ^@i + name + del + scope + text.html + tabTrigger + del + uuid + 0244C3E7-DC81-40ED-8FE5-7E16F11A60FB + + diff --git a/Snippets/dfn.tmSnippet b/Snippets/dfn.tmSnippet new file mode 100644 index 0000000..1e9f0d5 --- /dev/null +++ b/Snippets/dfn.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <dfn>${1:$TM_SELECTED_TEXT}</dfn>$0 + keyEquivalent + ^@p + name + dfn + scope + text.html + tabTrigger + dfn + uuid + F3248EB7-CE63-4EB1-AC59-4A22F81A910A + + diff --git a/Snippets/div class + cmt.tmSnippet b/Snippets/div class + cmt.tmSnippet new file mode 100644 index 0000000..72fb86c --- /dev/null +++ b/Snippets/div class + cmt.tmSnippet @@ -0,0 +1,20 @@ + + + + + content + <div class="${1:name}"> + ${2:$TM_SELECTED_TEXT} +</div><!-- .$1 --> + keyEquivalent + ^@b + name + div class + cmt + scope + text.html + tabTrigger + div + uuid + 04EEBC2E-9139-4C1D-A900-A6C2536D94B3 + + diff --git a/Snippets/div class.tmSnippet b/Snippets/div class.tmSnippet new file mode 100644 index 0000000..e7d5be3 --- /dev/null +++ b/Snippets/div class.tmSnippet @@ -0,0 +1,20 @@ + + + + + content + <div${1: class="${2:name}"}> + ${3:$TM_SELECTED_TEXT} +</div> + keyEquivalent + ^@b + name + div class + scope + text.html + tabTrigger + div + uuid + D842261E-0A8E-46F6-9E53-DB2BCD3A79E4 + + diff --git a/Snippets/div clear.tmSnippet b/Snippets/div clear.tmSnippet new file mode 100644 index 0000000..da17f31 --- /dev/null +++ b/Snippets/div clear.tmSnippet @@ -0,0 +1,14 @@ + + + + + content + <div class="clear"></div> + name + div clear + tabTrigger + clear + uuid + F6C7BFFB-8605-4A96-B7D1-CDA41328115F + + diff --git a/Snippets/div id + cmt.tmSnippet b/Snippets/div id + cmt.tmSnippet new file mode 100644 index 0000000..6810b49 --- /dev/null +++ b/Snippets/div id + cmt.tmSnippet @@ -0,0 +1,20 @@ + + + + + content + <div id="${1:name}"> + ${2:$TM_SELECTED_TEXT} +</div><!-- #$1 --> + keyEquivalent + ^@b + name + div id + cmt + scope + text.html + tabTrigger + div + uuid + 1515D295-2FFD-4EEB-87FA-034B3ECE372C + + diff --git a/Snippets/div id.tmSnippet b/Snippets/div id.tmSnippet new file mode 100644 index 0000000..b33e43e --- /dev/null +++ b/Snippets/div id.tmSnippet @@ -0,0 +1,20 @@ + + + + + content + <div${1: id="${2:name}"}> + ${3:$TM_SELECTED_TEXT} +</div> + keyEquivalent + ^@b + name + div id + scope + text.html + tabTrigger + div + uuid + 576036C0-A60E-11D9-ABD6-000D93C8BE28 + + diff --git a/Snippets/em.tmSnippet b/Snippets/em.tmSnippet new file mode 100644 index 0000000..259fc42 --- /dev/null +++ b/Snippets/em.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + ${0:${TM_SELECTED_TEXT/\A<em>(.*)<\/em>\z|.*/(?1:$1:<em>$0<\/em>)/m}} + keyEquivalent + @i + name + em + scope + text.html + tabTrigger + em + uuid + EBB98620-3292-4621-BA38-D8A9A65D9551 + + diff --git a/Snippets/fieldset.tmSnippet b/Snippets/fieldset.tmSnippet new file mode 100644 index 0000000..873b906 --- /dev/null +++ b/Snippets/fieldset.tmSnippet @@ -0,0 +1,20 @@ + + + + + content + <fieldset> + $0 +</fieldset> + keyEquivalent + ^~@f + name + fieldset + scope + text.html + tabTrigger + fie + uuid + AAE3038A-4169-483B-822B-9B999897DEAF + + diff --git a/Snippets/form copy.tmSnippet b/Snippets/form copy.tmSnippet new file mode 100644 index 0000000..63e32df --- /dev/null +++ b/Snippets/form copy.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <form${1: id="${2:}"} action="${3:action}" method="post"> + $0 +</form> + name + form copy + scope + text.html + tabTrigger + form + uuid + 8157502D-19D5-41D8-AD1D-265CA96F9D45 + + diff --git a/Snippets/form.tmSnippet b/Snippets/form.tmSnippet new file mode 100644 index 0000000..0916c69 --- /dev/null +++ b/Snippets/form.tmSnippet @@ -0,0 +1,20 @@ + + + + + content + <form${1: id="${2:}"} action="${3:action}" method="post"> + $0 +</form> + keyEquivalent + ^~@f + name + form + scope + text.html + tabTrigger + for + uuid + 25174599-0A74-4283-B27D-F10CE77831CA + + diff --git a/Snippets/h1.tmSnippet b/Snippets/h1.tmSnippet new file mode 100644 index 0000000..019a446 --- /dev/null +++ b/Snippets/h1.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <h1>${1:$TM_SELECTED_TEXT}</h1>$0 + keyEquivalent + ^@h + name + h1 + scope + text.html + tabTrigger + h1 + uuid + 65BA66DC-A07F-11D9-A5A2-000D93C8BE28 + + diff --git a/Snippets/h2.tmSnippet b/Snippets/h2.tmSnippet new file mode 100644 index 0000000..29521d8 --- /dev/null +++ b/Snippets/h2.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <h2>${1:$TM_SELECTED_TEXT}</h2>$0 + keyEquivalent + ^@h + name + h2 + scope + text.html + tabTrigger + h2 + uuid + B7B544CE-D72B-4439-BA7A-A44EB1564F3A + + diff --git a/Snippets/h3.tmSnippet b/Snippets/h3.tmSnippet new file mode 100644 index 0000000..969657c --- /dev/null +++ b/Snippets/h3.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <h3>${1:$TM_SELECTED_TEXT}</h3>$0 + keyEquivalent + ^@h + name + h3 + scope + text.html + tabTrigger + h3 + uuid + 568A0C35-BA8C-4DCD-8AE3-A31364828188 + + diff --git a/Snippets/h4.tmSnippet b/Snippets/h4.tmSnippet new file mode 100644 index 0000000..1ccd658 --- /dev/null +++ b/Snippets/h4.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <h4>${1:$TM_SELECTED_TEXT}</h4>$0 + keyEquivalent + ^@h + name + h4 + scope + text.html + tabTrigger + h4 + uuid + 5C4E6F2A-F0C8-4AE5-8F6E-436DD1390488 + + diff --git a/Snippets/h5.tmSnippet b/Snippets/h5.tmSnippet new file mode 100644 index 0000000..8538ce5 --- /dev/null +++ b/Snippets/h5.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <h5>${1:$TM_SELECTED_TEXT}</h5>$0 + keyEquivalent + ^@h + name + h5 + scope + text.html + tabTrigger + h5 + uuid + 8E7ECEE4-58C1-4A30-98C7-0C4EFCC4F1EF + + diff --git a/Snippets/h6.tmSnippet b/Snippets/h6.tmSnippet new file mode 100644 index 0000000..33633ee --- /dev/null +++ b/Snippets/h6.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <h6>${1:$TM_SELECTED_TEXT}</h6>$0 + keyEquivalent + ^@h + name + h6 + scope + text.html + tabTrigger + h6 + uuid + 5A52912F-6B84-4EF8-8CF6-1F47B09E5C8B + + diff --git a/Snippets/hr.tmSnippet b/Snippets/hr.tmSnippet new file mode 100644 index 0000000..2d99131 --- /dev/null +++ b/Snippets/hr.tmSnippet @@ -0,0 +1,16 @@ + + + + + content + <hr /> + name + hr + scope + text.html + tabTrigger + hr + uuid + C7E8230F-944F-4A3E-889C-CDFFEA7235AC + + diff --git a/Snippets/input (img).tmSnippet b/Snippets/input (img).tmSnippet new file mode 100644 index 0000000..faf39f3 --- /dev/null +++ b/Snippets/input (img).tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <input type="image" src="$1" name="${2:Submit}" value="${3:Send}" />$0 + keyEquivalent + ^~@f + name + input (img) + scope + text.html + tabTrigger + inp + uuid + 723C52E3-E205-421D-8CBC-851F1FEE4E98 + + diff --git a/Snippets/input (long).tmSnippet b/Snippets/input (long).tmSnippet new file mode 100644 index 0000000..8b8dbb2 --- /dev/null +++ b/Snippets/input (long).tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <input ${1:type="${2:button/checkbox/file/hidden/image/password/radio/reset/submit/text}" }${3:name="${4:name}" }${5:value="$6" }${7:id="${8:$9}"} />$0 + keyEquivalent + ^~@f + name + input (long) + scope + text.html + tabTrigger + inp + uuid + 44180979-A08E-11D9-A5A2-000D93C8BE28 + + diff --git a/Snippets/input (short).tmSnippet b/Snippets/input (short).tmSnippet new file mode 100644 index 0000000..6354ced --- /dev/null +++ b/Snippets/input (short).tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <input name="${1:$1}" value="${2:$1}"${3: id="${4:$1}"} />$0 + keyEquivalent + ^~@f + name + input (short) + scope + text.html + tabTrigger + inp + uuid + EC92723F-4A85-4917-8868-9A365A016F54 + + diff --git a/Snippets/ins.tmSnippet b/Snippets/ins.tmSnippet new file mode 100644 index 0000000..64a69d4 --- /dev/null +++ b/Snippets/ins.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <ins${1: datetime="`date +%Y-%m-%dT%H:%M:%S%z`"}${2: cite="${3:source}"}>${4:$TM_SELECTED_TEXT}</ins>$0 + keyEquivalent + ^@i + name + ins + scope + text.html + tabTrigger + ins + uuid + 189B75E3-8452-490A-A934-5D5FC5EEE1BB + + diff --git a/Snippets/kbd.tmSnippet b/Snippets/kbd.tmSnippet new file mode 100644 index 0000000..20d2727 --- /dev/null +++ b/Snippets/kbd.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <kbd>${1:$TM_SELECTED_TEXT}</kbd>$0 + keyEquivalent + ^@p + name + kbd + scope + text.html + tabTrigger + kbd + uuid + 92FA5DB8-3A8E-40A1-BAF2-4CD9993BE101 + + diff --git a/Snippets/label.tmSnippet b/Snippets/label.tmSnippet new file mode 100644 index 0000000..c55ced8 --- /dev/null +++ b/Snippets/label.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <label${1: for="${2:name}"}>$3</label>$0 + keyEquivalent + ^~@f + name + label + scope + text.html + tabTrigger + lab + uuid + F2C9D7FA-2003-4B0D-8D9F-BE2D69D215D1 + + diff --git a/Snippets/legend.tmSnippet b/Snippets/legend.tmSnippet new file mode 100644 index 0000000..14c32de --- /dev/null +++ b/Snippets/legend.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <legend>$1</legend>$0 + keyEquivalent + ^~@f + name + legend + scope + text.html + tabTrigger + leg + uuid + B23D27AB-AF39-4EEF-82FF-B59CF5000E9F + + diff --git a/Snippets/list dl.tmSnippet b/Snippets/list dl.tmSnippet new file mode 100644 index 0000000..0c79721 --- /dev/null +++ b/Snippets/list dl.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <dl> + ${0:} +</dl> + name + list dl + scope + text.html + tabTrigger + dl + uuid + 4E9475AF-93AC-4376-8BA8-17D5501E160E + + diff --git a/Snippets/list dt+dd.tmSnippet b/Snippets/list dt+dd.tmSnippet new file mode 100644 index 0000000..24413d8 --- /dev/null +++ b/Snippets/list dt+dd.tmSnippet @@ -0,0 +1,16 @@ + + + + + content + <dt>${1:$TM_SELECTED_TEXT}</dt><dd>$2</dd>$0 + name + list dt+dd + scope + text.html + tabTrigger + dt + uuid + B953E1D0-2C69-46F4-9EFD-BBFBD28373D7 + + diff --git a/Snippets/list li.tmSnippet b/Snippets/list li.tmSnippet new file mode 100644 index 0000000..68179e1 --- /dev/null +++ b/Snippets/list li.tmSnippet @@ -0,0 +1,16 @@ + + + + + content + <li>${1:$TM_SELECTED_TEXT}</li>$0 + name + list li + scope + text.html + tabTrigger + li + uuid + CCC12EAD-2F6A-4C36-830A-8DFD314AC10B + + diff --git a/Snippets/list ol.tmSnippet b/Snippets/list ol.tmSnippet new file mode 100644 index 0000000..eddc550 --- /dev/null +++ b/Snippets/list ol.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <ol> + ${0:} +</ol> + name + list ol + scope + text.html + tabTrigger + ol + uuid + 1E1CF5DB-1D60-4743-A14C-F50F7B0522A2 + + diff --git a/Snippets/list ul.tmSnippet b/Snippets/list ul.tmSnippet new file mode 100644 index 0000000..7085870 --- /dev/null +++ b/Snippets/list ul.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <ul> + ${0:} +</ul> + name + list ul + scope + text.html + tabTrigger + ul + uuid + 78F1F6A0-2441-4375-8A95-F6CD093147E2 + + diff --git a/Snippets/list wrap ol class.tmSnippet b/Snippets/list wrap ol class.tmSnippet new file mode 100644 index 0000000..bbf9375 --- /dev/null +++ b/Snippets/list wrap ol class.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <ol class="${1:name}"> +${TM_SELECTED_TEXT/.+/ <li>$0<\/li>/g} +</ol>$0 + keyEquivalent + ^@l + name + list wrap ol class + scope + text.html + uuid + 68E06DB4-C160-4D68-AC1B-72C0FA7186C6 + + diff --git a/Snippets/list wrap ol id.tmSnippet b/Snippets/list wrap ol id.tmSnippet new file mode 100644 index 0000000..112428d --- /dev/null +++ b/Snippets/list wrap ol id.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <ol id="${1:name}"> +${TM_SELECTED_TEXT/.+/ <li>$0<\/li>/g} +</ol>$0 + keyEquivalent + ^@l + name + list wrap ol id + scope + text.html + uuid + F4DD678F-E64C-4C5D-9BBF-FEADEC88ED51 + + diff --git a/Snippets/list wrap ol.tmSnippet b/Snippets/list wrap ol.tmSnippet new file mode 100644 index 0000000..1d56a94 --- /dev/null +++ b/Snippets/list wrap ol.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <ol> +${TM_SELECTED_TEXT/.+/ <li>$0<\/li>/g} +</ol> + keyEquivalent + ^@l + name + list wrap ol + scope + text.html + uuid + BB0F37DA-BDC9-4516-A2B5-5228A1D4AA83 + + diff --git a/Snippets/list wrap ul + links.tmSnippet b/Snippets/list wrap ul + links.tmSnippet new file mode 100644 index 0000000..a551aec --- /dev/null +++ b/Snippets/list wrap ul + links.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <ul> +${TM_SELECTED_TEXT/.+/ <li><a href="#">$0<\/a><\/li>/g} +</ul> + keyEquivalent + ^@l + name + list wrap ul + links + scope + text.html + uuid + D52A3397-E697-477C-9868-1D0D9C546059 + + diff --git a/Snippets/list wrap ul class.tmSnippet b/Snippets/list wrap ul class.tmSnippet new file mode 100644 index 0000000..3da43c4 --- /dev/null +++ b/Snippets/list wrap ul class.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <ul class="${1:name}"> +${TM_SELECTED_TEXT/.+/ <li>$0<\/li>/g} +</ul>$0 + keyEquivalent + ^@l + name + list wrap ul class + scope + text.html + uuid + C88C86C6-49F2-4F90-B7BE-8F8582467AF7 + + diff --git a/Snippets/list wrap ul id.tmSnippet b/Snippets/list wrap ul id.tmSnippet new file mode 100644 index 0000000..9ae272f --- /dev/null +++ b/Snippets/list wrap ul id.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <ul id="${1:name}"> +${TM_SELECTED_TEXT/.+/ <li>$0<\/li>/g} +</ul>$0 + keyEquivalent + ^@l + name + list wrap ul id + scope + text.html + uuid + E56EF7E4-E164-4D8D-81BF-25C0FA1EE9A5 + + diff --git a/Snippets/list wrap ul.tmSnippet b/Snippets/list wrap ul.tmSnippet new file mode 100644 index 0000000..1d6ec9b --- /dev/null +++ b/Snippets/list wrap ul.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <ul> +${TM_SELECTED_TEXT/.+/ <li>$0<\/li>/g} +</ul> + keyEquivalent + ^@l + name + list wrap ul + scope + text.html + uuid + 9CD9B081-3732-46B0-884C-046F10EA5EED + + diff --git a/Snippets/optgroup.tmSnippet b/Snippets/optgroup.tmSnippet new file mode 100644 index 0000000..67c664c --- /dev/null +++ b/Snippets/optgroup.tmSnippet @@ -0,0 +1,20 @@ + + + + + content + <optgroup label="${1:value}"> + ${2:} +</optgroup>$0 + keyEquivalent + ^~@f + name + optgroup + scope + text.html + tabTrigger + optgr + uuid + 9DB0A342-DD76-4269-9F41-0B3B764EBDCC + + diff --git a/Snippets/option.tmSnippet b/Snippets/option.tmSnippet new file mode 100644 index 0000000..c5f9c82 --- /dev/null +++ b/Snippets/option.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <option value="${1:value}">${2:$1}</option>$0 + keyEquivalent + ^~@f + name + option + scope + text.html + tabTrigger + opt + uuid + EFA8F985-76EE-47F8-BB34-E82A80E63194 + + diff --git a/Snippets/p.tmSnippet b/Snippets/p.tmSnippet new file mode 100644 index 0000000..faae2a7 --- /dev/null +++ b/Snippets/p.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <p>${1:$TM_SELECTED_TEXT}</p>$0 + keyEquivalent + ^@b + name + p + scope + text.html + tabTrigger + p + uuid + 70A8469D-D954-4024-A316-40D9C5D86C1A + + diff --git a/Snippets/pre.tmSnippet b/Snippets/pre.tmSnippet new file mode 100644 index 0000000..16fd8f9 --- /dev/null +++ b/Snippets/pre.tmSnippet @@ -0,0 +1,20 @@ + + + + + content + <pre> + ${1:$TM_SELECTED_TEXT} +</pre>$0 + keyEquivalent + ^@b + name + pre + scope + text.html + tabTrigger + pre + uuid + 0CE8CABC-BDA0-4803-9BC5-829FBEB1C8FC + + diff --git a/Snippets/q.tmSnippet b/Snippets/q.tmSnippet new file mode 100644 index 0000000..018fbed --- /dev/null +++ b/Snippets/q.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <q${1: cite="${2:source}"}>${3:$TM_SELECTED_TEXT}</q>$0 + keyEquivalent + ^@i + name + q + scope + text.html + tabTrigger + q + uuid + 8586EC50-4D8B-4BD1-9C89-93EC00BA9D08 + + diff --git a/Snippets/samp copy.tmSnippet b/Snippets/samp copy.tmSnippet new file mode 100644 index 0000000..83bdf4b --- /dev/null +++ b/Snippets/samp copy.tmSnippet @@ -0,0 +1,16 @@ + + + + + content + <samp>${1:$TM_SELECTED_TEXT}</samp>$0 + name + samp copy + scope + text.html + tabTrigger + samp + uuid + 5CE462E4-8B6B-4753-9684-BD34BF7948A8 + + diff --git a/Snippets/samp.tmSnippet b/Snippets/samp.tmSnippet new file mode 100644 index 0000000..72c6a92 --- /dev/null +++ b/Snippets/samp.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <samp>${1:$TM_SELECTED_TEXT}</samp>$0 + keyEquivalent + ^@p + name + samp + scope + text.html + tabTrigger + sam + uuid + 5122B37C-7F92-43BC-A65A-384CD7375232 + + diff --git a/Snippets/select.tmSnippet b/Snippets/select.tmSnippet new file mode 100644 index 0000000..bdaec50 --- /dev/null +++ b/Snippets/select.tmSnippet @@ -0,0 +1,20 @@ + + + + + content + <select${1: name="${2:name}"}> + $0 +</select> + keyEquivalent + ^~@f + name + select + scope + text.html + tabTrigger + sel + uuid + A4C6B2AF-C03E-40ED-B5B8-AA863761E0D9 + + diff --git a/Snippets/span class.tmSnippet b/Snippets/span class.tmSnippet new file mode 100644 index 0000000..144f5d2 --- /dev/null +++ b/Snippets/span class.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <span${1: class="${2:name}"}>${3:$TM_SELECTED_TEXT}</span>$0 + keyEquivalent + ^@i + name + span class + scope + text.html + tabTrigger + span + uuid + 61615745-AE5B-43A3-A6DA-EA0C4E5147A7 + + diff --git a/Snippets/span id.tmSnippet b/Snippets/span id.tmSnippet new file mode 100644 index 0000000..17462b8 --- /dev/null +++ b/Snippets/span id.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <span${1: id="${2:name}"}>${3:$TM_SELECTED_TEXT}</span>$0 + keyEquivalent + ^@i + name + span id + scope + text.html + tabTrigger + span + uuid + E013F22C-C1D8-4326-B8CC-DCF7DAD30CC8 + + diff --git a/Snippets/strong.tmSnippet b/Snippets/strong.tmSnippet new file mode 100644 index 0000000..16f50b5 --- /dev/null +++ b/Snippets/strong.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + ${0:${TM_SELECTED_TEXT/\A<strong>(.*)<\/strong>\z|.*/(?1:$1:<strong>$0<\/strong>)/m}} + keyEquivalent + @b + name + strong + scope + text.html + tabTrigger + str + uuid + 4117D930-B6FA-4022-97E7-ECCAF4E70F63 + + diff --git a/Snippets/sub.tmSnippet b/Snippets/sub.tmSnippet new file mode 100644 index 0000000..bc63293 --- /dev/null +++ b/Snippets/sub.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <sub${1: class="${2:name}"}>${3:$TM_SELECTED_TEXT}</sub>$0 + keyEquivalent + ^@i + name + sub + scope + text.html + tabTrigger + sub + uuid + 2DB168B1-7E47-4540-9C92-7D7586B6F39F + + diff --git a/Snippets/sup.tmSnippet b/Snippets/sup.tmSnippet new file mode 100644 index 0000000..e2f3ea9 --- /dev/null +++ b/Snippets/sup.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <sup${1: class="${2:name}"}>${3:$TM_SELECTED_TEXT}</sup>$0 + keyEquivalent + ^@i + name + sup + scope + text.html + tabTrigger + sup + uuid + 4A68A7D3-A2D9-471E-B099-3856B6F3AEA9 + + diff --git a/Snippets/table.tmSnippet b/Snippets/table.tmSnippet new file mode 100644 index 0000000..9cd45e4 --- /dev/null +++ b/Snippets/table.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <table> + $0 +</table> + name + table + scope + text.html + tabTrigger + table + uuid + 57176082-A12F-11D9-A5A2-000D93C8BE28 + + diff --git a/Snippets/tbody.tmSnippet b/Snippets/tbody.tmSnippet new file mode 100644 index 0000000..5d5a359 --- /dev/null +++ b/Snippets/tbody.tmSnippet @@ -0,0 +1,16 @@ + + + + + content + ${0:${TM_SELECTED_TEXT/\A<tbody>\n(.*)\n<\/tbody>\z|.*/(?1:$1:<tbody>\n$0\n<\/tbody>)/m}} + keyEquivalent + ^~@T + name + tbody + scope + text.html + uuid + 364175DE-BF35-458F-9E77-4DC3EA389DC2 + + diff --git a/Snippets/td.tmSnippet b/Snippets/td.tmSnippet new file mode 100644 index 0000000..9f5ce50 --- /dev/null +++ b/Snippets/td.tmSnippet @@ -0,0 +1,16 @@ + + + + + content + <td>$1</td>$0 + name + td + scope + text.html + tabTrigger + td + uuid + 3F9A6FB9-2346-47F2-B07C-3AD7F84C6EB0 + + diff --git a/Snippets/textarea.tmSnippet b/Snippets/textarea.tmSnippet new file mode 100644 index 0000000..ea8d0d0 --- /dev/null +++ b/Snippets/textarea.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <textarea name="${1:Name}" rows="${2:8}" cols="${3:40}">$4</textarea>$0 + keyEquivalent + ^~@f + name + textarea + scope + text.html + tabTrigger + tex + uuid + 63BB62BC-8D5E-4DDF-9E7A-AD7488FB400D + + diff --git a/Snippets/tfoot.tmSnippet b/Snippets/tfoot.tmSnippet new file mode 100644 index 0000000..70a55ea --- /dev/null +++ b/Snippets/tfoot.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + ${0:${TM_SELECTED_TEXT/\A<tfoot>\n(.*)\n<\/tfoot>\z|.*/(?1:$1:<tfoot>\n$0\n<\/tfoot>)/m}} + keyEquivalent + ^~@T + name + tfoot + scope + text.html + tabTrigger + tfo + uuid + E555FAB0-75D1-4164-92FE-1DE248B9CB0D + + diff --git a/Snippets/th.tmSnippet b/Snippets/th.tmSnippet new file mode 100644 index 0000000..54da455 --- /dev/null +++ b/Snippets/th.tmSnippet @@ -0,0 +1,16 @@ + + + + + content + <th>$1</th>$0 + name + th + scope + text.html + tabTrigger + th + uuid + 5A9EA640-AB43-492D-A527-562E5878D12D + + diff --git a/Snippets/thead.tmSnippet b/Snippets/thead.tmSnippet new file mode 100644 index 0000000..340e3ee --- /dev/null +++ b/Snippets/thead.tmSnippet @@ -0,0 +1,16 @@ + + + + + content + ${0:${TM_SELECTED_TEXT/\A<thead>\n(.*)\n<\/thead>\z|.*/(?1:$1:<thead>\n$0\n<\/thead>)/m}} + keyEquivalent + ^~@T + name + thead + scope + text.html + uuid + 51B5FFC5-5154-41EF-8B4F-982C4001D701 + + diff --git a/Snippets/tr.tmSnippet b/Snippets/tr.tmSnippet new file mode 100644 index 0000000..9a8e7d6 --- /dev/null +++ b/Snippets/tr.tmSnippet @@ -0,0 +1,16 @@ + + + + + content + <tr>$0</tr> + name + tr + scope + text.html + tabTrigger + tr + uuid + A8B09656-372B-4B7E-995A-0C84DC96DED5 + + diff --git a/Snippets/var.tmSnippet b/Snippets/var.tmSnippet new file mode 100644 index 0000000..f170c37 --- /dev/null +++ b/Snippets/var.tmSnippet @@ -0,0 +1,18 @@ + + + + + content + <var>${1:$TM_SELECTED_TEXT}</var>$0 + keyEquivalent + ^@p + name + var + scope + text.html + tabTrigger + var + uuid + D7DDD8B6-10E5-4D44-9FE3-62DF869EE186 + + diff --git a/Templates/XHTML — 1_0.tmTemplate/index.php b/Templates/XHTML — 1_0.tmTemplate/index.php new file mode 100644 index 0000000..4bd06ea --- /dev/null +++ b/Templates/XHTML — 1_0.tmTemplate/index.php @@ -0,0 +1,25 @@ + + + + + ; charset=utf-8" /> + + + | ${TM_NEW_FILE_BASENAME} + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Templates/XHTML — 1_0.tmTemplate/info.plist b/Templates/XHTML — 1_0.tmTemplate/info.plist new file mode 100644 index 0000000..bdea376 --- /dev/null +++ b/Templates/XHTML — 1_0.tmTemplate/info.plist @@ -0,0 +1,22 @@ + + + + + command + if [[ ! -f "$TM_NEW_FILE" ]]; then + TM_DATE=`date +%Y-%m-%d` \ + TM_YEAR=`date +%Y` \ + TM_USERNAME=`niutil -readprop / /users/\$USER realname` \ + perl -pe 's/\$\{([^}]*)\}/$ENV{$1}/g' \ + < index.php > "$TM_NEW_FILE" +fi + extension + html + name + XHTML — 1.0 + scope + text.html + uuid + 2AF2A5A5-1009-4F85-A5D5-8FC94C72325D + + diff --git a/info.plist b/info.plist new file mode 100644 index 0000000..91ce830 --- /dev/null +++ b/info.plist @@ -0,0 +1,254 @@ + + + + + mainMenu + + excludedItems + + 8157502D-19D5-41D8-AD1D-265CA96F9D45 + EA08E6D4-9432-491D-9D0C-9366B40DF797 + C9682A44-C0D8-418C-9850-DACA4108E450 + 609B5634-26A4-49D8-8F4D-8D0895027641 + 5CE462E4-8B6B-4753-9684-BD34BF7948A8 + + items + + D858C80C-560A-4E19-B921-3120D39580DF + 04E01857-5286-47F1-8594-D90F72910551 + 4A32976E-DAEB-47E5-90E4-76D1859261BD + 62E4B570-6A5C-452C-8B46-71F52F924C54 + 2945B767-7883-4923-9129-5A30226CDFFD + 9F54B61D-2F89-4EEF-8996-D148837C5AA8 + 9DF71930-C9A3-451D-A139-BCECB135AE37 + + submenus + + 04E01857-5286-47F1-8594-D90F72910551 + + items + + 61615745-AE5B-43A3-A6DA-EA0C4E5147A7 + E013F22C-C1D8-4326-B8CC-DCF7DAD30CC8 + ------------------------------------ + 4366E3CB-1B3A-43B2-B32C-EC99707B6B3C + 21093360-77A2-4C7D-829B-64DCEA24B5AD + 6F65C3BF-237E-4B28-8AE3-792BBC905902 + 81DA4C74-A530-11D9-9BCD-000D93C8BE28 + ------------------------------------ + 3E008E42-A5C9-11D9-9BCD-000D93C8BE28 + 0244C3E7-DC81-40ED-8FE5-7E16F11A60FB + 189B75E3-8452-490A-A934-5D5FC5EEE1BB + 8586EC50-4D8B-4BD1-9C89-93EC00BA9D08 + 2DB168B1-7E47-4540-9C92-7D7586B6F39F + 4A68A7D3-A2D9-471E-B099-3856B6F3AEA9 + + name + Inline + + 2945B767-7883-4923-9129-5A30226CDFFD + + items + + 8B7C5284-8665-408A-9EA5-469503B7EE54 + 479101F9-D223-422E-927D-97E97BAC326F + AC460DE9-5703-4FDA-8729-D635BD3F50B3 + ------------------------------------ + 57176082-A12F-11D9-A5A2-000D93C8BE28 + 51B5FFC5-5154-41EF-8B4F-982C4001D701 + 364175DE-BF35-458F-9E77-4DC3EA389DC2 + E555FAB0-75D1-4164-92FE-1DE248B9CB0D + A8B09656-372B-4B7E-995A-0C84DC96DED5 + 5A9EA640-AB43-492D-A527-562E5878D12D + 3F9A6FB9-2346-47F2-B07C-3AD7F84C6EB0 + + name + Table + + 4A32976E-DAEB-47E5-90E4-76D1859261BD + + items + + 1E56094F-C4FE-4D73-B312-866D8E4C2278 + 30EB469D-BF1F-4B89-B68F-9A4B4714EA2D + 8B60E854-252B-42B5-B028-7B89C22B9A98 + 3615A12D-4CAC-4EDE-9E3B-BF63668389A5 + F3248EB7-CE63-4EB1-AC59-4A22F81A910A + EBB98620-3292-4621-BA38-D8A9A65D9551 + 92FA5DB8-3A8E-40A1-BAF2-4CD9993BE101 + 5122B37C-7F92-43BC-A65A-384CD7375232 + 4117D930-B6FA-4022-97E7-ECCAF4E70F63 + D7DDD8B6-10E5-4D44-9FE3-62DF869EE186 + + name + Phrase + + 62E4B570-6A5C-452C-8B46-71F52F924C54 + + items + + 9CD9B081-3732-46B0-884C-046F10EA5EED + BB0F37DA-BDC9-4516-A2B5-5228A1D4AA83 + E56EF7E4-E164-4D8D-81BF-25C0FA1EE9A5 + F4DD678F-E64C-4C5D-9BBF-FEADEC88ED51 + C88C86C6-49F2-4F90-B7BE-8F8582467AF7 + 68E06DB4-C160-4D68-AC1B-72C0FA7186C6 + D52A3397-E697-477C-9868-1D0D9C546059 + 78F1F6A0-2441-4375-8A95-F6CD093147E2 + 1E1CF5DB-1D60-4743-A14C-F50F7B0522A2 + CCC12EAD-2F6A-4C36-830A-8DFD314AC10B + ------------------------------------ + 4E9475AF-93AC-4376-8BA8-17D5501E160E + B953E1D0-2C69-46F4-9EFD-BBFBD28373D7 + + name + List + + 9DF71930-C9A3-451D-A139-BCECB135AE37 + + items + + 581FECF3-E833-45B5-9C6F-3FE87824DD81 + F6C7BFFB-8605-4A96-B7D1-CDA41328115F + C7E8230F-944F-4A3E-889C-CDFFEA7235AC + B376B24A-6E17-4817-A181-BCCCB45CDB45 + 52A2EA44-4931-4E1A-987A-C4082A74CC31 + + name + xtraz + + 9F54B61D-2F89-4EEF-8996-D148837C5AA8 + + items + + 25174599-0A74-4283-B27D-F10CE77831CA + AAE3038A-4169-483B-822B-9B999897DEAF + B23D27AB-AF39-4EEF-82FF-B59CF5000E9F + F2C9D7FA-2003-4B0D-8D9F-BE2D69D215D1 + EC92723F-4A85-4917-8868-9A365A016F54 + 44180979-A08E-11D9-A5A2-000D93C8BE28 + 723C52E3-E205-421D-8CBC-851F1FEE4E98 + A4C6B2AF-C03E-40ED-B5B8-AA863761E0D9 + 9DB0A342-DD76-4269-9F41-0B3B764EBDCC + EFA8F985-76EE-47F8-BB34-E82A80E63194 + 63BB62BC-8D5E-4DDF-9E7A-AD7488FB400D + + name + Form + + D858C80C-560A-4E19-B921-3120D39580DF + + items + + 576036C0-A60E-11D9-ABD6-000D93C8BE28 + 1515D295-2FFD-4EEB-87FA-034B3ECE372C + D842261E-0A8E-46F6-9E53-DB2BCD3A79E4 + 04EEBC2E-9139-4C1D-A900-A6C2536D94B3 + ------------------------------------ + 65BA66DC-A07F-11D9-A5A2-000D93C8BE28 + B7B544CE-D72B-4439-BA7A-A44EB1564F3A + 568A0C35-BA8C-4DCD-8AE3-A31364828188 + 5C4E6F2A-F0C8-4AE5-8F6E-436DD1390488 + 8E7ECEE4-58C1-4A30-98C7-0C4EFCC4F1EF + 5A52912F-6B84-4EF8-8CF6-1F47B09E5C8B + ------------------------------------ + E4B833B2-79A8-4CA0-A451-38A48318547B + 4A632141-DBE8-4D33-8D8E-76C2568D9D56 + 70A8469D-D954-4024-A316-40D9C5D86C1A + 0CE8CABC-BDA0-4803-9BC5-829FBEB1C8FC + + name + Block + + + + name + mHTML + ordering + + 581FECF3-E833-45B5-9C6F-3FE87824DD81 + 4366E3CB-1B3A-43B2-B32C-EC99707B6B3C + 21093360-77A2-4C7D-829B-64DCEA24B5AD + 6F65C3BF-237E-4B28-8AE3-792BBC905902 + 81DA4C74-A530-11D9-9BCD-000D93C8BE28 + 1E56094F-C4FE-4D73-B312-866D8E4C2278 + EA08E6D4-9432-491D-9D0C-9366B40DF797 + 30EB469D-BF1F-4B89-B68F-9A4B4714EA2D + E4B833B2-79A8-4CA0-A451-38A48318547B + 4A632141-DBE8-4D33-8D8E-76C2568D9D56 + 3E008E42-A5C9-11D9-9BCD-000D93C8BE28 + 8B60E854-252B-42B5-B028-7B89C22B9A98 + C9682A44-C0D8-418C-9850-DACA4108E450 + 3615A12D-4CAC-4EDE-9E3B-BF63668389A5 + 609B5634-26A4-49D8-8F4D-8D0895027641 + 0244C3E7-DC81-40ED-8FE5-7E16F11A60FB + 576036C0-A60E-11D9-ABD6-000D93C8BE28 + 1515D295-2FFD-4EEB-87FA-034B3ECE372C + D842261E-0A8E-46F6-9E53-DB2BCD3A79E4 + 04EEBC2E-9139-4C1D-A900-A6C2536D94B3 + F6C7BFFB-8605-4A96-B7D1-CDA41328115F + F3248EB7-CE63-4EB1-AC59-4A22F81A910A + EBB98620-3292-4621-BA38-D8A9A65D9551 + AAE3038A-4169-483B-822B-9B999897DEAF + 25174599-0A74-4283-B27D-F10CE77831CA + 8157502D-19D5-41D8-AD1D-265CA96F9D45 + 65BA66DC-A07F-11D9-A5A2-000D93C8BE28 + B7B544CE-D72B-4439-BA7A-A44EB1564F3A + 568A0C35-BA8C-4DCD-8AE3-A31364828188 + 5C4E6F2A-F0C8-4AE5-8F6E-436DD1390488 + 8E7ECEE4-58C1-4A30-98C7-0C4EFCC4F1EF + 5A52912F-6B84-4EF8-8CF6-1F47B09E5C8B + C7E8230F-944F-4A3E-889C-CDFFEA7235AC + EC92723F-4A85-4917-8868-9A365A016F54 + 44180979-A08E-11D9-A5A2-000D93C8BE28 + 723C52E3-E205-421D-8CBC-851F1FEE4E98 + 189B75E3-8452-490A-A934-5D5FC5EEE1BB + 92FA5DB8-3A8E-40A1-BAF2-4CD9993BE101 + F2C9D7FA-2003-4B0D-8D9F-BE2D69D215D1 + B23D27AB-AF39-4EEF-82FF-B59CF5000E9F + 4E9475AF-93AC-4376-8BA8-17D5501E160E + B953E1D0-2C69-46F4-9EFD-BBFBD28373D7 + 78F1F6A0-2441-4375-8A95-F6CD093147E2 + 1E1CF5DB-1D60-4743-A14C-F50F7B0522A2 + CCC12EAD-2F6A-4C36-830A-8DFD314AC10B + BB0F37DA-BDC9-4516-A2B5-5228A1D4AA83 + 68E06DB4-C160-4D68-AC1B-72C0FA7186C6 + F4DD678F-E64C-4C5D-9BBF-FEADEC88ED51 + 9CD9B081-3732-46B0-884C-046F10EA5EED + C88C86C6-49F2-4F90-B7BE-8F8582467AF7 + E56EF7E4-E164-4D8D-81BF-25C0FA1EE9A5 + D52A3397-E697-477C-9868-1D0D9C546059 + EFA8F985-76EE-47F8-BB34-E82A80E63194 + 9DB0A342-DD76-4269-9F41-0B3B764EBDCC + 70A8469D-D954-4024-A316-40D9C5D86C1A + 0CE8CABC-BDA0-4803-9BC5-829FBEB1C8FC + 8586EC50-4D8B-4BD1-9C89-93EC00BA9D08 + 5122B37C-7F92-43BC-A65A-384CD7375232 + 5CE462E4-8B6B-4753-9684-BD34BF7948A8 + A4C6B2AF-C03E-40ED-B5B8-AA863761E0D9 + 61615745-AE5B-43A3-A6DA-EA0C4E5147A7 + E013F22C-C1D8-4326-B8CC-DCF7DAD30CC8 + 4117D930-B6FA-4022-97E7-ECCAF4E70F63 + 2DB168B1-7E47-4540-9C92-7D7586B6F39F + 4A68A7D3-A2D9-471E-B099-3856B6F3AEA9 + 57176082-A12F-11D9-A5A2-000D93C8BE28 + 63BB62BC-8D5E-4DDF-9E7A-AD7488FB400D + 51B5FFC5-5154-41EF-8B4F-982C4001D701 + 364175DE-BF35-458F-9E77-4DC3EA389DC2 + E555FAB0-75D1-4164-92FE-1DE248B9CB0D + A8B09656-372B-4B7E-995A-0C84DC96DED5 + 5A9EA640-AB43-492D-A527-562E5878D12D + 3F9A6FB9-2346-47F2-B07C-3AD7F84C6EB0 + D7DDD8B6-10E5-4D44-9FE3-62DF869EE186 + B376B24A-6E17-4817-A181-BCCCB45CDB45 + 52A2EA44-4931-4E1A-987A-C4082A74CC31 + 8B7C5284-8665-408A-9EA5-469503B7EE54 + 479101F9-D223-422E-927D-97E97BAC326F + AC460DE9-5703-4FDA-8729-D635BD3F50B3 + 2AF2A5A5-1009-4F85-A5D5-8FC94C72325D + 8C3B4AE6-7DDE-4B71-B8DE-187CDD609F66 + + uuid + 99BA94C1-0202-4A79-BBF5-A9279B16E2A6 + +