? .svn
? 231200_20.patch
? bias-last-comment-changed-376270-1.patch
? bias-last-comment-changed-376270-2.patch
? bugs.txt
? caller.patch
? drupal-path-337879-14.patch
? foo.php
? index-more-376255-1.patch
? iso-map-231200-22.patch
? luke-cleanup-376966-2.patch
? new-text-377494-1.patch
? solr_url_path_2.patch
? solrconfig.xml.txt
? tobias.txt
? SolrPhpClient/.svn
? SolrPhpClient/Apache/.svn
? SolrPhpClient/Apache/Solr/.svn
? SolrPhpClient/Apache/Solr/Service/.svn
? contrib/.svn
? contrib/apachesolr_attachments/.svn
? contrib/apachesolr_image/.svn
? contrib/apachesolr_mlt/.svn
? contrib/apachesolr_multisitesearch/.svn
? contrib/apachesolr_nodeaccess/.svn
? contrib/apachesolr_nodeaccess/tests/.svn
? tests/.svn
Index: CHANGELOG.txt
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/apachesolr/Attic/CHANGELOG.txt,v
retrieving revision 1.1.2.22
diff -u -p -r1.1.2.22 CHANGELOG.txt
--- CHANGELOG.txt	20 Feb 2009 02:05:54 -0000	1.1.2.22
+++ CHANGELOG.txt	20 Feb 2009 02:09:30 -0000
@@ -8,6 +8,8 @@ Apache Solr integration 6.x-1.x, xxxx-xx
 
 Apache Solr integration 6.x-1.0-xxxxx, xxxx-xx-xx
 ------------------------------
+#231200 by janusman and pwolanin, turn on mapping of accented to non-accented
+        ISO characters for indexing and search. 
 #377494 by pwolanin, Update text type in schema to new example.
 #376270 by pwolanin, also add option to bias on recent comments/changes
 #337879 by pwolanin and blackdog, Store relative not absolute paths.
Index: schema.xml
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/apachesolr/schema.xml,v
retrieving revision 1.1.2.1.2.26
diff -u -p -r1.1.2.1.2.26 schema.xml
--- schema.xml	20 Feb 2009 02:05:54 -0000	1.1.2.1.2.26
+++ schema.xml	20 Feb 2009 02:09:30 -0000
@@ -128,6 +128,7 @@
         -->
     <fieldType name="text" class="solr.TextField" positionIncrementGap="100">
       <analyzer type="index">
+        <charFilter class="solr.MappingCharFilterFactory" mapping="mapping-ISOLatin1Accent.txt"/>
         <tokenizer class="solr.HTMLStripWhitespaceTokenizerFactory"/>
         <!-- in this example, we will only use synonyms at query time
         <filter class="solr.SynonymFilterFactory" synonyms="index_synonyms.txt" ignoreCase="true" expand="false"/>
@@ -147,6 +148,7 @@
         <filter class="solr.RemoveDuplicatesTokenFilterFactory"/>
       </analyzer>
       <analyzer type="query">
+        <charFilter class="solr.MappingCharFilterFactory" mapping="mapping-ISOLatin1Accent.txt"/>
         <tokenizer class="solr.WhitespaceTokenizerFactory"/>
         <filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="true"/>
         <filter class="solr.StopFilterFactory"
