[Java-gnome-developer] Re: java desktop search
Brought to you by:
afcowie
From: Tom T. <tr...@re...> - 2005-08-10 01:57:45
|
Dan> The project with my code is up on souceforge. It is called Dan> DeskCrawler. Cool. Appended is a patch to update the project file to use relative paths and to fix a small buglet that eclipse pointed out. BTW some of the files, like the jars, should probably be marked binary in cvs. I still haven't tried it... Tom Index: .classpath =================================================================== RCS file: /cvsroot/deskcrawler/deskcrawler/.classpath,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 .classpath --- .classpath 6 Aug 2005 23:13:44 -0000 1.1.1.1 +++ .classpath 9 Aug 2005 04:55:22 -0000 @@ -3,7 +3,7 @@ <classpathentry kind="src" path="src"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="lib" path="/usr/share/java/gtk2.6.jar"/> - <classpathentry kind="lib" path="/home/dan/Projects/workspace/DeskCrawler/lucene-1.4.3.jar"/> - <classpathentry kind="lib" path="/home/dan/Projects/workspace/DeskCrawler/commons-daemon.jar"/> + <classpathentry kind="lib" path="commons-daemon.jar"/> + <classpathentry kind="lib" path="lucene-1.4.3.jar"/> <classpathentry kind="output" path="bin"/> </classpath> Index: src/deskcrawler/client/ResultTile.java =================================================================== RCS file: /cvsroot/deskcrawler/deskcrawler/src/deskcrawler/client/ResultTile.java,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 ResultTile.java --- src/deskcrawler/client/ResultTile.java 6 Aug 2005 23:14:42 -0000 1.1.1.1 +++ src/deskcrawler/client/ResultTile.java 9 Aug 2005 04:55:23 -0000 @@ -45,7 +45,7 @@ if(pixbuf != null) icon.set(pixbuf); else { String parentDir = System.getProperty("user.dir") + "/"; - icon .set("parentDir + gnome-logo.png"); + icon .set(parentDir + "gnome-logo.png"); } packStart(icon, false, false, 7); |