You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Grant Ingersoll (JIRA)" <ji...@apache.org> on 2008/01/10 22:04:34 UTC

[jira] Resolved: (LUCENE-645) Highligter fails to include non-token at end of string to be highlighted

     [ https://issues.apache.org/jira/browse/LUCENE-645?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Grant Ingersoll resolved LUCENE-645.
------------------------------------

    Resolution: Fixed

Last report is this is fixed.

> Highligter fails to include non-token at end of string to be highlighted
> ------------------------------------------------------------------------
>
>                 Key: LUCENE-645
>                 URL: https://issues.apache.org/jira/browse/LUCENE-645
>             Project: Lucene - Java
>          Issue Type: Bug
>          Components: Other
>    Affects Versions: 1.9
>         Environment: Red Hat Linux, Java 1.5
> Windows Java 1.5
>            Reporter: Andrew Palmer
>            Priority: Minor
>
> The following code extract show the problem
> 		TermQuery query= new TermQuery( new Term( "data", "help" )); 
> 		Highlighter hg = new Highlighter(new SimpleHTMLFormatter(), new QueryScorer( query ));
> 		hg.setTextFragmenter( new NullFragmenter() );
> 		
> 		String match = null;
> 		try {
> 			match = hg.getBestFragment( new StandardAnalyzer(), "data", "help me [54-65]" );
> 		} catch (IOException e) {
> 			e.printStackTrace();
> 		}
> 		System.out.println( match );
> The sytsem outputs 
> <B>help</B> me [54-65
> would expect 
> <B>help</B> me [54-65]

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: java-dev-help@lucene.apache.org