summaryrefslogtreecommitdiff
path: root/inc/Sitemapper.php
Commit message (Collapse)AuthorAge
* Remove error supression for file_exists()Andreas Gohr2015-01-07
| | | | | | | In an older version of PHP a file_exists() call would issue a warning when the file did not exist. This was fixed in later PHP releases. Since we require PHP 5.3 now, there's no need to supress any error here anymore. This might even give a minor performance boost.
* Many PHPDocs, some unused and dyn declared varsGerrit Uitslag2014-10-01
| | | | | | many PHPDocs some unused variables some dynamically declared variables declared
* scrutinizer documentations issuesGerrit Uitslag2014-09-29
|
* removed Yahoo sitemap ping, added Yandex instead FS#2880Andreas Gohr2014-02-15
|
* Fix return types and result value handling in Sitemapper.phpMichael Hamann2012-08-24
|
* Disable compression when a compressed sitemap might be delivered FS#2576Michael Hamann2012-08-24
| | | | | | | | Compressing a gzip file again for transport is standards compliant, but some clients assume that the file is only compressed once then and don't remove the outer compression layer. This could disable compression in too many cases theses cases should be rare and shouldn't cause any problems.
* coding style updatesAndreas Gohr2012-03-16
|
* Make Sitemapper functions static as they were used as static functionsMichael Hamann2012-01-15
| | | | | | | All calls to the Sitemapper were static function calls, this caused notices because they weren't static, with this commit they are marked as static. Furthermore two FIXME comments were removed as dbglog now checks if debugging is enabled.
* Indexer v3 Rewrite part two, update uses of indexerTom N Harris2010-12-29
|
* Only add successfully created sitemap items to the sitemapMichael Hamann2010-11-02
|
* Sitemapper code improved and documentation addedMichael Hamann2010-09-22
| | | | | Removed some calls to dbglog, improved the code performance and added documentation for all functions and classes of the Sitemapper.
* Restructured the sitemapperMichael Hamann2010-09-22
|
* Transformed the sitemapper into a classMichael Hamann2010-09-22
This makes it possible to autoload the sitemapper when needed.