From: Maxious Date: Mon, 21 Mar 2011 13:12:50 +0000 Subject: FIx unclosed script tags in analytics X-Git-Url: http://maxious.lambdacomplex.org/git/?p=busui.git&a=commitdiff&h=07a6fb6a188bbe22a4b536dadf7816a651ed2e02 --- FIx unclosed script tags in analytics --- --- a/feedback.php +++ b/feedback.php @@ -1,11 +1,11 @@ verifyEmailAddress($address); @@ -24,16 +24,29 @@ mail($address, $topic, $message); } } + +$stopid = ""; +$stopcode = ""; +$urlparts = explode("?",$_SERVER["HTTP_REFERER"]); +if (isset($urlparts[1])) { + $getparams = explode("&",$urlparts[1]); + foreach ($getparams as $param) { + $paramparts=explode("=",$param); + if ($paramparts[0] == "stopid") $stopid = $paramparts[1]; + if ($paramparts[0] == "stopcode") $stopcode = $paramparts[1]; + } +} + ?>

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 +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
-Suggested Stop Location (lat/long or words): - if your device supports javascript, you can pick a location from the map above +Suggested Stop Location (lat/long or words):
+ if your device supports javascript, you can pick a location from the map above
-Submit! +

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! @@ -41,14 +54,15 @@ -Submit! + + --- a/include/common-template.inc.php +++ b/include/common-template.inc.php @@ -36,9 +36,17 @@ if ($datepicker) echo ''; if (isDebugServer()) echo ' + '; else echo ' + '; if ($datepicker) echo ' "; +} +$(document).ready(function() { + $('#here').click(function(event) { $('#geolocate').val(geolocate()); return false;}); +$('#here').show(); +}); +"; +if (!isset($_SESSION['lat']) || $_SESSION['lat'] == "") echo "geolocate();"; +echo " "; } if (isAnalyticsOn()) echo ' "; - } echo ''; if (isAnalyticsOn()) { @@ -175,9 +187,9 @@ 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); - })();"; + })();"; $googleAnalyticsImageUrl = googleAnalyticsGetImageUrl(); - echo ''; + echo ''; } } function timePlaceSettings($geolocate = false) @@ -194,7 +206,7 @@ } echo '

Change Time/Place (' . (isset($_SESSION['time']) ? $_SESSION['time'] : "Current Time,") . ' ' . ucwords(service_period()) . ')...

-
+
@@ -202,7 +214,8 @@
- Current Time? + + Current Time?
@@ -220,7 +233,7 @@ } function trackEvent($category, $action, $label = "", $value = -1) { if (isAnalyticsOn()) { - echo ""; } } ?> --- a/include/common.inc.php +++ b/include/common.inc.php @@ -59,7 +59,7 @@ } } } - if ($_SESSION['lat'] != "" && isMetricsOn()) { + if ($_SESSION['lat'] != "" && isAnalyticsOn()) { trackEvent("Geolocation","Updated Location", "Geocoded - ".($geocoded ? "Yes" : "No")); } } --- a/index.php +++ b/index.php @@ -1,6 +1,6 @@
@@ -12,7 +12,7 @@ --- a/routeList.php +++ b/routeList.php @@ -37,11 +37,15 @@ $url = $APIurl . "/json/stopzonesearch?q=" . $suburb; include_header("Routes by Suburb", "routeList"); trackEvent("Route Lists","Routes By Suburb", $suburb); - } if ($_REQUEST['nearby']) { $url = $APIurl . "/json/neareststops?lat={$_SESSION['lat']}&lon={$_SESSION['lon']}&limit=15"; - include_header("Routes Nearby", "routeList"); + include_header("Routes Nearby", "routeList", true, true); + timePlaceSettings(true); + if (!isset($_SESSION['lat']) || !isset($_SESSION['lat']) || $_SESSION['lat'] == "" || $_SESSION['lon'] == "") { + include_footer(); + die(); + } } $stops = json_decode(getPage($url)); $routes = Array(); --- a/stopList.php +++ b/stopList.php @@ -48,7 +48,7 @@ else if ($_REQUEST['nearby']) { $listType = 'nearby=yes'; $url = $APIurl . "/json/neareststops?lat={$_SESSION['lat']}&lon={$_SESSION['lon']}&limit=15"; - include_header("Nearby Stops", "stopList"); + include_header("Nearby Stops", "stopList", true, true); navbar(); timePlaceSettings(true); if (!isset($_SESSION['lat']) || !isset($_SESSION['lat']) || $_SESSION['lat'] == "" || $_SESSION['lon'] == "") {