validator/htdocs/docs install_win.html,1.8,1.9

Update of /sources/public/validator/htdocs/docs
In directory hutz:/tmp/cvs-serv29375

Modified Files:
	install_win.html 
Log Message:
sgml-lib path
minor fixes

Index: install_win.html
===================================================================
RCS file: /sources/public/validator/htdocs/docs/install_win.html,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- install_win.html	8 Dec 2006 07:19:37 -0000	1.8
+++ install_win.html	13 Mar 2007 13:30:03 -0000	1.9
@@ -91,7 +91,7 @@
   Web server are located (in subfolders, obviously). For instance, Apache is installed in
   <code>C:\www\Apache2</code>, Perl in <code>C:\www\perl</code>, the perl modules unzipped in
   <code>C:\www\pmm</code>, the validator itself in <code>C:\www\validator</code> and finally
-  the DTD-Collection in <code>C:\www\validator\htdocs\sgml-lib</code></p>
+  the DTD-Collection in <code>C:\www\sgml-lib</code></p>
 
 <p>The rest of this guide will assume that these paths are being used. If you want to use another 
 directory structure, you will have to adapt the instructions and sample configuration to your
@@ -423,7 +423,14 @@
 <p>This is the path to the Perl interpreter, up to now in
   Unix-style. So it has to be changed to Windows-style. The
   parameter <code>-T</code> is replaced by that, too.</p>
-<p>In a next step, the script is told where to find the 
+<p>For some configurations, the check-skript needs to know where
+  its root directory is. It tries to read it from the environment
+  variable W3C_VALIDATOR_HOME and uses a default directory if it is
+  not set. That is done within the line:</p>
+<pre>  my $base_path = $ENV{W3C_VALIDATOR_HOME} || '/usr/local/validator';</pre>
+<p>So we change that line fixed to our path:</p>
+<pre>>  my $base_path = 'C:/www/validator'</pre>.
+<p>In the following lines the script is told where to find the 
   configuration file. That is done after the comment in these lines</p>
 <pre>
 #

Received on Tuesday, 13 March 2007 13:30:24 UTC