Add CSV data export
Add CSV data export

--- a/heuristics/dateHeuristics.php
+++ /dev/null

--- a/heuristics/historyHeuristics.php
+++ /dev/null

--- a/heuristics/metadataHeuristics.php
+++ /dev/null

file:a/heuristics/readme.txt (deleted)
--- a/heuristics/readme.txt
+++ /dev/null
@@ -1,11 +1,1 @@
-heuristicResults
-heuristic = BY_DATE...
-value = 0.0
-cnPubDate = 
-lastUpdated = 1/1/1970
-contractNotice =
-agency = 
-supplier =
 
-work out total value by summing value
-

--- a/heuristics/runHeuristics.php
+++ /dev/null
@@ -1,6 +1,1 @@
-<?
-if agency
-if supplier
-if CN
-?>
 

--- a/heuristics/valueHeuristics.php
+++ /dev/null

symlink:b/liberation (new)
--- /dev/null
+++ b/liberation
@@ -1,1 +1,1 @@
-
+/usr/share/fonts/liberation/

file:a/sitemap.xml.php (deleted)
--- a/sitemap.xml.php
+++ /dev/null
@@ -1,28 +1,1 @@
-<?php
-include ('include/common.inc.php');
-$last_updated = date('Y-m-d',@filemtime('cbrfeed.zip'));
-header("Content-Type: text/xml");
-echo "<?xml version='1.0' encoding='UTF-8'?>";
-  echo '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' . "\n";
-      echo " <url><loc>".curPageURL()."index.php</loc><priority>1.0</priority></url>\n";
-foreach (scandir("./") as $file) {
-      if (strpos($file,".php") !== false && $file != "index.php" && $file != "sitemap.xml.php") echo " <url><loc>".curPageURL()."$file</loc><priority>0.3</priority></url>\n";
-}
-foreach (getStops() as $stop) {
-      echo " <url><loc>".curPageURL()."stop.php?stopid=".htmlspecialchars ($stop["stop_id"])."</loc>";
-	echo "<lastmod>" . $last_updated . "</lastmod>";
-	echo "<changefreq>monthly</changefreq>";
-	echo "<priority>0.9</priority>";
-	echo "</url>\n";
- }
-foreach (getRoutes() as $route) {
-      echo " <url><loc>".curPageURL()."trip.php?routeid=".htmlspecialchars ($route["route_id"])."</loc>";
-	echo "<lastmod>" . $last_updated . "</lastmod>";
-	echo "<changefreq>monthly</changefreq>";
-	echo "<priority>0.9</priority>";
-	echo "</url>\n";
- }
-  echo '</urlset>';
 
-?>
-