Displaying 20 results from an estimated 7000 matches similar to: "Ruby/Gtk Luke port"
2006 Aug 24
2
acts_as_ferret for Ferret 0.10
Hi all,
the current acts_as_ferret trunk is now ported to Ferret 0.10. 
Get it while it''s hot at
svn://projects.jkraemer.net/acts_as_ferret/trunk/plugin
Nearly everything works, besides this:
- all queries are ORed (no way to tell the QueryParser to build AND
  queries by default)
- more_like_this is broken
I''m working with Dave to fix these things soon. The last Ferret 0.9.x
2006 Jul 10
2
acts_as_ferret 0.2.2
Hi all,
I just tagged acts_as_ferret 0.2.2 as the current stable version, so get
it while it''s hot ;-)
new features: 
- added support for the multiple models/single index approach. 
- find out the total number of search results by calling total_hits on 
  the array returned by find_by_contents.
  
fixes:
- trac tickets #20 (find_by_contents breaks ferret sorting) and #24
 
2007 Feb 04
10
[AAF] remote indexing via DRb with acts_as_ferret
Hi!
Aaf trunk has undergone several major refactorings the last days, with
the result that you can now transparently switch your app from local 
to remote indexing and back :-)
If you plan to scale your app to more than one physical machine, or
if you have problems with corrupted indexes and the like under high 
load, you really should give this a try.
I wrote some documentation to get you
2006 Sep 09
2
acts_as_ferret 0.3.0
Hi,
just wanted to officially announce the release of acts_as_Ferret 0.3.0.
As you see, I''m trying to catch up with Ferret''s version numbers ;-)
svn://projects.jkraemer.net/acts_as_ferret/tags/0.3.0/
or
svn://projects.jkraemer.net/acts_as_ferret/tags/stable/
This release is now tagged stable, so in case anybody has used the old
stable release via an svn external, please
2006 Jul 07
5
Mongrel Debian packages
Hi all,
I just wanted to let you know that I built some Debian (Sarge) 
packages to allow an apt-get only installation of Mongrel, Ruby and
friends.
Also contained is an init script that is capable of managing
multiple applications. Support for the Pen load balancer is also
included.
More info can be found there:
2006 Sep 19
1
Mongrel 0.13.3.4 Debian packages
Hi folks,
just wanted to let you know that I''ve updated the Mongrel Debian/Sarge
packages. please see that blog post [1] for install instructions.
If you already got them installed before, updating should be as easy as
apt-get update
apt-get upgrade
btw: Zed, great work :-)
cheers,
Jens
[1]
http://www.jkraemer.net/2006/7/7/mongrel-apache-and-rails-on-debian-sarge
-- 
webit!
2006 Sep 12
1
options hash ignored when searching multiple readers
Hi,
I''m working on an aaf bug report that led me to what I think is a bug 
in Ferret itself. The snippet at
http://pastie.caboo.se/12950
shows the problem, the last two lines should imho only return one
result, because of :offset => 1 or :limit => 1, but both return all
(that is, 2) results (Ferret 0.10.4). 
Cheers,
Jens
-- 
webit! Gesellschaft f?r neue Medien mbH         
2006 Mar 25
1
RDig - ferret-based website crawler/indexer
Hi!
RDig is a small tool to build a Ferret index for the contents of a
website or intranet. It contains a simple HTTP crawler and some support
for extracting textual content from the fetched pages.
I built this to implement a site-wide search for a recent project 
that combined a Rails application with lots of static html files 
generated by a CMS.
Any feedback is very welcome!
Rubyforge
2007 Mar 26
6
[AAF] acts_as_ferret 0.4.0 released
Hi folks!
Just wanted to let you know that I released aaf 0.4.0 on last weekend.
Besides the DRb server it also includes a new lazy loading feature that
lets you do ferret searches without actually loading any records from the
DB. Useful e.g. for live searches:
model:
class MyModel
  acts_as_ferret :fields => { :title => { :store => :yes }, :content => {} }
end
controller:
2005 Oct 26
1
index compatibility
Hi,
first of all: great work!
I''d like to know which Lucene Version Ferret is based on, in other
words: will I be able to read/write indexes created with current lucene
trunk ?
Thanks in advance,
Jens
-- 
webit! Gesellschaft f?r neue Medien mbH          www.webit.de
Dipl.-Wirtschaftsingenieur Jens Kr?mer       kraemer at webit.de
Schnorrstra?e 76                      Telefon +49 351
2007 Apr 12
19
Multiple Model Search
[from out-of-band communication with steven, just for the record]
Hi!
On Wed, Apr 11, 2007 at 01:47:49PM +0200, Steven Garcia wrote:
> Hey Jens,
> 
[..]
> 
> 1. Is the Search model just an Active Record object or do I need to  
> set up a database for it as well (if so then with what columns)?
No, that search model is just a plain class that backs your search form.
If you want to
2007 Jul 27
6
Problem with installing acts_as_ferret plugin
Hi all,
when I type this:
ruby script/plugin install
svn://projects.jkraemer.net/acts_as_ferret/tags/stable/acts_as_ferret
from my rails project the plugin is not getting installed, its simply
going back to my rails application.
I don''t find the plugin in the vendor/plugin directory
I am using Instant Rails for your information. Could anyone please let
me know whats going wrong...
2007 Aug 24
7
can''t create new ticket
Hi there,
I can''t seem to find a way to create a new ticket.
I''d like to create tickets for those two reproduced bugs:
http://rubyforge.org/pipermail/ferret-talk/2007-June/003588.html
http://rubyforge.org/pipermail/ferret-talk/2007-June/003600.html
Can anybody please do it for me or point me in the right direction ?
TIA
--
2006 Mar 15
4
ActiveRecord::RecordNotFound in search results act_as Ferret
Hello,
I''ve installed the Ferret gem and also got the act_as_ferret code from 
the wiki.
I''ve set up my model "Branch" to act as ferret using the code below.
acts_as_ferret :options => {:fields => [''name'', ''body_text'', ''address'']}
I''ve also set up a ferret_controller with the code below
def find
 
2006 Oct 19
6
not able to install acts_as_ferret
I have an older version installed and want to try the latest ferret/aaf 
to see if it solves some perf problems, but haven''t been able to get aaf 
on multiple tries on multiple days now.
script/plugin install 
svn://projects.jkraemer.net/acts_as_ferret/trunk/plugin/acts_as_ferret
svn: Can''t connect to host ''projects.jkraemer.net'': Operation timed out
Has
2006 Jun 29
13
find_by_contents not returning SearchResults?
The acts_as_ferret documentation says find_by_content returns an 
instance of SearchResults, but I see this error when I try to use the 
results.
undefined method `total_hits'' for []:Array
Here is the link to the documentation:
http://projects.jkraemer.net/acts_as_ferret/rdoc/classes/FerretMixin/Acts/ARFerret/ClassMethods.html#M000010
But here is the actual code:
            result =
2006 Oct 25
3
i cant install acts_as_ferret
This is what happens when i try to get acts_as_ferret ...."nothing 
much"....
Please help me and excuse me if its really dumb, i''m new to this! thanks
C:\rails\app>gem install ferret
Attempting local installation of ''ferret''
Local gem file not found: ferret*.gem
Attempting remote installation of ''ferret''
Updating Gem source index for:
2007 Jul 03
6
How index works!
Hi, i''ve a project in wich i have 2 different rails apps accessing the
same DB.
The backoffice, as usual, changes data.
The frontoffice has a search capabilities with acts_as_ferret
(paginated) for search.
Maybe this is a newbie question but, when i delete index and restart
front app all the articles are indexed, but the new one''s (via
backoffice) are not searchable.
Does
2007 May 31
2
Ferret.donate(Money.aus_dollar(200))
Remember folks, we can support the Ferret project by donating warm soft
electronic cash to the author, Dave Balmain, using the paypal buttons on
the website:
http://ferret.davebalmain.com/trac
http://ferret.davebalmain.com/trac/wiki/DonationsFAQ
We can also buy the Ferret Shortcut pdf/book from O''Reilly, also written
by Dave Balmain.  It''s awesome good:
2006 Apr 05
5
duplicate search results
i''m using Ferret 0.9.0 with acts_as_ferret (the one from svn.jkraemer.net), and
i''m getting duplicate results, as described in this thread:
http://rubyforge.org/pipermail/ferret-talk/2005-December/000048.html
is there a way to configure the indexes created by acts_as_ferret to use :key =>
:id, as described in that thread? i''ve poked around in the code, and had