At 21:50 2002-07-31 -0400, David Gerler wrote: >[...]<a href="//ftp.thesite.com/default.asp?memno=69361" target="_blank">[...]
Incidentally, the way you construct a URI object later in your program is a bit odd. You might want to construct it instead using the URI->new_abs(possibly_relative_href, absolute_base_url) constructor. I think that's discussed in detail in Chapter 4 (http://safari.oreilly.com/main.asp?bookname=perllwp&cnode=36) A quick demonstration: % perl -d -e 1 DB<1> use URI DB<2> $x = URI->new_abs("//foo.com/stuff", "http://www.aoeaoeae.int") DB<3> x $x->as_string 0 'http://foo.com/stuff' -- Sean M. Burke http://www.spinn.net/~sburke/
