addModuleStyles( 'mediawiki.legacy.shared' ); $out->addModuleStyles( 'mediawiki.legacy.oldshared' ); $out->addModuleStyles( 'skins.cologneblue' ); } /** * Override langlink formatting behavior not to uppercase the language names. * See otherLanguages() in CologneBlueTemplate. */ function formatLanguageName( $name ) { return $name; } } class CologneBlueTemplate extends BaseTemplate { function execute() { // Suppress warnings to prevent notices about missing indexes in $this->data wfSuppressWarnings(); $this->html( 'headelement' ); echo $this->beforeContent(); $this->html( 'bodytext' ); echo "\n"; echo $this->afterContent(); $this->html( 'dataAfterContent' ); $this->printTrail(); echo "\n"; wfRestoreWarnings(); } /** * Language/charset variant links for classic-style skins * @return string * * @fixed */ function variantLinks() { $s = array(); $variants = $this->data['content_navigation']['variants']; foreach ( $variants as $key => $link ) { $s[] = $this->makeListItem( $key, $link, array( 'tag' => 'span' ) ); } return $this->getSkin()->getLanguage()->pipeList( $s ); } // @fixed function otherLanguages() { global $wgHideInterlanguageLinks; if ( $wgHideInterlanguageLinks ) { return ""; } // We override SkinTemplate->formatLanguageName() in SkinCologneBlue // not to capitalize the language names. $language_urls = $this->data['language_urls']; if ( empty( $language_urls ) ) { return ""; } $s = array(); foreach ( $language_urls as $key => $data ) { $s[] = $this->makeListItem( $key, $data, array( 'tag' => 'span' ) ); } return wfMessage( 'otherlanguages' )->text() . wfMessage( 'colon-separator' )->text() . $this->getSkin()->getLanguage()->pipeList( $s ); } // @fixed function pageTitleLinks() { $s = array(); $footlinks = $this->getFooterLinks(); foreach ( $footlinks['places'] as $item ) { $s[] = $this->data[$item]; } return $this->getSkin()->getLanguage()->pipeList( $s ); } function bottomLinks() { $sep = wfMessage( 'pipe-separator' )->escaped() . "\n"; $s = ''; if ( $this->getSkin()->getOutput()->isArticleRelated() ) { $element[] = '' . $this->editThisPage() . ''; if ( $this->getSkin()->getUser()->isLoggedIn() ) { $element[] = $this->watchThisPage(); } $element[] = $this->talkLink(); $element[] = $this->historyLink(); $element[] = $this->whatLinksHere(); $element[] = $this->watchPageLinksLink(); $title = $this->getSkin()->getTitle(); if ( $title->getNamespace() == NS_USER || $title->getNamespace() == NS_USER_TALK ) { $id = User::idFromName( $title->getText() ); $ip = User::isIP( $title->getText() ); # Both anons and non-anons have contributions list if ( $id || $ip ) { $element[] = $this->userContribsLink(); } if ( $this->getSkin()->showEmailUser( $id ) ) { $element[] = $this->emailUserLink(); } } $s = implode( $element, $sep ); if ( $title->getArticleID() ) { $s .= "\n
"; // Delete/protect/move links for privileged users if ( $this->getSkin()->getUser()->isAllowed( 'delete' ) ) { $s .= $this->deleteThisPage(); } if ( $this->getSkin()->getUser()->isAllowed( 'protect' ) ) { $s .= $sep . $this->protectThisPage(); } if ( $this->getSkin()->getUser()->isAllowed( 'move' ) ) { $s .= $sep . $this->moveThisPage(); } } $s .= "
\n" . $this->otherLanguages(); } return $s; } function editThisPage() { if ( !$this->getSkin()->getOutput()->isArticleRelated() ) { $s = wfMessage( 'protectedpage' )->text(); } else { $title = $this->getSkin()->getTitle(); if ( $title->quickUserCan( 'edit' ) && $title->exists() ) { $t = wfMessage( 'editthispage' )->text(); } elseif ( $title->quickUserCan( 'create' ) && !$title->exists() ) { $t = wfMessage( 'create-this-page' )->text(); } else { $t = wfMessage( 'viewsource' )->text(); } $s = Linker::linkKnown( $title, $t, array(), $this->getSkin()->editUrlOptions() ); } return $s; } function deleteThisPage() { $diff = $this->getSkin()->getRequest()->getVal( 'diff' ); $title = $this->getSkin()->getTitle(); if ( $title->getArticleID() && ( !$diff ) && $this->getSkin()->getUser()->isAllowed( 'delete' ) ) { $t = wfMessage( 'deletethispage' )->text(); $s = Linker::linkKnown( $title, $t, array(), array( 'action' => 'delete' ) ); } else { $s = ''; } return $s; } function protectThisPage() { $diff = $this->getSkin()->getRequest()->getVal( 'diff' ); $title = $this->getSkin()->getTitle(); if ( $title->getArticleID() && ( ! $diff ) && $this->getSkin()->getUser()->isAllowed( 'protect' ) ) { if ( $title->isProtected() ) { $text = wfMessage( 'unprotectthispage' )->text(); $query = array( 'action' => 'unprotect' ); } else { $text = wfMessage( 'protectthispage' )->text(); $query = array( 'action' => 'protect' ); } $s = Linker::linkKnown( $title, $text, array(), $query ); } else { $s = ''; } return $s; } function watchThisPage() { // Cache $title = $this->getSkin()->getTitle(); if ( $this->getSkin()->getOutput()->isArticleRelated() ) { if ( $this->getSkin()->getUser()->isWatched( $title ) ) { $text = wfMessage( 'unwatchthispage' )->text(); $query = array( 'action' => 'unwatch', 'token' => UnwatchAction::getUnwatchToken( $title, $this->getSkin()->getUser() ), ); $id = 'mw-unwatch-link'; } else { $text = wfMessage( 'watchthispage' )->text(); $query = array( 'action' => 'watch', 'token' => WatchAction::getWatchToken( $title, $this->getSkin()->getUser() ), ); $id = 'mw-watch-link'; } $s = Linker::linkKnown( $title, $text, array( 'id' => $id ), $query ); } else { $s = wfMessage( 'notanarticle' )->text(); } return $s; } function moveThisPage() { if ( $this->getSkin()->getTitle()->quickUserCan( 'move' ) ) { return Linker::linkKnown( SpecialPage::getTitleFor( 'Movepage' ), wfMessage( 'movethispage' )->text(), array(), array( 'target' => $this->getSkin()->getTitle()->getPrefixedDBkey() ) ); } else { // no message if page is protected - would be redundant return ''; } } function historyLink() { return Linker::link( $this->getSkin()->getTitle(), wfMessage( 'history' )->escaped(), array( 'rel' => 'archives' ), array( 'action' => 'history' ) ); } function whatLinksHere() { return Linker::linkKnown( SpecialPage::getTitleFor( 'Whatlinkshere', $this->getSkin()->getTitle()->getPrefixedDBkey() ), wfMessage( 'whatlinkshere' )->escaped() ); } function userContribsLink() { return Linker::linkKnown( SpecialPage::getTitleFor( 'Contributions', $this->getSkin()->getTitle()->getDBkey() ), wfMessage( 'contributions' )->escaped() ); } function emailUserLink() { return Linker::linkKnown( SpecialPage::getTitleFor( 'Emailuser', $this->getSkin()->getTitle()->getDBkey() ), wfMessage( 'emailuser' )->escaped() ); } function watchPageLinksLink() { if ( !$this->getSkin()->getOutput()->isArticleRelated() ) { return wfMessage( 'parentheses', wfMessage( 'notanarticle' )->text() )->escaped(); } else { return Linker::linkKnown( SpecialPage::getTitleFor( 'Recentchangeslinked', $this->getSkin()->getTitle()->getPrefixedDBkey() ), wfMessage( 'recentchangeslinked-toolbox' )->escaped() ); } } // @fixed function talkLink() { $title = $this->getSkin()->getTitle(); if ( $title->getNamespace() == NS_SPECIAL ) { // No discussion links for special pages return ""; } $companionTitle = $title->isTalkPage() ? $title->getSubjectPage() : $title->getTalkPage(); $companionNamespace = $companionTitle->getNamespace(); // TODO these messages appear to only be used by CologneBlue and legacy skins, // kill and replace with something more sensibly named? $nsToMessage = array( NS_MAIN => 'articlepage', NS_USER => 'userpage', NS_PROJECT => 'projectpage', NS_FILE => 'imagepage', NS_MEDIAWIKI => 'mediawikipage', NS_TEMPLATE => 'templatepage', NS_HELP => 'viewhelppage', NS_CATEGORY => 'categorypage', NS_FILE => 'imagepage', ); // Find out the message to use for link text. Use either the array above or, // for non-talk pages, a generic "discuss this" message. // Default is the same as for main namespace. if ( isset( $nsToMessage[$companionNamespace] ) ) { $message = $nsToMessage[$companionNamespace]; } else { $message = $companionTitle->isTalkPage() ? 'talkpage' : 'articlepage'; } // Obviously this can't be reasonable and just return the key for talk namespace, only for content ones. // Thus we have to mangle it in exactly the same way SkinTemplate does. (bug 40805) $key = $companionTitle->getNamespaceKey( '' ); if ( $companionTitle->isTalkPage() ) { $key = ( $key == 'main' ? 'talk' : $key . "_talk" ); } // Use the regular navigational link, but replace its text. Everything else stays unmodified. $namespacesLinks = $this->data['content_navigation']['namespaces']; $link = $this->processNavlinkForDocument( $namespacesLinks[ $key ] ); $link['text'] = wfMessage( $message )->text(); return $this->makeListItem( $message, $link, array( 'tag' => 'span' ) ); } /** * Takes a navigational link generated by SkinTemplate in whichever way * and mangles attributes unsuitable for repeated use. In particular, this modifies the ids * and removes the accesskeys. This is necessary to be able to use the same navlink twice, * e.g. in sidebar and in footer. * * @param $navlink array Navigational link generated by SkinTemplate * @param $idPrefix mixed Prefix to add to id of this navlink. If false, id is removed entirely. Default is 'cb-'. */ function processNavlinkForDocument( $navlink, $idPrefix='cb-' ) { if ( $navlink['id'] ) { $navlink['single-id'] = $navlink['id']; // to allow for tooltip generation $navlink['tooltiponly'] = true; // but no accesskeys // mangle or remove the id if ( $idPrefix === false ) { unset( $navlink['id'] ); } else { $navlink['id'] = $idPrefix . $navlink['id']; } } return $navlink; } /** * @return string * * @fixed */ function beforeContent() { ob_start(); ?>

escaped() ?>

escaped() ?>

getSkin()->getCategories() ?> data['newtalk'] ) { ?>
data['newtalk'] ?>
getSkin()->getSiteNotice() ) { ?>
getSkin()->getSiteNotice() ?>

data['title'] ?>

translator->translate( 'tagline' ) ) { ?>

translator->translate( 'tagline' ) ) ?>

getSkin()->getOutput()->getSubtitle() ) { ?>

getSkin()->getOutput()->getSubtitle() ?>

getSkin()->subPageSubtitle() ) { ?>

getSkin()->subPageSubtitle() ?>

quickBar() ?> getSkin()->mainPageLink(), Linker::linkKnown( Title::newFromText( wfMessage( 'aboutpage' )->inContentLanguage()->text() ), wfMessage( 'about' )->text() ), Linker::linkKnown( Title::newFromText( wfMessage( 'helppage' )->inContentLanguage()->text() ), wfMessage( 'help' )->text() ), Linker::linkKnown( Title::newFromText( wfMessage( 'faqpage' )->inContentLanguage()->text() ), wfMessage( 'faq' )->text() ), ); $personalUrls = $this->getPersonalTools(); foreach ( array ( 'logout', 'createaccount', 'login', 'anonlogin' ) as $key ) { if ( $personalUrls[$key] ) { $s[] = $this->makeListItem( $key, $personalUrls[$key], array( 'tag' => 'span' ) ); } } return $this->getSkin()->getLanguage()->pipeList( $s ); } /** * Adds CologneBlue-specific items to the sidebar: qbedit, qbpageoptions and qbmyoptions menus. * * @param $bar sidebar data * @return array modified sidebar data * * @fixed */ function sidebarAdditions( $bar ) { // "This page" and "Edit" menus // We need to do some massaging here... we reuse all of the items, except for $...['views']['view'], // as $...['namespaces']['main'] and $...['namespaces']['talk'] together serve the same purpose. // We also don't use $...['variants'], these are displayed in the top menu. $content_navigation = $this->data['content_navigation']; $qbpageoptions = array_merge( $content_navigation['namespaces'], array( 'history' => $content_navigation['views']['history'], 'watch' => $content_navigation['actions']['watch'], 'unwatch' => $content_navigation['actions']['unwatch'], ) ); $content_navigation['actions']['watch'] = null; $content_navigation['actions']['unwatch'] = null; $qbedit = array_merge( array( 'edit' => $content_navigation['views']['edit'], 'addsection' => $content_navigation['views']['addsection'], ), $content_navigation['actions'] ); // Personal tools ("My pages") $qbmyoptions = $this->getPersonalTools(); foreach ( array ( 'logout', 'createaccount', 'login', 'anonlogin' ) as $key ) { $qbmyoptions[$key] = null; } $bar['qbedit'] = $qbedit; $bar['qbpageoptions'] = $qbpageoptions; $bar['qbmyoptions'] = $qbmyoptions; return $bar; } /** * Compute the sidebar * @access private * * @return string * * @fixed */ function quickBar() { // Massage the sidebar. We want to: // * place SEARCH at the beginning // * add new portlets before TOOLBOX (or at the end, if it's missing) // * remove LANGUAGES (langlinks are displayed elsewhere) $orig_bar = $this->data['sidebar']; $bar = array(); $hasToolbox = false; // Always display search first $bar['SEARCH'] = true; // Copy everything except for langlinks, inserting new items before toolbox foreach ( $orig_bar as $heading => $data ) { if ( $heading == 'TOOLBOX' ) { // Insert the stuff $bar = $this->sidebarAdditions( $bar ); $hasToolbox = true; } if ( $heading != 'LANGUAGES' ) { $bar[$heading] = $data; } } // If toolbox is missing, add our items at the end if ( !$hasToolbox ) { $bar = $this->sidebarAdditions( $bar ); } // Fill out special sidebar items with content $orig_bar = $bar; $bar = array(); foreach ( $orig_bar as $heading => $data ) { if ( $heading == 'SEARCH' ) { $bar['qbfind'] = $this->searchForm( 'sidebar' ); } elseif ( $heading == 'TOOLBOX' ) { $bar['toolbox'] = $this->getToolbox(); } elseif ( $heading == 'navigation' ) { // Use the navigation heading from standard sidebar as the "browse" section $bar['qbbrowse'] = $data; } else { $bar[$heading] = $data; } } // Output the sidebar $s = "\n
"; $sep = "
\n"; foreach ( $bar as $heading => $data ) { $headingMsg = wfMessage( $heading ); $headingHTML = "\n
" . ( $headingMsg->exists() ? $headingMsg->escaped() : htmlspecialchars( $heading ) ) . "
"; if ( is_array( $data ) ) { // $data is an array of links $any_link = false; $listHTML = ""; foreach ( $data as $key => $link ) { // Can be empty due to how the sidebar additions are done if ( $link ) { $any_link = true; $listHTML .= $this->makeListItem( $key, $link, array( 'tag' => 'span' ) ) . $sep; } } if ( $any_link ) { $s .= $headingHTML . $listHTML; } } else { // $data is a HTML string $s .= $headingHTML . $data; } } $s .= $sep . "\n
\n"; return $s; } /** * @param $label string * @return string * * @fixed */ function searchForm( $which ) { global $wgUseTwoButtonsSearchForm; $search = $this->getSkin()->getRequest()->getText( 'search' ); $action = $this->data['searchaction']; $s = "
"; if( $which == 'footer' ) { $s .= wfMessage( 'qbfind' )->text() . ": "; } $s .= "" . ($which == 'footer' ? " " : "
") . "escaped() . "\" />"; if( $wgUseTwoButtonsSearchForm ) { $s .= " escaped() . "\" />\n"; } else { $s .= '
\n"; } $s .= '
'; return $s; } }