summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorR. Tyler Ballance <tyler@slide.com>2009-03-22 14:35:44 -0700
committerR. Tyler Ballance <tyler@slide.com>2009-03-22 14:35:44 -0700
commit21121f5f3461e530076de041720d10c16cd95670 (patch)
tree514273d58eeac70ed3dc487c13afd1995872da3b /contrib
parent9d39915c992f3a46dbae75749a29d1cd986fe13a (diff)
downloadpython-cheetah-21121f5f3461e530076de041720d10c16cd95670.tar.gz
Add editor support file for some KDE Text Editors (KWrite, Kate, Quanta, etc.)
File comes from David Zaslavsky <dzaslavs@ellipsix.net> with no guarantees :)
Diffstat (limited to 'contrib')
-rw-r--r--contrib/editors/kde-cheetah.xml339
1 files changed, 339 insertions, 0 deletions
diff --git a/contrib/editors/kde-cheetah.xml b/contrib/editors/kde-cheetah.xml
new file mode 100644
index 0000000..2d3179d
--- /dev/null
+++ b/contrib/editors/kde-cheetah.xml
@@ -0,0 +1,339 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE language SYSTEM "language.dtd"
+[
+ <!ENTITY name "[A-Za-z_:][\w.:_-]*">
+ <!ENTITY ident "[A-Za-z_][A-Za-z_0-9]*">
+ <!ENTITY entref "&amp;(#[0-9]+|#[xX][0-9A-Fa-f]+|&name;);">
+ <!ENTITY block "block|def">
+ <!ENTITY idcmd "attr|del|encoding|errorCatcher|extends|implements|import|include(\s+raw)?|raise|shBang">
+]>
+<!--
+ This file is part of KDE's kate project.
+
+ copyright : (C) 2008 by David Zaslavsky
+ email : dzaslavs@ellipsix.net
+
+ This file is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+-->
+<!--
+ You'll find the "Writing a Kate Highlighting XML File HOWTO" at
+ http://kate.kde.org/doc/hlhowto.php
+ This is a template for the XML format used for syntax highlight descriptions
+ for the Kate text editor (http://kate.kde.org), which is part of the KDE
+ desktop environment (http://www.kde.org).
+
+ Use it as the base for your own syntax files.
+
+ Look at language.dtd for some documentation of the allowed elements and their attributes.
+ There is also a description of how to validate your syntax file.
+
+ You'll find the "Writing a Kate Highlighting XML File HOWTO" at
+ http://kate.kde.org/doc/hlhowto.php
+ -->
+
+<language version="1.00" kateversion="2.4" name="Cheetah" section="Markup" extensions="*.tmpl" mimetype="text/plain" author="David Zaslavsky" licence="GPL">
+<highlighting>
+ <list name="specialvars">
+ <item>None</item>
+ <item>False</item>
+ <item>True</item>
+ </list>
+ <contexts>
+ <context name="Start" attribute="Normal Text" lineEndContext="#stay">
+ <DetectSpaces/>
+ <IncludeRules context="FindCheetah"/>
+ <IncludeRules context="FindHTML"/>
+ </context>
+ <context name="FindCheetah" attribute="Normal Text" lineEndContext="#stay">
+ <RegExpr attribute="Comment" String="##.*$" context="#stay"/>
+ <Detect2Chars char="#" char1="*" attribute="Comment" context="LongComment" beginRegion="MLComment"/>
+ <RegExpr String="#raw\s*($|#)" attribute="Command" context="Raw"/>
+ <RegExpr String="#from\s+&ident;\s+import\s+&ident;\s*($|#)" attribute="Command" context="#stay"/>
+ <RegExpr String="#block\s+&ident;\s*($|#)" attribute="Command" context="#stay" beginRegion="block"/>
+ <RegExpr String="#def\s+&ident;\s*($|#)" attribute="Command" context="#stay" beginRegion="def"/>
+ <RegExpr String="#block\s+&ident;\s*\(" attribute="Command" context="Def Expression" beginRegion="block"/>
+ <RegExpr String="#def\s+&ident;\s*\(" attribute="Command" context="Def Expression" beginRegion="def"/>
+ <StringDetect String="#for" attribute="Command" context="For Expression" beginRegion="for"/>
+ <StringDetect String="#if" attribute="Command" context="If Expression" beginRegion="if"/>
+ <RegExpr String="#(else\s+if|elif)" attribute="Command" context="Expression" endRegion="if" beginRegion="if"/>
+ <StringDetect String="#repeat" attribute="Command" context="Expression" beginRegion="repeat"/>
+ <StringDetect String="#unless" attribute="Command" context="Expression" beginRegion="unless"/>
+ <StringDetect String="#while" attribute="Command" context="Expression" beginRegion="while"/>
+ <RegExpr String="#end block(\s+&ident;)?\s*($|#)" attribute="Command" context="#stay" endRegion="block"/>
+ <RegExpr String="#end def(\s+&ident;)?\s*($|#)" attribute="Command" context="#stay" endRegion="def"/>
+ <RegExpr String="#end for\s*($|#)" attribute="Command" context="#stay" endRegion="for"/>
+ <RegExpr String="#end if\s*($|#)" attribute="Command" context="#stay" endRegion="if"/>
+ <RegExpr String="#end repeat\s*($|#)" attribute="Command" context="#stay" endRegion="repeat"/>
+ <RegExpr String="#end unless\s*($|#)" attribute="Command" context="#stay" endRegion="unless"/>
+ <RegExpr String="#end while\s*($|#)" attribute="Command" context="#stay" endRegion="while"/>
+ <!-- short-form block directives -->
+ <RegExpr String="#(block|def) &ident;:" attribute="Command" context="Short Block Body"/>
+ <!-- no-argument directives -->
+ <RegExpr String="#(break|breakpoint|cache|compiler-settings|continue|finally|else|indent|pass|raw|slurp|stop|try)\s*($|#)" attribute="Command" context="#stay"/>
+ <!-- one-argument directives -->
+ <RegExpr String="#(attr|del|encoding|errorCatcher|extends|implements|import|include(\s+raw)?|shBang)\s+&ident;\s*($|#)" attribute="Command" context="#stay"/>
+ <!-- expression-argument directives -->
+ <RegExpr String="#(assert|echo|except|filter|raise|set|silent)" attribute="Command" context="Expression"/>
+ <StringDetect String="&lt;%" attribute="Element" context="Python"/>
+ <StringDetect String="&lt;%=" attribute="Element" context="Python"/>
+ <DetectChar char="$" attribute="Placeholder" context="Placeholder"/>
+ </context>
+ <context name="FindHTML" attribute="Normal Text" lineEndContext="#stay">
+ <DetectSpaces/>
+ <DetectIdentifier/>
+ <StringDetect attribute="Comment" context="HTMLComment" String="&lt;!--" beginRegion="HTMLComment" />
+ <StringDetect attribute="CDATA" context="CDATA" String="&lt;![CDATA[" beginRegion="cdata" />
+ <RegExpr attribute="Doctype" context="Doctype" String="&lt;!DOCTYPE\s+" beginRegion="doctype" />
+ <RegExpr attribute="Processing Instruction" context="PI" String="&lt;\?[\w:-]*" beginRegion="pi" />
+ <RegExpr attribute="Element" context="CSS" String="&lt;style\b" insensitive="TRUE" beginRegion="style" />
+ <RegExpr attribute="Element" context="JS" String="&lt;script\b" insensitive="TRUE" beginRegion="script" />
+ <RegExpr attribute="Element" context="El Open" String="&lt;pre\b" insensitive="TRUE" beginRegion="pre" />
+ <RegExpr attribute="Element" context="El Open" String="&lt;div\b" insensitive="TRUE" beginRegion="div" />
+ <RegExpr attribute="Element" context="El Open" String="&lt;table\b" insensitive="TRUE" beginRegion="table" />
+ <RegExpr attribute="Element" context="El Open" String="&lt;&name;" />
+ <RegExpr attribute="Element" context="El Close" String="&lt;/pre\b" insensitive="TRUE" endRegion="pre" />
+ <RegExpr attribute="Element" context="El Close" String="&lt;/div\b" insensitive="TRUE" endRegion="div" />
+ <RegExpr attribute="Element" context="El Close" String="&lt;/table\b" insensitive="TRUE" endRegion="table" />
+ <RegExpr attribute="Element" context="El Close" String="&lt;/&name;" />
+ <IncludeRules context="FindEntityRefs" />
+ </context>
+ <context name="Directive" attribute="Command" lineEndContext="#pop">
+ <DetectChar char="#" attribute="Command" context="#pop"/>
+ </context>
+ <context name="Expression" attribute="Command" lineEndContext="#pop">
+ <DetectChar char="#" attribute="Command" context="#pop"/>
+ <DetectChar char="$" attribute="Placeholder" context="Placeholder"/>
+ <RangeDetect char="'" char1="'" attribute="String" context="#stay"/>
+ <RangeDetect char="&quot;" char1="&quot;" attribute="String" context="#stay"/>
+ <keyword String="specialvars" attribute="Special Variable" context="#stay"/>
+ </context>
+ <context name="Def Expression" attribute="Command" lineEndContext="#pop">
+ <DetectChar char=")" attribute="Command" context="#stay"/>
+ <IncludeRules context="Expression"/>
+ </context>
+ <context name="For Expression" attribute="Command" lineEndContext="#pop">
+ <StringDetect String="in" attribute="Command" context="#stay"/>
+ <IncludeRules context="Expression"/>
+ </context>
+ <context name="If Expression" attribute="Command" lineEndContext="#pop">
+ <StringDetect String="then" attribute="Command" context="Then Clause" endRegion="if"/>
+ <IncludeRules context="Expression"/>
+ </context>
+ <context name="Then Clause" attribute="Normal Text" lineEndContext="#pop#pop">
+ <DetectChar char="#" attribute="Command" context="#pop#pop"/>
+ <StringDetect String="else" attribute="Command" context="#stay"/>
+ <keyword String="specialvars" attribute="Special Variable" context="#stay"/>
+ <DetectChar char="$" attribute="Placeholder" context="Placeholder"/>
+ <IncludeRules context="FindHTML"/>
+ </context>
+ <context name="Short Block Body" attribute="Normal Text" lineEndContext="#pop#pop">
+ <DetectChar char="#" attribute="Command" context="#pop#pop"/>
+ <DetectChar char="$" attribute="Placeholder" context="Placeholder"/>
+ <IncludeRules context="FindHTML"/>
+ </context>
+ <context name="Raw" attribute="Command" lineEndContext="Raw content">
+ <DetectChar char="#" attribute="Command" context="Raw content"/>
+ </context>
+ <context name="Raw content" attribute="Normal Text" lineEndContext="#stay">
+ <StringDetect String="#end raw" attribute="Command" context="#pop#pop#pop"/>
+ </context>
+ <context name="Placeholder" attribute="Placeholder" lineEndContext="#pop">
+ <RegExpr String="([[({])" attribute="Placeholder" context="Placeholder Brackets"/>
+ <RegExpr String="[A-Za-z_][A-Za-z_0-9]*" attribute="Placeholder" context="#stay"/>
+ <DetectChar char="." attribute="Placeholder" context="#stay"/>
+ <DetectSpaces attribute="Normal Text" context="#pop"/>
+ <RegExpr String="." context="#pop" lookAhead="true"/>
+ </context>
+ <context name="Placeholder Brackets" attribute="Placeholder" lineEndContext="#pop">
+ <RegExpr String="([[({])" attribute="Placeholder" context="Placeholder Brackets"/>
+ <DetectChar char="]" attribute="Placeholder" context="#pop"/>
+ <DetectChar char=")" attribute="Placeholder" context="#pop"/>
+ <DetectChar char="}" attribute="Placeholder" context="#pop"/>
+ <RangeDetect char="'" char1="'" attribute="String" context="#stay"/>
+ <RangeDetect char="&quot;" char1="&quot;" attribute="String" context="#stay"/>
+ <keyword String="specialvars" attribute="Special Variable" context="#stay"/>
+ <DetectChar char="#" attribute="Error" context="#stay"/>
+ </context>
+ <context name="ShortComment" attribute="Comment" lineEndContext="#pop">
+ <DetectSpaces/>
+ <IncludeRules context="##Alerts" />
+ </context>
+ <context name="LongComment" attribute="Comment" lineEndContext="#stay">
+ <DetectSpaces/>
+ <Detect2Chars char="*" char1="#" attribute="Comment" context="#pop" endRegion="MLComment"/>
+ <IncludeRules context="##Alerts" />
+ </context>
+ <context name="HTMLComment" attribute="Comment" lineEndContext="#stay">
+ <DetectSpaces/>
+ <IncludeRules context="FindCheetah"/>
+ <IncludeRules context="##Alerts"/>
+ <DetectIdentifier/>
+ <StringDetect attribute="Comment" context="#pop" String="--&gt;" endRegion="HTMLComment" />
+ <RegExpr attribute="Error" context="#stay" String="-(-(?!-&gt;))+" />
+ </context>
+ <context name="Python" attribute="Normal Text" lineEndContext="#stay">
+ <Detect2Chars char="%" char1="&gt;" attribute="Normal Text" context="#pop"/>
+ <IncludeRules context="##Python" includeAttrib="true"/>
+ </context>
+ <context name="FindEntityRefs" attribute="Normal Text" lineEndContext="#stay">
+ <IncludeRules context="FindCheetah"/>
+ <RegExpr attribute="EntityRef" context="#stay" String="&entref;" />
+ <AnyChar attribute="Error" context="#stay" String="&amp;&lt;" />
+ </context>
+ <context name="FindPEntityRefs" attribute="Normal Text" lineEndContext="#stay">
+ <IncludeRules context="FindCheetah"/>
+ <RegExpr attribute="EntityRef" context="#stay" String="&entref;" />
+ <RegExpr attribute="PEntityRef" context="#stay" String="%&name;;" />
+ <AnyChar attribute="Error" context="#stay" String="&amp;%" />
+ </context>
+ <context name="FindAttributes" attribute="Normal Text" lineEndContext="#stay">
+ <IncludeRules context="FindCheetah"/>
+ <RegExpr attribute="Attribute" context="#stay" String="&name;" column="0"/>
+ <RegExpr attribute="Attribute" context="#stay" String="\s+&name;" />
+ <DetectChar attribute="Attribute" context="Value" char="=" />
+ </context>
+ <context name="CDATA" attribute="Normal Text" lineEndContext="#stay">
+ <DetectSpaces/>
+ <DetectIdentifier/>
+ <IncludeRules context="FindCheetah"/>
+ <StringDetect attribute="CDATA" context="#pop" String="]]&gt;" endRegion="cdata" />
+ <StringDetect attribute="EntityRef" context="#stay" String="]]&amp;gt;" />
+ </context>
+ <context name="PI" attribute="Normal Text" lineEndContext="#stay">
+ <IncludeRules context="FindCheetah"/>
+ <Detect2Chars attribute="Processing Instruction" context="#pop" char="?" char1="&gt;" endRegion="pi" />
+ </context>
+ <context name="Doctype" attribute="Normal Text" lineEndContext="#stay">
+ <IncludeRules context="FindCheetah"/>
+ <DetectChar attribute="Doctype" context="#pop" char="&gt;" endRegion="doctype" />
+ <DetectChar attribute="Doctype" context="Doctype Internal Subset" char="[" beginRegion="int_subset" />
+ </context>
+ <context name="Doctype Internal Subset" attribute="Normal Text" lineEndContext="#stay">
+ <IncludeRules context="FindCheetah"/>
+ <DetectChar attribute="Doctype" context="#pop" char="]" endRegion="int_subset" />
+ <StringDetect attribute="Comment" context="LongComment" String="&lt;!--" beginRegion="MLComment" />
+ <RegExpr attribute="Processing Instruction" context="PI" String="&lt;\?[\w:-]*" beginRegion="pi" />
+ <IncludeRules context="FindPEntityRefs" />
+ </context>
+ <context name="Doctype Markupdecl" attribute="Normal Text" lineEndContext="#stay">
+ <IncludeRules context="FindCheetah"/>
+ <DetectChar attribute="Doctype" context="#pop" char="&gt;" />
+ <DetectChar attribute="Value" context="Doctype Markupdecl DQ" char="&quot;" />
+ <DetectChar attribute="Value" context="Doctype Markupdecl SQ" char="&apos;" />
+ </context>
+ <context name="Doctype Markupdecl DQ" attribute="Value" lineEndContext="#stay">
+ <IncludeRules context="FindCheetah"/>
+ <DetectChar attribute="Value" context="#pop" char="&quot;" />
+ <IncludeRules context="FindPEntityRefs" />
+ </context>
+ <context name="Doctype Markupdecl SQ" attribute="Value" lineEndContext="#stay">
+ <IncludeRules context="FindCheetah"/>
+ <DetectChar attribute="Value" context="#pop" char="&apos;" />
+ <IncludeRules context="FindPEntityRefs" />
+ </context>
+ <context name="El Open" attribute="Normal Text" lineEndContext="#stay">
+ <IncludeRules context="FindCheetah"/>
+ <Detect2Chars attribute="Element" context="#pop" char="/" char1="&gt;" />
+ <DetectChar attribute="Element" context="#pop" char="&gt;" />
+ <IncludeRules context="FindAttributes" />
+ <RegExpr attribute="Error" context="#stay" String="\S" />
+ </context>
+ <context name="El Close" attribute="Normal Text" lineEndContext="#stay">
+ <IncludeRules context="FindCheetah"/>
+ <DetectChar attribute="Element" context="#pop" char="&gt;" />
+ <RegExpr attribute="Error" context="#stay" String="\S" />
+ </context>
+ <context name="El Close 2" attribute="Normal Text" lineEndContext="#stay">
+ <IncludeRules context="FindCheetah"/>
+ <DetectChar attribute="Element" context="#pop#pop#pop" char="&gt;" />
+ <RegExpr attribute="Error" context="#stay" String="\S" />
+ </context>
+ <context name="El Close 3" attribute="Normal Text" lineEndContext="#stay">
+ <IncludeRules context="FindCheetah"/>
+ <DetectChar attribute="Element" context="#pop#pop#pop#pop" char="&gt;" />
+ <RegExpr attribute="Error" context="#stay" String="\S" />
+ </context>
+ <context name="CSS" attribute="Normal Text" lineEndContext="#stay">
+ <IncludeRules context="FindCheetah"/>
+ <Detect2Chars attribute="Element" context="#pop" char="/" char1="&gt;" endRegion="style" />
+ <DetectChar attribute="Element" context="CSS content" char="&gt;" />
+ <IncludeRules context="FindAttributes" />
+ <RegExpr attribute="Error" context="#stay" String="\S" />
+ </context>
+ <context name="CSS content" attribute="Normal Text" lineEndContext="#stay">
+ <IncludeRules context="FindCheetah"/>
+ <RegExpr attribute="Element" context="El Close 2" String="&lt;/style\b" insensitive="TRUE" endRegion="style" />
+ <IncludeRules context="##CSS" includeAttrib="true"/>
+ </context>
+ <context name="JS" attribute="Normal Text" lineEndContext="#stay">
+ <IncludeRules context="FindCheetah"/>
+ <Detect2Chars attribute="Element" context="#pop" char="/" char1="&gt;" endRegion="script" />
+ <DetectChar attribute="Element" context="JS content" char="&gt;" />
+ <IncludeRules context="FindAttributes" />
+ <RegExpr attribute="Error" context="#stay" String="\S" />
+ </context>
+ <context name="JS content" attribute="Normal Text" lineEndContext="#stay">
+ <IncludeRules context="FindCheetah"/>
+ <RegExpr attribute="Element" context="El Close 2" String="&lt;/script\b" insensitive="TRUE" endRegion="script" />
+ <RegExpr attribute="Comment" context="JS comment close" String="//(?=.*&lt;/script\b)" insensitive="TRUE" />
+ <IncludeRules context="##JavaScript" includeAttrib="true"/>
+ </context>
+ <context name="JS comment close" attribute="Comment" lineEndContext="#pop">
+ <IncludeRules context="FindCheetah"/>
+ <RegExpr attribute="Element" context="El Close 3" String="&lt;/script\b" insensitive="TRUE" endRegion="script" />
+ <IncludeRules context="##Alerts" />
+ </context>
+ <context name="Value" attribute="Normal Text" lineEndContext="#stay" fallthrough="true" fallthroughContext="Value NQ">
+ <IncludeRules context="FindCheetah"/>
+ <DetectChar attribute="Value" context="Value DQ" char="&quot;" />
+ <DetectChar attribute="Value" context="Value SQ" char="&apos;" />
+ <DetectSpaces />
+ </context>
+ <context name="Value NQ" attribute="Normal Text" lineEndContext="#pop#pop" fallthrough="true" fallthroughContext="#pop#pop">
+ <IncludeRules context="FindCheetah"/>
+ <IncludeRules context="FindEntityRefs" />
+ <RegExpr attribute="Value" context="#stay" String="/(?!&gt;)" />
+ <RegExpr attribute="Value" context="#stay" String="[^/&gt;&lt;&quot;&apos;\s]" />
+ </context>
+ <context name="Value DQ" attribute="Value" lineEndContext="#stay">
+ <IncludeRules context="FindCheetah"/>
+ <DetectChar attribute="Value" context="#pop#pop" char="&quot;" />
+ <IncludeRules context="FindEntityRefs" />
+ </context>
+ <context name="Value SQ" attribute="Value" lineEndContext="#stay">
+ <IncludeRules context="FindCheetah"/>
+ <DetectChar attribute="Value" context="#pop#pop" char="&apos;" />
+ <IncludeRules context="FindEntityRefs" />
+ </context>
+ </contexts>
+ <itemDatas>
+ <itemData name="Normal Text" defStyleNum="dsNormal"/>
+ <itemData name="Command" defStyleNum="dsFunction"/>
+ <itemData name="Comment" defStyleNum="dsComment"/>
+ <itemData name="String" defStyleNum="dsString"/>
+ <itemData name="Special Variable" defStyleNum="dsOthers"/>
+ <itemData name="Placeholder" defStyleNum="dsKeyword" color="#5555ff" selColor="#ffffff" bold="0" italic="0" />
+ <itemData name="CDATA" defStyleNum="dsBaseN" bold="1" />
+ <itemData name="Processing Instruction" defStyleNum="dsKeyword" />
+ <itemData name="Doctype" defStyleNum="dsDataType" bold="1" />
+ <itemData name="Element" defStyleNum="dsKeyword" />
+ <itemData name="Attribute" defStyleNum="dsOthers" />
+ <itemData name="Value" defStyleNum="dsString" color="#a00" />
+ <itemData name="EntityRef" defStyleNum="dsDecVal" />
+ <itemData name="PEntityRef" defStyleNum="dsDecVal" />
+ <itemData name="Error" defStyleNum="dsError" />
+ </itemDatas>
+</highlighting>
+<general>
+ <keywords casesensitive="1" additionalDeliminator="#"/>
+ <comments>
+ <comment name="singleLine" start="##"/>
+ <comment name="multiLine" start="#*" end="*#" region="MLComment"/>
+ <comment name="multiLine" start="&lt;!--" end="--&gt;" region="HTMLComment"/>
+ </comments>
+</general>
+</language>
+<!-- kate: space-indent on; indent-width 4; replace-tabs on; indent-mode xml; -->