1
0

Add files via upload

This commit is contained in:
AlexWhiter 2018-11-15 11:36:38 +07:00 committed by GitHub
parent 2f4a6e2527
commit cc9490f102
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 3723 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,442 @@
<?php
/** Copyright (C) 2008 Guy Van den Broeck <guy@guyvdb.eu>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* or see http://www.gnu.org/
*
*/
/**
* Any element in the DOM tree of an HTML document.
* @ingroup DifferenceEngine
*/
class Node {
public $parent;
protected $parentTree;
public $whiteBefore = false;
public $whiteAfter = false;
function __construct($parent) {
$this->parent = $parent;
}
public function getParentTree() {
if (!isset($this->parentTree)) {
if (!is_null($this->parent)) {
$this->parentTree = $this->parent->getParentTree();
$this->parentTree[] = $this->parent;
} else {
$this->parentTree = array();
}
}
return $this->parentTree;
}
public function getLastCommonParent(Node $other) {
$result = new LastCommonParentResult();
$myParents = $this->getParentTree();
$otherParents = $other->getParentTree();
$i = 1;
$isSame = true;
$nbMyParents = count($myParents);
$nbOtherParents = count($otherParents);
while ($isSame && $i < $nbMyParents && $i < $nbOtherParents) {
if ($myParents[$i]->openingTag !== $otherParents[$i]->openingTag) {
$isSame = false;
} else {
// After a while, the index i-1 must be the last common parent
$i++;
}
}
$result->lastCommonParentDepth = $i - 1;
$result->parent = $myParents[$i - 1];
if (!$isSame || $nbMyParents > $nbOtherParents) {
// Not all tags matched, or all tags matched but
// there are tags left in this tree
$result->indexInLastCommonParent = $myParents[$i - 1]->getIndexOf($myParents[$i]);
$result->splittingNeeded = true;
} else if ($nbMyParents <= $nbOtherParents) {
$result->indexInLastCommonParent = $myParents[$i - 1]->getIndexOf($this);
}
return $result;
}
public function setParent($parent) {
$this->parent = $parent;
unset($this->parentTree);
}
public function inPre() {
$tree = $this->getParentTree();
foreach ($tree as &$ancestor) {
if ($ancestor->isPre()) {
return true;
}
}
return false;
}
}
/**
* Node that can contain other nodes. Represents an HTML tag.
* @ingroup DifferenceEngine
*/
class TagNode extends Node {
public $children = array();
public $qName;
public $attributes = array();
public $openingTag;
function __construct($parent, $qName, /*array*/ $attributes) {
parent::__construct($parent);
$this->qName = strtolower($qName);
foreach($attributes as $key => &$value){
$this->attributes[strtolower($key)] = $value;
}
return $this->openingTag = Xml::openElement($this->qName, $this->attributes);
}
public function addChildAbsolute(Node $node, $index) {
array_splice($this->children, $index, 0, array($node));
}
public function getIndexOf(Node $child) {
// don't trust array_search with objects
foreach ($this->children as $key => &$value){
if ($value === $child) {
return $key;
}
}
return null;
}
public function getNbChildren() {
return count($this->children);
}
public function getMinimalDeletedSet($id, &$allDeleted, &$somethingDeleted) {
$nodes = array();
$allDeleted = false;
$somethingDeleted = false;
$hasNonDeletedDescendant = false;
if (empty($this->children)) {
return $nodes;
}
foreach ($this->children as &$child) {
$allDeleted_local = false;
$somethingDeleted_local = false;
$childrenChildren = $child->getMinimalDeletedSet($id, $allDeleted_local, $somethingDeleted_local);
if ($somethingDeleted_local) {
$nodes = array_merge($nodes, $childrenChildren);
$somethingDeleted = true;
}
if (!$allDeleted_local) {
$hasNonDeletedDescendant = true;
}
}
if (!$hasNonDeletedDescendant) {
$nodes = array($this);
$allDeleted = true;
}
return $nodes;
}
public function splitUntil(TagNode $parent, Node $split, $includeLeft) {
$splitOccured = false;
if ($parent !== $this) {
$part1 = new TagNode(null, $this->qName, $this->attributes);
$part2 = new TagNode(null, $this->qName, $this->attributes);
$part1->setParent($this->parent);
$part2->setParent($this->parent);
$onSplit = false;
$pastSplit = false;
foreach ($this->children as &$child)
{
if ($child === $split) {
$onSplit = true;
}
if(!$pastSplit || ($onSplit && $includeLeft)) {
$child->setParent($part1);
$part1->children[] = $child;
} else {
$child->setParent($part2);
$part2->children[] = $child;
}
if ($onSplit) {
$onSplit = false;
$pastSplit = true;
}
}
// Replace the existing child with $part1 (left) and $part2 (right).
// Insertions shift existing content right, so insert part2 before
// inserting part1.
$myindexinparent = $this->parent->getIndexOf($this);
$this->parent->removeChild($myindexinparent);
if (!empty($part2->children)) {
$this->parent->addChildAbsolute($part2, $myindexinparent);
}
if (!empty($part1->children)) {
$this->parent->addChildAbsolute($part1, $myindexinparent);
}
if (!empty($part1->children) && !empty($part2->children)) {
$splitOccured = true;
}
if ($includeLeft) {
$this->parent->splitUntil($parent, $part1, $includeLeft);
} else {
$this->parent->splitUntil($parent, $part2, $includeLeft);
}
}
return $splitOccured;
}
private function removeChild($index) {
unset($this->children[$index]);
$this->children = array_values($this->children);
}
public static $blocks = array('html', 'body','p','blockquote', 'h1',
'h2', 'h3', 'h4', 'h5', 'pre', 'div', 'ul', 'ol', 'li', 'table',
'tbody', 'tr', 'td', 'th', 'br');
public function copyTree() {
$newThis = new TagNode(null, $this->qName, $this->attributes);
$newThis->whiteBefore = $this->whiteBefore;
$newThis->whiteAfter = $this->whiteAfter;
foreach ($this->children as &$child) {
$newChild = $child->copyTree();
$newChild->setParent($newThis);
$newThis->children[] = $newChild;
}
return $newThis;
}
public function getMatchRatio(TagNode $other) {
$txtComp = new TextOnlyComparator($other);
return $txtComp->getMatchRatio(new TextOnlyComparator($this));
}
public function expandWhiteSpace() {
$shift = 0;
$spaceAdded = false;
$nbOriginalChildren = $this->getNbChildren();
for ($i = 0; $i < $nbOriginalChildren; ++$i) {
$child = $this->children[$i + $shift];
if ($child instanceof TagNode) {
if (!$child->isPre()) {
$child->expandWhiteSpace();
}
}
if (!$spaceAdded && $child->whiteBefore) {
$ws = new WhiteSpaceNode(null, ' ', $child->getLeftMostChild());
$ws->setParent($this);
$this->addChildAbsolute($ws,$i + ($shift++));
}
if ($child->whiteAfter) {
$ws = new WhiteSpaceNode(null, ' ', $child->getRightMostChild());
$ws->setParent($this);
$this->addChildAbsolute($ws,$i + 1 + ($shift++));
$spaceAdded = true;
} else {
$spaceAdded = false;
}
}
}
public function getLeftMostChild() {
if (empty($this->children)) {
return $this;
}
return $this->children[0]->getLeftMostChild();
}
public function getRightMostChild() {
if (empty($this->children)) {
return $this;
}
return $this->children[$this->getNbChildren() - 1]->getRightMostChild();
}
public function isPre() {
return 0 == strcasecmp($this->qName,'pre');
}
public static function toDiffLine(TagNode $node) {
return $node->openingTag;
}
}
/**
* Represents a piece of text in the HTML file.
* @ingroup DifferenceEngine
*/
class TextNode extends Node {
public $text;
public $modification;
function __construct($parent, $text) {
parent::__construct($parent);
$this->modification = new Modification(Modification::NONE);
$this->text = $text;
}
public function copyTree() {
$clone = clone $this;
$clone->setParent(null);
return $clone;
}
public function getLeftMostChild() {
return $this;
}
public function getRightMostChild() {
return $this;
}
public function getMinimalDeletedSet($id, &$allDeleted, &$somethingDeleted) {
if ($this->modification->type == Modification::REMOVED
&& $this->modification->id == $id){
$somethingDeleted = true;
$allDeleted = true;
return array($this);
}
return array();
}
public function isSameText($other) {
if (is_null($other) || ! $other instanceof TextNode) {
return false;
}
return str_replace('\n', ' ',$this->text) === str_replace('\n', ' ',$other->text);
}
public static function toDiffLine(TextNode $node) {
return str_replace('\n', ' ',$node->text);
}
}
/**
* @todo Document
* @ingroup DifferenceEngine
*/
class WhiteSpaceNode extends TextNode {
function __construct($parent, $s, Node $like = null) {
parent::__construct($parent, $s);
if(!is_null($like) && $like instanceof TextNode) {
$newModification = clone $like->modification;
$newModification->firstOfID = false;
$this->modification = $newModification;
}
}
}
/**
* Represents the root of a HTML document.
* @ingroup DifferenceEngine
*/
class BodyNode extends TagNode {
function __construct() {
parent::__construct(null, 'body', array());
}
public function copyTree() {
$newThis = new BodyNode();
foreach ($this->children as &$child) {
$newChild = $child->copyTree();
$newChild->setParent($newThis);
$newThis->children[] = $newChild;
}
return $newThis;
}
public function getMinimalDeletedSet($id, &$allDeleted, &$somethingDeleted) {
$nodes = array();
foreach ($this->children as &$child) {
$childrenChildren = $child->getMinimalDeletedSet($id,
$allDeleted, $somethingDeleted);
$nodes = array_merge($nodes, $childrenChildren);
}
return $nodes;
}
}
/**
* Represents an image in HTML. Even though images do not contain any text they
* are independent visible objects on the page. They are logically a TextNode.
* @ingroup DifferenceEngine
*/
class ImageNode extends TextNode {
public $attributes;
function __construct(TagNode $parent, /*array*/ $attrs) {
if(!array_key_exists('src', $attrs)) {
HTMLDiffer::diffDebug( "Image without a source\n" );
parent::__construct($parent, '<img></img>');
}else{
parent::__construct($parent, '<img>' . strtolower($attrs['src']) . '</img>');
}
$this->attributes = $attrs;
}
public function isSameText($other) {
if (is_null($other) || ! $other instanceof ImageNode) {
return false;
}
return $this->text === $other->text;
}
}
/**
* No-op node
* @ingroup DifferenceEngine
*/
class DummyNode extends Node {
function __construct() {
// no op
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,794 @@
<?php
/**
* Module of static functions for generating XML
*/
class Xml {
/**
* Format an XML element with given attributes and, optionally, text content.
* Element and attribute names are assumed to be ready for literal inclusion.
* Strings are assumed to not contain XML-illegal characters; special
* characters (<, >, &) are escaped but illegals are not touched.
*
* @param $element String: element name
* @param $attribs Array: Name=>value pairs. Values will be escaped.
* @param $contents String: NULL to make an open tag only; '' for a contentless closed tag (default)
* @param $allowShortTag Bool: whether '' in $contents will result in a contentless closed tag
* @return string
*/
public static function element( $element, $attribs = null, $contents = '', $allowShortTag = true ) {
$out = '<' . $element;
if( !is_null( $attribs ) ) {
$out .= self::expandAttributes( $attribs );
}
if( is_null( $contents ) ) {
$out .= '>';
} else {
if( $allowShortTag && $contents === '' ) {
$out .= ' />';
} else {
$out .= '>' . htmlspecialchars( $contents ) . "</$element>";
}
}
return $out;
}
/**
* Given an array of ('attributename' => 'value'), it generates the code
* to set the XML attributes : attributename="value".
* The values are passed to Sanitizer::encodeAttribute.
* Return null if no attributes given.
* @param $attribs Array of attributes for an XML element
*/
public static function expandAttributes( $attribs ) {
$out = '';
if( is_null( $attribs ) ) {
return null;
} elseif( is_array( $attribs ) ) {
foreach( $attribs as $name => $val )
$out .= " {$name}=\"" . Sanitizer::encodeAttribute( $val ) . '"';
return $out;
} else {
throw new MWException( 'Expected attribute array, got something else in ' . __METHOD__ );
}
}
/**
* Format an XML element as with self::element(), but run text through the
* UtfNormal::cleanUp() validator first to ensure that no invalid UTF-8
* is passed.
*
* @param $element String:
* @param $attribs Array: Name=>value pairs. Values will be escaped.
* @param $contents String: NULL to make an open tag only; '' for a contentless closed tag (default)
* @return string
*/
public static function elementClean( $element, $attribs = array(), $contents = '') {
if( $attribs ) {
$attribs = array_map( array( 'UtfNormal', 'cleanUp' ), $attribs );
}
if( $contents ) {
wfProfileIn( __METHOD__ . '-norm' );
$contents = UtfNormal::cleanUp( $contents );
wfProfileOut( __METHOD__ . '-norm' );
}
return self::element( $element, $attribs, $contents );
}
/**
* This opens an XML element
*
* @param $element name of the element
* @param $attribs array of attributes, see Xml::expandAttributes()
* @return string
*/
public static function openElement( $element, $attribs = null ) {
return '<' . $element . self::expandAttributes( $attribs ) . '>';
}
/**
* Shortcut to close an XML element
* @param $element element name
* @return string
*/
public static function closeElement( $element ) { return "</$element>"; }
/**
* Same as Xml::element(), but does not escape contents. Handy when the
* content you have is already valid xml.
*
* @param $element element name
* @param $attribs array of attributes
* @param $contents content of the element
* @return string
*/
public static function tags( $element, $attribs = null, $contents ) {
return self::openElement( $element, $attribs ) . $contents . "</$element>";
}
/**
* Build a drop-down box for selecting a namespace
*
* @param $selected Mixed: Namespace which should be pre-selected
* @param $all Mixed: Value of an item denoting all namespaces, or null to omit
* @param $element_name String: value of the "name" attribute of the select tag
* @param $label String: optional label to add to the field
* @return string
*/
public static function namespaceSelector( $selected = '', $all = null, $element_name = 'namespace', $label = null ) {
global $wgContLang;
$namespaces = $wgContLang->getFormattedNamespaces();
$options = array();
// Godawful hack... we'll be frequently passed selected namespaces
// as strings since PHP is such a shithole.
// But we also don't want blanks and nulls and "all"s matching 0,
// so let's convert *just* string ints to clean ints.
if( preg_match( '/^\d+$/', $selected ) ) {
$selected = intval( $selected );
}
if( !is_null( $all ) )
$namespaces = array( $all => wfMsg( 'namespacesall' ) ) + $namespaces;
foreach( $namespaces as $index => $name ) {
if( $index < NS_MAIN )
continue;
if( $index === 0 )
$name = wfMsg( 'blanknamespace' );
$options[] = self::option( $name, $index, $index === $selected );
}
$ret = Xml::openElement( 'select', array( 'id' => 'namespace', 'name' => $element_name,
'class' => 'namespaceselector' ) )
. "\n"
. implode( "\n", $options )
. "\n"
. Xml::closeElement( 'select' );
if ( !is_null( $label ) ) {
$ret = Xml::label( $label, $element_name ) . '&nbsp;' . $ret;
}
return $ret;
}
/**
* Create a date selector
*
* @param $selected Mixed: the month which should be selected, default ''
* @param $allmonths String: value of a special item denoting all month. Null to not include (default)
* @param $id String: Element identifier
* @return String: Html string containing the month selector
*/
public static function monthSelector( $selected = '', $allmonths = null, $id = 'month' ) {
global $wgLang;
$options = array();
if( is_null( $selected ) )
$selected = '';
if( !is_null( $allmonths ) )
$options[] = self::option( wfMsg( 'monthsall' ), $allmonths, $selected === $allmonths );
for( $i = 1; $i < 13; $i++ )
$options[] = self::option( $wgLang->getMonthName( $i ), $i, $selected === $i );
return self::openElement( 'select', array( 'id' => $id, 'name' => 'month', 'class' => 'mw-month-selector' ) )
. implode( "\n", $options )
. self::closeElement( 'select' );
}
/**
* @param $year Integer
* @param $month Integer
* @return string Formatted HTML
*/
public static function dateMenu( $year, $month ) {
# Offset overrides year/month selection
if( $month && $month !== -1 ) {
$encMonth = intval( $month );
} else {
$encMonth = '';
}
if( $year ) {
$encYear = intval( $year );
} else if( $encMonth ) {
$thisMonth = intval( gmdate( 'n' ) );
$thisYear = intval( gmdate( 'Y' ) );
if( intval($encMonth) > $thisMonth ) {
$thisYear--;
}
$encYear = $thisYear;
} else {
$encYear = '';
}
return Xml::label( wfMsg( 'year' ), 'year' ) . ' '.
Xml::input( 'year', 4, $encYear, array('id' => 'year', 'maxlength' => 4) ) . ' '.
Xml::label( wfMsg( 'month' ), 'month' ) . ' '.
Xml::monthSelector( $encMonth, -1 );
}
/**
*
* @param $selected The language code of the selected language
* @param $customisedOnly If true only languages which have some content are listed
* @return array of label and select
*/
public static function languageSelector( $selected, $customisedOnly = true ) {
global $wgContLanguageCode;
/**
* Make sure the site language is in the list; a custom language code
* might not have a defined name...
*/
$languages = Language::getLanguageNames( $customisedOnly );
if( !array_key_exists( $wgContLanguageCode, $languages ) ) {
$languages[$wgContLanguageCode] = $wgContLanguageCode;
}
ksort( $languages );
/**
* If a bogus value is set, default to the content language.
* Otherwise, no default is selected and the user ends up
* with an Afrikaans interface since it's first in the list.
*/
$selected = isset( $languages[$selected] ) ? $selected : $wgContLanguageCode;
$options = "\n";
foreach( $languages as $code => $name ) {
$options .= Xml::option( "$code - $name", $code, ($code == $selected) ) . "\n";
}
return array(
Xml::label( wfMsg('yourlanguage'), 'wpUserLanguage' ),
Xml::tags( 'select',
array( 'id' => 'wpUserLanguage', 'name' => 'wpUserLanguage' ),
$options
)
);
}
/**
* Shortcut to make a span element
* @param $text content of the element, will be escaped
* @param $class class name of the span element
* @param $attribs other attributes
* @return string
*/
public static function span( $text, $class, $attribs=array() ) {
return self::element( 'span', array( 'class' => $class ) + $attribs, $text );
}
/**
* Shortcut to make a specific element with a class attribute
* @param $text content of the element, will be escaped
* @param $class class name of the span element
* @param $tag element name
* @param $attribs other attributes
* @return string
*/
public static function wrapClass( $text, $class, $tag='span', $attribs=array() ) {
return self::tags( $tag, array( 'class' => $class ) + $attribs, $text );
}
/**
* Convenience function to build an HTML text input field
* @param $name value of the name attribute
* @param $size value of the size attribute
* @param $value value of the value attribute
* @param $attribs other attributes
* @return string HTML
*/
public static function input( $name, $size=false, $value=false, $attribs=array() ) {
return self::element( 'input', array(
'name' => $name,
'size' => $size,
'value' => $value ) + $attribs );
}
/**
* Convenience function to build an HTML password input field
* @param $name value of the name attribute
* @param $size value of the size attribute
* @param $value value of the value attribute
* @param $attribs other attributes
* @return string HTML
*/
public static function password( $name, $size=false, $value=false, $attribs=array() ) {
return self::input( $name, $size, $value, array_merge($attribs, array('type' => 'password')));
}
/**
* Internal function for use in checkboxes and radio buttons and such.
* @return array
*/
public static function attrib( $name, $present = true ) {
return $present ? array( $name => $name ) : array();
}
/**
* Convenience function to build an HTML checkbox
* @param $name value of the name attribute
* @param $checked Whether the checkbox is checked or not
* @param $attribs other attributes
* @return string HTML
*/
public static function check( $name, $checked=false, $attribs=array() ) {
return self::element( 'input', array_merge(
array(
'name' => $name,
'type' => 'checkbox',
'value' => 1 ),
self::attrib( 'checked', $checked ),
$attribs ) );
}
/**
* Convenience function to build an HTML radio button
* @param $name value of the name attribute
* @param $value value of the value attribute
* @param $checked Whether the checkbox is checked or not
* @param $attribs other attributes
* @return string HTML
*/
public static function radio( $name, $value, $checked=false, $attribs=array() ) {
return self::element( 'input', array(
'name' => $name,
'type' => 'radio',
'value' => $value ) + self::attrib( 'checked', $checked ) + $attribs );
}
/**
* Convenience function to build an HTML form label
* @param $label text of the label
* @param $id
* @return string HTML
*/
public static function label( $label, $id ) {
return self::element( 'label', array( 'for' => $id ), $label );
}
/**
* Convenience function to build an HTML text input field with a label
* @param $label text of the label
* @param $name value of the name attribute
* @param $id id of the input
* @param $size value of the size attribute
* @param $value value of the value attribute
* @param $attribs other attributes
* @return string HTML
*/
public static function inputLabel( $label, $name, $id, $size=false, $value=false, $attribs=array() ) {
list( $label, $input ) = self::inputLabelSep( $label, $name, $id, $size, $value, $attribs );
return $label . '&nbsp;' . $input;
}
/**
* Same as Xml::inputLabel() but return input and label in an array
*/
public static function inputLabelSep( $label, $name, $id, $size=false, $value=false, $attribs=array() ) {
return array(
Xml::label( $label, $id ),
self::input( $name, $size, $value, array( 'id' => $id ) + $attribs )
);
}
/**
* Convenience function to build an HTML checkbox with a label
* @return string HTML
*/
public static function checkLabel( $label, $name, $id, $checked=false, $attribs=array() ) {
return self::check( $name, $checked, array( 'id' => $id ) + $attribs ) .
'&nbsp;' .
self::label( $label, $id );
}
/**
* Convenience function to build an HTML radio button with a label
* @return string HTML
*/
public static function radioLabel( $label, $name, $value, $id, $checked=false, $attribs=array() ) {
return self::radio( $name, $value, $checked, array( 'id' => $id ) + $attribs ) .
'&nbsp;' .
self::label( $label, $id );
}
/**
* Convenience function to build an HTML submit button
* @param $value String: label text for the button
* @param $attribs Array: optional custom attributes
* @return string HTML
*/
public static function submitButton( $value, $attribs=array() ) {
return self::element( 'input', array( 'type' => 'submit', 'value' => $value ) + $attribs );
}
/**
* @deprecated Synonymous to Html::hidden()
*/
public static function hidden( $name, $value, $attribs = array() ) {
return Html::hidden( $name, $value, $attribs );
}
/**
* Convenience function to build an HTML drop-down list item.
* @param $text String: text for this item
* @param $value String: form submission value; if empty, use text
* @param $selected boolean: if true, will be the default selected item
* @param $attribs array: optional additional HTML attributes
* @return string HTML
*/
public static function option( $text, $value=null, $selected=false,
$attribs=array() ) {
if( !is_null( $value ) ) {
$attribs['value'] = $value;
}
if( $selected ) {
$attribs['selected'] = 'selected';
}
return self::element( 'option', $attribs, $text );
}
/**
* Build a drop-down box from a textual list.
*
* @param $name Mixed: Name and id for the drop-down
* @param $class Mixed: CSS classes for the drop-down
* @param $other Mixed: Text for the "Other reasons" option
* @param $list Mixed: Correctly formatted text to be used to generate the options
* @param $selected Mixed: Option which should be pre-selected
* @param $tabindex Mixed: Value of the tabindex attribute
* @return string
*/
public static function listDropDown( $name= '', $list = '', $other = '', $selected = '', $class = '', $tabindex = Null ) {
$options = '';
$optgroup = false;
$options = self::option( $other, 'other', $selected === 'other' );
foreach ( explode( "\n", $list ) as $option) {
$value = trim( $option );
if ( $value == '' ) {
continue;
} elseif ( substr( $value, 0, 1) == '*' && substr( $value, 1, 1) != '*' ) {
// A new group is starting ...
$value = trim( substr( $value, 1 ) );
if( $optgroup ) $options .= self::closeElement('optgroup');
$options .= self::openElement( 'optgroup', array( 'label' => $value ) );
$optgroup = true;
} elseif ( substr( $value, 0, 2) == '**' ) {
// groupmember
$value = trim( substr( $value, 2 ) );
$options .= self::option( $value, $value, $selected === $value );
} else {
// groupless reason list
if( $optgroup ) $options .= self::closeElement('optgroup');
$options .= self::option( $value, $value, $selected === $value );
$optgroup = false;
}
}
if( $optgroup ) $options .= self::closeElement('optgroup');
$attribs = array();
if( $name ) {
$attribs['id'] = $name;
$attribs['name'] = $name;
}
if( $class ) {
$attribs['class'] = $class;
}
if( $tabindex ) {
$attribs['tabindex'] = $tabindex;
}
return Xml::openElement( 'select', $attribs )
. "\n"
. $options
. "\n"
. Xml::closeElement( 'select' );
}
/**
* Shortcut for creating fieldsets.
*
* @param $legend Legend of the fieldset. If evaluates to false, legend is not added.
* @param $content Pre-escaped content for the fieldset. If false, only open fieldset is returned.
* @param $attribs Any attributes to fieldset-element.
*/
public static function fieldset( $legend = false, $content = false, $attribs = array() ) {
$s = Xml::openElement( 'fieldset', $attribs ) . "\n";
if ( $legend ) {
$s .= Xml::element( 'legend', null, $legend ) . "\n";
}
if ( $content !== false ) {
$s .= $content . "\n";
$s .= Xml::closeElement( 'fieldset' ) . "\n";
}
return $s;
}
/**
* Shortcut for creating textareas.
*
* @param $name The 'name' for the textarea
* @param $content Content for the textarea
* @param $cols The number of columns for the textarea
* @param $rows The number of rows for the textarea
* @param $attribs Any other attributes for the textarea
*/
public static function textarea( $name, $content, $cols = 40, $rows = 5, $attribs = array() ) {
return self::element( 'textarea',
array( 'name' => $name,
'id' => $name,
'cols' => $cols,
'rows' => $rows
) + $attribs,
$content, false );
}
/**
* Returns an escaped string suitable for inclusion in a string literal
* for JavaScript source code.
* Illegal control characters are assumed not to be present.
*
* @param $string String to escape
* @return String
*/
public static function escapeJsString( $string ) {
// See ECMA 262 section 7.8.4 for string literal format
$pairs = array(
"\\" => "\\\\",
"\"" => "\\\"",
'\'' => '\\\'',
"\n" => "\\n",
"\r" => "\\r",
# To avoid closing the element or CDATA section
"<" => "\\x3c",
">" => "\\x3e",
# To avoid any complaints about bad entity refs
"&" => "\\x26",
# Work around https://bugzilla.mozilla.org/show_bug.cgi?id=274152
# Encode certain Unicode formatting chars so affected
# versions of Gecko don't misinterpret our strings;
# this is a common problem with Farsi text.
"\xe2\x80\x8c" => "\\u200c", // ZERO WIDTH NON-JOINER
"\xe2\x80\x8d" => "\\u200d", // ZERO WIDTH JOINER
);
return strtr( $string, $pairs );
}
/**
* Encode a variable of unknown type to JavaScript.
* Arrays are converted to JS arrays, objects are converted to JS associative
* arrays (objects). So cast your PHP associative arrays to objects before
* passing them to here.
*/
public static function encodeJsVar( $value ) {
if ( is_bool( $value ) ) {
$s = $value ? 'true' : 'false';
} elseif ( is_null( $value ) ) {
$s = 'null';
} elseif ( is_int( $value ) ) {
$s = $value;
} elseif ( is_array( $value ) && // Make sure it's not associative.
array_keys($value) === range( 0, count($value) - 1 ) ||
count($value) == 0
) {
$s = '[';
foreach ( $value as $elt ) {
if ( $s != '[' ) {
$s .= ', ';
}
$s .= self::encodeJsVar( $elt );
}
$s .= ']';
} elseif ( is_object( $value ) || is_array( $value ) ) {
// Objects and associative arrays
$s = '{';
foreach ( (array)$value as $name => $elt ) {
if ( $s != '{' ) {
$s .= ', ';
}
$s .= '"' . self::escapeJsString( $name ) . '": ' .
self::encodeJsVar( $elt );
}
$s .= '}';
} else {
$s = '"' . self::escapeJsString( $value ) . '"';
}
return $s;
}
/**
* Check if a string is well-formed XML.
* Must include the surrounding tag.
*
* @param $text String: string to test.
* @return bool
*
* @todo Error position reporting return
*/
public static function isWellFormed( $text ) {
$parser = xml_parser_create( "UTF-8" );
# case folding violates XML standard, turn it off
xml_parser_set_option( $parser, XML_OPTION_CASE_FOLDING, false );
if( !xml_parse( $parser, $text, true ) ) {
//$err = xml_error_string( xml_get_error_code( $parser ) );
//$position = xml_get_current_byte_index( $parser );
//$fragment = $this->extractFragment( $html, $position );
//$this->mXmlError = "$err at byte $position:\n$fragment";
xml_parser_free( $parser );
return false;
}
xml_parser_free( $parser );
return true;
}
/**
* Check if a string is a well-formed XML fragment.
* Wraps fragment in an \<html\> bit and doctype, so it can be a fragment
* and can use HTML named entities.
*
* @param $text String:
* @return bool
*/
public static function isWellFormedXmlFragment( $text ) {
$html =
Sanitizer::hackDocType() .
'<html>' .
$text .
'</html>';
return Xml::isWellFormed( $html );
}
/**
* Replace " > and < with their respective HTML entities ( &quot;,
* &gt;, &lt;)
*
* @param $in String: text that might contain HTML tags.
* @return string Escaped string
*/
public static function escapeTagsOnly( $in ) {
return str_replace(
array( '"', '>', '<' ),
array( '&quot;', '&gt;', '&lt;' ),
$in );
}
/**
* Generate a form (without the opening form element).
* Output optionally includes a submit button.
* @param $fields Associative array, key is message corresponding to a description for the field (colon is in the message), value is appropriate input.
* @param $submitLabel A message containing a label for the submit button.
* @return string HTML form.
*/
public static function buildForm( $fields, $submitLabel = null ) {
$form = '';
$form .= "<table><tbody>";
foreach( $fields as $labelmsg => $input ) {
$id = "mw-$labelmsg";
$form .= Xml::openElement( 'tr', array( 'id' => $id ) );
$form .= Xml::tags( 'td', array('class' => 'mw-label'), wfMsgExt( $labelmsg, array('parseinline') ) );
$form .= Xml::openElement( 'td', array( 'class' => 'mw-input' ) ) . $input . Xml::closeElement( 'td' );
$form .= Xml::closeElement( 'tr' );
}
if( $submitLabel ) {
$form .= Xml::openElement( 'tr' );
$form .= Xml::tags( 'td', array(), '' );
$form .= Xml::openElement( 'td', array( 'class' => 'mw-submit' ) ) . Xml::submitButton( wfMsg( $submitLabel ) ) . Xml::closeElement( 'td' );
$form .= Xml::closeElement( 'tr' );
}
$form .= "</tbody></table>";
return $form;
}
/**
* Build a table of data
* @param $rows An array of arrays of strings, each to be a row in a table
* @param $attribs An array of attributes to apply to the table tag [optional]
* @param $headers An array of strings to use as table headers [optional]
* @return string
*/
public static function buildTable( $rows, $attribs = array(), $headers = null ) {
$s = Xml::openElement( 'table', $attribs );
if ( is_array( $headers ) ) {
foreach( $headers as $id => $header ) {
$attribs = array();
if ( is_string( $id ) ) $attribs['id'] = $id;
$s .= Xml::element( 'th', $attribs, $header );
}
}
foreach( $rows as $id => $row ) {
$attribs = array();
if ( is_string( $id ) ) $attribs['id'] = $id;
$s .= Xml::buildTableRow( $attribs, $row );
}
$s .= Xml::closeElement( 'table' );
return $s;
}
/**
* Build a row for a table
* @param $attribs An array of attributes to apply to the tr tag
* @param $cells An array of strings to put in <td>
* @return string
*/
public static function buildTableRow( $attribs, $cells ) {
$s = Xml::openElement( 'tr', $attribs );
foreach( $cells as $id => $cell ) {
$attribs = array();
if ( is_string( $id ) ) $attribs['id'] = $id;
$s .= Xml::element( 'td', $attribs, $cell );
}
$s .= Xml::closeElement( 'tr' );
return $s;
}
}
class XmlSelect {
protected $options = array();
protected $default = false;
protected $attributes = array();
public function __construct( $name = false, $id = false, $default = false ) {
if ( $name ) $this->setAttribute( 'name', $name );
if ( $id ) $this->setAttribute( 'id', $id );
if ( $default ) $this->default = $default;
}
public function setDefault( $default ) {
$this->default = $default;
}
public function setAttribute( $name, $value ) {
$this->attributes[$name] = $value;
}
public function getAttribute( $name ) {
if ( isset($this->attributes[$name]) ) {
return $this->attributes[$name];
} else {
return null;
}
}
public function addOption( $name, $value = false ) {
// Stab stab stab
$value = ($value !== false) ? $value : $name;
$this->options[] = Xml::option( $name, $value, $value === $this->default );
}
// This accepts an array of form
// label => value
// label => ( label => value, label => value )
public function addOptions( $options ) {
$this->options[] = trim(self::formatOptions( $options, $this->default ));
}
// This accepts an array of form
// label => value
// label => ( label => value, label => value )
static function formatOptions( $options, $default = false ) {
$data = '';
foreach( $options as $label => $value ) {
if ( is_array( $value ) ) {
$contents = self::formatOptions( $value, $default );
$data .= Xml::tags( 'optgroup', array( 'label' => $label ), $contents ) . "\n";
} else {
$data .= Xml::option( $label, $value, $value === $default ) . "\n";
}
}
return $data;
}
public function getHTML() {
return Xml::tags( 'select', $this->attributes, implode( "\n", $this->options ) );
}
}

View File

@ -0,0 +1,94 @@
<?php
// The HTMLDiff module uses some MediWiki functions (which are defined in http://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/includes/GlobalFunctions.php?view=markup&pathrev=58267)
// This file creates dummy functions so that the HTMLDiff module works without them
if(!function_exists("wfProfileIn"))
{
function wfProfileIn($method)
{
// Debugging function, is called at the beginning of some methods
}
}
if(!function_exists("wfProfileOut"))
{
function wfProfileOut($method)
{
// Debugging function, is called at the end of some methods
}
}
if(!function_exists("wfDebug"))
{
function wfDebug($msg)
{
// Debugging function
}
}
if(!function_exists("wfMsg"))
{
function wfMsg($key)
{
// Looks up a localised message in MediaWiki
return $key;
}
}
if(!function_exists("wfMsgExt"))
{
function wfMsgExt($key, $options)
{
// Looks up some localised message in MediaWiki
// The message for the key "diff-movedoutof" is "moved out of $1", for "diff-pre" it is "a preformatted block", for example
// This is used by the HTMLDiff module to describe the changes in words. As we dont really use that, we just return
// some example data here.
$args = func_get_args();
return "wfMsgExt(".implode(", ", $args).")";
// TODO
}
}
if(!function_exists("wfEmptyMsg"))
{
function wfEmptyMsg($msg, $wfMsgOut)
{
// $msg is $key for wfMsgExt, $wfMsgOut is wfMsgExt($key). Returns true when wfMsgExt could not find a message with that
// key
return true;
// TODO
}
}
if(!function_exists("wfUrlProtocols"))
{
function wfUrlProtocols()
{
return "http:\\/\\/|https:\\/\\/|ftp:\\/\\/|irc:\\/\\/|gopher:\\/\\/|telnet:\\/\\/|nntp:\\/\\/|worldwind:\\/\\/|mailto:|news:|svn:\\/\\/|git:\\/\\/|mms:\\/\\/";
}
}
$dir = dirname(__FILE__);
require_once($dir."/HTMLDiff.php");
require_once($dir."/Nodes.php");
require_once($dir."/Xml.php");
require_once($dir."/Sanitizer.php");
require_once($dir."/Diff.php");
/**
* Return the difference between two HTML documents.
* @param String $a The first HTML document
* @param String $b The second HTML document
* @param Boolean $describe_formatting_changes If true, changes in the formatting (for example adding a certain HTML attribute
* to a tag) are shown in text form.
* @return String An HTML document that represents the difference between the two HTML documents by assigning the class names
* diff-html-added and diff-html-removed to the changed elements.
*/
function html_diff($a, $b, $describe_formatting_changes = false)
{
$out = new ChangeText();
$htmldiffer = new HTMLDiffer(new DelegatingContentHandler($out));
$htmldiffer->htmlDiff($a, $b, $describe_formatting_changes);
return $out->toString();
}