Uploaded image for project: 'Lucene - Core'
  1. Lucene - Core
  2. LUCENE-590

Demo HTML parser gives incorrect summaries when title is repeated as a heading

Details

    • Bug
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • 2.0.0
    • 3.1, 4.0-ALPHA
    • modules/examples
    • None

    Description

      If you have an html document where the title is repeated as a heading at the top of the document, the HTMLParser will return the title as the summary, ignoring everything else that was added to the summary. Instead, it should keep the rest of the summary and chop off the title part at the beginning (essentially the opposite). I don't see any benefit to repeating the title in the summary for any case.

      In HTMLParser.jj's getSummary():

      String sum = summary.toString().trim();
      String tit = getTitle();
      if (sum.startsWith(tit) || sum.equals(""))
      return tit;
      else
      return sum;

      change it to: (* denotes a line that has changed)

      String sum = summary.toString().trim();
      String tit = getTitle();

      • if (sum.startsWith(tit)) // don't repeat title in summary
      • return sum.substring(tit.length()).trim();
        else
        return sum;

      Attachments

        1. LUCENE-590.patch
          2 kB
          Robert Muir

        Activity

          People

            rcmuir Robert Muir
            curtispd Curtis d'Entremont
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: