diff options
Diffstat (limited to 'htdocs/config/check.cfg')
-rw-r--r-- | htdocs/config/check.cfg | 72 |
1 files changed, 43 insertions, 29 deletions
diff --git a/htdocs/config/check.cfg b/htdocs/config/check.cfg index 731b4d3..e9ad9bf 100644 --- a/htdocs/config/check.cfg +++ b/htdocs/config/check.cfg @@ -1,66 +1,80 @@ # # Main Configuration File for the W3C MarkUp Validation Service. # -# $Id: check.cfg,v 1.4 2002-10-27 15:36:19 ville Exp $ +# $Id: check.cfg,v 1.5 2002-11-26 21:40:19 ville Exp $ # -# Basic Key/Value pairs, separated by TABs. -# Blank lines and lines beginning with "#" are ignored. -# -# The file:// URLs aren't really URLs; it's just convenient shorthand. -# -# TODO: -# * Document format in /docs instead of here. -# * Ditch this format for a sane one; probably using Config::General. +# See 'perldoc Config::General' for the syntax, and be aware that the +# 'SplitPolicy' is 'equalsign', ie. keys and values are separated by '\s*=\s*'. # -DEBUG 1 +DEBUG = 1 # # Email address of the maintainer of this service. -Maintainer www-validator@w3.org +Maintainer = www-validator@w3.org # # The "Home Page" for the service. -Home Page http://validator.w3.org/ +Home_Page = http://validator.w3.org/ # # Base URI To Error Explanations (doc/errors.html) -Msg FAQ URI http://validator.w3.org/docs/errors.html +Msg_FAQ_URI = http://validator.w3.org/docs/errors.html # # Base URI for the Element Reference. -Element Ref URI http://www.htmlhelp.com/reference/html40/ +Element_Ref_URI = http://www.htmlhelp.com/reference/html40/ # # The SGML Library Path. -SGML Library /usr/local/validator/htdocs/sgml-lib +SGML_Library = /var/www/html/w3c-validator/sgml-lib # -# The SGML Parser to use. -SGML Parser /usr/bin/onsgmls +# The SGML Parser to use. Defaults to /usr/bin/onsgmls. +#SGML_Parser = /usr/bin/onsgmls # # Mapping tables etc... -Element Map file:///usr/local/validator/htdocs/config/eref.cfg -FPI to Text file:///usr/local/validator/htdocs/config/fpis.cfg -Error to URI file:///usr/local/validator/htdocs/config/frag.cfg -File Type file:///usr/local/validator/htdocs/config/type.cfg -Doctypes file:///usr/local/validator/htdocs/config/doctypes.cfg -Charsets file:///usr/local/validator/htdocs/config/charset.cfg + +<Element_Map> + Include eref.cfg +</Element_Map> + +<FPI_to_Text> + Include fpis.cfg +</FPI_to_Text> + +<Error_to_URI> + Include frag.cfg +</Error_to_URI> + +<File_Type> + Include type.cfg +</File_Type> + +<Doctypes> + Include doctypes.cfg +</Doctypes> + +<Charsets> + Include charset.cfg +</Charsets> # # DanC territory... -Tips DB file:///usr/local/validator/htdocs/config/tips.cfg +<Tips_DB> + Include tips.cfg +</Tips> # # The "templates" for headers, footers... -Header /usr/local/validator/htdocs/header.html -Footer /usr/local/validator/htdocs/footer.html +Header = /var/www/html/w3c-validator/header.html +Footer = /var/www/html/w3c-validator/footer.html # -# Allowed Protocols -# - List of (comma separated) protocol schemes to allow. -Allowed Protocols http,https +# Comma separated list of protocols the validator is allowed to use for +# retrieving documents. The default is to allow http and https. +#Allowed_Protocols = http,https |