thanks a lot
Juergen
On 7/2/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote:
On 6/30/07, Juergen Donnerstag <[EMAIL PROTECTED]> wrote:
> BoxBorderTest_7 currently fails with Bamboo but it is working fine
> with me. The Bamboo online information from the test doesn't give me a
> hint either. And idea? I guess Bamboo is running on Linux?
I found and fixed an issue in MarkupParser:
if
(CONDITIONAL_COMMENT.matcher(comment).matches() == false)
{
buf.append(rawMarkup.substring(0, pos1 -
1));
should be
if
(CONDITIONAL_COMMENT.matcher(comment).matches() == false)
{
buf.append(rawMarkup.substring(0, pos1));
in this particular test, the newline was removed (and windows and
linux/ osx work with different characters).
Eelco