Licence and jqmobile beta 3 upgrade
[busui.git] / myway / myway_timeliness_route.json.php
blob:a/myway/myway_timeliness_route.json.php -> blob:b/myway/myway_timeliness_route.json.php
--- a/myway/myway_timeliness_route.json.php
+++ b/myway/myway_timeliness_route.json.php
@@ -1,4 +1,19 @@
 <?php
+/*
+ *    Copyright 2010,2011 Alexander Sadleir 
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+ */
 include ('../include/common.inc.php');
 header('Content-Type: text/javascript; charset=utf8');
 // header('Access-Control-Allow-Origin: http://bus.lambdacomplex.org/');
@@ -6,20 +21,20 @@
 header('Access-Control-Allow-Methods: GET, POST, PUT, DELETE');
 ?>
 {
-    "label": "<?php echo $_REQUEST['routeid']; ?>",
-    "data": <?php
-   $query = "select * from myway_timingdeltas where route_full_name = :route_full_name AND abs(timing_delta) < 2*(select stddev(timing_delta) from myway_timingdeltas)  order by stop_sequence;";
+"label": "<?php echo $_REQUEST['routeid']; ?>",
+"data": <?php
+$query = "select * from myway_timingdeltas where route_full_name = :route_full_name AND abs(timing_delta) < 2*(select stddev(timing_delta) from myway_timingdeltas)  order by stop_sequence;";
 $query = $conn->prepare($query);
-$query->bindParam(':route_full_name', $_REQUEST['routeid'],PDO::PARAM_STR, 42);
-		
+$query->bindParam(':route_full_name', $_REQUEST['routeid'], PDO::PARAM_STR, 42);
+
 $query->execute();
 if (!$query) {
-	databaseError($conn->errorInfo());
-	return Array();
+    databaseError($conn->errorInfo());
+    return Array();
 }
 foreach ($query->fetchAll() as $delta) {
-	$points[] = "[{$delta['stop_sequence']}, {$delta['timing_delta']}]";
+    $points[] = "[{$delta['stop_sequence']}, {$delta['timing_delta']}]";
 };
-echo "[".implode(",",$points)."]";
+echo "[" . implode(",", $points) . "]";
 ?>
 }