1
2
3
4
def self.paged_search(query, from, category, locality, page, per_page = 10)
    query_str = []
    query_prms = []
...

Ruby Ferret, pagination and mult...

by jboss, July 17, 2008 07:34, No refactoring, tagged with rails, search, find, join, ferret, paginate

This code has multiple flaw...

3e8242329ec2756662c818a9baba76f9 Talk
1
2
3
4
def construct_search_query
    query = '*' 
    query << 'AND (' << params[:search_all] << ')' if params[:search_all] && params[:search_all].length > 3
...

Ruby Constructing a search query

by foxdemon, July 07, 2008 05:26, 6 refactorings, tagged with search, query, rails

I want to construct a searc...

8fa97b9513b66cccc2db021782863b3b Talk
1
2
3
4
class SearchLet(Form):
    district = Field(widget=SelectMultiple(choices=DISTRICTS, required=False)
...

Python Django models search

by lbolognini, November 10, 2007 16:30, No refactoring, tagged with python, django, search, orm

I'm using the following cod...

D2ff155cd04fa175620d2f3495b11b08 Talk
1
2
3
4
<?
function robots_allowed($url){
	$current_url=$url;
...

PHP Robots Reader

by Matt, October 28, 2007 15:44, 2 refactorings, tagged with robots, txt, robots.txt, reader, open, download, spider, crawler, search

This code will refer to the...

63dc621a0755c77290da87f0feb44491 Talk