/*
* HTML (XHTML 1.0) ソースの拡張子クラス
* 参考: http://www.w3.org/TR/2000/REC-xhtml1-20000126/
*/
function class_html() {
this.name = 'html';
this.parent = 'srcfile';
this.ext = '\\.(php[3-5]?|phtml?|x?html?|hta)$';
this.elements = new Array(
'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', 'head', 'hr', 'html', 'i',
'h1', 'h2', 'h3', 'h4', 'h5', 'h6',
'iframe', 'img', 'input', 'ins', 'isindex', 'kbd', 'label', 'legend', 'li', 'link', 'map', 'menu', 'meta',
'noframes', 'noscript', 'object', 'ol', 'optgroup', 'option', 'p', 'param', 'pre', 'q', 'rb', 'rbc', 'rp',
'rt', 'rtc', 'ruby', 's', 'samp', 'script', 'select', 'small', 'span', 'strike', 'strong', 'style', 'sub',
'sup', 'table', 'tbody', 'td', 'textarea', 'tfoot', 'th', 'thead', 'title', 'tr', 'tt', 'u', 'ul', 'var'
);
this.attributes = new Array(
'abbr', 'accept', 'accept-charset', 'accesskey', 'action', 'align', 'alt', 'archive',
'axis', 'border', 'cellpadding', 'cellspacing', 'charset', 'checked', 'cite', 'class', 'classid',
'codebase', 'codetype', 'cols', 'colspan', 'content', 'coords', 'data', 'datetime', 'declare',
'defer', 'dir', 'disabled', 'enctype', 'for', 'frame', 'headers', 'height', 'href', 'hreflang', 'ismap',
'id', 'http-equiv', 'label', 'long', 'maxlength', 'media', 'method', 'multiple', 'name', 'nohref',
'onblur', 'onchange', 'onclick', 'ondblclick', 'onfocus', 'onkeydown', 'onkeypress', 'onkeyup',
'onload', 'onmousedown', 'onmousemove', 'onmouseout', 'onmouseover', 'onmouseup', 'onreset',
'onselect', 'onsubmit', 'onunload', 'rbspan', 'readonly', 'rel', 'rev', 'rows', 'rowspan', 'rules',
'scheme', 'scope', 'selected', 'shape', 'size', 'span', 'src', 'standby', 'summary', 'tabindex', 'title',
'type', 'usemap', 'valign', 'value', 'valuetype', 'version', 'width', 'xmlns', 'xml:lang', 'xml:space'
);
}
var f = class_html.prototype;
f.onInitProp = function (arg, classname, methodname) {
App.Prop(this.name, 'wrap-mode') = 'by-unit';
var lex = App.Lexes.Add(this.name);
App.Prop(this.name, 'lex') = lex.name;
//タグの外
lex.DefaultStyle(1) = 'exstyle:タグの外のデフォルト';
lex.DefaultStyle(2) = 'exstyle:マーク宣言';
lex.DefaultStyle(3) = 'exstyle:XML宣言 ~ >';
lex.DefaultStyle('11..13') = 'exstyle:コメント';
addURIRule(lex, '1,11..13');
lex.Add('', '1..3//', 'no-style; state:-10');
//タグの中
lex = App.Lexes.Add('html-tag');
lex.LeadingIdentifiers = '[a-zA-Z]';
lex.FollowingIdentifiers = '[-:a-zA-Z0-9]';
lex.DefaultStyle('1..7') = 'exstyle:デフォルト';
lex.DefaultStyle('11..15') = 'exstyle:コメント';
lex.Add('comment-start', '1..5//', 'no-style; state:-10');
lex.Add('state1', '1/<\\/?/', 'exstyle:タグの開始; state:2');
lex.Add('php-start', '2..30/<(%|\\?php)/', 'transit:php:1');
lex.Add('state2-script', '2/\\