Bugs item #1275263, was opened at 2005-08-28 21:38 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=684975&aid=1275263&group_id=119783
Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: core Group: 1.1 Status: Open Resolution: None Priority: 5 Submitted By: Martijn Dashorst (dashorst) Assigned to: Nobody/Anonymous (nobody) Summary: Strings.toMultilineMarkup doesn't generate valid xhtml Initial Comment: wicket.util.string.Strings.toMultilineMarkup(String) doesn't generate valid xhtml markup for paragraphs. Currently a string "abc\n\ndef" gets rendered as "abc<p>def". To make this correct xhtml, this should be rendered as either - "<p>abc</p><p>def</p>", - "abc<p>def</p>", or - "<p>abc</p>def" How should the text "abc\ndef\n\nghi\njkl" be rendered? - "abc<br />def<p>ghi<br />jkl</p>" - "abc<br />def<p>ghi</p>jkl" - "<p>abc<br />def</p><p>ghi<br />jkl</p>"? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=684975&aid=1275263&group_id=119783 ------------------------------------------------------- SF.Net email is Sponsored by the Better Software Conference & EXPO September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf _______________________________________________ Wicket-develop mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wicket-develop
