MediaWiki
master
|
Public Member Functions | |
__construct ( $contentMode=self::WRITE_CONTENT, $schemaVersion=XML_DUMP_SCHEMA_VERSION_11, ?HookContainer $hookContainer=null, ?CommentStore $commentStore=null) | |
closePage () | |
Closes a "<page>" section on the output stream. More... | |
closeStream () | |
Closes the output stream with the closing root element. More... | |
openPage ( $row) | |
Opens a "<page>" section on the output stream, with data from the given database row. More... | |
openStream () | |
Opens the XML output stream's root "<mediawiki>" element. More... | |
writeContributor ( $id, $text, $indent=" ") | |
writeLogItem ( $row) | |
Dumps a "<logitem>" section on the output stream, with data filled in from the given database row. More... | |
writeRevision ( $row, $slotRows=null) | |
Dumps a "<revision>" section on the output stream, with data filled in from the given database row. More... | |
writeTimestamp ( $timestamp, $indent=" ") | |
writeUploads ( $row, $dumpContents=false) | |
Warning! This data is potentially inconsistent. More... | |
Static Public Member Functions | |
static | canonicalTitle (Title $title) |
Return prefixed text form of title, but using the content language's canonical namespace. More... | |
Public Attributes | |
const | WRITE_CONTENT = 0 |
Output serialized revision content. More... | |
const | WRITE_STUB = 1 |
Only output subs for revision content. More... | |
Static Public Attributes | |
static string[] | $supportedSchemas |
the schema versions supported for output @final More... | |
Definition at line 43 of file XmlDumpWriter.php.
XmlDumpWriter::__construct | ( | $contentMode = self::WRITE_CONTENT , |
|
$schemaVersion = XML_DUMP_SCHEMA_VERSION_11 , |
|||
?HookContainer | $hookContainer = null , |
||
?CommentStore | $commentStore = null |
||
) |
int | $contentMode | WRITE_CONTENT or WRITE_STUB. |
string | $schemaVersion | which schema version the generated XML should comply to. One of the values from self::$supportedSchemas, using the XML_DUMP_SCHEMA_VERSION_XX constants. |
HookContainer | null | $hookContainer | |
CommentStore | null | $commentStore |
Definition at line 99 of file XmlDumpWriter.php.
|
static |
Return prefixed text form of title, but using the content language's canonical namespace.
This skips any special-casing such as gendered user namespaces – which while useful, are not yet listed in the XML "<siteinfo>" data so are unsafe in export.
Title | $title |
Definition at line 742 of file XmlDumpWriter.php.
References $title.
Referenced by openPage().
XmlDumpWriter::closePage | ( | ) |
Closes a "<page>" section on the output stream.
Definition at line 291 of file XmlDumpWriter.php.
XmlDumpWriter::closeStream | ( | ) |
Closes the output stream with the closing root element.
Call when finished dumping things.
Definition at line 246 of file XmlDumpWriter.php.
XmlDumpWriter::openPage | ( | $row | ) |
Opens a "<page>" section on the output stream, with data from the given database row.
stdClass | $row |
Definition at line 257 of file XmlDumpWriter.php.
References canonicalTitle(), Xml\element(), Xml\elementClean(), and MediaWiki\Title\Title\isValidRedirectTarget().
XmlDumpWriter::openStream | ( | ) |
Opens the XML output stream's root "<mediawiki>" element.
This does not include an xml directive, so is safe to include as a subelement in a larger XML stream. Namespace and XML Schema references are included.
Output will be encoded in UTF-8.
Definition at line 136 of file XmlDumpWriter.php.
References Xml\element().
XmlDumpWriter::writeContributor | ( | $id, | |
$text, | |||
$indent = " " |
|||
) |
int | $id | |
string | $text | |
string | $indent | Default to six spaces |
Definition at line 646 of file XmlDumpWriter.php.
References Xml\element(), and Xml\elementClean().
Referenced by writeLogItem(), and writeRevision().
XmlDumpWriter::writeLogItem | ( | $row | ) |
Dumps a "<logitem>" section on the output stream, with data filled in from the given database row.
stdClass | $row |
Definition at line 591 of file XmlDumpWriter.php.
References $title, LogPage\DELETED_ACTION, LogPage\DELETED_COMMENT, LogPage\DELETED_USER, Xml\element(), Xml\elementClean(), writeContributor(), and writeTimestamp().
XmlDumpWriter::writeRevision | ( | $row, | |
$slotRows = null |
|||
) |
Dumps a "<revision>" section on the output stream, with data filled in from the given database row.
stdClass | $row | |
null | stdClass[] | $slotRows |
FatalError | |
MWException |
Definition at line 354 of file XmlDumpWriter.php.
References $content, Xml\element(), Xml\elementClean(), writeContributor(), and writeTimestamp().
XmlDumpWriter::writeTimestamp | ( | $timestamp, | |
$indent = " " |
|||
) |
string | $timestamp | |
string | $indent | Default to six spaces |
Definition at line 635 of file XmlDumpWriter.php.
References Xml\element(), and wfTimestamp().
Referenced by writeLogItem(), and writeRevision().
XmlDumpWriter::writeUploads | ( | $row, | |
$dumpContents = false |
|||
) |
Warning! This data is potentially inconsistent.
:(
stdClass | $row | |
bool | $dumpContents |
Definition at line 664 of file XmlDumpWriter.php.
References NS_FILE.
|
static |
the schema versions supported for output @final
Definition at line 61 of file XmlDumpWriter.php.
Referenced by ApiQuery\getAllowedParams(), and BackupDumper\processOptions().
const XmlDumpWriter::WRITE_CONTENT = 0 |
Output serialized revision content.
Definition at line 46 of file XmlDumpWriter.php.
Referenced by TextPassDumper\dump().
const XmlDumpWriter::WRITE_STUB = 1 |
Only output subs for revision content.
Definition at line 49 of file XmlDumpWriter.php.