Hi!
I noticed that pavuk has a slightly inconvinient behavior when doing link
rewriting inside a page. Suppose you have a CGI/ASP-generated page that
has links to itself:
the URL is
http://localhost/test_html.cgi?some=query
and page generated upon this request looks like this:
HTML><HEAD><TITLE>Test index page 1</TITLE></HEAD>
<BODY>
<A NAME="top">
<H1>Test index page 1</H1>
<A HREF="http://localhost/test_html.cgi?some=query#top"> - a
page3 in dir1</A>
</BODY>
</HTML>
-----------------------------------------------------
The link in the page isn't rewritten.
I understand that this is /logically understandable/ behaviour. Technically
speaking
the page should be re-requested each time because it can be really dynamical but
[unfortunately] most "real-world" browsers don't do that (I have tested Mozilla
(1.2b, Gecko/20021022, Linux)).
Please suggest
I have prepared a test CGI, that can demonstrate the problem. It's simple enough
so everyone can adjust it to her/his own environment.