aboutsummaryrefslogtreecommitdiffstats
path: root/includes/parser/DateFormatter.php
Commit message (Collapse)AuthorAgeFilesLines
...
* More return documentationSam Reed2012-02-091-0/+4
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/111102
* * (bug 28511) Use [] syntax instead of {} for string offset accessAlexandre Emsenhuber2011-04-171-4/+4
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/86251
* Code cleanup: unused globals, empty statements, typos...Platonides2010-09-111-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/72834
* Get rid of PHP4-style constructorsChad Horohoe2010-08-301-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/71961
* * Added file description headersAlexandre Emsenhuber2010-08-221-0/+5
| | | | | | | * Added @file where needed Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/71434
* Fixed some doxygen warningsAlexandre Emsenhuber2010-06-091-0/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/67726
* Switch from Xml:: to Html:: in a few placesAryeh Gregor2009-08-211-1/+1
| | | | | | | | | | These should all theoretically be covered by the parser tests. All tests pass, the only change needed was to account for less overescaping in Html::expandAttributes(). There's no reason to escape <>' in "-quoted attributes, unless I'm mistaken and have just added some XSS. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/55433
* Fix up r49794, make new groups noncapturing, fixing offset problem with ↵Andrew Garrett2009-06-021-4/+4
| | | | | | | linked dates Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/51339
* Fix spacing issues with autoformatted dates. Includes a parser test for the ↵Andrew Garrett2009-04-241-4/+4
| | | | | | | specific failure case which was fixed. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/49794
* Tweak r48249 -- allow specification of the default format, and require the ↵Andrew Garrett2009-03-101-1/+12
| | | | | | | date to take up the entire argument. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/48254
* * (bug 4582) Provide preference-based autoformatting of unlinked dates with ↵Andrew Garrett2009-03-101-27/+53
| | | | | | | | | | the dateformat parser function. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/48249
* Surround dynamic dates with a <span>. Bug 17785.Andrew Garrett2009-03-091-11/+20
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/48247
* * Fix E_STRICTAlexandre Emsenhuber2009-01-231-4/+6
| | | | | | | * Fix doxygen warnings Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/46097
* * Reorganised the includes directory, creating subdirectories db, parser and ↵Tim Starling2008-06-161-0/+283
specials * Wrote a tool to check the integrity of the autoloader class list, fixed some issues that came up. * Start the autoloader before LocalSettings.php, so that when an extension writer thinks an inefficient one-file special page extension is the way to go, they don't have to use explicit includes to make the class inheritance work. Should continue to work with $IP set in LocalSettings.php as long as $IP is set before extensions are included. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/36353