Your message dated Mon, 6 Jul 2009 18:45:08 -0700
with message-id <[email protected]>
and subject line Re: Bug#535854: www.debian.org: developers-reference broken on
European servers
has caused the Debian Bug report #535854,
regarding www.debian.org: developers-reference broken on European servers
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
535854: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=535854
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: www.debian.org
Severity: normal
From Europe view, the online copy of developers-reference [1] is broken.
All links in the TOC are dead.
[1] http://www.debian.org/doc/manuals/developers-reference/
Patrik
signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
On Mon, Jul 06, 2009 at 10:36:14PM +0200, Patrik Fimml wrote:
> On Mon, Jul 06, 2009 at 09:45:27PM +0200, Simon Paillard wrote:
> > On Sun, Jul 05, 2009 at 05:27:54PM +0200, Patrik Fimml wrote:
> > > From Europe view, the online copy of developers-reference [1] is broken.
> > > All links in the TOC are dead.
> > >
> > > [1] http://www.debian.org/doc/manuals/developers-reference/
> >
> > Thanks for your report.
> >
> > This is due to the current 7doc crontab on www-master, which uses
> > absolute symlinks.
> >
> > These symlinks are no longer valid once replicated on webmirrors.
> >
> > Here is a (ugly) patch against the current crontab, in order to use
> > relative syminks.
>
> > - ln -sf $webdocdir/developers-reference/$(basename "$doc" .html).en.html
> > $webdocdir/developers-reference/$(basename "$doc" .html).html.en
> > + cd $webdocdir/developers-reference/
> > + ln -sf $(basename "$doc" .html).en.html $(basename "$doc" .html).html.en
>
> maybe I'm missing something, but
>
> - ln -sf $webdocdir/developers-reference/$(basename "$doc" .html).en.html
> $webdocdir/developers-reference/$(basename "$doc" .html).html.en
> + ln -sf $(basename "$doc" .html).en.html
> $webdocdir/developers-reference/$(basename "$doc" .html).html.en
>
> should work just as well, no need for all those ugly cds. (I would have
> submitted a new patch, but I don't have access to the original file.)
Thank you both for handling this problem. I've just committed a patch
that should relativize the symbolic links and, hopefully, fix the
problem.
--
Matt Kraai http://ftbfs.org/
--- End Message ---