aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
* Fix - configure maps when setting up cobrandEdmund von der Burg2011-04-04-0/+3
|
* Merge branch 'master' into migrate_to_catalystEdmund von der Burg2011-04-04-2060/+3835
|\ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: .gitignore commonlib conf/packages perllib/FixMyStreet/Map.pm templates/website/cobrands/barnet/footer web/confirm.cgi web/css/core.css web/import.cgi web/index.cgi
| * Put new string in .po file.Matthew Somerville2011-04-01-5/+22
| |
| * Missing translated string, .po update.Matthew Somerville2011-04-01-11/+7
| |
| * Add clear to fix Southampton FF issue.Matthew Somerville2011-04-01-3/+3
| |
| * .po files update.Matthew Somerville2011-03-29-254/+276
| |
| * Remove fuzziness for one mostly unchanged string.Matthew Somerville2011-03-29-1/+0
| |
| * Don't error/show if no result returned.Matthew Somerville2011-03-29-5/+11
| |
| * Move midpoint code to Cobrand, as I missed it hidden in map code.Matthew Somerville2011-03-26-2/+12
| |
| * Merge branch 'master' of ↵Matthew Somerville2011-03-25-1/+3
| |\ | | | | | | | | | ssh://matthew@git.mysociety.org/data/git/public/fixmystreet
| | * Update crontab for reportemptyhomes to verbose once a day.Matthew Somerville2011-03-25-1/+3
| | |
| * | Variables always defined at this point, compare to empty string.Matthew Somerville2011-03-25-1/+1
| |/
| * Move .v to right CSS.Matthew Somerville2011-03-25-7/+12
| |
| * Merge branch 'master' into reportemptyhomesMatthew Somerville2011-03-25-4088/+9954
| |\ | | | | | | | | | | | | Conflicts: web/css/cobrands/emptyhomes/emptyhomes.css
| | * Southampton templating.Matthew Somerville2011-03-25-0/+466
| | |
| | * Wrap everything in #mysociety so that it won't affect templated stuff.Matthew Somerville2011-03-25-182/+108
| | |
| | * Use SCSS to generate CSS - no change to actual CSS at this point.Matthew Somerville2011-03-25-434/+1172
| | |
| | * Don't load_pins on drag if on the purple pin form page.Matthew Somerville2011-03-25-1/+1
| | |
| | * Rename #content to #mysociety.Matthew Somerville2011-03-25-11/+13
| | |
| | * Update commonlib.Matthew Somerville2011-03-24-0/+0
| | |
| | * Return string, not undef.Matthew Somerville2011-03-23-1/+1
| | |
| | * Add link to Nokia FixMyStreet app (thanks, Thomas Forth\!).Matthew Somerville2011-03-23-5/+11
| | |
| | * Always have transitionEffect, and no buffer for nicer interaction.Matthew Somerville2011-03-23-0/+2
| | |
| | * Nearest road/postcode on reports; don't show pin if map not used for report.Matthew Somerville2011-03-23-4/+30
| | |
| | * Merge branch 'master' of ↵Matthew Somerville2011-03-23-22/+25
| | |\ | | | | | | | | | | | | ssh://matthew@git.mysociety.org/data/git/public/fixmystreet
| | | * Missing CGI var.Matthew Somerville2011-03-23-3/+3
| | | |
| | | * Merge branch 'master' of ssh://git.mysociety.org/data/git/public/fixmystreetMatthew Somerville2011-03-23-262/+160
| | | |\
| | | * | Factor out email sending bit of confirmation sending function, and make ↵Matthew Somerville2011-03-23-22/+25
| | | | | | | | | | | | | | | | | | | | import.cgi use it.
| | * | | Bing Maps key.Matthew Somerville2011-03-23-0/+4
| | | |/ | | |/|
| | * | Allow map change in URL.Matthew Somerville2011-03-23-262/+160
| | |/
| | * Remove superfluous HTML.Matthew Somerville2011-03-21-1/+1
| | |
| | * .no CSS update, missing translated string.Matthew Somerville2011-03-21-457/+474
| | |
| | * Typo.Matthew Somerville2011-03-21-1/+1
| | |
| | * Move RABX include to only place it's needed.Matthew Somerville2011-03-20-1/+1
| | |
| | * Fixes to other map types to work with lat/lon. Split OSM JavaScript into ↵Matthew Somerville2011-03-09-279/+302
| | | | | | | | | | | | core OpenLayers bits and OSM config bit.
| | * Some minor URL improvements.Matthew Somerville2011-03-08-16/+14
| | |
| | * Store report ID on loop, as otherwise closure uses last value.Matthew Somerville2011-03-08-8/+13
| | |
| | * Don't pass parameters through to report URL.Matthew Somerville2011-03-08-6/+3
| | |
| | * .po update.Matthew Somerville2011-03-07-3/+3
| | |
| | * Don't check coordsyst as not set for Norway; always string truncate lat/lon.Matthew Somerville2011-03-05-4/+6
| | |
| | * Hopefully fix a couple of locale issues, one I just introduced, whoops.Matthew Somerville2011-03-05-2/+8
| | |
| | * Handle NO postcodes via mapit.Matthew Somerville2011-03-05-6/+13
| | |
| | * Allow lat/lon in query string to affect map location (for non-JS browsing of ↵Matthew Somerville2011-03-04-0/+4
| | | | | | | | | | | | map on report page).
| | * Don't encode binary.Matthew Somerville2011-03-03-1/+1
| | |
| | * Update commonlib to get test suite change.Matthew Somerville2011-03-03-0/+0
| | |
| | * binmode is ignored by FastCGI. This didn't matter on lenny, where FCGI.pm ↵Matthew Somerville2011-03-03-2/+5
| | | | | | | | | | | | 0.67 happily prints out Unicode strings as UTF-8 (the internal encoding). This was reported as a bug (rt.cpan.org #52400), and FCGI.pm version 0.69 (and thus 0.71 as present on squeeze) changed to call downgrade() on incoming Unicode strings, meaning the output becomes either Latin-1 (or EBCDIC), or a croak due to a Unicode character not fitting into that. The old behaviour of FCGI seemed perfectly acceptable to me when it was given characters, not bytes, and I'm not sure why the change was made - certainly downgrade() seems a bad choice given it could be any Unicode string passed in, I'd have gone with encode() (which would be the old behaviour still). Anyway, we redirect STDOUT to a string, capture it, and then print out the Unicode string (everything internal should be Unicode strings) manually encoded to UTF-8. This should work in CGI, or pre/post 0.69 FastCGI.
| | * Work if precise name given too.Matthew Somerville2011-03-03-1/+1
| | |
| | * Add category to RSS feed.Matthew Somerville2011-03-02-0/+1
| | |
| | * .po update.Matthew Somerville2011-03-01-7/+18
| | |
| | * Compare to translated Other.Matthew Somerville2011-02-26-5/+5
| | |