Re: [Dspace-tech] Searching : Diacritics Indexing

2012-08-10 Thread DSpace @ Lyncode
Hi, with ASCIIFoldingFilter it not expected for that query to fail. So, probably that is some configuration problem or some wrong deployment procedure. On 9 August 2012 16:12, Claudia Jürgen claudia.juer...@ub.tu-dortmund.dewrote: Hello Emilio and all, just taken a look at the

Re: [Dspace-tech] Searching : Diacritics Indexing

2012-08-10 Thread Claudia Jürgen
Hello, you're right, it works fine, guess I need some new glasses The author was Petuškova, Jekaterina and I searched with Petruskova Made a couple more test with characters from http://en.wikipedia.org/wiki/Latin_characters_in_Unicode and all is well. I'm still interested in an documentation

Re: [Dspace-tech] Searching : Diacritics Indexing

2012-08-10 Thread DSpace @ Lyncode
Full list of mappings http://grepcode.com/file/repo1.maven.org/maven2/org.apache.lucene/lucene-core/3.0.2/org/apache/lucene/analysis/ASCIIFoldingFilter.java#117 On 10 August 2012 12:37, Claudia Jürgen claudia.juer...@ub.tu-dortmund.dewrote: Hello, you're right, it works fine, guess I need

Re: [Dspace-tech] Searching : Diacritics Indexing

2012-08-09 Thread emilio lorenzo
Hi, The class ISOLatin1AccentFilter has been deprecated by Lucene (although still can be found...) and substitued by ASCIIFoldingFilter class For english + latin languages installations , we suggest the following *org.dspace.search.DSAnalyzer* configuration (keep the order, is relevant for

Re: [Dspace-tech] Searching : Diacritics Indexing

2012-08-09 Thread Hatem Jlassi
Objet : Re: [Dspace-tech] Searching : Diacritics Indexing Hi, The class ISOLatin1AccentFilter has been deprecated by Lucene (although still can be found...) and substitued by ASCIIFoldingFilter class For english + latin languages installations , we suggest the following

Re: [Dspace-tech] Searching : Diacritics Indexing

2012-08-09 Thread Claudia Jürgen
[mailto:elore...@arvo.es] Envoyé : 9 août 2012 03:18 À : Hatem Jlassi; dspace-tech@lists.sourceforge.net Objet : Re: [Dspace-tech] Searching : Diacritics Indexing Hi, The class ISOLatin1AccentFilter has been deprecated by Lucene (although still can be found...) and substitued

Re: [Dspace-tech] Searching : Diacritics Indexing

2012-08-09 Thread Claudia Jürgen
Hello Emilio and all, just taken a look at the ASCIIFoldingFilter, which should cover most (those characters with reasonable ASCII alternatives are converted)of the latin characters see

[Dspace-tech] Searching : Diacritics Indexing

2012-08-08 Thread Hatem Jlassi
Hi all, We are running a bilingual (French/English) instance of last version of Dspace (1.8.2). We have some problems with the search with diacritics. The Dspace's searcher doesn't find words with accented characters when the search doesn't include these accents. We modified

Re: [Dspace-tech] Searching : Diacritics Indexing

2012-08-08 Thread Brian Freels-Stendel
Hi, I think the problem may lie in the first line. It should be import org.apache.lucene.analysis.ISOLatin1AccentFilter; and be included at the top of the file with the rest of the imports. The second line looks fine, and goes with the rest of the filter statements. B-- On 8/8/2012 at

Re: [Dspace-tech] Searching : Diacritics Indexing

2012-08-08 Thread Hatem Jlassi
- De : Brian Freels-Stendel [mailto:bfre...@unm.edu] Envoyé : 8 août 2012 14:41 À : DSpace-tech@lists.sourceforge.net; Hatem Jlassi Objet : Re: [Dspace-tech] Searching : Diacritics Indexing Hi, I think the problem may lie in the first line. It should be import