diff options
author | ot <ot@localhost> | 2009-02-13 20:51:19 +0000 |
---|---|---|
committer | ot <ot@localhost> | 2009-02-13 20:51:19 +0000 |
commit | aa81609104225174d82566752dbef694a5cd88a4 (patch) | |
tree | a9f2f6927837a504a12a7f27a3f0a2dc968d5da2 /htdocs | |
parent | 46ae139f5218437ef8891bd7e481db7b74112246 (diff) | |
download | markup-validator-aa81609104225174d82566752dbef694a5cd88a4.zip markup-validator-aa81609104225174d82566752dbef694a5cd88a4.tar.gz markup-validator-aa81609104225174d82566752dbef694a5cd88a4.tar.bz2 |
adding list of HTML attributes
Diffstat (limited to 'htdocs')
-rw-r--r-- | htdocs/config/attref.cfg | 243 | ||||
-rw-r--r-- | htdocs/config/validator.conf | 9 |
2 files changed, 251 insertions, 1 deletions
diff --git a/htdocs/config/attref.cfg b/htdocs/config/attref.cfg new file mode 100644 index 0000000..f42b550 --- /dev/null +++ b/htdocs/config/attref.cfg @@ -0,0 +1,243 @@ +# +# Mapping of HTML attribute names and their types +# +# $Id: attref.cfg,v 1.1 2009-02-13 20:51:19 ot Exp $ + +<abbr> +</abbr> +<accept> +</accept> +<accept-charset> +</accept-charset> +<accesskey> +</accesskey> +<action> +</action> +<align> +</align> +<alink> +</alink> +<alt> +</alt> +<archive> +</archive> +<axis> +</axis> +<background> +</background> +<bgcolor> +</bgcolor> +<border> +</border> +<cellpadding> +</cellpadding> +<cellspacing> +</cellspacing> +<char> +</char> +<charoff> +</charoff> +<charset> +</charset> +<checked> +</checked> +<cite> +</cite> +<class> +</class> +<classid> +</classid> +<clear> +</clear> +<code> +</code> +<codebase> +</codebase> +<codetype> +</codetype> +<color> +</color> +<cols> +</cols> +<colspan> +</colspan> +<compact> +</compact> +<content> +</content> +<coords> +</coords> +<data> +</data> +<datetime> +</datetime> +<declare> +</declare> +<defer> +</defer> +<dir> +</dir> +<disabled> +</disabled> +<enctype> +</enctype> +<face> +</face> +<for> +</for> +<frame> +</frame> +<frameborder> +</frameborder> +<headers> +</headers> +<height> +</height> +<href> +</href> +<hreflang> +</hreflang> +<hspace> +</hspace> +<http-equiv> +</http-equiv> +<id> +</id> +<ismap> +</ismap> +<label> +</label> +<lang> +</lang> +<language> +</language> +<link> +</link> +<longdesc> +</longdesc> +<marginheight> +</marginheight> +<marginwidth> +</marginwidth> +<maxlength> +</maxlength> +<media> +</media> +<method> +</method> +<multiple> +</multiple> +<name> +</name> +<nohref> +</nohref> +<noresize> +</noresize> +<noshade> +</noshade> +<nowrap> +</nowrap> +<object> +</object> +<onblur> +</onblur> +<onchange> +</onchange> +<onclick> +</onclick> +<ondblclick> +</ondblclick> +<onfocus> +</onfocus> +<onkeydown> +</onkeydown> +<onkeypress> +</onkeypress> +<onkeyup> +</onkeyup> +<onload> +</onload> +<onmousedown> +</onmousedown> +<onmousemove> +</onmousemove> +<onmouseout> +</onmouseout> +<onmouseover> +</onmouseover> +<onmouseup> +</onmouseup> +<onreset> +</onreset> +<onselect> +</onselect> +<onsubmit> +</onsubmit> +<onunload> +</onunload> +<profile> +</profile> +<prompt> +</prompt> +<readonly> +</readonly> +<rel> +</rel> +<rev> +</rev> +<rows> +</rows> +<rowspan> +</rowspan> +<rules> +</rules> +<scheme> +</scheme> +<scope> +</scope> +<scrolling> +</scrolling> +<selected> +</selected> +<shape> +</shape> +<size> +</size> +<span> +</span> +<src> +</src> +<standby> +</standby> +<start> +</start> +<style> +</style> +<summary> +</summary> +<tabindex> +</tabindex> +<target> +</target> +<text> +</text> +<title> +</title> +<type> +</type> +<usemap> +</usemap> +<valign> +</valign> +<value> +</value> +<valuetype> +</valuetype> +<version> +</version> +<vlink> +</vlink> +<vspace> +</vspace> +<width> +</width> diff --git a/htdocs/config/validator.conf b/htdocs/config/validator.conf index 6788c04..cd5b058 100644 --- a/htdocs/config/validator.conf +++ b/htdocs/config/validator.conf @@ -1,7 +1,7 @@ # # Main Configuration File for the W3C Markup Validation Service. # -# $Id: validator.conf,v 1.31 2008-11-20 14:10:58 ot Exp $ +# $Id: validator.conf,v 1.32 2009-02-13 20:51:19 ot Exp $ # # See 'perldoc Config::General' for the syntax, and be aware that the # 'SplitPolicy' is 'equalsign', ie. keys and values are separated by '\s*=\s*', @@ -98,6 +98,13 @@ Languages = en </Elements> # +# Maps attribute names +<Attributes> + Include attref.cfg +</Attributes> + + +# # Main document Type Registry; contains all information on the types # of documents we support and how they are processed. <Types> |