Tango.info wiki mediawiki upgrade

From tango.info wiki
Revision as of 2013-07-18T20:06:30 by Tobiasco (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

See also:

Files to be changed

x/wiki/w/languages/messages/messagesen.php

line 161
//$defaultDateFormat = 'dmy or mdy';
$defaultDateFormat = 'ISO 8601';//line by tobias

Signature

"test signature MessagesEn.php changed now Tobiasco 2008-05-17T20:51:48 (UTC)"

x/wiki/w/includes/ChangesList.php

ca 188

//$s .= $this->message['semicolon-separator'] . ' ' . $wgLang->time( $rc->mAttribs['rc_timestamp'], true, true ) . ' . . ';
//tango.info

$s .= $wgLang->time( $rc->mAttribs['rc_timestamp'], true, true ) . ' ';

//$s .= $this->skin->userLink( $rc->mAttribs['rc_user'], $rc->mAttribs['rc_user_text'] );
//$s .= $this->skin->userToolLinks( $rc->mAttribs['rc_user'], $rc->mAttribs['rc_user_text'] );
//tango.info
$s .= "". $this->skin->userLink( $rc->mAttribs['rc_user'], $rc->mAttribs['rc_user_text'] ) . ": ";


258

$this->insertTimestamp($s,$rc);
$this->insertUserRelatedLinks($s,$rc);

Hooks that may break

Skins

The folder

x/wiki/w/skins

contains PHP code, which may change. But it also contains files changed by tango.info.

Version specific

1.18

https://www.mediawiki.org/wiki/Release_notes/1.18

  • BREAKING CHANGE: Article class heirarchy split into WikiPage (backend). and Article (frontend) hierarchies. Several hooks now pass a WikiPage object instead of an Article object. These hooks all use an $article paramater as documented in hooks.txt. Extensions should be updated to account for this, though most won't require any changes.