Mercurial > SimpleWebPresenter
view sitemap.php @ 101:408ffecc9076
Added link to the official repository
| author | Tom Fredrik Blenning Klaussen <bfg@bfgconsult.no> |
|---|---|
| date | Wed, 01 Oct 2014 15:36:17 +0200 |
| parents | 8a9bfbe220ca |
| children | 41c128ba0c2c |
line wrap: on
line source
<? /** * @file * Generates a sitemap */ include_once 'ScriptIncludeCache.inc'; /// @cond $baseDir = dirname(__FILE__); $cache = ScriptIncludeCache::instance(__FILE__); $cache->includeOnce('Sitemap.inc', dirname(__FILE__)); try { $sitemap = new Sitemap(basePath() . "/master.xml"); $sitemap->display(); } catch (Exception $e) { errorPage($e, StatusCodes::HTTP_INTERNAL_SERVER_ERROR); } /// @endcond ?>
