X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/69d5189cc4fb2ca63418a0741bf744cf5fee8bc9..cb1976ef371904b45d7961212cd87595a9486284:/floof/controllers/search.py diff --git a/floof/controllers/search.py b/floof/controllers/search.py index 57ff4d2..4e92a6d 100644 --- a/floof/controllers/search.py +++ b/floof/controllers/search.py @@ -18,11 +18,11 @@ class SearchController(BaseController): def index(self): if request.params.get('button') == 'Save': return self.save() - + c.query = request.params.get('query', '') c.artwork = do_search(c.query) return render('/index.mako') - + # TODO: login required def save(self): c.query = request.params.get('query', '') @@ -30,19 +30,18 @@ class SearchController(BaseController): elixir.session.commit() redirect(url('saved_searches')) # TODO: do something better than this. - - + + # TODO: login required def list(self): c.searches = c.user.searches return render('/searches.mako') - + # TODO: login required def display(self, id): c.search = h.get_object_or_404(SavedSearch, id=id) c.gallery = GalleryWidget(search=c.search, page=c.user.primary_page) elixir.session.commit() redirect(url(controller="users", action="view", name=c.user.name)) - - - \ No newline at end of file + +