Syntax-Kamelon
view release on metacpan or search on metacpan
lib/Syntax/Kamelon/XML/djangotemplate.xml view on Meta::CPAN
<context name="Template Filter" attribute="Template Filter" lineEndContext="#stay">
<Detect2Chars attribute="Template Var" context="#pop#pop" char="}" char1="}" />
<DetectChar attribute="Template String" char="'" context="Single A-string"/>
<DetectChar attribute="Template String" char=""" context="Single Q-string"/>
<Detect2Chars attribute="Error" context="#stay" char="{" char1="{" />
<Detect2Chars attribute="Error" context="#stay" char="{" char1="%" />
<Detect2Chars attribute="Error" context="#stay" char="%" char1="}" />
</context>
<context name="Template Tag" attribute="Template Tag" lineEndContext="#stay">
<keyword String="blocktags" context="Found Block Tag" lookAhead="true" attribute="Template Tag" />
<DetectIdentifier attribute="Template Tag" context="In Template Tag" />
</context>
<context name="Found Block Tag" attribute="Template Tag" lineEndContext="#stay">
<!-- This context is entered when a matching block tag was found through lookAhead. We need to capture it in an re, so that it can be matched with the end[blockname] tag later -->
<RegExpr attribute="Template Tag" String="(&name;)" context="In Block Tag"/>
</context>
<context name="In Block Tag" attribute="Template Tag Argument" dynamic="true" lineEndContext="#stay" >
<RegExpr context="#pop#pop#pop" String="\{%\s*end%1\s*%\}" dynamic="true" attribute="Template Tag"/>
<RegExpr context="Non Matching Tag" String="\{%\s*end[a-z]+\s*%\}" lookAhead="true" />
<Detect2Chars attribute="Template Tag" context="In Block" char="%" char1="}" />
<IncludeRules context="In Template Tag" />
</context>
<context name="Non Matching Tag" attribute="Template Tag" lineEndContext="#stay">
<keyword String="endblocktags" attribute="Mismatched Block Tag" context="#pop" />
<!-- If the mismatched tag is one we don't know about, ignore it. -->
<DetectIdentifier attribute="Template Tag" context="#pop" />
</context>
<context name="In Template Tag" attribute="Template Tag Argument" lineEndContext="#stay">
<Detect2Chars attribute="Template Tag" context="#pop#pop" char="%" char1="}" />
<DetectChar attribute="Template String" char="'" context="Single A-string"/>
<DetectChar attribute="Template String" char=""" context="Single Q-string"/>
<Detect2Chars attribute="Error" context="#stay" char="{" char1="{" />
<Detect2Chars attribute="Error" context="#stay" char="{" char1="%" />
<Detect2Chars attribute="Error" context="#stay" char="}" char1="}" />
</context>
<context name="Single A-string" attribute="Template String" lineEndContext="#stay">
<HlCStringChar attribute="Template String" context="#stay"/>
<!-- <RegExpr attribute="Operator" String="%[a-zA-Z]" context="#stay"/> -->
<DetectChar attribute="Template String" char="'" context="#pop"/>
</context>
<context name="Single Q-string" attribute="Template String" lineEndContext="#stay">
<HlCStringChar attribute="Template String" context="#stay"/>
<!-- <RegExpr attribute="Operator" String="%[a-zA-Z]" context="#stay"/> -->
<DetectChar attribute="Template String" char=""" context="#pop"/>
</context>
<context name="FindHTML" attribute="Normal Text" lineEndContext="#stay">
<DetectSpaces/>
<DetectIdentifier/>
<StringDetect attribute="Comment" context="Comment" String="<!--" beginRegion="comment" />
<StringDetect attribute="CDATA" context="CDATA" String="<![CDATA[" beginRegion="cdata" />
<RegExpr attribute="Doctype" context="Doctype" String="<!DOCTYPE\s+" beginRegion="doctype" />
<RegExpr attribute="Processing Instruction" context="PI" String="<\?[\w:-]*" beginRegion="pi" />
<RegExpr attribute="Element" context="CSS" String="<style\b" insensitive="true" beginRegion="style" />
<RegExpr attribute="Element" context="JS" String="<script\b" insensitive="true" beginRegion="script" />
<RegExpr attribute="Element" context="El Open" String="<pre\b" insensitive="true" beginRegion="pre" />
<RegExpr attribute="Element" context="El Open" String="<div\b" insensitive="true" beginRegion="div" />
<RegExpr attribute="Element" context="El Open" String="<table\b" insensitive="true" beginRegion="table" />
<RegExpr attribute="Element" context="El Open" String="<&name;" />
<RegExpr attribute="Element" context="El Close" String="</pre\b" insensitive="true" endRegion="pre" />
<RegExpr attribute="Element" context="El Close" String="</div\b" insensitive="true" endRegion="div" />
<RegExpr attribute="Element" context="El Close" String="</table\b" insensitive="true" endRegion="table" />
<RegExpr attribute="Element" context="El Close" String="</&name;" />
<!-- as long as kde gives DTDs the text/html mimetype--><IncludeRules context="FindDTDRules" />
<IncludeRules context="FindEntityRefs" />
</context>
<context name="FindEntityRefs" attribute="Normal Text" lineEndContext="#stay">
<RegExpr attribute="EntityRef" context="#stay" String="&entref;" />
<AnyChar attribute="Error" context="#stay" String="&<" />
</context>
<context name="FindPEntityRefs" attribute="Normal Text" lineEndContext="#stay">
<RegExpr attribute="EntityRef" context="#stay" String="&entref;" />
<RegExpr attribute="PEntityRef" context="#stay" String="%&name;;" />
<AnyChar attribute="Error" context="#stay" String="&%" />
</context>
<context name="FindAttributes" attribute="Normal Text" lineEndContext="#stay">
<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="FindDTDRules" attribute="Normal Text" lineEndContext="#stay">
<RegExpr attribute="Doctype" context="Doctype Markupdecl" String="<!(ELEMENT|ENTITY|ATTLIST|NOTATION)\b" />
</context>
<context name="Comment" attribute="Comment" lineEndContext="#stay">
<DetectSpaces/>
<IncludeRules context="##Alerts" />
<IncludeRules context="FindTemplate" />
<DetectIdentifier/>
<StringDetect attribute="Comment" context="#pop" String="-->" endRegion="comment" />
<RegExpr attribute="Error" context="#stay" String="-(-(?!->))+" />
</context>
<context name="CDATA" attribute="Normal Text" lineEndContext="#stay">
<DetectSpaces/>
<DetectIdentifier/>
<StringDetect attribute="CDATA" context="#pop" String="]]>" endRegion="cdata" />
<StringDetect attribute="EntityRef" context="#stay" String="]]&gt;" />
</context>
<context name="PI" attribute="Normal Text" lineEndContext="#stay">
<Detect2Chars attribute="Processing Instruction" context="#pop" char="?" char1=">" endRegion="pi" />
</context>
<context name="Doctype" attribute="Normal Text" lineEndContext="#stay">
<DetectChar attribute="Doctype" context="#pop" char=">" endRegion="doctype" />
<DetectChar attribute="Doctype" context="Doctype Internal Subset" char="[" beginRegion="int_subset" />
</context>
<context name="Doctype Internal Subset" attribute="Normal Text" lineEndContext="#stay">
<DetectChar attribute="Doctype" context="#pop" char="]" endRegion="int_subset" />
<IncludeRules context="FindDTDRules" />
<StringDetect attribute="Comment" context="Comment" String="<!--" beginRegion="comment" />
<RegExpr attribute="Processing Instruction" context="PI" String="<\?[\w:-]*" beginRegion="pi" />
<IncludeRules context="FindPEntityRefs" />
</context>
<context name="Doctype Markupdecl" attribute="Normal Text" lineEndContext="#stay">
<DetectChar attribute="Doctype" context="#pop" char=">" />
<DetectChar attribute="Value" context="Doctype Markupdecl DQ" char=""" />
<DetectChar attribute="Value" context="Doctype Markupdecl SQ" char="'" />
</context>
<context name="Doctype Markupdecl DQ" attribute="Value" lineEndContext="#stay">
<DetectChar attribute="Value" context="#pop" char=""" />
<IncludeRules context="FindPEntityRefs" />
</context>
<context name="Doctype Markupdecl SQ" attribute="Value" lineEndContext="#stay">
<DetectChar attribute="Value" context="#pop" char="'" />
<IncludeRules context="FindPEntityRefs" />
</context>
<context name="El Open" attribute="Normal Text" lineEndContext="#stay">
<Detect2Chars attribute="Element" context="#pop" char="/" char1=">" />
<DetectChar attribute="Element" context="#pop" char=">" />
<IncludeRules context="FindAttributes" />
<IncludeRules context="FindTemplate" />
<RegExpr attribute="Error" context="#stay" String="\S" />
</context>
<context name="El Close" attribute="Normal Text" lineEndContext="#stay">
<DetectChar attribute="Element" context="#pop" char=">" />
<RegExpr attribute="Error" context="#stay" String="\S" />
</context>
<context name="El Close 2" attribute="Normal Text" lineEndContext="#stay">
<DetectChar attribute="Element" context="#pop#pop#pop" char=">" />
<RegExpr attribute="Error" context="#stay" String="\S" />
</context>
<context name="El Close 3" attribute="Normal Text" lineEndContext="#stay">
<DetectChar attribute="Element" context="#pop#pop#pop#pop" char=">" />
<RegExpr attribute="Error" context="#stay" String="\S" />
</context>
<context name="CSS" attribute="Normal Text" lineEndContext="#stay">
( run in 0.519 second using v1.01-cache-2.11-cpan-d7f47b0818f )