mirror of https://github.com/apache/lucene.git
LUCENE-1390: Added ASCIIFoldingFilter, a Filter that converts alphabetic, numeric, and symbolic Unicode characters which are not in the first 127 ASCII characters (the "Basic Latin" Unicode block) into their ASCII equivalents, if one exists. ISOLatin1AccentFilter, which handles a subset of this filter, has been deprecated.
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@724053 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
19c82a230d
commit
8660ccb303
|
@ -1,4 +1,4 @@
|
|||
Lucene Change Log
|
||||
Lucene Change Log
|
||||
$Id$
|
||||
|
||||
======================= Trunk (not yet released) =======================
|
||||
|
@ -116,6 +116,13 @@ New features
|
|||
8. LUCENE-1296: add protected method CachingWrapperFilter.docIdSetToCache
|
||||
to allow subclasses to choose which DocIdSet implementation to use
|
||||
(Paul Elschot via Mike McCandless)
|
||||
|
||||
9. LUCENE-1390: Added ASCIIFoldingFilter, a Filter that converts
|
||||
alphabetic, numeric, and symbolic Unicode characters which are not in
|
||||
the first 127 ASCII characters (the "Basic Latin" Unicode block) into
|
||||
their ASCII equivalents, if one exists. ISOLatin1AccentFilter, which
|
||||
handles a subset of this filter, has been deprecated.
|
||||
(Andi Vajda, Steven Rowe via Mark Miller)
|
||||
|
||||
Optimizations
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -25,6 +25,9 @@ import org.apache.lucene.analysis.tokenattributes.TermAttribute;
|
|||
* <p>
|
||||
* For instance, 'à' will be replaced by 'a'.
|
||||
* <p>
|
||||
*
|
||||
* @deprecated in favor of {@link ASCIIFoldingFilter} which covers a superset
|
||||
* of Latin 1. This class will be removed in Lucene 3.0.
|
||||
*/
|
||||
public class ISOLatin1AccentFilter extends TokenFilter {
|
||||
public ISOLatin1AccentFilter(TokenStream input) {
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue