From: Maxious Date: Sun, 12 Aug 2012 03:02:30 +0000 Subject: Add robots.txt X-Git-Url: http://maxious.lambdacomplex.org/git/?p=contractdashboard.git&a=commitdiff&h=2e4b9b4c11e464d846546cfd925ab2a4e2da55f4 --- Add robots.txt --- --- a/displayAgency.php +++ b/displayAgency.php @@ -3,11 +3,12 @@ include_once ("./lib/common.inc.php"); if ($_REQUEST['agency']) { - include_header("Agency"); $agency = htmlentities(strip_tags($_REQUEST['agency'])); - MethodCountGraph($agency); - CnCGraph($agency); - MethodValueGraph($agency); + include_header($agency); +echo '

'.$agency.'

'; +// MethodCountGraph($agency); + // CnCGraph($agency); + // MethodValueGraph($agency); /* biggest contracts spending by year spending by industry/category @@ -29,7 +30,7 @@ "contractStart", "supplierName" FROM contractnotice WHERE "agencyName" = :agency - ORDER BY "value" DESC'; + ORDER BY "value" DESC limit 100'; $query = $conn->prepare($query); $query->bindParam(":agency", $agency); $query->execute(); --- a/displayContract.php +++ b/displayContract.php @@ -1,7 +1,6 @@ prepare($query); $query->bindParam(":CNID", $_REQUEST['CNID']); $query->execute(); +$contractResult = $query->fetch(PDO::FETCH_ASSOC); +if (!$contractResult) { + header("Status: 404 Not Found"); + header("HTTP/1.0 404 Not Found"); +include_header("Contract Not Found"); + echo "

No Contract Notice with that ID found

"; databaseError($conn->errorInfo()); -foreach ($query->fetchAll(PDO::FETCH_ASSOC) as $row) { +} else { +$description = ucsmart($contractResult["description"]); +include_header($description); + echo '

'.$description.'

'; +databaseError($conn->errorInfo()); setlocale(LC_MONETARY, 'en_US'); - foreach (array_filter($row) as $key => $value) { + foreach (array_filter($contractResult) as $key => $value) { echo "$key "; switch ($key) { case "supplierName": case "supplierABN": - echo '' . $value . ""; + echo '' . $value . ""; break; case "agencyName": echo '' . $value . ""; @@ -26,11 +35,10 @@ echo "$" . number_format(doubleval($value), 2); break; default: - echo str_replace(" ", "
", $value); + echo str_replace(" ", "
", ucsmart($value)); } echo "
"; } -} echo '
View original record @ tenders.gov.au
'; @@ -43,7 +51,7 @@ foreach ($query->fetchAll() as $r) { echo "{$r['heuristic_name']}: {$r['heuristic_value']} (raw value: {$r['raw_value']}, mean: {$r['mean']}, stddev: {$r['stddev']})
"; } - +} include_footer(); ?> --- a/displaySupplier.php +++ b/displaySupplier.php @@ -3,8 +3,10 @@ include_once ("./lib/common.inc.php"); if ($_REQUEST['supplier']) { - include_header("Supplier"); $supplierS = htmlentities(strip_tags($_REQUEST['supplier'])); + include_header(str_replace("%","",$supplierName)); +echo '

'.str_replace("%","",$supplierName).'

'; + // MethodCountGraph($supplierS); // CnCGraph($supplierS); // MethodValueGraph($supplierS); --- /dev/null +++ b/google676a414ad086cefb.html @@ -1,1 +1,2 @@ +google-site-verification: google676a414ad086cefb.html --- a/lib/common.inc.php +++ b/lib/common.inc.php @@ -105,7 +105,9 @@ $standardQ = ' "childCN" is null '; // AND YEAR(contractStart) >= 2007 AND YEAR(contractStart) <= 2010'; $start = 0.0; - +function local_url() { + return "http://" . $_SERVER['HTTP_HOST'] . rtrim(dirname($_SERVER['PHP_SELF']), '/\\') . "/"; +} function include_header($title) { global $start; ?> --- a/robots.txt +++ b/robots.txt @@ -1,3 +1,3 @@ User-agent: * Disallow: /admin - +Sitemap: http://contracts.disclosurelo.gs/sitemap.xml.php --- a/sitemap.xml.php +++ b/sitemap.xml.php @@ -1,27 +1,13 @@ "; echo '' . "\n"; - echo " ".curPageURL()."index.php1.0\n"; + echo " ".local_url()."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"; + if (strpos($file,".php") !== false && $file != "index.php" && $file != "sitemap.xml.php") echo " ".local_url()."$file0.3\n"; } -foreach (getStops() as $stop) { - echo " ".curPageURL()."stop.php?stopid=".htmlspecialchars ($stop["stop_id"]).""; - echo "" . $last_updated . ""; - echo "monthly"; - echo "0.9"; - echo "\n"; - } -foreach (getRoutes() as $route) { - echo " ".curPageURL()."trip.php?routeid=".htmlspecialchars ($route["route_id"]).""; - echo "" . $last_updated . ""; - echo "monthly"; - echo "0.9"; - echo "\n"; - } echo ''; ?>