aboutsummaryrefslogtreecommitdiffstats
path: root/includes/PageHistory.php
Commit message (Collapse)AuthorAgeFilesLines
* Merge 'real' beta4 from HEADBrion Vibber2004-06-271-2/+2
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/4179
* Merge 1.3.0beta3 from HEADBrion Vibber2004-06-131-9/+13
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/4051
* Merge to HEAD; 1.3.0beta2Brion Vibber2004-06-061-8/+10
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3892
* access key and tooltip for 'compare selected versions' button, defaults to 'v'Gabriel Wicke2004-05-211-1/+2
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3648
* m moved to start of commentGabriel Wicke2004-05-211-5/+3
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3646
* htmlspecialchars instead of urlencodeGabriel Wicke2004-05-181-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3606
* Arbitrary diff selection without javascriptGabriel Wicke2004-05-181-37/+23
| | | | | | | The checkboxes are replaced by two columns of radio boxes. If js is available it does some styling tasks/makes sure sensible version combinations are selected. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3605
* minor bugGabriel Wicke2004-04-101-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3081
* tab in indexes on 'last' linksGabriel Wicke2004-04-091-9/+13
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3079
* moved script outside the ulGabriel Wicke2004-04-091-5/+5
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3063
* XHTML protectionBrion Vibber2004-04-091-1/+3
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3029
* HTML tweaks inching towards XHTML-friendly output. To test:Brion Vibber2004-04-031-1/+1
| | | | | | | | | | | $wgMimeType = "text/xml"; $wgDocType = "-//W3C//DTD XHTML 1.0 Transitional//EN"; $wgDTD = "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"; Mozilla will spit out angry erorrs at all the well-formedness errors. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2945
* A little HTML cleanup on diff linksBrion Vibber2004-04-021-4/+4
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2902
* Using full URL instead of relative for js arbitrary diff, since relative ↵Mr. E232004-03-261-2/+2
| | | | | | | URLs seem to cause security warnings on some browsers Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2841
* 1) section editing auto-summaries are now formatted as /* foo */Erik Moeller2004-03-241-1/+3
| | | | | | | | 2) in RC, SpecialContributions and PageHistory, these are displayed using the CSS class "autocomment" (gray in the standard skin) Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2825
* added class for stylingGabriel Wicke2004-03-221-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2791
* Replace the random boolean parameters on Title::getURL() with a set ofBrion Vibber2004-03-071-1/+1
| | | | | | | | | | | | | | | | | | practical, clear methods: Title::getLocalURL() - "/wiki/index.php/Foobar" or "/wiki/index.php?title=Foobar&action=edit" Title::getFullUrl() - ditto with $wgServer on the front Title::getInternalUrl() - ditto with $wgInternalServer on the front (for some squid-related functions) Title::escapeLocalUrl() - local URL escaped for HTML output Title::escapeFullUrl() - full URL escaped for HTML output All take an optional query parameter. Title::getURL(), wfFullUrl() and wfFullUrlE() are now officially deprecated and will result in instant death. wfLocalUrl() and wfLocalUrlE() will be killed shortly; they are still used in the language files. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2649
* * Fixed magic quotes in $_REQUEST, in Setup.phpTim Starling2004-03-061-1/+1
| | | | | | | | | | | | * Converted many instances of globals from the query to $_REQUEST * Renamed near-useless Title::getURL() to Title::getPartialURL() * Created new Title::getURL(), to replace wfLocalUrl, wfLocalUrlE, wfFullUrl and wfFullUrlE. Replaced most instances throughout the code * In Parser.php, generalised stripping of <nowiki>, <pre> and <math> to allow more general use such as nesting * Moved body of Article::preSaveTransform to Parser.php * Put lots of comments in Title.php Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2621
* Fixed bug causing diffs with cur to produce wrong result. Checkbox only ↵Mr. E232004-02-071-12/+26
| | | | | | | showed if > 1 revision is shown on the page. Some code cleanup. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2448
* Fix for problem diffing with current revisionMr. E232004-02-061-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2445
* Feature for diffing any two revisions.Mr. E232004-01-311-3/+31
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2398
* Feature-Request #816659,#668443: No (next 50) link if there is no next pageJens Frank2004-01-201-1/+1
| | | | | | | | | | Implemented for: PageHistory, QueryPage and all derived from it, SpecialContributions Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2327
* Bug fixes: watchlist and recent changes linked were broken in the last commitTim Starling2004-01-171-0/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2296
* Tweak offset/limit parameters for correctness. Enable 'last' diff link onBrion Vibber2003-12-211-15/+19
| | | | | | | | the last shown entry if there are further available entries, so it doesn't look like the history ends there. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2225
* Split off page history code to PageHistory.php out of Article.php and Skin.php.Brion Vibber2003-12-211-0/+163
No substantive changes yet. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2224