We have following code in our WebApplication's init method:
final IMarkupSettings markupSettings = getMarkupSettings();
markupSettings.setMarkupParserFactory(new IMarkupParserFactory() {
public MarkupParser newMarkupParser(MarkupResourceStream resource) {
final MarkupParser parser = new MarkupParser(new XmlPullParser(),
resource);
parser.appendMarkupFilter(new OurFilter(), WicketTagIdentifier.class);
...
return parser;
}
});
IMarkupParserFactory is gone in Wicket 1.5,
<https://cwiki.apache.org/WICKET/migration-to-wicket-15.html> does not tell
anything about it. How to rewrite this with Wicket 1.5? Thanks in advance.
Tom
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]