Commit message (Collapse) | Author | Age | Lines | ||
---|---|---|---|---|---|
... | |||||
* | | | Merge remote-tracking branch 'stefan_github/develop' into develop | Louise Crow | 2012-11-20 | -4/+11 | |
|\ \ \ | |||||
| * | | | The used sql syntax is not supported by sqlite. Now db:migrate works with ↵ | Stefan Langenmaier | 2012-11-19 | -4/+11 | |
| | |/ | |/| | | | | | | | sqlite. | ||||
* | | | Merge remote-tracking branch 'bbqsrc_github/develop' into develop | Louise Crow | 2012-11-19 | -2/+1 | |
|\ \ \ | |||||
| * | | | Columns in wrong order in request | Brendan Molloy | 2012-11-17 | -2/+1 | |
| |/ / | | | | | | | We're making the theme more responsive for openaustralia/alaveteli, and this is one of the blockers. This has no effect on the actual appearance of the page and requires no changes to CSS. | ||||
* | | | Merge remote-tracking branch 'openaustralia_github/style_error_pages_fix' ↵ | Louise Crow | 2012-11-19 | -7/+4 | |
|\ \ \ | | | | | | | | | | | | | into develop | ||||
| * | | | Fix styling of error page with current themes | Matthew Landauer | 2012-11-16 | -7/+4 | |
| | | | | |||||
* | | | | Merge remote-tracking branch 'henare_github/remove-dos' into develop | Louise Crow | 2012-11-19 | -8/+0 | |
|\ \ \ \ | |||||
| * | | | | Remove debugging action that could easily DOS a server | Henare Degan | 2012-11-18 | -8/+0 | |
| | |/ / | |/| | | |||||
* / | | | Handle a request for json on a an external request - return the user_name ↵ | Louise Crow | 2012-11-19 | -1/+5 | |
|/ / / | | | | | | | | | | attribute instead of a full user model. Fixes #715. | ||||
* | | | Fix for reference to nil object. Fixes ↵ | Louise Crow | 2012-11-15 | -12/+12 | |
| | | | | | | | | | | | | https://github.com/mysociety/alaveteli/issues/705. | ||||
* | | | Merge branch 'feature/isolate-mail-handling' into develop | Louise Crow | 2012-11-15 | -18/+34 | |
|\ \ \ | | |/ | |/| | |||||
| * | | Move access to mail message id to incoming message. | Louise Crow | 2012-11-15 | -2/+5 | |
| | | | |||||
| * | | Rubyise loop. | Louise Crow | 2012-11-15 | -1/+1 | |
| | | | |||||
| * | | Refactor access to the mail object - only from incoming_message. | Louise Crow | 2012-11-15 | -6/+7 | |
| | | | |||||
| * | | Re-route model code that accesses the mail object from field via wrapper methods | Louise Crow | 2012-11-15 | -9/+17 | |
| | | | |||||
| * | | Add wrapper method so that admin_request_controller doesn't access mail ↵ | Louise Crow | 2012-11-15 | -1/+5 | |
| |/ | | | | | | | object directly. | ||||
* | | Merge remote-tracking branch 'openaustralia_github/quote_images' into develop | Louise Crow | 2012-11-15 | -2/+2 | |
|\ \ | |/ |/| | |||||
| * | Somehow missed committing these changes in the last commit | Matthew Landauer | 2012-11-15 | -2/+2 | |
| | | |||||
| * | Remove duplication in quote marks images | Matthew Landauer | 2012-11-14 | -0/+0 | |
|/ | |||||
* | Emphasise the importance of adding a newrelic.yml file, fix formatting. | Louise Crow | 2012-11-12 | -1/+2 | |
| | |||||
* | Merge branch 'release/0.6.8' into develop | Louise Crow | 2012-11-12 | -23/+53 | |
|\ | | | | | | | | | Conflicts: lib/world_foi_websites.rb | ||||
| * | Uncomment timezone to allow mySoc deployment system to accept timezone param.release/0.6.8 | Louise Crow | 2012-11-12 | -1/+1 | |
| | | |||||
| * | Stub configuration in order to setup test cases. Previous direct setting of ↵ | Louise Crow | 2012-11-12 | -11/+11 | |
| | | | | | | | | config values was not isolated to particular tests. | ||||
| * | Bumping Alaveteli version number. | Louise Crow | 2012-11-12 | -1/+1 | |
| | | |||||
| * | Latest translations from Transifex. | Louise Crow | 2012-11-12 | -3/+3 | |
| | | |||||
| * | Add some notes about using mailcatcher in development. | Louise Crow | 2012-11-08 | -1/+5 | |
| | | |||||
| * | Add sqlite required packages depended on by mailcatcher. | Louise Crow | 2012-11-08 | -0/+2 | |
| | | |||||
| * | Adding release 0.6.8 notes to change file. | Louise Crow | 2012-11-08 | -0/+24 | |
| | | |||||
| * | Add Czech site to list of world FOI sites. | Louise Crow | 2012-11-07 | -2/+7 | |
| | | | | | | | | | | | | Conflicts: lib/world_foi_websites.rb | ||||
| * | Latest Czech translations from Transifex. | Louise Crow | 2012-11-07 | -4/+4 | |
| | | |||||
| * | Another translation tweak. | Louise Crow | 2012-11-06 | -1/+1 | |
| | | |||||
| * | A couple of quick czech locale file fixes. | Louise Crow | 2012-11-06 | -5/+5 | |
| | | |||||
* | | Don't read the saved mail in binary mode. | Louise Crow | 2012-11-08 | -2/+2 | |
| | | | | | | | | | | | | | | | | | | | | The first reason for doing this is that atomic_write doesn't write in binary mode, and I think we should be symmetrical in reading and writing. The second reason is that I don't think a received email is really binary data in its raw form. I think it will be ascii with non ascii parts converted to ascii using content-transfer-encodings (http://en.wikipedia.org/wiki/MIME). This matters in Ruby 1.9 because we have a default internal and external encoding (http://blog.grayproductions.net/articles/ruby_19s_three_default_encodings). UTF-8 seems like a good initial default to set. If we retrieve this data from a file as binary data, we have a problem treating it as text, as we can't convert from binary to text in Ruby 1.9. Given that this is ascii data, I think we can safely treat it as UTF-8 (which should be a superset of ascii), until we convert it into a mail object, which should interpret the mime encodings correctly. | ||||
* | | Make error message expectation slightly less specific - message format is ↵ | Louise Crow | 2012-11-08 | -2/+4 | |
| | | | | | | | | slightly different under ruby 1.9. | ||||
* | | Remove unused method. | Louise Crow | 2012-11-08 | -19/+0 | |
| | | |||||
* | | Pass a hash of params to foi_fragment_cache_path in spec, as is passed in ↵ | Louise Crow | 2012-11-08 | -1/+8 | |
| | | | | | | | | actual usage. | ||||
* | | Remove obsolete comment | Louise Crow | 2012-11-08 | -1/+0 | |
| | | |||||
* | | Suppress iconv deprecation warnings when running under Ruby 1.9 | Louise Crow | 2012-11-08 | -2/+8 | |
| | | |||||
* | | Merge remote-tracking branch 'openaustralia_github/small_html_fixes' into ↵ | Louise Crow | 2012-11-08 | -5/+5 | |
|\ \ | | | | | | | | | | develop | ||||
| * | | Small html fixes to help pages validate | Matthew Landauer | 2012-11-08 | -5/+5 | |
| | | | |||||
* | | | Merge remote-tracking branch ↵ | Louise Crow | 2012-11-08 | -1/+1 | |
|\ \ \ | |/ / |/| | | | | | 'openaustralia_github/html_attachment_fixed_height_header' into develop | ||||
| * | | Stop the height of the html view header changing with the browser window | Matthew Landauer | 2012-11-08 | -1/+1 | |
|/ / | |||||
* | | Add Czech site to list of world FOI sites. | Louise Crow | 2012-11-07 | -2/+6 | |
| | | |||||
* | | Merge remote-tracking branch 'openaustralia_github/add_righttoknow' into develop | Louise Crow | 2012-11-07 | -3/+4 | |
|\ \ | |/ |/| | |||||
| * | Add Australian site | Matthew Landauer | 2012-11-06 | -3/+4 | |
| | | |||||
* | | Translations re-pulled from Transifex to remove fuzzy strings. | Louise Crow | 2012-11-06 | -8798/+18429 | |
| | | |||||
* | | Make newlines in translated strings match newlines in msgid | Louise Crow | 2012-11-06 | -72/+26 | |
| | | |||||
* | | Fix fuzzy markers added due to linebreak changes. | Louise Crow | 2012-11-06 | -39/+34 | |
| | | |||||
* | | New .po files after running bundle exec rake gettext:store_model_attributes ↵ | Louise Crow | 2012-11-06 | -8001/+7496 | |
| | | | | | | | | and bundle exec rake gettext:find | ||||
* | | Prepare for escaped linebreaks with new version of fast-gettext. | Louise Crow | 2012-11-06 | -15691/+5764 | |
|/ |