Skip to content

Commit

Permalink
query the last updated timestamp only if output format is HTML
Browse files Browse the repository at this point in the history
  • Loading branch information
mtmail authored and lonvia committed Aug 2, 2016
1 parent 5b4c7b7 commit 83ce6e1
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 16 deletions.
2 changes: 1 addition & 1 deletion lib/template/includes/html-top-navigation.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</div>
</div>
<div id="last-updated" class="col-xs-4 text-center">
<?php if ($sDataDate){ ?>
<?php if (isset($sDataDate)){ ?>
Data last updated:
<br>
<?php echo $sDataDate; ?>
Expand Down
9 changes: 7 additions & 2 deletions website/details.php
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,12 @@

logEnd($oDB, $hLog, 1);

$sTileURL = CONST_Map_Tile_URL;
$sTileAttribution = CONST_Map_Tile_Attribution;
if ($sOutputFormat=='html')
{
$sDataDate = $oDB->getOne("select TO_CHAR(lastimportdate - '2 minutes'::interval,'YYYY/MM/DD HH24:MI')||' GMT' from import_status limit 1");
$sTileURL = CONST_Map_Tile_URL;
$sTileAttribution = CONST_Map_Tile_Attribution;
}


include(CONST_BasePath.'/lib/template/details-'.$sOutputFormat.'.php');
8 changes: 6 additions & 2 deletions website/reverse.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@
exit;
}

$sTileURL = CONST_Map_Tile_URL;
$sTileAttribution = CONST_Map_Tile_Attribution;
if ($sOutputFormat=='html')
{
$sDataDate = $oDB->getOne("select TO_CHAR(lastimportdate - '2 minutes'::interval,'YYYY/MM/DD HH24:MI')||' GMT' from import_status limit 1");
$sTileURL = CONST_Map_Tile_URL;
$sTileAttribution = CONST_Map_Tile_Attribution;
}
include(CONST_BasePath.'/lib/template/address-'.$sOutputFormat.'.php');
24 changes: 13 additions & 11 deletions website/search.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
$fLat = CONST_Default_Lat;
$fLon = CONST_Default_Lon;
$iZoom = CONST_Default_Zoom;
$sTileURL = CONST_Map_Tile_URL;
$sTileAttribution = CONST_Map_Tile_Attribution;

$oGeocode =& new Geocode($oDB);

Expand Down Expand Up @@ -99,17 +97,17 @@
{
if (!(isset($_GET['q']) && $_GET['q']) && isset($_SERVER['PATH_INFO']) && $_SERVER['PATH_INFO'][0] == '/')
{
$sQuery = substr(rawurldecode($_SERVER['PATH_INFO']), 1);
$sQuery = substr(rawurldecode($_SERVER['PATH_INFO']), 1);

// reverse order of '/' separated string
$aPhrases = explode('/', $sQuery);
$aPhrases = array_reverse($aPhrases);
$sQuery = join(', ',$aPhrases);
$oGeocode->setQuery($sQuery);
// reverse order of '/' separated string
$aPhrases = explode('/', $sQuery);
$aPhrases = array_reverse($aPhrases);
$sQuery = join(', ',$aPhrases);
$oGeocode->setQuery($sQuery);
}
else
{
$oGeocode->setQueryFromParams($_GET);
$oGeocode->setQueryFromParams($_GET);
}
}

Expand All @@ -118,8 +116,12 @@
$aSearchResults = $oGeocode->lookup();
if ($aSearchResults === false) $aSearchResults = array();

$sDataDate = $oDB->getOne("select TO_CHAR(lastimportdate - '2 minutes'::interval,'YYYY/MM/DD HH24:MI')||' GMT' from import_status limit 1");

if ($sOutputFormat=='html')
{
$sDataDate = $oDB->getOne("select TO_CHAR(lastimportdate - '2 minutes'::interval,'YYYY/MM/DD HH24:MI')||' GMT' from import_status limit 1");
$sTileURL = CONST_Map_Tile_URL;
$sTileAttribution = CONST_Map_Tile_Attribution;
}
logEnd($oDB, $hLog, sizeof($aSearchResults));

$bAsText = $oGeocode->getIncludePolygonAsText();
Expand Down

0 comments on commit 83ce6e1

Please sign in to comment.