Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | Document the new purge functionality | Seb Bacon | 2012-05-02 | -0/+11 |
| | ||||
* | An init script for Debian to keep the purge loop running | Seb Bacon | 2012-05-02 | -0/+81 |
| | ||||
* | Add a method to run the purge process in a continuous loop | Seb Bacon | 2012-05-02 | -1/+15 |
| | ||||
* | Use routing system to work out URL of request to purge, rather than hard ↵ | Seb Bacon | 2012-05-02 | -1/+5 |
| | | | | coding it. | |||
* | More changes and refactoring to make purges work. | Seb Bacon | 2012-04-20 | -59/+176 |
| | ||||
* | You have to install from a git repository if you want bundler to compile ↵ | Seb Bacon | 2012-04-19 | -1/+2 |
| | | | | the extension. If you install from a local gem, it won't compile. Why?! | |||
* | Merge branch 'develop' into purge-requests | Seb Bacon | 2012-04-19 | -173288/+472 |
|\ | | | | | | | | | Conflicts: spec/controllers/request_controller_spec.rb | |||
| * | Merge pull request #464 from jpmckinney/small-fixes | Robin Houston | 2012-04-03 | -20/+20 |
| |\ | | | | | | | Small fixes | |||
| | * | use Rails.root, not RAILS_ROOT | James McKinney | 2012-04-02 | -20/+20 |
| | | | ||||
| * | | Merge pull request #459 from henare/fix-doco | Robin Houston | 2012-04-03 | -7/+8 |
| |\ \ | | | | | | | | | Fix doco | |||
| | * | | Correct constant name | Henare Degan | 2012-04-02 | -1/+1 |
| | | | | ||||
| | * | | Reorder the wording so that it's clear before you do this step (just tripped ↵ | Henare Degan | 2012-04-02 | -5/+6 |
| | | | | | | | | | | | | | | | | me up) | |||
| | * | | Fix typo in link | Henare Degan | 2012-04-02 | -1/+1 |
| | | | | ||||
| * | | | Merge pull request #463 from mhl/tiny-zip-test-fix | Robin Houston | 2012-04-02 | -0/+1 |
| |\ \ \ | | | | | | | | | | | One-line fix for a misleading test failure | |||
| | * | | | Remove cache/zips/ before running tests that write to there | Mark Longair | 2012-04-02 | -0/+1 |
| |/ / / | ||||
| * | | | Merge pull request #462 from jpmckinney/small-fixes | Robin Houston | 2012-04-02 | -0/+2 |
| |\ \ \ | | | |/ | | |/| | Small fixes | |||
| | * | | add a config.ru so that rack servers can run alaveteli more seamlessly | James McKinney | 2012-04-02 | -0/+2 |
| | | | | ||||
| | * | | tmp directory should be available | James McKinney | 2012-04-02 | -0/+0 |
| | |/ | ||||
| * / | Add a caveat | Robin Houston | 2012-04-02 | -1/+5 |
| |/ | | | | | | | | | Add a caveat about update-exim4.conf that bit someone during the installfest at AlaveteliCon. | |||
| * | Fixes to integration/admin_spec | Robin Houston | 2012-03-20 | -2/+1 |
| | | | | | | | | | | | | 1. Remove useless call to spec_helper’s basic_auth_login method 2. Use Base64.encode64, rather than b64encode which also prints the encoded string to standard output. | |||
| * | Merge branch 'wdtk' into develop | Robin Houston | 2012-03-20 | -18/+37 |
| |\ | ||||
| | * | Fix the "log in as" function | Robin Houston | 2012-03-20 | -14/+31 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously the "log in as" function after 3b6e5a692b852a88f55b21a7210f60a6f7cfc24b would attempt to log the admin user out before issuing the redirect. Unfortunately this approach does not work on WhatDoTheyKnow, where the admin pages are served via a different domain (secure.mysociety.org) and so do not share session information with the rest of the site. This commit changes it to mark the PostRedirect with circumstance == "login_as", which signals the user controller to log out the previous user even if they are an admin. In other words, the user is logged out on the main site rather than the admin site, skirting this problem. Closes #450. | |||
| | * | No code changes | Robin Houston | 2012-03-13 | -3/+5 |
| | | | | | | | | | | | | Just trailing whitespace & one comment. | |||
| | * | Admin users clicking confirmation links | Robin Houston | 2012-03-13 | -2/+53 |
| | | | | | | | | | | | | Fixes #446. See issue for details. | |||
| | * | Only trailing whitespace | Robin Houston | 2012-02-16 | -1/+1 |
| | | | ||||
| | * | Add SURVEY_URL and SURVEY_SECRET to general.yml-example | Robin Houston | 2012-02-16 | -0/+5 |
| | | | | | | | | | | | | | | | | | | In the wdtk branch *ONLY* because the deployment system likes the example file to define the same variables as the actual config file. | |||
| | * | Tweak the custom routes mechanism | Robin Houston | 2012-02-16 | -3/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | It didn’t seem to work before. (?) Note that this requires a change to the code as e.g. in https://github.com/sebbacon/alavetelitheme/blob/master/lib/config/custom-routes.rb because the route configuration code should not be inside a Dispatcher.to_prepare block now. | |||
| * | | Merge branch 'develop' of github.com:sebbacon/alaveteli into develop | Seb Bacon | 2012-03-13 | -10/+61 |
| |\ \ | ||||
| | * | | Fix broken test | Robin Houston | 2012-03-13 | -5/+5 |
| | | | | ||||
| | * | | Correct bad nesting | Robin Houston | 2012-03-13 | -3/+2 |
| | | | | ||||
| | * | | Avoid "uninitialized constant Rake::DSL" error | Robin Houston | 2012-03-13 | -0/+1 |
| | | | | | | | | | | | | | | | | See http://stackoverflow.com/a/6686628/424991 | |||
| | * | | Admin users clicking confirmation links | Robin Houston | 2012-03-13 | -2/+53 |
| | | | | | | | | | | | | | | | | Fixes #446. See issue for details. | |||
| * | | | ignore bundler config | Seb Bacon | 2012-03-13 | -1/+2 |
| | | | | ||||
| * | | | ignore bundled gems | Seb Bacon | 2012-03-13 | -0/+1 |
| | | | | ||||
| * | | | in production mode, ensure we skip development and test gems | Seb Bacon | 2012-03-13 | -1/+1 |
| | | | | ||||
| * | | | Mention that bundler must be installed for upgrades | Seb Bacon | 2012-03-12 | -0/+3 |
| |/ / | ||||
| * | | Merge branch 'merged-bundler' into develop | Seb Bacon | 2012-03-12 | -173239/+340 |
| |\ \ | ||||
| | * | | Do 'bundler' stuff in correct order | Seb Bacon | 2012-03-12 | -18/+22 |
| | | | | ||||
| | * | | Update CHANGES.md and INSTALL.md, largely to reflect new bundler setup | Seb Bacon | 2012-03-09 | -14/+26 |
| | | | | ||||
| | * | | fix operator precedence bug | Seb Bacon | 2012-03-09 | -1/+1 |
| | | | | ||||
| | * | | Don't load gems in environment now we use bundler | Seb Bacon | 2012-03-09 | -2/+0 |
| | | | | ||||
| | * | | Work around glibc bug in Debian Squeeze | Seb Bacon | 2012-03-09 | -1/+8 |
| | | | | ||||
| | * | | New lock file for bundler | Seb Bacon | 2012-02-22 | -0/+2 |
| | | | | ||||
| | * | | Further documentation refinements | Seb Bacon | 2012-02-22 | -73/+108 |
| | | | | ||||
| | * | | cause the post-deploy process to run "bundler install" | Seb Bacon | 2012-02-22 | -1/+6 |
| | | | | ||||
| | * | | Include packages necessary for installation on Ubuntu 10.04 LTS | Seb Bacon | 2012-02-22 | -1/+5 |
| | | | | ||||
| | * | | Some more INSTALL corrections and clarifications. | Seb Bacon | 2012-02-22 | -17/+33 |
| | | | | ||||
| | * | | ...and another dependency for bundler | Seb Bacon | 2012-02-22 | -1/+2 |
| | | | | ||||
| | * | | add packages necessary to do "bundle install" on Debian | Seb Bacon | 2012-02-22 | -0/+4 |
| | | | | ||||
| | * | | Update INSTALL.md for bundler (and some other corrections and updates) | Seb Bacon | 2012-02-22 | -44/+57 |
| | | | |