Hi all,
i experienced a problem with "href" attribute of rendered ExternalLink.
In our application, i needed to parse rendered html in a SaxParser
implementation. But i couldnt!  When i looked in source codes of
ExternalLink and Link, i saw the problematic line is that, in ExternalLink
there is no escaping for & signs.

line 159:
    tag.put("href", url);
should be as below
    tag.put("href", Strings.*replaceAll*(url, "&", "&"));       (which
was already in the Link.java file)


Regards
Kadir
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to