File: startup.pl

package info (click to toggle)
w3c-markup-validator 1.3%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 5,044 kB
  • sloc: perl: 2,888; xml: 1,331; python: 427; sh: 216; makefile: 75
file content (13 lines) | stat: -rw-r--r-- 448 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
# mod_perl startup file for the W3C Markup Validator
# http://perl.apache.org/docs/2.0/user/handlers/server.html#mod_perl_Startup

use warnings;
use strict;

# If the validator is not installed in its default dir layout in
# /usr/local/validator, be sure to modify this file so that the path to
# catalog.xml below is correct for validator's sgml-lib/catalog.xml

$ENV{XML_CATALOG_FILES} = "/usr/share/xml/w3c-sgml-lib/schema/dtd/catalog.xml";

1;