From 4ac9fa081a7c045f6a9f1cfc529d82423f485b2e Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Sun, 8 Dec 2013 09:55:49 +0100 Subject: Update to MediaWiki 1.22.0 --- skins/Standard.php | 294 ----------------------------------------------------- 1 file changed, 294 deletions(-) delete mode 100644 skins/Standard.php (limited to 'skins/Standard.php') diff --git a/skins/Standard.php b/skins/Standard.php deleted file mode 100644 index 5b358e06..00000000 --- a/skins/Standard.php +++ /dev/null @@ -1,294 +0,0 @@ -addModuleStyles( 'skins.standard' ); - - $qb = $this->qbSetting(); - $rules = array(); - - if ( 2 == $qb ) { # Right - $rules[] = "/* @noflip */#quickbar { position: absolute; top: 4px; right: 4px; border-left: 2px solid #000000; }"; - $rules[] = "/* @noflip */#article, #mw-data-after-content { margin-left: 4px; margin-right: 152px; }"; - $rules[] = "/* @noflip */#topbar, #footer { margin-right: 152px; }"; - } elseif ( 1 == $qb || 3 == $qb ) { - $rules[] = "/* @noflip */#quickbar { position: absolute; top: 4px; left: 4px; border-right: 1px solid gray; }"; - $rules[] = "/* @noflip */#article, #mw-data-after-content { margin-left: 152px; margin-right: 4px; }"; - $rules[] = "/* @noflip */#topbar, #footer { margin-left: 152px; }"; - if( 3 == $qb ) { - $rules[] = "/* @noflip */#quickbar { position: fixed; padding: 4px; }"; - } - } elseif ( 4 == $qb ) { - $rules[] = "/* @noflip */#quickbar { position: fixed; right: 0; top: 0; padding: 4px; }"; - $rules[] = "/* @noflip */#quickbar { border-right: 1px solid gray; }"; - $rules[] = "/* @noflip */#article, #mw-data-after-content { margin-right: 152px; margin-left: 4px; }"; - $rules[] = "/* @noflip */#topbar, #footer { margin-right: 152px; }"; - } - $style = implode( "\n", $rules ); - $out->addInlineStyle( $style, 'flip' ); - } - -} - -class StandardTemplate extends LegacyTemplate { - - /** - * @return string - */ - function doAfterContent() { - wfProfileIn( __METHOD__ ); - wfProfileIn( __METHOD__ . '-1' ); - - $s = "\n
\n"; - $s .= "\n\n\n"; - - wfProfileOut( __METHOD__ . '-2' ); - wfProfileIn( __METHOD__ . '-3' ); - if ( $this->getSkin()->qbSetting() != 0 ) { - $s .= $this->quickBar(); - } - wfProfileOut( __METHOD__ . '-3' ); - wfProfileOut( __METHOD__ ); - return $s; - } - - /** - * @return string - */ - function quickBar() { - global $wgContLang; - - wfProfileIn( __METHOD__ ); - - $action = $this->getSkin()->getRequest()->getText( 'action' ); - $wpPreview = $this->getSkin()->getRequest()->getBool( 'wpPreview' ); - $title = $this->getSkin()->getTitle(); - $tns = $title->getNamespace(); - - $s = "\n
"; - $s .= "\n" . $this->getSkin()->logoText() . "\n
"; - - $sep = "\n
"; - - # Use the first heading from the Monobook sidebar as the "browse" section - $bar = $this->getSkin()->buildSidebar(); - unset( $bar['SEARCH'] ); - unset( $bar['LANGUAGES'] ); - unset( $bar['TOOLBOX'] ); - - $barnumber = 1; - foreach ( $bar as $browseLinks ) { - if ( is_array( $browseLinks ) ) { - if ( $barnumber > 1 ) { - $s .= "\n
"; - } - foreach ( $browseLinks as $link ) { - if ( $link['text'] != '-' ) { - $s .= "" . - htmlspecialchars( $link['text'] ) . '' . $sep; - } - } - } - if ( $barnumber == 1 ) { - // only show watchlist link if logged in - if( $this->data['loggedin'] ) { - $s.= Linker::specialLink( 'Watchlist' ) ; - $s .= $sep . Linker::linkKnown( - SpecialPage::getTitleFor( 'Contributions' ), - wfMessage( 'mycontris' )->escaped(), - array(), - array( 'target' => $this->data['username'] ) - ); - } - } - $barnumber = $barnumber + 1; - } - - $s .= "\n
"; - $articleExists = $title->getArticleID(); - if ( $this->data['isarticle'] || $action == 'edit' || $action == 'history' || $wpPreview ) { - if( $this->data['isarticle'] ) { - $s .= '' . $this->editThisPage() . ''; - } else { # backlink to the article in edit or history mode - if( $articleExists ){ # no backlink if no article - switch( $tns ) { - case NS_TALK: - case NS_USER_TALK: - case NS_PROJECT_TALK: - case NS_FILE_TALK: - case NS_MEDIAWIKI_TALK: - case NS_TEMPLATE_TALK: - case NS_HELP_TALK: - case NS_CATEGORY_TALK: - $text = wfMessage('viewtalkpage'); - break; - case NS_MAIN: - $text = wfMessage( 'articlepage' ); - break; - case NS_USER: - $text = wfMessage( 'userpage' ); - break; - case NS_PROJECT: - $text = wfMessage( 'projectpage' ); - break; - case NS_FILE: - $text = wfMessage( 'imagepage' ); - break; - case NS_MEDIAWIKI: - $text = wfMessage( 'mediawikipage' ); - break; - case NS_TEMPLATE: - $text = wfMessage( 'templatepage' ); - break; - case NS_HELP: - $text = wfMessage( 'viewhelppage' ); - break; - case NS_CATEGORY: - $text = wfMessage( 'categorypage' ); - break; - default: - $text = wfMessage( 'articlepage' ); - } - - $link = $title->getText(); - $nstext = $wgContLang->getNsText( $tns ); - if( $nstext ) { # add namespace if necessary - $link = $nstext . ':' . $link; - } - - $s .= Linker::link( Title::newFromText( $link ), $text->escaped() ); - } elseif( $title->getNamespace() != NS_SPECIAL ) { - # we just throw in a "New page" text to tell the user that he's in edit mode, - # and to avoid messing with the separator that is prepended to the next item - $s .= '' . wfMessage( 'newpage' )->escaped() . ''; - } - } - - # "Post a comment" link - if( ( $title->isTalkPage() || $this->getSkin()->getOutput()->showNewSectionLink() ) && $action != 'edit' && !$wpPreview ) - $s .= '
' . Linker::link( - $title, - wfMessage( 'postcomment' )->escaped(), - array(), - array( - 'action' => 'edit', - 'section' => 'new' - ) - ); - - /** - * Watching could cause problems in edit mode: - * if user edits article, then loads "watch this article" in background and then saves - * article with "Watch this article" checkbox disabled, the article is transparently - * unwatched. Therefore we do not show the "Watch this page" link in edit mode. - */ - if ( $this->data['loggedin'] && $articleExists ) { - if( $action != 'edit' && $action != 'submit' ) { - $s .= $sep . $this->watchThisPage(); - } - if ( $title->userCan( 'edit' ) ) - $s .= $sep . $this->moveThisPage(); - } - if ( $this->getSkin()->getUser()->isAllowed( 'delete' ) && $articleExists ) { - $s .= $sep . $this->deleteThisPage() . - $sep . $this->protectThisPage(); - } - $s .= $sep . $this->talkLink(); - if( $articleExists && $action != 'history' ) { - $s .= $sep . $this->historyLink(); - } - $s .= $sep . $this->whatLinksHere(); - - if( $this->getSkin()->getOutput()->isArticleRelated() ) { - $s .= $sep . $this->watchPageLinksLink(); - } - - if ( - NS_USER == $title->getNamespace() || - $title->getNamespace() == NS_USER_TALK - ) { - - $id = User::idFromName( $title->getText() ); - $ip = User::isIP( $title->getText() ); - - if( $id || $ip ){ - $s .= $sep . $this->userContribsLink(); - } - if( $this->getSkin()->showEmailUser( $id ) ) { - $s .= $sep . $this->emailUserLink(); - } - } - $s .= "\n

"; - } - - if( UploadBase::isEnabled() && UploadBase::isAllowed( $this->getSkin()->getUser() ) === true ) { - $s .= $this->getUploadLink() . $sep; - } - - $s .= Linker::specialLink( 'Specialpages' ); - - global $wgSiteSupportPage; - if( $wgSiteSupportPage ) { - $s .= "\n
' . wfMessage( 'sitesupport' )->escaped() . ''; - } - - $s .= "\n
\n"; - wfProfileOut( __METHOD__ ); - return $s; - } -} -- cgit v1.2.3-54-g00ecf