add ISOLatin1AccentFilterFactory: SOLR-28

git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@422753 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yonik Seeley 2006-07-17 16:16:56 +00:00
parent 8e9950debb
commit 10d32f1c7b
2 changed files with 32 additions and 0 deletions

View File

@ -29,6 +29,8 @@ New Features
and DisMaxRequestHandler (SOLR-24 / Mike Klaas via hossman,yonik)
16. SnowballPorterFilterFactory language is configurable via the "language"
attribute, with the default being "English". (Bertrand Delacretaz via yonik, SOLR-27)
17. ISOLatin1AccentFilterFactory, instantiates ISOLatin1AccentFilter to remove accents.
(Bertrand Delacretaz via yonik, SOLR-28)
Changes in runtime behavior
1. classes reorganized into different packages, package names changed to Apache

View File

@ -0,0 +1,30 @@
/**
* Copyright 2006 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.solr.analysis;
import org.apache.lucene.analysis.ISOLatin1AccentFilter;
import org.apache.lucene.analysis.TokenStream;
/** Factory for ISOLatin1AccentFilter
* $Id$
*/
public class ISOLatin1AccentFilterFactory extends BaseTokenFilterFactory {
public TokenStream create(TokenStream input) {
return new ISOLatin1AccentFilter(input);
}
}