> Working for pluckerdir D:\Program Files\Plucker\Default.DB
> Processing i:\sfnew\html\index.htm.
>            0 collected, 0 still to do
>   Retrieved failed: 404 -- [Errno url error] unknown url type: 'i'
                                               ^^^^^^^^^^^^^^^^^^^^^

        There's your clue. You're not using the right syntax to point to the
local URL on your drive. A local file on a Windows machine should be in the
form:

        <A HREF="C:\temp\index.html">Link</a>

        not

        <a href="file:C:\temp\index.html">Link</a>

        or

        <a href="file://C:\temp\index.html">Link</a>

> There is nothing I can determine about why this should fail, except that
> it seems unable to cope with an HREF which is on the same directory as
> the index.htm file. If this is so, it doesn't make any sense, because it
> violates the HTTP spec on relative paths.

        You're not using HTTP when you use file://


/d


Reply via email to