| Commit message (Collapse) | Author | Age | Lines |
... | |
| | |
|
| | |
|
| |
| |
| |
| |
| | |
It looks like some packages only brought in as part of testing are now
spotted and no longer included.
|
|/ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
A repeat of cc6a278; Google have now dropped version 3.20 of their Maps
API, which we were using. Version 3.21 is the oldest available version,
and only appears to work if you start off in hybrid view.
According to https://developers.google.com/maps/documentation/javascript/versions,
in three months 3.21 will be dropped; 3.22 does not currently work with
our OpenLayers code at all. Looking at
http://dev.openlayers.org/releases/OpenLayers-2.13.1/examples/google-v3.html
the maps do still appear if you first switch to the Satellite layer. So
investigation will be needed to find out why that happens and if it can
be worked around.
|
|
|
|
| |
This adds the ability to e.g. limit the all reports page by cobrand.
|
|
|
|
|
| |
A fix to bb1e797; when started via a Catalyst model, e.g. send_email in
FixMyStreet::App, an empty hashref is passed in.
|
|\ |
|
| |
| |
| |
| | |
Maintain old location wrappers.
|
| | |
|
| | |
|
| |
| |
| |
| | |
And create default cobrand class without all of Moose.
|
| |
| |
| |
| | |
Command line scripts don't need a full blown app, just database.
|
| | |
|
| | |
|
| | |
|
|\ \
| |/
|/| |
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
Some categories ask the user for extra information such as street or house
number; these are output in the CSV if the report includes them.
|
| | |
|
|/ |
|
| |
|
| |
|
|
|
|
|
| |
This puts all static pages under /about, and lets you add new static
pages by placing new HTML in your about template directory.
|
| |
|
|
|
|
|
| |
Fixes #1256 by removing the temptation for web browsers
to stretch the SVG to fill the CSS background-size box.
|
|
|
|
| |
Include new contributing document.
|
|\ |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| | |
* Don't show a categories summary unless asked via a link
* Don't needlessly join in questionnaire/update summaries
* Switch count(distinct()) to a subselect as it turns out
select count(*) from (select distinct(user_id) from problem) temp;
is a lot quicker than select count(distinct(user_id)) from problem;
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
Running the graph scripts from their directory does not work with
perl 5.16+, as the chdir interferes with FindBin's operation.
Fixes #1262.
|
| |
| |
| |
| | |
Fixes #1259
|
|\ \
| |/
|/| |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Generally, a rewrite of issue-list-a to item-list--reports or
item-list--wards (two different uses) and issue-list to
item-list--updates, with subsequent renames/changes to children.
For those cobrands using a different list showing a pin icon, use
item-list__item--with-pin to stop needing to override existing classes.
Fix a variety of niggling issues e.e ward list display, or overloading
of the .text class.
|
|\ \ |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Module::Pluggable is marked as deprecated in Perl 5.18, to be removed
from core in a later version. cpanminus, which is called from carton,
ignores core modules that have been deprecated - running a deployment
install under 5.18 therefore caused a warning to be shown saying that
it could not find Module::Pluggable as no version was included in the
snapshot.
|
|\ \ \ |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
If the CDPATH environment variable is set (so cd can look in multiple
places), cd prints out the resulting directory when used. This confuses
a command sequence used in a couple of places doing (cd && pwd) to get
a directory path. Make sure we ignore any output from cd.
|
|\ \ \ \ |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Catalyst::View::TT calls both c->log->error and c->error; the former
logs immediately, while the latter stashes the error, and then calls
c->log->error with it during finalize.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Upgrade Catalyst::Engine and Catalyst::Log to 5.90030 so that errors are
logged via psgi.errors rather than printed to the (perhaps nulled)
stderr. Fixes #404.
|
| |_|/ /
|/| | |
| | | |
| | | |
| | | | |
The changes in 99610f1 missed out adding a class to the footer menu,
and a few subsequent changes to the CSS.
|
| |_|/
|/| |
| | |
| | | |
This means other cobrands could use the same mechanism.
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Have the around, my, and reports pages use the same low level template
for individual list items, which can then be overridden for these
cobrands, meaning they no longer need to override higher level
templates.
The logic in 2b9178d was incorrect; fix this so that the correct
information is included in those templates.
|
| |
| |
| |
| |
| |
| |
| | |
This removes the on map/nearby tabs, replacing them with one combined
list. The styling is moved to the base, so that it is used on mobile
too. A closed option is added to the existing dropdown, and the
base/fixmystreet my templates are also combined. Fixes #1141.
|
| | |
|
|\ \
| |/
|/| |
|
| |
| |
| |
| |
| |
| |
| |
| | |
The aim is to combine base and fixmystreet as much as possible,
providing enough template/styling hooks for any cobrand. This
commit removes the need for separate base/fixmystreet templates
for the front page, almost all of the /around templates, the
open graph headers, and the low level item list templates.
|