aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
* Add notes about how to make zipfiles downloadable (and provide for this in ↵Seb Bacon2011-09-15-0/+6
| | | | the rails-post-deply script)
* Fix test failures resulting from commit 0f0854cd60aebde1b4a69e455ee40686c4ab0353Seb Bacon2011-09-15-31/+7
|
* Show the standard search with filters when searching from home page box. ↵Seb Bacon2011-09-15-1/+0
| | | | Fixes #170.
* Simplify the "Send follow up" / "Reply" UI: only offer singe "Write a reply" ↵Seb Bacon2011-09-15-19/+61
| | | | option, and on the next page, give the user the opportunity to change the recipient from the default (the last valid sender of a message) to any other valid recipient. Closes #35.
* Ensure we search public bodies only when special hidden form field is passed inSeb Bacon2011-09-15-1/+1
|
* Align headers on new request form, and indent comments slightly to ↵Seb Bacon2011-09-15-1/+10
| | | | differentiate them.
* Provide ability to download zip file containing complete request. Closes #11Seb Bacon2011-09-13-47/+219
|
* Update CSV import description in view to cover tags (issue #60)David Cabo2011-09-13-5/+5
|
* Add support for tags to CSV import, via field "tag_string" (issue #60)David Cabo2011-09-13-12/+31
|
* Make tag optional when importing public bodies through CSV (issue #60)David Cabo2011-09-13-39/+60
|
* More design tweaks from NickSeb Bacon2011-09-13-8/+64
|
* A first stab at a sane print stylesheet. Fixes #16.Seb Bacon2011-09-12-3/+48
|
* Modify "link to this" behaviour: make it pop up a box with an input ↵Seb Bacon2011-09-12-15/+88
| | | | prefilled with the URL, and display it with an icon rather than text. Fixes #172.
* Improve detection of autoresponse emails, so we can discourage users from ↵Seb Bacon2011-09-09-11/+108
| | | | replying to them. Fixes #137 (partially)
* Docs for email bounce handlingRobin Houston2011-09-09-2/+20
|
* upgrade notes for upcoming versionSeb Bacon2011-09-09-0/+24
|
* Merge origin/develop into local develop (including Nick's design changes)Seb Bacon2011-09-09-715/+1198
|\
| * Remove stray (debugging?) puts statementRobin Houston2011-09-08-1/+0
| |
| * Fix indentationRobin Houston2011-09-08-1/+1
| |
| * Make HTML ids unique even with multiple localesRobin Houston2011-09-08-12/+16
| | | | | | | | | | | | In situations where a block of HTML is generated for each enabled locale, we need to include the locale name in generated ids otherwise the id will not be unique within the document, resulting in invalid HTML.
| * Merge branch 'wdtk' into developRobin Houston2011-09-08-220/+483
| |\ | | | | | | | | | | | | | | | Conflicts: config/general.yml-example spec/models/track_mailer_spec.rb
| | * Failing to stop the alert-tracks daemon is non-fatalRobin Houston2011-09-08-1/+1
| | |
| | * Fix User.should_be_emailed?Robin Houston2011-09-08-12/+39
| | | | | | | | | | | | | | | The User.should_be_emailed? method needs to be public. It should also be tested.
| | * yet another missing fixture declaration!Robin Houston2011-09-08-1/+1
| | |
| | * Fix “email bounced” recordingRobin Houston2011-09-07-9/+51
| | | | | | | | | | | | | | | Add tests for the User.record_bounce_for_email method and (not coincidentally) make it actually work.
| | * Change the type of User.email_bounce_message to :text, because weRobin Houston2011-09-07-1/+1
| | | | | | | | | | | | are storing the entire bounce email in there now.
| | * Don’t send track messages to bounced usersRobin Houston2011-09-07-0/+2
| | | | | | | | | | | | | | | Check the User.should_be_emailed? value before sending track alert messages to a user.
| | * Migration for new User columnsRobin Houston2011-09-07-0/+15
| | | | | | | | | | | | | | | A migration to add the new columns email_bounced_at and email_bounce_message to the users table.
| | * Merge branch 'wdtk' of git@github.com:sebbacon/alaveteli into wdtkRobin Houston2011-09-07-0/+0
| | |\ | | | | | | | | | | | | | | | | Conflicts: script/handle-mail-replies
| | | * Fix silly bugRobin Houston2011-09-07-1/+1
| | | |
| | | * Set cwd to alaveteli rootRobin Houston2011-09-07-8/+10
| | | | | | | | | | | | | | | | | | | | In the handle-mail-replies script, set the current directory to the alaveteli root, otherwise Rails fails to load.
| | | * Merge branch 'wdtk' of github.com:sebbacon/alaveteli into wdtkRobin Houston2011-09-07-8/+50
| | | |\ | | | | | | | | | | | | | | | | | | | | Conflicts: script/handle-mail-replies
| | | * \ Merge branch 'wdtk' of github.com:sebbacon/alaveteli into wdtkRobin Houston2011-09-07-0/+0
| | | |\ \
| | | * \ \ Merge branch 'wdtk' of github.com:sebbacon/alaveteli into wdtkRobin Houston2011-09-07-0/+22
| | | |\ \ \
| | | * | | | New script to handle mail repliesRobin Houston2011-09-07-0/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a new script to handle email replies sent in response to track messages. At the moment this script just forwards the mail on to the email address specified in the config variable FORWARD_NONBOUNCE_RESPONSES_TO. Later it will handle bounces, too.
| | * | | | | Detect multipart/report bounce messagesRobin Houston2011-09-07-16/+289
| | | |_|_|/ | | |/| | | | | | | | | | | | | | | | | | | | | Add support for multipart/report bounce messages to script/handle-mail-replies. Also add a spec test for this script.
| | * | | | Script to handle mail repliesRobin Houston2011-09-07-0/+68
| | | |_|/ | | |/| | | | | | | | | | | | | | | | | | | | | | Handle replies by marking bounces and forwarding everything else to the address specified in the config variable FORWARD_NONBOUNCE_RESPONSES_TO.
| | * | | Restore commonlibRobin Houston2011-09-07-0/+0
| | | |/ | | |/| | | | | | | | | | | | | commonlib was accidentally downgraded by commit 6e200cc8e025d1989fcfacb99b7e9e70cf7540d1 This commit restores the upgrade.
| | * | Record bouncesRobin Houston2011-09-07-0/+22
| | |/ | | | | | | | | | | | | | | | Add information to the users model recording whether email to a user has bounced hard (meaning we should not try to send further messages to that email address).
| | * Move external_command.rb to commonlibRobin Houston2011-09-07-197/+0
| | |
| | * Different sender address for track messagesRobin Houston2011-09-07-2/+12
| | | | | | | | | | | | | | | | | | Use the new configuration variables TRACK_SENDER_NAME and TRACK_SENDER_EMAIL to specify the sender address for track messages, which may therefore be different from the general contact address.
| | * Add the new FORWARD_NONBOUNCE_RESPONSES_TO config variable.Robin Houston2011-09-06-0/+5
| | | | | | | | | | | | We may as well pull in GAZE_URL from the develop branch while we’re at it.
| | * Tidy up the codeRobin Houston2011-09-06-13/+11
| | |
| * | Merge branch 'develop' of git@github.com:sebbacon/alaveteli into developRobin Houston2011-09-08-5627/+11536
| |\ \ | | | | | | | | | | | | | | | | Conflicts: app/models/request_mailer.rb
| | * | Hide Internal Admin from user, but using SQL conditions instead, fixes #173David Cabo2011-09-07-2/+4
| | | |
| | * | Add link to search in public body web while creating new request, fixes #174David Cabo2011-09-07-6/+11
| | | |
| | * | Added new translated Spanish stringsDavid Cabo2011-09-07-3330/+3653
| | | |
| | * | Rebuild pot file to include latest I18n stringsDavid Cabo2011-09-07-309/+443
| | | |
| | * | Minor updates to Spanish translationDavid Cabo2011-09-07-3590/+3338
| | | |
| | * | I18nize string in frontpageDavid Cabo2011-09-07-1/+1
| | | |