summaryrefslogtreecommitdiff
path: root/extensions/Cite/SpecialCite_body.php
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/Cite/SpecialCite_body.php')
-rw-r--r--extensions/Cite/SpecialCite_body.php186
1 files changed, 0 insertions, 186 deletions
diff --git a/extensions/Cite/SpecialCite_body.php b/extensions/Cite/SpecialCite_body.php
deleted file mode 100644
index c2a6befc..00000000
--- a/extensions/Cite/SpecialCite_body.php
+++ /dev/null
@@ -1,186 +0,0 @@
-<?php
-
-class SpecialCite extends SpecialPage {
- function __construct() {
- parent::__construct( 'Cite' );
- }
-
- function execute( $par ) {
- global $wgUseTidy;
-
- // Having tidy on causes whitespace and <pre> tags to
- // be generated around the output of the CiteOutput
- // class TODO FIXME.
- $wgUseTidy = false;
-
- $this->setHeaders();
- $this->outputHeader();
-
- $page = $par !== null ? $par : $this->getRequest()->getText( 'page' );
- $title = Title::newFromText( $page );
-
- $cform = new CiteForm( $title );
- $cform->execute();
-
- if ( $title && $title->exists() ) {
- $id = $this->getRequest()->getInt( 'id' );
- $cout = new CiteOutput( $title, $id );
- $cout->execute();
- }
- }
-}
-
-class CiteForm {
- /**
- * @var Title
- */
- public $mTitle;
-
- function __construct( &$title ) {
- $this->mTitle =& $title;
- }
-
- function execute() {
- global $wgOut, $wgScript;
-
- $wgOut->addHTML(
- Xml::openElement( 'form',
- array(
- 'id' => 'specialcite',
- 'method' => 'get',
- 'action' => $wgScript
- ) ) .
- Html::hidden( 'title', SpecialPage::getTitleFor( 'Cite' )->getPrefixedDBkey() ) .
- Xml::openElement( 'label' ) .
- wfMessage( 'cite_page' )->escaped() . ' ' .
- Xml::element( 'input',
- array(
- 'type' => 'text',
- 'size' => 30,
- 'name' => 'page',
- 'value' => is_object( $this->mTitle ) ? $this->mTitle->getPrefixedText() : ''
- ),
- ''
- ) .
- ' ' .
- Xml::element( 'input',
- array(
- 'type' => 'submit',
- 'value' => wfMessage( 'cite_submit' )->escaped()
- ),
- ''
- ) .
- Xml::closeElement( 'label' ) .
- Xml::closeElement( 'form' )
- );
- }
-}
-
-class CiteOutput {
- /**
- * @var Title
- */
- public $mTitle;
-
- /**
- * @var Article
- */
- public $mArticle;
-
- public $mId;
-
- /**
- * @var Parser
- */
- public $mParser;
-
- /**
- * @var ParserOptions
- */
- public $mParserOptions;
-
- public $mSpTitle;
-
- function __construct( $title, $id ) {
- global $wgHooks, $wgParser;
-
- $this->mTitle = $title;
- $this->mArticle = new Article( $title );
- $this->mId = $id;
-
- $wgHooks['ParserGetVariableValueVarCache'][] = array( $this, 'varCache' );
-
- $this->genParserOptions();
- $this->genParser();
-
- $wgParser->setHook( 'citation', array( $this, 'CiteParse' ) );
- }
-
- function execute() {
- global $wgOut, $wgParser, $wgHooks;
-
- $wgHooks['ParserGetVariableValueTs'][] = array( $this, 'timestamp' );
-
- $msg = wfMessage( 'cite_text' )->inContentLanguage()->plain();
- if ( $msg == '' ) {
- # With MediaWiki 1.20 the plain text files were deleted and the text moved into SpecialCite.i18n.php
- # This code is kept for b/c in case an installation has its own file "cite_text-xx"
- # for a previously not supported language.
- global $wgContLang, $wgContLanguageCode;
- $dir = dirname( __FILE__ ) . DIRECTORY_SEPARATOR;
- $code = $wgContLang->lc( $wgContLanguageCode );
- if ( file_exists( "${dir}cite_text-$code" ) ) {
- $msg = file_get_contents( "${dir}cite_text-$code" );
- } elseif( file_exists( "${dir}cite_text" ) ){
- $msg = file_get_contents( "${dir}cite_text" );
- }
- }
- $ret = $wgParser->parse( $msg, $this->mTitle, $this->mParserOptions, false, true, $this->getRevId() );
- $wgOut->addModules( 'ext.specialcite' );
-
- # Introduced in 1.24
- if( method_exists( $wgOut, 'addParserOutputContent' ) ) {
- $wgOut->addParserOutputContent( $ret );
- } else {
- $wgOut->addHTML( $ret->getText() );
- }
- }
-
- function genParserOptions() {
- global $wgUser;
- $this->mParserOptions = ParserOptions::newFromUser( $wgUser );
- $this->mParserOptions->setDateFormat( MW_DATE_DEFAULT );
- $this->mParserOptions->setEditSection( false );
- }
-
- function genParser() {
- $this->mParser = new Parser;
- $this->mSpTitle = SpecialPage::getTitleFor( 'Cite' );
- }
-
- function CiteParse( $in, $argv ) {
- $ret = $this->mParser->parse( $in, $this->mSpTitle, $this->mParserOptions, false );
-
- return $ret->getText();
- }
-
- function varCache() {
- return false;
- }
-
- function timestamp( &$parser, &$ts ) {
- if ( isset( $parser->mTagHooks['citation'] ) ) {
- $ts = wfTimestamp( TS_UNIX, $this->mArticle->getTimestamp() );
- }
-
- return true;
- }
-
- function getRevId() {
- if ( $this->mId ) {
- return $this->mId;
- } else {
- return $this->mTitle->getLatestRevID();
- }
- }
-}