Johannes Meixner wrote:
> Hello,
> 
> On Jun 15 16:32 Suffield, David wrote (shortened):
>> HPLIP 1.6.6 - This release has the following changes.
> ...
>> 2. Fixed broken links in HTML documentation (reported by Johannes
>> Meixner).
> 
> Not all broken links have been fixed.
> 
> With HPLIP 1.6.6 my test-script still shows:
> -------------------------------------------------------------------
> in http://localhost/hplip/about.html:
> http://localhost/images/cups_left.png:
> 14:51:41 ERROR 404: Not Found.
> 
> in http://localhost/hplip/install/step4/cups/net.html:
> http://localhost/hplip/images/network_appsocket.png:
> 14:52:26 ERROR 404: Not Found.
> 
> in http://localhost/hplip/tech_docs/man_pages/fab.html:
> http://localhost/hplip/tech_docs/man_pages/sendfax.html:
> 14:52:28 ERROR 404: Not Found.
> 
> in http://localhost/hplip/tech_docs/man_pages/index.html:
> http://localhost/hplip/tech_docs/man_pages/sendfax.html:
> 14:52:29 ERROR 404: Not Found.
> 
> in http://localhost/hplip/tech_docs/man_pages/toolbox.html:
> http://localhost/hplip/tech_docs/man_pages/sendfax.html:
> 14:52:30 ERROR 404: Not Found.
> -------------------------------------------------------------------
> 
> Regarding "network_appsocket.png" see my fix-doc-hrefs.diff
> which I have sent you in a personal mail:
> You have the file name "network_appssocket.png" (two 's').
> 
> Regarding "sendfax.html" also see my personal mail:
> -------------------------------------------------------------------
> ... for tech_docs/man_pages/sendfax.html and I could not find
> it in your sources - i.e. it seems this one is missing
> at all (or I am blind ;-)
> -------------------------------------------------------------------
> 
> I really recommend to use my test script which I have also
> sent you in the personal mail.
> It even detects typos like "network_appsocket.png"
> versus "network_appssocket.png" ;-)
> Here for all:
> -------------------------------------------------------------------
> #! /bin/bash
> 
> # rpm -Uhv /path/apache2.rpm
> 
> # cd /srv/www/htdocs/
> # mkdir hplip
> # cd hplip
> # cp -a /usr/share/doc/packages/hplip/* .
> 
> # rcapache2 restart
> 
> # cd /tmp
> # mkdir hplip
> # cd hplip
> 
> for f in $( rpm -ql hplip \
>             | grep 'html$' \
>             | sed -e 's|/usr/share/doc/packages/hplip/||' )
> do echo "in http://localhost/hplip/$f:";
>    rm -rf wget.d
>    wget --execute robots=off --no-verbose --recursive \
>         --level=1 --no-host-directories --directory-prefix=wget.d \
>         http://localhost/hplip/$f 2>&1 | grep -B1 404
>    echo
> done >wget.log
> rm -rf wget.d
> -------------------------------------------------------------------
> I know it is a quick and dirty hacked script - but for me
> it works to do this test.
> 
> By the way:
> I only use a local HTTP server because I don't know how to
> use "wget" with "file://..." - and the local HTTP server was
> easier for me than reading the full "wget" documentation ;-)
> 
> 
> Kind Regards
> Johannes Meixner

Sorry about that. We are planning on putting in a link tester like the 
one you developed - just haven't had the time yet. We will work on 
making this corrections ASAP.

Thanks,

Don



_______________________________________________
HPLIP-Devel mailing list
HPLIP-Devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/hplip-devel

Reply via email to