aboutsummaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorEdmund von der Burg <evdb@mysociety.org>2011-04-15 11:25:42 +0100
committerEdmund von der Burg <evdb@mysociety.org>2011-04-15 11:25:42 +0100
commit5bb7634143bd320b20601c3d92efc0b6987a0d8d (patch)
tree43c8035bd7b0d96d5aeaedc4481b62b31bc9868b /web
parent7a366593576587a6b654ea967e8beefb2dba6b1c (diff)
Handle (e,n) requests to '/'
Diffstat (limited to 'web')
-rwxr-xr-xweb/index.cgi54
1 files changed, 27 insertions, 27 deletions
diff --git a/web/index.cgi b/web/index.cgi
index 45992d7c5..0bf2ce8a0 100755
--- a/web/index.cgi
+++ b/web/index.cgi
@@ -105,9 +105,9 @@ sub main {
# ( $out, %params ) = display_location($q);
# $params{title} = _('Viewing a location');
# }
- elsif ( $q->param('e') && $q->param('n') ) {
- ( $out, %params ) = redirect_from_osgb_to_wgs84($q);
- }
+ # elsif ( $q->param('e') && $q->param('n') ) {
+ # ( $out, %params ) = redirect_from_osgb_to_wgs84($q);
+ # }
# else {
# ( $out, %params ) = front_page($q);
# }
@@ -830,30 +830,30 @@ sub submit_update {
# }
# redirect from osgb
-sub redirect_from_osgb_to_wgs84 {
- my ($q) = @_;
-
- my $e = $q->param('e');
- my $n = $q->param('n');
-
- my ( $lat, $lon ) = Utils::convert_en_to_latlon_truncated( $e, $n );
-
- my $lat_lon_url = NewURL(
- $q,
- -retain => 1,
- e => undef,
- n => undef,
- lat => $lat,
- lon => $lon
- );
-
- print $q->redirect(
- -location => $lat_lon_url,
- -status => 301, # permanent
- );
-
- return '';
-}
+# sub redirect_from_osgb_to_wgs84 {
+# my ($q) = @_;
+#
+# my $e = $q->param('e');
+# my $n = $q->param('n');
+#
+# my ( $lat, $lon ) = Utils::convert_en_to_latlon_truncated( $e, $n );
+#
+# my $lat_lon_url = NewURL(
+# $q,
+# -retain => 1,
+# e => undef,
+# n => undef,
+# lat => $lat,
+# lon => $lon
+# );
+#
+# print $q->redirect(
+# -location => $lat_lon_url,
+# -status => 301, # permanent
+# );
+#
+# return '';
+# }
# sub display_location {
# my ($q, @errors) = @_;