X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/f267b2f2841d407dcdf9c3c0f5406f8c10403ccb..e0b6c733c6bea7ff31b9361650fb8534b9433597:/floof/controllers/search.py?ds=inline diff --git a/floof/controllers/search.py b/floof/controllers/search.py index 4e92a6d..720ca67 100644 --- a/floof/controllers/search.py +++ b/floof/controllers/search.py @@ -5,12 +5,12 @@ from pylons.controllers.util import abort, redirect from pylons import url from floof.lib.base import BaseController, render -from floof.lib.search import do_search +from floof.lib.search import parse log = logging.getLogger(__name__) -from floof.model.art import Art, Tag, TagText -from floof.model.search import SavedSearch, GalleryWidget +from floof.model import Art, Tag, TagText +from floof.model import SavedSearch, GalleryWidget import elixir class SearchController(BaseController): @@ -20,7 +20,7 @@ class SearchController(BaseController): return self.save() c.query = request.params.get('query', '') - c.artwork = do_search(c.query) + c.artwork = parse(c.query).all() return render('/index.mako') # TODO: login required