X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/e0b6c733c6bea7ff31b9361650fb8534b9433597..d2cfab09f98980d5c1d433a9e75eb65e0b13b0aa:/floof/controllers/search.py diff --git a/floof/controllers/search.py b/floof/controllers/search.py index 720ca67..63e20ec 100644 --- a/floof/controllers/search.py +++ b/floof/controllers/search.py @@ -1,11 +1,12 @@ import logging -from pylons import request, response, session, tmpl_context as c, h +from pylons import request, response, session, tmpl_context as c from pylons.controllers.util import abort, redirect from pylons import url +from floof.lib import helpers as h from floof.lib.base import BaseController, render -from floof.lib.search import parse +from floof.lib.tags import parse log = logging.getLogger(__name__) @@ -20,7 +21,7 @@ class SearchController(BaseController): return self.save() c.query = request.params.get('query', '') - c.artwork = parse(c.query).all() + c.artwork = parse(c.query, me=c.user).all() return render('/index.mako') # TODO: login required