by date/agency beginnings
[disclosr.git] / documents / sitemap.xml.php
blob:a/documents/sitemap.xml.php -> blob:b/documents/sitemap.xml.php
--- a/documents/sitemap.xml.php
+++ b/documents/sitemap.xml.php
@@ -10,10 +10,18 @@
     if (strpos($file, ".php") !== false && $file != "index.php" && $file != "sitemap.xml.php")
         echo " <url><loc>" . local_url() . "$file</loc><priority>0.6</priority></url>\n";
 }
-
-$db = $server->get_db('disclosr-foidocuments');
+$agenciesdb = $server->get_db('disclosr-agencies');
 try {
-    $rows = $db->get_view("app", "all")->rows;
+    $rows = $agenciesdb->get_view("app", "byCanonicalName")->rows;
+    foreach ($rows as $row) {
+        echo '<url><loc>' . local_url() . 'agency.php?id=' . $row->value->_id . "</loc><priority>0.3</priority></url>\n";
+    }
+} catch (SetteeRestClientException $e) {
+    setteErrorHandler($e);
+}
+$foidocsdb = $server->get_db('disclosr-foidocuments');
+try {
+    $rows = $foidocsdb->get_view("app", "all")->rows;
     foreach ($rows as $row) {
         echo '<url><loc>' . local_url() . 'view.php?id=' . $row->value->_id . "</loc><priority>0.3</priority></url>\n";
     }