From: Maxious Date: Sun, 27 Mar 2011 15:10:29 +0000 Subject: Enable feedback functionality X-Git-Url: https://maxious.lambdacomplex.org/git/?p=busui.git&a=commitdiff&h=3883ae2b1ed09fabfe486700c7f0abd8c72f7892 --- Enable feedback functionality --- --- a/feedback.php +++ b/feedback.php @@ -24,7 +24,10 @@ mail($address, $topic, $message); } } - +if (isset($_REQUEST['feedback']) || isset($_REQUEST['newlocation'])){ + sendEmail("bus.lambda feedback",print_r($_REQUEST,true)); + echo "

Thank you for your feedback!

"; +} else { $stopid = ""; $stopcode = ""; $urlparts = explode("?",$_SERVER["HTTP_REFERER"]); @@ -39,6 +42,7 @@ ?>

Add/Move/Delete a Bus Stop Location

+
StopID:
or StopCode:
if you click on feedback from a stop page, these will get filled in automatically. else describe the location/street of the stop in one of these boxes
@@ -47,24 +51,31 @@ if your device supports javascript, you can pick a location from the map above
- +

Bug Report/Feedback

Please leave feedback about bugs/errors or general suggestions about improvements that could be made to the way the data is presented! - - + + --- a/include/common-net.inc.php +++ b/include/common-net.inc.php @@ -24,7 +24,8 @@ $isHTTPS = (isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] == "on"); $port = (isset($_SERVER["SERVER_PORT"]) && ((!$isHTTPS && $_SERVER["SERVER_PORT"] != "80") || ($isHTTPS && $_SERVER["SERVER_PORT"] != "443"))); $port = ($port) ? ':' . $_SERVER["SERVER_PORT"] : ''; - $url = ($isHTTPS ? 'https://' : 'http://') . $_SERVER["SERVER_NAME"] . $port . htmlentities(dirname($_SERVER['PHP_SELF']) , ENT_QUOTES) . "/"; + $url = ($isHTTPS ? 'https://' : 'http://') . $_SERVER["SERVER_NAME"] . $port . htmlentities(dirname($_SERVER['PHP_SELF']) , ENT_QUOTES); return $url; } ?> + --- a/include/common-template.inc.php +++ b/include/common-template.inc.php @@ -87,7 +87,7 @@ text-size: 0.2em; } .min-width-480px .viaPoints { - display: block; + display: inline; } #extrainfo { visibility: hidden; --- a/stop.php +++ b/stop.php @@ -32,8 +32,15 @@ $stopid = $stops[0][0]; $stopLinks.= "Individual stop pages: "; foreach ($stops as $key => $sub_stop) { - $stopNames[$key] = $sub_stop[1] . ' Stop #' . ($key + 1); - $stopLinks.= '' . $stopNames[$key] . ' '; + // $stopNames[$key] = $sub_stop[1] . ' Stop #' . ($key + 1); + if (strpos($stop[1], + "Station")) { + $stopNames[$key] = 'Platform ' . ($key + 1); + $stopLinks.= '' . $sub_stop[1] . ' '; + } else { + $stopNames[$key] = '#' . ($key + 1); + $stopLinks.= '' . $sub_stop[1] . ' Stop #' . ($key + 1) . ' '; + } $stopPositions[$key] = Array( $sub_stop[2], $sub_stop[3] @@ -66,6 +73,7 @@ } echo '