blob: e9ad9bfdcc5702e4782be2c766a18e923bb3c593 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
#
# Main Configuration File for the W3C MarkUp Validation Service.
#
# $Id: check.cfg,v 1.5 2002-11-26 21:40:19 ville 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*'.
#
DEBUG = 1
#
# Email address of the maintainer of this service.
Maintainer = www-validator@w3.org
#
# The "Home Page" for the service.
Home_Page = http://validator.w3.org/
#
# Base URI To Error Explanations (doc/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/
#
# The SGML Library Path.
SGML_Library = /var/www/html/w3c-validator/sgml-lib
#
# The SGML Parser to use. Defaults to /usr/bin/onsgmls.
#SGML_Parser = /usr/bin/onsgmls
#
# Mapping tables etc...
<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>
Include tips.cfg
</Tips>
#
# The "templates" for headers, footers...
Header = /var/www/html/w3c-validator/header.html
Footer = /var/www/html/w3c-validator/footer.html
#
# 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
|