aboutsummaryrefslogtreecommitdiffstats
path: root/includes/cache/HTMLCacheUpdate.php
Commit message (Collapse)AuthorAgeFilesLines
* More documentation updatesSam Reed2011-10-281-1/+10
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/101161
* More spurious code r98467Sam Reed2011-09-291-2/+0
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/98475
* Back out r95396 and friendsSam Reed2011-09-291-46/+0
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/98467
* Simplify array( 'page_id IN (' . $dbw->makeList( $batch ) . ')' ), to array( ↵Sam Reed2011-09-191-4/+4
| | | | | | | 'page_id' => $batch ), Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/97536
* Refactor deferrable updates into classes & interfaces, also add helper ↵Chad Horohoe2011-09-101-2/+1
| | | | | | | | | | | method for the most common use case: $wgDeferredUpdateList[] = new HTMLCacheUpdate( $title, "sometable" ); I kept b/c with $wgDeferredUpdateList for now, but seeing as only 3 exts in svn use it (FileSearch, FlaggedRevs and WikiScripts), I'd like to deprecate it pretty soon :) Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/96716
* Unused variables.Platonides2011-08-271-1/+1
| | | | | | | | | $wgContLang in CategoryPage was probably removed with the better directionality improvements. $wgServer, $wgRequest in getFullUrl() unused since r94375 Other variables added in r95396 iwtransclusion merge. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/95603
* Merge the iwtransclusion branch back into trunkSam Reed2011-08-241-0/+49
| | | | | | | Hexmode fixed broken unit tests in revisions after last time Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/95396
* Back out r93533, r93531, r93530Sam Reed2011-07-301-50/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Breaks unit tests as below, not going to be able to fix them before I disappear for the evening, so might aswell leave trunk clean ArticleTablesTest testbug14404 Error: ArticleTablesTest::testbug14404 Undefined offset: 0 /home/ci/cruisecontrol-bin-2.8.3/projects/mw/source/tests/phpunit/includes/ArticleTablesTest.php:31 /home/ci/cruisecontrol-bin-2.8.3/projects/mw/source/tests/phpunit/MediaWikiTestCase.php:60 /home/ci/cruisecontrol-bin-2.8.3/projects/mw/source/tests/phpunit/MediaWikiPHPUnitCommand.php:20 /home/ci/cruisecontrol-bin-2.8.3/projects/mw/source/tests/phpunit/phpunit.php:60 ParserTests testParserTest #552 - testParserTest with data set #551 Failure: ParserTests::testParserTest with data set #551 ('RAW magic word', '{{RAW:QUERTY}}', '<p><a href="/index.php?title=Template:QUERTY&amp;action=edit&amp;redlink=1" class="new" title="Template:QUERTY (page does not exist)">Template:QUERTY</a> </p>', '', '') RAW magic word Failed asserting that two strings are equal. --- Expected +++ Actual @@ @@ -<p><a href="/index.php?title=Template:QUERTY&amp;action=edit&amp;redlink=1" class="new" title="Template:QUERTY (page does not exist)">Template:QUERTY</a> +<p><a href="/index.php?title=Template:RAW:QUERTY&amp;action=edit&amp;redlink=1" class="new" title="Template:RAW:QUERTY (page does not exist)">Template:RAW:QUERTY</a> </p> /home/ci/cruisecontrol-bin-2.8.3/projects/mw/source/tests/phpunit/includes/parser/NewParserTest.php:545 /home/ci/cruisecontrol-bin-2.8.3/projects/mw/source/tests/phpunit/MediaWikiTestCase.php:60 /home/ci/cruisecontrol-bin-2.8.3/projects/mw/source/tests/phpunit/MediaWikiPHPUnitCommand.php:20 /home/ci/cruisecontrol-bin-2.8.3/projects/mw/source/tests/phpunit/phpunit.php:60 Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/93534
* Merge iwtransclusion branch into trunkSam Reed2011-07-301-1/+50
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/93530
* And even more documentationSam Reed2011-05-281-0/+2
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/89061
* HTMLCacheUpdate->invalidate() deprecated since 1.16, unusedSam Reed2011-05-061-9/+0
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/87596
* More versions added to @deprecated tagsSam Reed2011-05-061-1/+1
| | | | | | | | | Couple of inbound calls fixed up Some ancient code removed as it's been marked deprecated Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/87584
* Move 3 files into cache directorySam Reed2011-04-251-0/+237
Move in AutoLoader to cache section also Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/86903