Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | [Zurich] Don't migrate problem_state when converting internal notes | Chris Mytton | 2013-10-22 | -1/+0 |
| | | | | | | | | This caused issues with the comment.problem_state column constraints when running on the vhost as some problems were marked as hidden (under normal circumstances you can't add a comment to a hidden problem). Because this column is nullable we simply don't add it to avoid this issue. | |||
* | [Zurich] Remove phone number requirement for mobile app reports | Chris Mytton | 2013-10-21 | -1/+28 |
| | | | | | | | | | | | | | | | | | The phone number was made mandatory in #541. To make this change compatible with older versions of the mobile app I've had to drop server side validation of the phone number for requests that come in from mobile apps. To determine if it's a mobile request I'm checking the 'service' parameter in the request, which is only set in requests from the mobile apps [1]. The phone validation will still happen client side for the newer versions of the app, and the web app will continue to work with the server side validations. [1] https://github.com/mysociety/zurich_mobile/blob/1fec2bc21dad9326819105cdbf5d47183e7503ba/www/js/models.js#L75 | |||
* | Merge pull request #502 from mysociety/oxfordshire-usability-recommendations | Chris Mytton | 2013-10-16 | -95/+176 |
|\ | | | | | Oxfordshire: Implement usability recommendations | |||
| * | Merge branch 'master' into oxfordshire-usability-recommendations | Chris Mytton | 2013-10-16 | -2192/+3645 |
| |\ | |/ |/| | ||||
* | | [Zurich] Add missing translation string | Chris Mytton | 2013-10-15 | -1/+1 |
| | | | | | | | | Part of mysociety/FixMyStreet-Commercial#423 | |||
* | | [Zurich] Capitalise translation | Chris Mytton | 2013-10-15 | -1/+1 |
| | | | | | | | | Part of mysociety/FixMyStreet-Commercial#423 | |||
* | | [Zurich] Add user email address validation to the admin | Chris Mytton | 2013-10-15 | -0/+14 |
| | | | | | | | | Closes mysociety/FixMyStreet-Commercial#426 | |||
* | | [Zurich] Fix styling issue on login form | Chris Mytton | 2013-10-15 | -2/+13 |
| | | | | | | | | Closes #425 | |||
* | | [Zurich] Update locale file for de_CH | Chris Mytton | 2013-10-15 | -239/+645 |
| | | | | | | | | | | | | This was provided by the folks at Zurich. Closes #423 | |||
* | | Version 1.2.6.v1.2.6 | Matthew Somerville | 2013-10-11 | -3/+9 |
| | | ||||
* | | Rename Default Area to Everywhere. | Matthew Somerville | 2013-10-11 | -2/+2 |
| | | ||||
* | | Add Google OpenLayers-based map layer. | Matthew Somerville | 2013-10-11 | -0/+647 |
| | | ||||
* | | Upgrade main OpenLayers to 2.13.1. | Matthew Somerville | 2013-10-11 | -1423/+1241 |
| | | ||||
* | | Reported via mobile device rather than by | Struan Donald | 2013-10-02 | -56/+56 |
| | | | | | | | | Fixes #586 | |||
* | | add box around add body form | Dave Whiteland | 2013-09-30 | -2/+4 |
| | | ||||
* | | whitespace tidyup | Dave Whiteland | 2013-09-30 | -140/+140 |
| | | ||||
* | | add admin-box to separate 'add category' from 'edit body' | Dave Whiteland | 2013-09-30 | -3/+4 |
| | | ||||
* | | add admin-box style | Dave Whiteland | 2013-09-30 | -0/+8 |
| | | ||||
* | | add where-areas-come-from admin hint to body form | Dave Whiteland | 2013-09-30 | -0/+10 |
| | | ||||
* | | add 'leave blank' admin hint for can-be-devolved | Dave Whiteland | 2013-09-30 | -0/+3 |
| | | ||||
* | | Don't need this check (plus it called the wrong function). | Matthew Somerville | 2013-09-30 | -4/+1 |
| | | ||||
* | | [Zurich] Add missing translations from feedback | Chris Mytton | 2013-09-26 | -389/+750 |
| | | | | | | | | Closes mysociety/FixMyStreet-Commercial#420 | |||
* | | Make character limit translation string more generic | Chris Mytton | 2013-09-26 | -2/+2 |
| | | ||||
* | | add FixMindelo to site title | Dave Whiteland | 2013-09-25 | -1/+1 |
| | | ||||
* | | replace black mysoc logo for mindelo, part of #557 | Dave Whiteland | 2013-09-25 | -0/+10 |
| | | ||||
* | | remove 'donate' and 'sites' links in fixmindelo, as #557 | Dave Whiteland | 2013-09-25 | -3/+1 |
| | | ||||
* | | add FB/fabap links to fixmindelo footer, part of #557 | Dave Whiteland | 2013-09-25 | -2/+45 |
| | | ||||
* | | remove FMS-related footer links | Dave Whiteland | 2013-09-25 | -0/+38 |
| | | ||||
* | | add staging banner to fixmindelo, part of #557 | Dave Whiteland | 2013-09-25 | -0/+80 |
| | | ||||
| * | Merge branch 'master' into oxfordshire-usability-recommendations | Chris Mytton | 2013-09-25 | -16/+282 |
| |\ | |/ |/| | ||||
* | | [Oxfordshire] Validate reports are < 1700 characters | Chris Mytton | 2013-09-25 | -3/+8 |
| | | ||||
* | | Fix Bromley use of 'no further action'. | Matthew Somerville | 2013-09-25 | -2/+47 |
| | | | | | | | | | | If SET isn't given, the line means [% foo = ('bar' IF baz) %] rather than [% ([SET] foo = 'bar') IF baz %]. | |||
* | | [Bromley] Fix right click links in IE8 | Chris Mytton | 2013-09-24 | -0/+28 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | When IE8 encounters a link with block level elements inside it (i.e. elements with `display: block`) then it won't give the option to "Open in a new tab" when you right click the link. This fix simply makes all elements inside the link inline, which fixes the problem. This is a Bromley-specific fix. Closes FixMyStreet-Commercial/issues#100 | |||
* | | [Zurich] Display internal notes in separate table | Chris Mytton | 2013-09-23 | -1/+26 |
| | | | | | | | | | | Closes FixMyStreet-Commercial/issues#405 Closes mysociety/FixMyStreet-Commercial#407 | |||
* | | Swap installation of perl modules and db creation, should fix #573. | Matthew Somerville | 2013-09-23 | -5/+5 |
| | | ||||
* | | [Zurich] Default to not sending rejected emails | Chris Mytton | 2013-09-20 | -2/+2 |
| | | | | | | | | Closes mysociety/FixMyStreet-Commercial#410 | |||
* | | [Zurich] Fix link to AV Online | Chris Mytton | 2013-09-20 | -2/+2 |
| | | | | | | | | Closes mysociety/FixMyStreet-Commercial#404 | |||
* | | Prevent admin images going on top of admin-nav | Chris Mytton | 2013-09-20 | -0/+5 |
| | | | | | | | | Closes mysociety/FixMyStreet-Commercial#401 | |||
* | | Correctly list ALLOWED_COBRANDS with hash items. | Matthew Somerville | 2013-09-19 | -1/+5 |
| | | | | | | | | Thanks to Struan for spotting. | |||
* | | Add a view-configuration admin page. | Matthew Somerville | 2013-09-19 | -1/+151 |
| | | | | | | | | Fixes #561. | |||
* | | force mindelo admin table bg | Dave Whiteland | 2013-09-17 | -0/+4 |
| | | ||||
| * | [Oxfordshire] Make the font face/size consistent on around page | Chris Mytton | 2013-09-16 | -5/+0 |
| | | | | | | | | Fixes mysociety/FixMyStreet-Commercial#416 | |||
| * | Merge branch 'master' into oxfordshire-usability-recommendations | Chris Mytton | 2013-09-16 | -255/+720 |
| |\ | |/ |/| | ||||
* | | add warning in admin if body has no area covered | Dave Whiteland | 2013-09-16 | -0/+10 |
| | | | | | | | | closes #565 | |||
* | | Version 1.2.5.v1.2.5 | Matthew Somerville | 2013-09-13 | -209/+479 |
| | | ||||
* | | Example Vagrantfile and notes. | Matthew Somerville | 2013-09-13 | -0/+156 |
| | | | | | | | | | | Based on previous work on vagrant branches, adjusted to use the new --dev argument of the install script. | |||
* | | Do fewer things for a dev installation. | Matthew Somerville | 2013-09-13 | -46/+75 |
| | | | | | | | | | | | | | | | | | | | | If the development parameter is passed to the install-script, don't install a crontab, don't set up nginx, don't force the repository to a particular version, and don't set up an application server. Also only create a general.yml file if one doesn't already exist, and add some locales that the test suite assumes are present. And run the db schema update script. | |||
| * | Merge branch 'master' into oxfordshire-usability-recommendations | Chris Mytton | 2013-09-13 | -5269/+11106 |
| |\ | |/ |/| | ||||
* | | Have a central config-override function. | Matthew Somerville | 2013-09-13 | -60/+56 |
| | | | | | | | | You only need to pass in the values you wish to be different. | |||
* | | Add lots of cobrands to be tested. | Matthew Somerville | 2013-09-13 | -3/+2 |
| | |