<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>lib/remove_accents.rb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,4 +1,7 @@
-* 2009-02-03
+* 2009-02-06 - 0.5
+- added remove_accents to make searches work regardless of accents (probably should be an option, though)
+
+* 2009-02-03 - 0.4
 - dm-xapian-update daemon to keep the index up to date
 
 * 2008-11-08</diff>
      <filename>CHANGES.txt</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@ require 'merb-core/version'
 require 'merb-core/tasks/merb_rake_helper'
 
 NAME = &quot;dm-xapian&quot;
-GEM_VERSION = &quot;0.3&quot;
+GEM_VERSION = &quot;0.5&quot;
 AUTHOR = &quot;Joshaven Potter, Pascal Belloncle&quot;
 EMAIL = &quot;yourtech@gmail.com, psq@nanorails.com&quot;
 HOMEPAGE = &quot;http://github.com/psq/dm-xapian&quot;</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 Gem::Specification.new do |s|
   s.name = %q{dm-xapian}
-  s.version = &quot;0.4.2&quot;
+  s.version = &quot;0.5.0&quot;
 
   s.required_rubygems_version = Gem::Requirement.new(&quot;&gt;= 0&quot;) if s.respond_to? :required_rubygems_version=
   s.authors = [&quot;Joshaven Potter, Pascal Belloncle&quot;]
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
   s.description = %q{Merb plugin that provides access to the Ruby Xapian search engine library}
   s.email = %q{yourtech@gmail.com, psq@nanorails.com}
   s.extra_rdoc_files = [&quot;README.txt&quot;, &quot;LICENSE&quot;, &quot;TODO&quot;, &quot;SETUP.txt&quot;, &quot;CHANGES.txt&quot;]
-  s.files = [&quot;LICENSE&quot;, &quot;README.txt&quot;, &quot;Rakefile&quot;, &quot;TODO&quot;, &quot;lib/dm-xapian.rb&quot;, &quot;lib/dm-xapian/merbtasks.rb&quot;, &quot;SETUP.txt&quot;, &quot;CHANGES.txt&quot;, &quot;bin/dm-xapian-updater&quot;]
+  s.files = [&quot;LICENSE&quot;, &quot;README.txt&quot;, &quot;Rakefile&quot;, &quot;TODO&quot;, &quot;lib/dm-xapian.rb&quot;, &quot;lib/dm-xapian/merbtasks.rb&quot;, &quot;lib/remove_accents.rb&quot;, &quot;SETUP.txt&quot;, &quot;CHANGES.txt&quot;, &quot;bin/dm-xapian-updater&quot;]
   s.has_rdoc = true
   s.homepage = %q{http://github.com/psq/dm-xapian}
   s.require_paths = [&quot;lib&quot;]</diff>
      <filename>dm-xapian.gemspec</filename>
    </modified>
    <modified>
      <diff>@@ -19,6 +19,7 @@ rescue LoadError
     STDERR.puts &quot;acts_as_xapian: No Ruby bindings for Xapian installed&quot; 
     $acts_as_xapian_bindings_available = false
 end
+require 'remove_accents'
 
 module ActsAsXapian
     ######################################################################
@@ -362,7 +363,7 @@ module ActsAsXapian
             self.initialize_db
 
             # Case of a string, searching for a Google-like syntax query
-            self.query_string = query_string
+            self.query_string = query_string.remove_accents
 
             # Construct query which only finds things from specified models
             model_query = Xapian::Query.new(Xapian::Query::OP_OR, model_classes.map{|mc| &quot;M&quot; + mc.to_s})
@@ -621,7 +622,7 @@ module DataMapper
           elsif type == :boolean
               value ? true : false
           else
-              value.to_s
+              value.to_s.remove_accents
           end
       end
 </diff>
      <filename>lib/dm-xapian.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>ef9423f883a4631e277332196dd5faea81d98cb6</id>
    </parent>
  </parents>
  <author>
    <name>Pascal</name>
    <email>psq@psq-imac-3.local</email>
  </author>
  <url>http://github.com/psq/dm-xapian/commit/8fc4cea4300b97b607976f9b24dd6f59f5ac2f25</url>
  <id>8fc4cea4300b97b607976f9b24dd6f59f5ac2f25</id>
  <committed-date>2009-02-06T23:54:59-08:00</committed-date>
  <authored-date>2009-02-06T23:54:59-08:00</authored-date>
  <message>searches indenpendent of accentuation</message>
  <tree>6a0a501cd2004c7359c1a9a747bd6eb1ab60dff3</tree>
  <committer>
    <name>Pascal</name>
    <email>psq@psq-imac-3.local</email>
  </committer>
</commit>
