--- a/sitemap.xml.php +++ b/sitemap.xml.php @@ -1,1 +1,32 @@ +"; + echo '' . "\n"; + echo " ".curPageURL()."index.php1.0\n"; +foreach (scandir("./") as $file) { + if (strpos($file,".php") !== false && $file != "index.php" && $file != "sitemap.xml.php") echo " ".curPageURL()."$file0.3\n"; +} +$url = $APIurl . "/json/stops"; +$stops = json_decode(getPage($url)); +foreach ($stops as $stop) { + echo " ".curPageURL()."stop.php?stopid=".htmlspecialchars ($stop[0]).""; + echo "" . $last_updated . ""; + echo "monthly"; + echo "0.9"; + echo "\n"; + } +$url = $APIurl . "/json/routes"; +$routes = json_decode(getPage($url)); +foreach ($routes as $route) { + echo " ".curPageURL()."trip.php?routeid=".htmlspecialchars ($route[0]).""; + echo "" . $last_updated . ""; + echo "monthly"; + echo "0.9"; + echo "\n"; + } + echo ''; +?> +