On Aug 17, 2006, at 6:17 PM, André Malo wrote:


That is all strange. Can you try the following patch in the build- directory:

Index: lib/DocUtil.pm
===================================================================
--- lib/DocUtil.pm      (revision 432356)
+++ lib/DocUtil.pm      (working copy)
@@ -77,6 +77,7 @@

     # use HTTP path separators (/)
     $docpath = join '/' => ('', File::Spec->splitdir($docpath), '');
+    1 while ($docpath =~ s,/\./,/,g);
     $docpath =~ y,/,/,s; # squeeze multiple slashes

     # compute relative (HTTP-)path from srcfile to docroot


Applying the above and rerunning ./build.sh I see (as an example
for svn diff):

Index: glossary.html.en
===================================================================
--- glossary.html.en    (revision 432560)
+++ glossary.html.en    (working copy)
@@ -6,29 +6,29 @@
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
       -->
<title>Glossary - Apache HTTP Server</title>
-<link href="../style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" /> -<link href="../style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" /> -<link href="../style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" />
-<link href="../images/favicon.ico" rel="shortcut icon" /></head>
+<link href="./style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" /> +<link href="./style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" /> +<link href="./style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" />
+<link href="./images/favicon.ico" rel="shortcut icon" /></head>
<body id="manual-page" class="no-sidebar"><div id="page-header">

Index: invoking.xml.meta
===================================================================
--- invoking.xml.meta   (revision 432560)
+++ invoking.xml.meta   (working copy)
@@ -2,8 +2,8 @@
<metafile>
   <basename>invoking</basename>
-  <path>/./</path>
-  <relpath>..</relpath>
+  <path>/</path>
+  <relpath>.</relpath>
   <variants>
     <variant outdated="yes">de</variant>


so I think that fixes it....

Reply via email to