From: Maxious Date: Sun, 12 Aug 2012 03:22:38 +0000 Subject: typo in sitemap X-Git-Url: https://maxious.lambdacomplex.org/git/?p=disclosr.git&a=commitdiff&h=87ea763513fed3d3279f5935cb02357fed1552ae --- typo in sitemap Former-commit-id: fa5509387cd2b50fb357ad3ec83c841ae21b6b45 --- --- a/getAgency.php +++ b/getAgency.php @@ -137,7 +137,7 @@ } } - $mode = "edit"; + $mode = "view"; $rowArray = object_to_array($obj); ksort($rowArray); if ($mode == "edit") { --- a/include/common.inc.php +++ b/include/common.inc.php @@ -51,6 +51,9 @@ function phrase_to_tag ($phrase) { return str_replace(" ","_",str_replace("'","",str_replace(",","",strtolower($phrase)))); } +function local_url() { + return "http://" . $_SERVER['HTTP_HOST'] . rtrim(dirname($_SERVER['PHP_SELF']), '/\\') . "/"; +} function GetDomain($url) { $nowww = ereg_replace('www\.','',$url); --- a/include/couchdb.inc.php +++ b/include/couchdb.inc.php @@ -161,7 +161,7 @@ } else if (php_uname('n') == "KYUUBEY") { - $serverAddr = 'http://127.0.0.1:5984/'; + $serverAddr = 'http://192.168.1.148:5984/'; } else { $serverAddr = 'http://127.0.0.1:5984/'; } --- /dev/null +++ b/index.php @@ -1,1 +1,9 @@ + --- a/robots.txt +++ b/robots.txt @@ -3,3 +3,4 @@ User-agent: * Disallow: /admin/ +Sitemap: http://orgs.disclosurelo.gs/sitemap.xml.php --- /dev/null +++ b/sitemap.xml.php @@ -1,1 +1,25 @@ +"; +echo '' . "\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 " " . local_url() . "$file0.3\n"; +} + +$db = $server->get_db('disclosr-agencies'); +try { + $rows = $db->get_view("app", "byCanonicalName")->rows; + foreach ($rows as $row) { + echo '' . local_url() . 'getAgency.php?id=' . $row->value->_id . "0.6\n"; + } +} catch (SetteeRestClientException $e) { + setteErrorHandler($e); +} +echo ''; +?> +