Displaying 2 results from an estimated 2 matches for "bfoo".
Did you mean:
_foo
2007 Oct 10
2
Something to think about
...document, and
construct a composite query. For example, the search "author:foo"
across databases with ids "db1" and "db2", where the prefix for author
in db1 is "A" and the prefix for author in db2 is "B", would become:
(Afoo FILTER db1) OR (Bfoo FILTER db2)
This should give the right sort of results, but the statistics for the
terms will be a bit broken. (Actually, I'm not totally convinced
they'll be broken in a harmful way, because if the term is more frequent
in one collection than another, this could correspond to it being...
2006 Apr 06
5
Using helper method of another model
I have a template that belongs to a certain model (model A). I need to
call a helper method of a different model (model B). Then I need the
helper method of B to call a helper method of model C.
I tried using "include" and "require" and using namespaces, but I got
"undefined method". What is the way to do it?
--
Posted via http://www.ruby-forum.com/.