aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/request_controller.rb
diff options
context:
space:
mode:
authorfrancis <francis>2008-05-21 10:51:23 +0000
committerfrancis <francis>2008-05-21 10:51:23 +0000
commit4945a4c4801326553be87c80a381afdd787841c3 (patch)
tree1da01bc40aa136b56c9fb080a3332bfe9060c4f9 /app/controllers/request_controller.rb
parent2452b06d4b9a45d43b01af261b19a842a747dbe9 (diff)
Bullet list in credits on about page.
Rename rss_at to described_at. Email alerts based on date of description, not just creation date (so don't miss things that were created before alert but described only recently) Tidy up when described vs. newest is used for sort order. Caching of text extracted from attachments, and display in search results. Add some tests for things that aren't tested. (alright, maybe we *should* use git/hg if I'm going to keep doing this many separate commits on a train)
Diffstat (limited to 'app/controllers/request_controller.rb')
-rw-r--r--app/controllers/request_controller.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/request_controller.rb b/app/controllers/request_controller.rb
index 698a6a576..0d0ba505b 100644
--- a/app/controllers/request_controller.rb
+++ b/app/controllers/request_controller.rb
@@ -4,7 +4,7 @@
# Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved.
# Email: francis@mysociety.org; WWW: http://www.mysociety.org/
#
-# $Id: request_controller.rb,v 1.90 2008-05-19 23:28:39 francis Exp $
+# $Id: request_controller.rb,v 1.91 2008-05-21 10:51:24 francis Exp $
class RequestController < ApplicationController
@@ -58,7 +58,7 @@ class RequestController < ApplicationController
sortby = "newest"
@track_thing = TrackThing.create_track_for_all_new_requests
elsif @view == 'successful'
- @title = "Recent successful responses"
+ @title = "Recently successful responses"
query = 'variety:response (status:successful OR status:partially_successful)'
sortby = "described"
@track_thing = TrackThing.create_track_for_all_successful_requests