Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | Validate presence of text to replace in censor rules. | Louise Crow | 2012-08-14 | -0/+1 |
| | ||||
* | Add basic validation for regexp censor rules that a valid regexp can be ↵ | Louise Crow | 2012-08-14 | -2/+15 |
| | | | | created with the text of the rule. | |||
* | Make global validation work correctly for regex censor rules. | Louise Crow | 2012-08-14 | -1/+1 |
| | ||||
* | Apply global and public body censor rules to binary files. | Louise Crow | 2012-08-14 | -9/+10 |
| | ||||
* | Handle regexp rules when running censor rules on binary files. | Louise Crow | 2012-08-14 | -5/+2 |
| | ||||
* | Add association between public bodies and censor rules, have info_request ↵ | Louise Crow | 2012-08-14 | -1/+2 |
| | | | | apply rules from its public body. | |||
* | Add concept of global censor rules as orthogonal to regex censor rules. ↵ | Louise Crow | 2012-08-14 | -20/+35 |
| | | | | Apply global rules to every request, not regex rules. | |||
* | Set api_key in before_save rather than after_initialize (to avoid errors ↵ | Seb Bacon | 2012-07-19 | -2/+4 |
| | | | | when uploading via CSV) | |||
* | Fix bug that only occurs when loading sample data - sometimes an InfoRequest ↵ | Seb Bacon | 2012-07-13 | -1/+1 |
| | | | | doesn't have a PublicBody at the time its slug is being calculated. | |||
* | Support regular expressions in CensorRules; also support 'global' ↵ | Seb Bacon | 2012-07-13 | -25/+10 |
| | | | | CensorRules that aren't attached to a User or Request or Public Body (but don't expose this in the admin UI). Fixes #33 | |||
* | WIP new requests feed | Robin Houston | 2012-07-04 | -10/+3 |
| | ||||
* | Use 33 bytes consistently | Robin Houston | 2012-07-02 | -1/+1 |
| | | | | | Let’s use 33 bytes consistently for the API key, to avoid an = pad at the end when it’s base64-encoded. | |||
* | Merge branch 'develop' of github.com:sebbacon/alaveteli into develop | Robin Houston | 2012-06-23 | -10/+16 |
|\ | | | | | | | | | | | | | | | Conflicts: Gemfile.lock script/handle-mail-replies script/handle-mail-replies.rb spec/controllers/request_controller_spec.rb | |||
| * | Merge branch 'master' into develop | Seb Bacon | 2012-06-20 | -10/+16 |
| |\ | ||||
| | * | Only invalidate a user's cached requests when their *name* changes. ↵ | Seb Bacon | 2012-06-20 | -2/+3 |
| | | | | | | | | | | | | Otherwise we issue PURGEs every time, for example, we send out email alerts. | |||
| | * | Correctly name the person who has requested something for admin attention | Seb Bacon | 2012-06-19 | -3/+4 |
| | | | ||||
| | * | another typo | Seb Bacon | 2012-06-15 | -1/+1 |
| | | | ||||
| | * | typo in user-facing string | Seb Bacon | 2012-06-15 | -1/+1 |
| | | | ||||
| | * | Return column name when iterating over admin fields. | Seb Bacon | 2012-06-12 | -1/+1 |
| | | | ||||
| | * | Make emails requesting admin attention appear to come from the user who ↵ | Seb Bacon | 2012-06-12 | -4/+8 |
| | | | | | | | | | | | | requested the attention, not the user who made the original request. | |||
* | | | Merge branch 'feature/public-body-api' into develop | Robin Houston | 2012-06-20 | -15/+80 |
|\ \ \ | |/ / |/| | | ||||
| * | | API controller tests all pass | Robin Houston | 2012-06-18 | -0/+4 |
| | | | ||||
| * | | WIP API | Robin Houston | 2012-06-07 | -2/+13 |
| | | | ||||
| * | | Don’t try to send alerts to external users | Robin Houston | 2012-06-06 | -1/+6 |
| | | | ||||
| * | | Non-logged-in users can create requests | Robin Houston | 2012-06-06 | -3/+3 |
| | | | | | | | | | | | | | | | Make the info_request validation a bit more forgiving, so that non- logged-in users may create requests. | |||
| * | | Fix indexing of info_request_events | Robin Houston | 2012-06-06 | -1/+14 |
| | | | | | | | | | | | | | | | Even external requests need to be indexed, for which we need a slug representing the user. | |||
| * | | Initialise API key in the model | Robin Houston | 2012-06-06 | -2/+6 |
| | | | ||||
| * | | API: we can add a response to a request | Robin Houston | 2012-06-06 | -1/+9 |
| | | | ||||
| * | | Fail less bafflingly | Robin Houston | 2012-06-06 | -1/+9 |
| | | | | | | | | | | | | | | | | | | Fail in a less baffling way if the raw email is associated with an incoming message or an info request that has not yet been saved to the database. | |||
| * | | Remove obsolete comment | Robin Houston | 2012-06-06 | -5/+0 |
| | | | | | | | | | | | | That comment makes precisely no sense whatever, any more. | |||
| * | | External requests | Robin Houston | 2012-06-06 | -1/+17 |
| | | | | | | | | | | | | | | | Add data model support for “external” requests, i.e. requests added via the API rather than made using the site. | |||
| * | | Generate an API key for each public body | Robin Houston | 2012-06-06 | -1/+2 |
| |/ | ||||
* / | Remove empty unused method | Robin Houston | 2012-06-07 | -3/+0 |
|/ | ||||
* | Log an event when a request is hidden | Robin Houston | 2012-06-04 | -0/+1 |
| | ||||
* | Copy the admin team on messages sent to users | Robin Houston | 2012-06-03 | -0/+1 |
| | | | | | When a user is notified of a request having been hidden, BCC the site admin team. | |||
* | File.dirname(__FILE__) is not necessarily absolute | Robin Houston | 2012-06-03 | -1/+1 |
| | | | | | | | It’s weird that there’s so much code here that implicitly assumes File.dirname(__FILE__) is an absolute path, because really in general it very much is not! This assumption was invalidated by the recent bundler-awareness changes. | |||
* | Remove redundant condition (when deciding who gets email alerts) | Seb Bacon | 2012-05-30 | -1/+1 |
| | ||||
* | Support "following" functionality: | Seb Bacon | 2012-05-30 | -35/+35 |
| | | | | | | * Change "email me about stuff" wording to "follow" throughout * Introduce a new flag that the user can set, which controls if they get email alerts * Add a new link to a "wall" for logged in users where they can see a feed of all the things they're following | |||
* | Merge branch 'feature/easy-request-hiding-for-admin' into develop | Seb Bacon | 2012-05-28 | -1/+7 |
|\ | ||||
| * | Support easy hiding of requests for admins. Currently not exposed in core ↵ | Seb Bacon | 2012-05-25 | -1/+7 |
| | | | | | | | | admin interface (requires adminbootstraptheme). | |||
* | | Merge branch 'develop' of github.com:sebbacon/alaveteli into develop | Seb Bacon | 2012-05-28 | -7/+11 |
|\ \ | |/ |/| | ||||
| * | Merge branch 'develop' of github.com:sebbacon/alaveteli into develop | David Cabo | 2012-05-28 | -279/+439 |
| |\ | ||||
| * | | I18n missing descriptions when editing out email addresses | David Cabo | 2012-05-28 | -3/+3 |
| | | | ||||
| * | | Fix not I18n'd email address description | David Cabo | 2012-05-28 | -1/+5 |
| | | | ||||
| * | | Add I18n string for mail clarification | David Cabo | 2012-05-28 | -1/+1 |
| | | | ||||
| * | | I18n missing string in model for quoted sections | David Cabo | 2012-05-28 | -2/+2 |
| | | | ||||
* | | | A new method for ContactMailer that sends messages to users from admins | Seb Bacon | 2012-05-25 | -0/+12 |
| | | | ||||
* | | | Our default "from" details should be the CONTACT_* ones, not the ↵ | Seb Bacon | 2012-05-25 | -0/+6 |
| | | | | | | | | | | | | TRACK_SENDER_* ones. This reverts part of commit 8a4a8feb9cfe0a77195943124112f0d284a7f9cd | |||
* | | | Factor out `contact_from_name_and_email` so it can be used from anywhere in ↵ | Seb Bacon | 2012-05-25 | -12/+1 |
| |/ |/| | | | | | the app. | |||
* | | Further annotation corrections | Seb Bacon | 2012-05-24 | -95/+99 |
| | |