aboutsummaryrefslogtreecommitdiffstats
path: root/includes/SpecialExport.php
Commit message (Collapse)AuthorAgeFilesLines
* New, simple method to retrieve the plain source of an articleGabriel Wicke2004-04-281-1/+1
| | | | | | | | | | | Syntax: * action=raw * ctype=text/plain (defaults to text/plain, used in the header) * charset=utf-8 (defaults to wgInputEncoding, used in header) * oldid=int (retrieves old version if set) Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3392
* XHTML clean-up. Started reformatting Preferences. Fixed some hard-codingBrion Vibber2004-04-091-1/+1
| | | | | | | of 'Vikipedio' in eo. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3040
* Uninitialized variable cleanup; allow x-code input for page box in export ↵Brion Vibber2004-03-201-5/+6
| | | | | | | for Esperanto Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2763
* Still not complete, but import is approaching functionalityBrion Vibber2004-03-161-0/+17
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2741
* 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/+2
| | | | | | | | | | | | * 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
* Fix for compatibility with short_open_tag = OffBrion Vibber2004-02-181-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2485
* Start support for compressing entries in the old table with gzdeflate.Brion Vibber2004-01-031-2/+2
| | | | | | | | | Adds compressOld.php to batch-compress existing entries. Article::getRevisionText will do decompression on a given row if necessary (marked by old_flags). Requires zlib. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2247
* Replaced calls to exit() with wfAbruptExit().Mr. E232003-12-101-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2173
* Add xml header (redundant but nice) and correct xml:lang tagBrion Vibber2003-12-011-1/+2
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2122
* Fix cur revision for multi-version exportBrion Vibber2003-11-251-2/+2
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2072
* Skip bad titlesBrion Vibber2003-11-251-0/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2071
* exit()Brion Vibber2003-11-151-2/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/1945
* misc. bug fixesTim Starling2003-11-151-1/+2
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/1942
* More wfQuery() conversionTim Starling2003-09-201-2/+2
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/1687
* Preliminary export of individual pages/page histories packaged in someBrion Vibber2003-09-151-0/+115
simple XML: Special:Export. Special:Import should follow... Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/1660