From: Maxious Date: Tue, 21 Aug 2012 01:20:03 +0000 Subject: Add Google Analytics X-Git-Url: http://maxious.lambdacomplex.org/git/?p=contractdashboard.git&a=commitdiff&h=56097201cec4f490fcd2038aaf80c98d58a5cdd1 --- Add Google Analytics --- --- a/admin/import.php +++ b/admin/import.php @@ -186,6 +186,8 @@ flush(); // run post import data processing + // +$dbConn->exec("update datasets set \"lastUpdated\" = NOW() where title = 'Contract Notices'"); // cn echo "link amend
"; include ("linkAmendments.php"); --- a/displayAgency.php +++ b/displayAgency.php @@ -30,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(); --- /dev/null +++ b/google676a414ad086cefb.html @@ -1,1 +1,2 @@ +google-site-verification: google676a414ad086cefb.html --- a/lib/common.inc.php +++ b/lib/common.inc.php @@ -10,12 +10,12 @@ die("A database error occurred.\n"); } -define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME)); +define('ROOT', pathinfo(__FILE__, PATHINFO_DIRNAME)); if (strstr($_SERVER['PHP_SELF'], "labs/")) { $basePath = "../"; } -require ROOT . DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'lib'.DIRECTORY_SEPARATOR.'openid.php'; +require ROOT . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'lib' . DIRECTORY_SEPARATOR . 'openid.php'; $openid = new LightOpenID($_SERVER['HTTP_HOST']); function login() { @@ -105,6 +105,10 @@ $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; @@ -146,7 +150,7 @@ { var sValidChars = "0123456789.-,"; var Char; - + /* Check the numeric part */ for ( i=1 ; i + '; } include ("graphs.inc.php"); - ?> - + + + + --- a/robots.txt +++ b/robots.txt @@ -1,3 +1,3 @@ User-agent: * Disallow: /admin - +Sitemap: http://contracts.disclosurelo.gs/sitemap.xml.php --- a/search.php +++ b/search.php @@ -1,31 +1,35 @@ --- a/search_autosuggest.php +++ b/search_autosuggest.php @@ -46,6 +46,21 @@ "info" => htmlspecialchars("Government Agency - " . $row['count'] . " records") ); } + $query = "SELECT \"CNID\", description, value FROM contractnotice +WHERE to_tsvector('english', description) @@ to_tsquery('english', :input)"; + $query = $conn->prepare($query); + $agencyName = $input . '%'; + $query->bindParam(":input", $input); + $query->execute(); + databaseError($conn->errorInfo()); + foreach ($query->fetchAll() as $row) { + $count++; + $aResults[] = array( + "id" => "cnid-" . $row[0], + "value" => htmlspecialchars($row['description']), + "info" => htmlspecialchars("Contract Notice - Value ".$row['value']) + ); + } } header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // always modified --- 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 ''; ?>