X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/ee952326340b2251b42db34f4823b0495338be86..db4c5f0b56d22815ecc31754271797b2401c9458:/floof/controllers/search.py diff --git a/floof/controllers/search.py b/floof/controllers/search.py index 4e92a6d..53343dd 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.tags 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