2009-07-12 01:23:13 -04:00
|
|
|
import re
|
|
|
|
|
2008-04-19 11:10:15 -04:00
|
|
|
import color, method, mode
|
2009-04-07 21:02:19 -04:00
|
|
|
from lex import Grammar, Rule, PatternRule, RegionRule, PatternMatchRule
|
2009-02-16 23:40:11 -05:00
|
|
|
|
2008-09-30 17:04:35 -04:00
|
|
|
class StringGrammar1(Grammar):
|
2008-09-30 17:11:50 -04:00
|
|
|
rules = [
|
2009-07-12 01:23:13 -04:00
|
|
|
PatternRule('data', '[^"&]+'),
|
|
|
|
PatternRule('escaped', '&[a-z]+;'),
|
2008-09-30 17:11:50 -04:00
|
|
|
]
|
2008-09-30 17:04:35 -04:00
|
|
|
class StringGrammar2(Grammar):
|
2008-09-30 17:11:50 -04:00
|
|
|
rules = [
|
2009-07-12 01:23:13 -04:00
|
|
|
PatternRule('data', r"[^'&]+"),
|
|
|
|
PatternRule('escaped', '&[a-z]+;'),
|
2008-09-30 17:11:50 -04:00
|
|
|
]
|
2008-09-30 17:04:35 -04:00
|
|
|
|
2009-02-16 23:40:11 -05:00
|
|
|
class CDataGrammar(Grammar):
|
2009-07-12 01:23:13 -04:00
|
|
|
rules = [PatternRule('data', r'(?:[^\]]|\](?!\])|\]\](?!>))+')]
|
2008-09-30 17:04:35 -04:00
|
|
|
class CommentGrammar(Grammar):
|
2009-07-12 01:23:13 -04:00
|
|
|
rules = [PatternRule('data', '(?:[^-]|-(?!-)|--(?!>))+')]
|
2007-07-21 11:40:53 -04:00
|
|
|
class TagGrammar(Grammar):
|
|
|
|
rules = [
|
2010-09-10 00:18:34 -04:00
|
|
|
PatternRule('attrname', '[a-zA-Z_][-a-zA-Z0-9_]*(?==)'),
|
2009-07-12 01:23:13 -04:00
|
|
|
PatternRule('namespace', '[a-zA-Z_]+(?=:)'),
|
2010-09-10 00:18:34 -04:00
|
|
|
PatternRule('name', '[a-zA-Z_][-a-zA-Z0-9_]*'),
|
2009-07-12 01:23:13 -04:00
|
|
|
PatternRule('delimiter', '[:/=]'),
|
|
|
|
RegionRule('string', '"', StringGrammar1, '"'),
|
|
|
|
RegionRule('string', "'", StringGrammar2, "'"),
|
|
|
|
PatternRule('spaces', ' +'),
|
|
|
|
PatternRule('eol', r'\n'),
|
2007-07-21 11:40:53 -04:00
|
|
|
]
|
2009-07-12 01:23:13 -04:00
|
|
|
class MetadataGrammar(Grammar):
|
|
|
|
rules = [PatternRule('meta', r'\?(?:xml)?')] + TagGrammar.rules
|
|
|
|
class DoctypeGrammar(Grammar):
|
|
|
|
rules = [PatternRule('doctype', '!DOCTYPE')] + TagGrammar.rules
|
2007-07-21 11:40:53 -04:00
|
|
|
|
|
|
|
class XMLGrammar(Grammar):
|
|
|
|
rules = [
|
|
|
|
# TODO: how does cdata work again?
|
2009-07-12 01:23:13 -04:00
|
|
|
PatternRule('data', r'[^<& \n]+'),
|
|
|
|
PatternRule('spaces', ' +'),
|
|
|
|
PatternRule('xml.entity', '&[a-z]+;'),
|
|
|
|
PatternRule('eol', r'\n'),
|
|
|
|
PatternMatchRule('x', '(<)(/)([a-zA-Z_][a-zA-Z0-9_]*)(>)',
|
2009-04-08 00:21:29 -04:00
|
|
|
'xml.tag.start', 'xml.tag.delimiter', 'xml.tag.name',
|
|
|
|
'xml.tag.end'),
|
2009-07-12 01:23:13 -04:00
|
|
|
RegionRule('xml.tag', r'<(?![\?!])', TagGrammar, '/?>'),
|
|
|
|
RegionRule('xml.tag', r'<(?![\?!])', TagGrammar, '/?>'),
|
|
|
|
RegionRule('comment', '<!--', CommentGrammar, '-->'),
|
|
|
|
RegionRule('xml.tag', r'<(?=\?)', MetadataGrammar, r'\?>'),
|
|
|
|
RegionRule('xml.tag', '<(?!!)', DoctypeGrammar, '>'),
|
|
|
|
RegionRule('xml.cdata', r'<!\[CDATA\[', CDataGrammar, r'\]\]>'),
|
2007-07-21 11:40:53 -04:00
|
|
|
]
|
|
|
|
|
2008-04-19 11:10:15 -04:00
|
|
|
class XmlValidate(method.shell.Exec):
|
|
|
|
'''Valid the buffer's contents as valid XML.'''
|
|
|
|
show_success = True
|
|
|
|
args = []
|
|
|
|
def _execute(self, w, **vargs):
|
|
|
|
self._doit(w, w.buffer.path, 'xmlwf %(path)r', cmdname='xml-validate')
|
|
|
|
|
2008-05-06 01:23:58 -04:00
|
|
|
class XmlCreateTag(method.Method):
|
2009-01-28 16:28:33 -05:00
|
|
|
'''Create an opening and closing tag'''
|
2009-04-07 21:02:19 -04:00
|
|
|
args = [method.Argument('tagname', prompt="Tag Name: ",
|
|
|
|
help="Create an open/close tag pair")]
|
2008-05-06 01:23:58 -04:00
|
|
|
def _execute(self, w, **vargs):
|
|
|
|
t = vargs['tagname']
|
|
|
|
w.insert_string_at_cursor("<%s>" % t)
|
|
|
|
p = w.logical_cursor()
|
|
|
|
w.insert_string_at_cursor("</%s>" % t)
|
|
|
|
w.goto(p)
|
|
|
|
|
2009-02-16 23:40:11 -05:00
|
|
|
class XmlCreateComment(method.Method):
|
|
|
|
'''Create an opening and closing tag'''
|
|
|
|
def _execute(self, w, **vargs):
|
|
|
|
w.insert_string_at_cursor("<!-- ")
|
|
|
|
p = w.logical_cursor()
|
|
|
|
w.insert_string_at_cursor(" -->")
|
|
|
|
w.goto(p)
|
|
|
|
|
|
|
|
class XmlCreateCdata(method.Method):
|
|
|
|
'''Create an opening and closing tag'''
|
|
|
|
def _execute(self, w, **vargs):
|
|
|
|
w.insert_string_at_cursor("<![CDATA[")
|
|
|
|
p = w.logical_cursor()
|
|
|
|
w.insert_string_at_cursor("]]>")
|
|
|
|
w.goto(p)
|
|
|
|
|
2007-10-21 20:55:29 -04:00
|
|
|
class XML(mode.Fundamental):
|
2009-03-17 15:24:10 -04:00
|
|
|
name = 'XML'
|
2008-06-16 09:45:13 -04:00
|
|
|
extensions = ['.xml', '.xml.in', '.xsl', '.xsd']
|
2009-07-12 01:23:13 -04:00
|
|
|
detection = [re.compile(r'^<\?xml')]
|
2007-10-18 17:07:35 -04:00
|
|
|
grammar = XMLGrammar
|
|
|
|
colors = {
|
2009-07-12 01:23:13 -04:00
|
|
|
'xml.tag.meta': ('magenta', 'default', 'bold'),
|
|
|
|
'xml.tag.doctype': ('magenta', 'default', 'bold'),
|
|
|
|
'xml.tag.start': ('default', 'default', 'bold'),
|
|
|
|
'xml.tag.namespace': ('magenta', 'default', 'bold'),
|
|
|
|
'xml.tag.name': ('blue', 'default', 'bold'),
|
|
|
|
'xml.tag.attrname': ('cyan', 'default', 'bold'),
|
|
|
|
'xml.tag.end': ('default', 'default', 'bold'),
|
|
|
|
'xml.entity': ('magenta', 'default', 'bold'),
|
|
|
|
'xml.cdata.start': ('magenta', 'default', 'bold'),
|
|
|
|
'xml.cdata.data': ('green', 'default', 'bold'),
|
|
|
|
'xml.cdata.end': ('magenta', 'default', 'bold'),
|
2007-07-21 11:40:53 -04:00
|
|
|
}
|
2009-02-16 23:40:11 -05:00
|
|
|
actions = [XmlValidate, XmlCreateTag, XmlCreateComment, XmlCreateCdata]
|
2009-02-15 12:06:35 -05:00
|
|
|
_bindings = {
|
|
|
|
'xml-create-tag': ('M-t',),
|
|
|
|
}
|
2007-10-19 02:41:33 -04:00
|
|
|
install = XML.install
|