Author: jflesch
Date: 2007-07-31 14:32:11 +0000 (Tue, 31 Jul 2007)
New Revision: 14447

Modified:
   trunk/apps/Thaw/src/thaw/i18n/source.thaw_fr.properties
   trunk/apps/Thaw/src/thaw/i18n/thaw.properties
   trunk/apps/Thaw/src/thaw/plugins/index/SearchResult.java
Log:
Fix the search in the indexes

Modified: trunk/apps/Thaw/src/thaw/i18n/source.thaw_fr.properties
===================================================================
--- trunk/apps/Thaw/src/thaw/i18n/source.thaw_fr.properties     2007-07-30 
22:57:36 UTC (rev 14446)
+++ trunk/apps/Thaw/src/thaw/i18n/source.thaw_fr.properties     2007-07-31 
14:32:11 UTC (rev 14447)
@@ -250,7 +250,7 @@
 thaw.about.l09=- Le look&feel Liquid ( https://liquidlnf.dev.java.net/ ; LGPL )
 thaw.about.l10=- Hsqldb ( http://hsqldb.org/ ; Hsqldb license )
 thaw.about.l11=- JmDNS ( http://jmdns.sourceforge.net/ ; LGPL )
-thaw.about.l10=- One-jar ( http://one-jar.sourceforge.net/ ; License one-jar )
+thaw.about.l12=- One-jar ( http://one-jar.sourceforge.net/ ; License one-jar )
 thaw.about.l13=- Certaines parties du code source du noeud Freenet ( 
http://freenetproject.org/ ; GPL )
 thaw.about.l14=- Certaines parties du code source de Frost ( 
http://jtcfrost.sourceforge.net/ ; GPL )
 thaw.about.l15=Toutes ces licenses sont incluses dans Thaw.jar

Modified: trunk/apps/Thaw/src/thaw/i18n/thaw.properties
===================================================================
--- trunk/apps/Thaw/src/thaw/i18n/thaw.properties       2007-07-30 22:57:36 UTC 
(rev 14446)
+++ trunk/apps/Thaw/src/thaw/i18n/thaw.properties       2007-07-31 14:32:11 UTC 
(rev 14447)
@@ -259,7 +259,7 @@
 thaw.about.l09=- Hsqldb ( http://hsqldb.org/ ; Hsqldb license )
 thaw.about.l10=- BouncyCastle ( http://bouncycastle.org/ ; Bouncy castle 
license )
 thaw.about.l11=- JmDNS ( http://jmdns.sourceforge.net/ ; LGPL )
-thaw.about.l10=- One-jar ( http://one-jar.sourceforge.net/ ; One-jar license )
+thaw.about.l12=- One-jar ( http://one-jar.sourceforge.net/ ; One-jar license )
 thaw.about.l13=- Some parts of the Freenet node source code ( 
http://freenetproject.org/ ; GPL )
 thaw.about.l14=- Some parts of Frost source code ( 
http://jtcfrost.sourceforge.net/ ; GPL )
 thaw.about.l15=All the licenses are included in Thaw.jar

Modified: trunk/apps/Thaw/src/thaw/plugins/index/SearchResult.java
===================================================================
--- trunk/apps/Thaw/src/thaw/plugins/index/SearchResult.java    2007-07-30 
22:57:36 UTC (rev 14446)
+++ trunk/apps/Thaw/src/thaw/plugins/index/SearchResult.java    2007-07-31 
14:32:11 UTC (rev 14447)
@@ -60,7 +60,7 @@
                }

                for (j = 0 ; j < search.length ; j++) {
-                       st.setString(i, "%" + search[j] + "%");
+                       st.setString(i, "%" + search[j].toLowerCase() + "%");
                        i++;
                }
        }


Reply via email to