>When using the <%dataset name="dataset_name"%>...<%/dataset%> tag in a
template without
>a <%isset name="flag_name"%>...<%/isset%> tag around it then the <%=key%>
tags after
>this are not recognized.
>
>Solution:
>
>Insert the next line after line 104 in SimpleDataSetHandler.java:
>
>template.setTagHandler(parentHandler);

Hmmm... oooh, thats quite a nasty one.

>Another small thing is that line 119 in ReaderTemplateParser.java can be
removed.
>If c equals -1 then break in line 116 is already executed.

Nope... oooh shit, thats a bug it should be
        if( c2 == -1 ) break;
(notice line 118 is c2 = reader.read(); )

Actually, I've just realised a couple logic bugs there... you can't have a
"<" at the end of a file. Doh. Lemme quickly rewrite that section.

Okay, I'll upload tonite. Thanks for pointing these prob's out.

Cheers,

Brian
---
E-mail: [EMAIL PROTECTED]
Home page: http://users.lia.net/jonnes/


------------------------------------------------------------
To subscribe:    [EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Problems?:       [EMAIL PROTECTED]

Reply via email to