[ https://issues.apache.org/jira/browse/TIKA-525?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Chris A. Mattmann updated TIKA-525: ----------------------------------- Fix Version/s: (was: 0.8) 0.9 - pushing out to 0.9 -- there's no patch for this yet and it's 0.8 release time > Mismatched start and end elements in HtmlParser > ----------------------------------------------- > > Key: TIKA-525 > URL: https://issues.apache.org/jira/browse/TIKA-525 > Project: Tika > Issue Type: Bug > Components: parser > Affects Versions: 0.7 > Reporter: Geoff Jarrad > Assignee: Ken Krugler > Fix For: 0.9 > > > Due to the use of conditionals when determining whether or not to output a HTML element, the HtmlParser sometimes blocks a start element but erroneously passes the end element. > Example: Consider the action of the element for the methods: >
>     public void startElement(
>             String uri, String local, String name, Attributes atts)
>             throws SAXException {
> ...
>             } else if ("BASE".equals(name) && atts.getValue("href") != null) {
> ...
>                 xhtml.startElement(uri, local, "base", atts);
>            }
> 
> and >
>     public void endElement(
>             String uri, String local, String name) throws SAXException {
> ...
>             } else if ("BASE".equals(name)) {
>                 xhtml.endElement("base");
>             }
> ...
> 
-- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.