diff options
author | francis <francis> | 2008-08-07 00:24:51 +0000 |
---|---|---|
committer | francis <francis> | 2008-08-07 00:24:51 +0000 |
commit | 1dbc9d75f482296468defc99041eb7174b62a40c (patch) | |
tree | 40352412aa9797573413bcb32d7626a64123c9c1 /app/controllers/general_controller.rb | |
parent | 3967bf5b0e791f6af426da394a1e9e3d1e707163 (diff) |
Feeds/alerts for authorities and users now includes responses and followups as
well as original requests.
Add RSS autodetection.
Diffstat (limited to 'app/controllers/general_controller.rb')
-rw-r--r-- | app/controllers/general_controller.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/controllers/general_controller.rb b/app/controllers/general_controller.rb index c01683c03..e7da01417 100644 --- a/app/controllers/general_controller.rb +++ b/app/controllers/general_controller.rb @@ -5,7 +5,7 @@ # Copyright (c) 2008 UK Citizens Online Democracy. All rights reserved. # Email: francis@mysociety.org; WWW: http://www.mysociety.org/ # -# $Id: general_controller.rb,v 1.30 2008-07-28 18:04:38 francis Exp $ +# $Id: general_controller.rb,v 1.31 2008-08-07 00:24:51 francis Exp $ class GeneralController < ApplicationController @@ -83,6 +83,7 @@ class GeneralController < ApplicationController @highlight_words = @xapian_requests.words_to_highlight @track_thing = TrackThing.create_track_for_search_query(query) + @feed_autodetect = [ { :url => do_track_url(@track_thing, 'feed'), :title => @track_thing.params[:title_in_rss] } ] end # For debugging |