linamh/www-apps/mediawiki/files/mediawiki-1.15.1-restrict-0.8.4.patch
2010-06-01 16:04:41 +00:00

1746 lines
83 KiB
Diff
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Submitted By: Mario Fetka (geos_one) (mario dot fetka at gmail dot com)
Date: 2010-02-06
Initial Package Version: 0.8.4
Origin: http://www.mediawiki.org/wiki/Extension:Page_access_restriction
Upstream Status: never accepted
Description: This is a patch to enable page restriction under the MediaWiki software.
Pages can be articles or categories.
It adds a new |restrict| tab link allowing members of the group restrict to restrict pages.
Users member of the group viewrestrict can read (and modify) the restricted pages.
Other users cannot see, search, export, etc, the restricted pages.
You can still |protect| them for editing.
diff -Naur mediawiki-1.15.1.orig/README.restriction-patch mediawiki-1.15.1/README.restriction-patch
--- mediawiki-1.15.1.orig/README.restriction-patch 1970-01-01 00:00:00.000000000 +0000
+++ mediawiki-1.15.1/README.restriction-patch 2010-02-06 08:30:41.400049450 +0000
@@ -0,0 +1,138 @@
+
+Article restriction patch for MediaWiki
+---------------------------------------
+
+Here is a patch to enable article restriction under MediaWiki. Pages can be articles or categories. It adds a new |restrict| tab link allowing members of the group ''restrict'' to restrict pages. Users member of the group ''viewrestrict'' can read (and modify) the restricted pages. Others users cannot see, search, export, etc, the restricted pages. You can still |protect| them for editing. A restricted page is distinguished by a red background tab, and you have a special page (Special:Restrictedpages) to list the restricted pages. All restriction/unrestriction actions are loggued in the wiki log. It is also possible to restrict pages by providing a regular expression array matching titles. Optionaly the user's pages can be restricted to their owner. Currently it is localized in English, German, Dutch, Swedish, Finnish, Russian, Hebrew and French.
+
+This feature is mainly useful for intranet relying on WikiMedia as a non-encyclopedic content management system, like e-learning platforms or informational systems. To respect the wiki philosophy, it is not appropriate to use it to restrict public access!
+
+To install restriction-patch, download MediaWiki (do a security backup if you patch your own installation).
+
+- Apply patch :
+
+ mv restriction-version.mediawiki-version.patch ./mediawiki-version
+ cd ./mediawiki-version
+ patch -p0 < restriction-version.mediawiki-version.patch
+
+- Configure :
+
+Restriction is disabled by default. Add in your ''./LocalSettings.php'' file (below require_once( "includes/DefaultSettings.php" );) :
+
+ /**
+ * If true, a new menu action allows to restrict pages access to 'restrict' group users. If false, all previously restricted pages are accessible again.
+ */
+ $wgEnableRestrict = true;
+
+ /**
+ * If true, new pages are restricted by default for 'restrict' group users.
+ */
+ $wgRestrictNewPages = false;
+
+ /**
+ * If true restrict user pages to their owner (as well as viewrestrict/restrict members)
+ */
+ $wgUserPageRestrict = false;
+
+ /**
+ * when wgUserPageRestrict is enabled, still allow user pages to be read by others
+ */
+ $wgUserReadRestrict = false;
+
+ /**
+ * Regular expression array to restrict matching pages
+ * eg. $wgRegexRestrict = array("^Secure:", "^Secret "); // restrict all pages where title is like 'Secure:...' or 'Secret ...'
+ * Warning : titles can still be retrieved via the search engine (to be fixed)
+ */
+ $wgRegexRestrict = array();
+
+ /**
+ * If true do not add recent changes entry for restricted pages
+ */
+ $wgNoRecentChangesRestrict = true;
+
+ /**
+ * If true hide log entries related to restriction, except for 'restrict' or 'viewrestrict' users (Special:Log page)
+ */
+ $wgHideRestrictLog = true;
+
+
+Go to the ''User rights management'' page (in special pages) and add users in group ''restrict'' (allow to view and restrict pages) or ''viewrestrict'' (allow only to view restricted pages). If $wgUserPageRestrict is true, user pages are restricted to their respective owner, as well as members of the ''viewrestrict'' group.
+
+Don't write sensible information in page titles, they could be retrieved in some cases. This is beta and GPL, test and feedback welcome !
+
+
+Jerome Combaz (restrict-mediawiki/at/conseil-recherche-innovation.net)
+
+
+ Download patch, updates, screenshots and comments here :
+ http://conseil-recherche-innovation.net/index.php/1974/04/11/41-restrict-pages-under-mediawiki-15
+
+
+ChangeLog
+---------
+Version beta-0.8.4 for MW 1.15.1 (2010-02-06)
+- Made the patch work for MW 1.15.1 (Mario Fetka)
+
+Version beta-0.8.4 for MW 1.13.2 (2008-12-03)
+- Made the patch work for MW 1.13.2 (Mario Fetka)
+- add the SpecialRestrictedPages.php
+
+Version beta-0.8.4 for MW 1.12.0 (2008-04-24)
+- Made the patch work for MW 1.12.0 (Jan Krcmar)
+
+Version beta-0.8.2 for MW 1.10.0 (2007-05-21)
+- Added UserReadRestrict function which allows users to read but not edit other users pages.
+- members of groups with ['edituser'] can edit other users pages. (Ryan Fulcher, D0li0@MW)
+
+Version beta-0.8 for MW 1.10.0 (2007-05-21)
+- Made the patch work for MW 1.10.0 (Ryan Fulcher, D0li0@MW)
+
+Version beta-0.8.1 for MW 1.7.1 (~2006-11-22)
+- Added inverse regex function, begin regex with !! to inverse the matching (134.91.37.96)
+
+Version beta-0.8 for MW 1.7.1 (2006-10-06)
+- Made the patch work for MW 1.7.1 (Jesper Zedlitz)
+
+Version beta-0.72 for MW 1.6.6/1.6.7/1.6.8 (09-01-2006)
+- Spanish translation (thanks to Victor Fari<72> from Queres tecnologias)
+- Czech translation (thanks to Michal Ciza)
+
+Version beta-0.71 for MW 1.6.6/1.6.7 (07-13-2006)
+- Two bugs in Articles.php and Skin.php (thanks to Owen, see http://conseil-recherche-innovation.net/index.php/1974/04/11/41-restrict-pages-under-mediawiki-15#c489)
+
+Version beta-0.70 for MW 1.6.6/1.6.7 (06-06-2006)
+- SQL requests are not modified anymore to check the restriction (better sustenability of the patch)
+- Now restricted pages and *regex* restricted pages are treated in the same way. So none of pages title should be listed whatever the protection mechanism choosed, nor during a search request
+- Regex restriction include the namespace, so it is now possible to restrict whole namespaces (eg. "^Talk:" restrict all talk pages)
+- Image partialy restricted (not listed but file accessible via HTTP)
+- The SpecialVersion page informs that MW is patched
+- Correction of text error on the unrestrict page (thanks to Mathaba)
+- Polish translation (thanks to Janusz 'Ency' Dorozynski)
+
+Version beta-0.64 for MW 1.6.3 (05-01-2006)
+- Bug when displaying SpecialCategories page (thanks to T O X I N)
+- Hebrew translation (thanks to Yuval Hager)
+- Bug in OutputPage.php (thanks again to Yuval Hager)
+
+Version beta-0.63 for MW 1.6.3 (04-20-2006)
+- Upgrade for 1.6.3 (thanks to Anthony for his help)
+- Russian translation (thanks to T O X I N)
+- Finnish translation (thanks to Tuomas Helin)
+
+Version beta-0.62 for MW 1.5.5/1.5.6 (02-13-2006) 1.5.7 (03-05-2006)
+- Catalan translation (thanks to Pau Cabot)
+- Small mistake (comma) in swedish translation
+
+Version beta-0.61 for MW 1.5.5/1.5.6 (01-18-2006)
+- Swedish translation (thanks to Samuel Lampa)
+- Dutch translation (thanks to Peter De Baets)
+
+Version beta-0.6 for MW 1.5.3 (12-15-2005)
+- $wgHideRestrictLog option is back
+
+Version beta-0.59 for MW 1.5.1/1.5.2 (10-31-2005)
+- Allow to restrict new pages by default ($wgRestrictNewPages option)
+- Bug : 'ArticleProtectComplete' hook function remplaced by 'ArticleRestrictComplete' (stupid mistake !)
+
+Version beta-0.58 for MW 1.5.0 (10-07-2005)
+- Restriction by regular expression test on title.
diff -Naur mediawiki-1.15.1.orig/includes/Article.php mediawiki-1.15.1/includes/Article.php
--- mediawiki-1.15.1.orig/includes/Article.php 2009-03-22 13:26:27.000000000 +0000
+++ mediawiki-1.15.1/includes/Article.php 2010-02-06 07:31:12.987049096 +0000
@@ -912,7 +912,11 @@
# Another whitelist check in case oldid is altering the title
if( !$this->mTitle->userCanRead() ) {
- $wgOut->loginToUse();
+ if ( $this->mTitle->isRestricted() ) {
+ $wgOut->restrictGroupRequired();
+ } else {
+ $wgOut->loginToUse();
+ }
$wgOut->output();
$wgOut->disable();
wfProfileOut( __METHOD__ );
@@ -1547,7 +1551,7 @@
* Compatibility note: this function previously returned a boolean value indicating success/failure
*/
public function doEdit( $text, $summary, $flags = 0, $baseRevId = false, $user = null ) {
- global $wgUser, $wgDBtransactions, $wgUseAutomaticEditSummaries;
+ global $wgUser, $wgDBtransactions, $wgUseAutomaticEditSummaries, $wgEnableRestrict, $wgNoRecentChangesRestrict, $wgRestrictNewPages;
# Low-level sanity check
if( $this->mTitle->getText() == '' ) {
@@ -1662,13 +1666,14 @@
wfRunHooks( 'NewRevisionFromEditComplete', array($this, $revision, $baseRevId, $user) );
# Update recentchanges
if( !( $flags & EDIT_SUPPRESS_RC ) ) {
+ if (!$wgEnableRestrict || !$wgNoRecentChangesRestrict || !$this->mTitle->isRestricted()) {
# Mark as patrolled if the user can do so
$patrolled = $wgUseRCPatrol && $this->mTitle->userCan('autopatrol');
# Add RC row to the DB
$rc = RecentChange::notifyEdit( $now, $this->mTitle, $isminor, $user, $summary,
$this->mLatest, $this->getTimestamp(), $bot, '', $oldsize, $newsize,
$revisionId, $patrolled
- );
+ ); }
# Log auto-patrolled edits
if( $patrolled ) {
PatrolLog::record( $rc, true );
@@ -1715,7 +1720,7 @@
# Add the page record; stake our claim on this title!
# This will return false if the article already exists
- $newid = $this->insertOn( $dbw );
+ $newid = $this->insertOn( $dbw, ($wgRestrictNewPages && $wgUser->isAllowed('restrict') ? 'view=1' : '') );
if( $newid === false ) {
$dbw->rollback();
@@ -1951,6 +1956,142 @@
}
/**
+ * Restrict a page
+ * (restrict-patch by Jerome Combaz)
+ */
+ function restrict( $limit = true ) {
+ global $wgUser, $wgOut, $wgRequest, $wgEnableRestrict;
+
+ if ( ! $wgEnableRestrict == true ) return;
+
+ if ( ! $wgUser->isAllowed('restrict') ) {
+ $wgOut->restrictGroupRequired();
+ return;
+ }
+ if ( wfReadOnly() ) {
+ $wgOut->readOnlyPage();
+ return;
+ }
+ $id = $this->mTitle->getArticleID();
+ if ( 0 == $id ) {
+ $wgOut->fatalError( wfMsg( 'badarticleerror' ) );
+ return;
+ }
+
+ $confirm = $wgRequest->wasPosted() &&
+ $wgUser->matchEditToken( $wgRequest->getVal( 'wpEditToken' ) );
+ $reason = $wgRequest->getText( 'wpReasonRestrict' );
+
+ if ( $confirm ) {
+ $dbw =& wfGetDB( DB_MASTER );
+ $dbw->update( 'page',
+ array( /* SET */
+ 'page_touched' => $dbw->timestamp(),
+ 'page_restrictions' => (string)$limit
+ ), array( /* WHERE */
+ 'page_id' => $id
+ ), 'Article::restrict'
+ );
+
+ $getredit = $this->mTitle->getRestrictions('edit');
+ $edit = "edit=".current($getredit);
+ $getrmove = $this->mTitle->getRestrictions('move');
+ $move = "move=".current($getrmove);
+ $view = ($limit ? 'view=1' : 'view=0');
+ $restrictions = implode(':', array($edit, $move, $view));
+
+ if (wfRunHooks('ArticleRestrict', array(&$this, &$wgUser, $limit == true, $reason))) {
+
+ $dbw =& wfGetDB( DB_MASTER );
+ $dbw->update( 'page',
+ array( /* SET */
+ 'page_touched' => $dbw->timestamp(),
+ 'page_restrictions' => $restrictions
+ ), array( /* WHERE */
+ 'page_id' => $id
+ ), 'Article::restrict'
+ );
+
+ wfRunHooks('ArticleRestrictComplete', array(&$this, &$wgUser, $limit == true, $reason, $moveonly));
+
+ $log = new LogPage( 'restrict' );
+ if ( $limit === '' ) {
+ $log->addEntry( 'unrestrict', $this->mTitle, $reason );
+ } else {
+ $log->addEntry( 'restrict', $this->mTitle, $reason );
+ }
+ $wgOut->redirect( $this->mTitle->getFullURL() );
+ }
+ return;
+ } else {
+ return $this->confirmRestrict( '', '', $limit );
+ }
+ }
+
+ /**
+ * Output restriction confirmation dialog
+ */
+ function confirmRestrict( $par, $reason, $limit ) {
+ global $wgOut, $wgUser;
+
+ wfDebug( "Article::confirmRestrict\n" );
+
+ $sub = htmlspecialchars( $this->mTitle->getPrefixedText() );
+ $wgOut->setRobotpolicy( 'noindex,nofollow' );
+
+ $check = '';
+ $protcom = '';
+ $moveonly = '';
+
+ if ( $limit === '' ) {
+ $wgOut->setPageTitle( wfMsg( 'confirmunrestrict' ) );
+ $wgOut->setSubtitle( wfMsg( 'unrestrictsub', $sub ) );
+ $wgOut->addWikiText( wfMsg( 'confirmunrestricttext' ) );
+ $protcom = htmlspecialchars( wfMsg( 'unrestrictcomment' ) );
+ $formaction = $this->mTitle->escapeLocalURL( 'action=unrestrict' . $par );
+ } else {
+ $wgOut->setPageTitle( wfMsg( 'confirmrestrict' ) );
+ $wgOut->setSubtitle( wfMsg( 'restrictsub', $sub ) );
+ $wgOut->addWikiText( wfMsg( 'confirmrestricttext' ) );
+ $protcom = htmlspecialchars( wfMsg( 'restrictcomment' ) );
+ $formaction = $this->mTitle->escapeLocalURL( 'action=restrict' . $par );
+ }
+
+ $confirm = htmlspecialchars( wfMsg( 'confirm' ) );
+ $token = htmlspecialchars( $wgUser->editToken() );
+
+ $wgOut->addHTML( "
+<form id='restrictconfirm' method='post' action=\"{$formaction}\">
+ <table border='0'>
+ <tr>
+ <td align='right'>
+ <label for='wpReasonRestrict'>{$protcom}:</label>
+ </td>
+ <td align='left'>
+ <input type='text' size='60' name='wpReasonRestrict' id='wpReasonRestrict' value=\"" . htmlspecialchars( $reason ) . "\" />
+ </td>
+ </tr>
+ <tr>
+ <td>&nbsp;</td>
+ <td>
+ <input type='submit' name='wpConfirmRestrictB' value=\"{$confirm}\" />
+ </td>
+ </tr>
+ </table>
+ <input type='hidden' name='wpEditToken' value=\"{$token}\" />
+</form>" );
+
+ $wgOut->returnToMain( false );
+ }
+
+ /**
+ * Unrestrict the pages
+ */
+ function unrestrict() {
+ return $this->restrict( '' );
+ }
+
+ /**
* Update the article's restriction field, and leave a log entry.
*
* @param $limit Array: set of restriction keys
@@ -2008,6 +2149,10 @@
$current = Article::flattenRestrictions( $current );
+ if(current($this->mTitle->getRestrictions('view'))) {
+ $updated .= ":view=1";
+ }
+
$changed = ($changed || $current != $updated );
$changed = $changed || ($updated && $this->mTitle->areRestrictionsCascading() != $cascade);
$protect = ( $updated != '' );
diff -Naur mediawiki-1.15.1.orig/includes/DefaultSettings.php mediawiki-1.15.1/includes/DefaultSettings.php
--- mediawiki-1.15.1.orig/includes/DefaultSettings.php 2009-07-13 16:47:17.000000000 +0000
+++ mediawiki-1.15.1/includes/DefaultSettings.php 2010-02-06 07:33:11.166050159 +0000
@@ -2861,6 +2861,7 @@
'upload',
'move',
'import',
+ 'restrict',
'patrol',
'merge',
'suppress',
@@ -2934,7 +2935,8 @@
'delete' => 'dellogpagetext',
'upload' => 'uploadlogpagetext',
'move' => 'movelogpagetext',
- 'import' => 'importlogpagetext',
+ 'import' => 'importlogpagetext',
+ 'restrict'=> 'restrictlogtext',
'patrol' => 'patrol-log-header',
'merge' => 'mergelogpagetext',
'suppress' => 'suppressionlogtext',
@@ -2954,6 +2956,8 @@
'protect/modify' => 'modifiedarticleprotection',
'protect/unprotect' => 'unprotectedarticle',
'protect/move_prot' => 'movedarticleprotection',
+ 'restrict/restrict' => 'restrictedarticle',
+ 'restrict/unrestrict'=> 'unrestrictedarticle',
'rights/rights' => 'rightslogentry',
'delete/delete' => 'deletedarticle',
'delete/restore' => 'undeletedarticle',
@@ -3450,6 +3454,56 @@
$wgRestrictDisplayTitle = true;
/**
+ *
+ * Restriction patch (by Jerome Combaz)
+ * see http://www.mediawiki.org/wiki/Extension:Page_access_restriction
+ *
+ */
+
+/**
+ * If true, a new menu action allows to restrict pages access to 'restrict' group users
+ */
+$wgEnableRestrict = false;
+
+/**
+ * If true, new pages are restricted by default for 'restrict' group users
+ */
+$wgRestrictNewPages = false;
+
+/**
+ * Restrict user pages to their owner (as well as viewrestrict/restrict members)
+ */
+$wgUserPageRestrict = false;
+
+/**
+ * when wgUserPageRestrict is enabled, still allow user pages to be read by others
+ */
+$wgUserReadRestrict = false;
+
+/**
+ * Regular expression array to restrict matching pages
+ * eg. $wgRegexRestrict = array("^Secure:", "^Secret "); // restrict all pages where title is like 'Secure:...' or 'Secret ...'
+ */
+$wgRegexRestrict = array();
+
+/**
+ * Hide recent changes entry for restricted pages
+ */
+$wgNoRecentChangesRestrict = true;
+
+/**
+ * Hide log entries related to restriction except for 'restrict' or 'viewrestrict' users (Special:Log page)
+ */
+$wgHideRestrictLog = true;
+
+/**
+ * MediaWiki permissions setup
+ */
+$wgGroupPermissions['restrict']['restrict'] =
+$wgGroupPermissions['restrict']['viewrestrict'] = true;
+$wgGroupPermissions['viewrestrict']['viewrestrict'] = true;
+
+/**
* Array of usernames which may not be registered or logged in from
* Maintenance scripts can still use these
*/
diff -Naur mediawiki-1.15.1.orig/includes/Export.php mediawiki-1.15.1/includes/Export.php
--- mediawiki-1.15.1.orig/includes/Export.php 2009-03-02 19:48:41.000000000 +0000
+++ mediawiki-1.15.1/includes/Export.php 2010-02-06 07:07:23.241049161 +0000
@@ -122,6 +122,9 @@
public function pageByName( $name ) {
$title = Title::newFromText( $name );
+ if ($title->isRestricted() and ! $GLOBALS['wgUser']->isAllowed('viewrestrict')) {
+ return new WikiError( wfMsgHtml( 'restricttext' ) );
+ }
if( is_null( $title ) ) {
return new WikiError( "Can't export invalid title" );
} else {
diff -Naur mediawiki-1.15.1.orig/includes/LogPage.php mediawiki-1.15.1/includes/LogPage.php
--- mediawiki-1.15.1.orig/includes/LogPage.php 2009-03-14 10:02:17.000000000 +0000
+++ mediawiki-1.15.1/includes/LogPage.php 2010-02-06 07:07:23.272049863 +0000
@@ -43,7 +43,7 @@
* Constructor
*
* @param string $type One of '', 'block', 'protect', 'rights', 'delete',
- * 'upload', 'move'
+ * 'upload', 'move', 'restrict'
* @param bool $rc Whether to update recent changes as well as the logging table
* @param bool $udp Whether to send to the UDP feed if NOT sent to RC
*/
@@ -314,7 +314,7 @@
/**
* Add a log entry
- * @param string $action one of '', 'block', 'protect', 'rights', 'delete', 'upload', 'move', 'move_redir'
+ * @param string $action one of '', 'block', 'protect', 'rights', 'delete', 'upload', 'move', 'move_redir', 'restrict'
* @param object &$target A title object.
* @param string $comment Description associated
* @param array $params Parameters passed later to wfMsg.* functions
diff -Naur mediawiki-1.15.1.orig/includes/OutputHandler.php mediawiki-1.15.1/includes/OutputHandler.php
--- mediawiki-1.15.1.orig/includes/OutputHandler.php 2009-01-27 15:20:31.000000000 +0000
+++ mediawiki-1.15.1/includes/OutputHandler.php 2010-02-06 07:07:23.283049008 +0000
@@ -5,8 +5,8 @@
*/
function wfOutputHandler( $s ) {
global $wgDisableOutputCompression, $wgValidateAllHtml;
- $s = wfMangleFlashPolicy( $s );
- if ( $wgValidateAllHtml ) {
+ $s = wfMangleFlashPolicy( $s );
+ if ( $wgValidateAllHtml ) {
$headers = apache_response_headers();
$isHTML = true;
foreach ( $headers as $name => $value ) {
diff -Naur mediawiki-1.15.1.orig/includes/OutputPage.php mediawiki-1.15.1/includes/OutputPage.php
--- mediawiki-1.15.1.orig/includes/OutputPage.php 2009-03-18 23:27:48.000000000 +0000
+++ mediawiki-1.15.1/includes/OutputPage.php 2010-02-06 07:07:23.294049619 +0000
@@ -1191,6 +1191,22 @@
throw new MWException( "Call to deprecated OutputPage::developerRequired() method\n" );
}
+ function restrictGroupRequired() {
+ global $wgUser, $wgTitle;
+
+ $this->setPageTitle( wfMsg( 'restricttitle' ) );
+ $this->setHTMLTitle( wfMsg( 'errorpagetitle' ) );
+ $this->setRobotpolicy( 'noindex,nofollow' );
+ $this->setArticleRelated( false );
+ $this->mBodytext = '';
+
+ $sk = $wgUser->getSkin();
+ $ap = $sk->makeKnownLink( wfMsgForContent( 'administrators' ), '' );
+ $this->addHTML( wfMsg( 'restricttext', $ap ) );
+ $this->returnToMain( false );
+ }
+
+
/**
* Produce the stock "please login to use the wiki" page
*/
diff -Naur mediawiki-1.15.1.orig/includes/QueryPage.php mediawiki-1.15.1/includes/QueryPage.php
--- mediawiki-1.15.1.orig/includes/QueryPage.php 2009-02-21 17:30:59.000000000 +0000
+++ mediawiki-1.15.1/includes/QueryPage.php 2010-02-06 07:07:23.307048919 +0000
@@ -170,6 +170,7 @@
* If the function return "false", the line output will be skipped.
*/
function formatResult( $skin, $result ) {
+ if ($nt->isRestricted() and ! $GLOBALS['wgUser']->isAllowed('viewrestrict')) return "<em>".wfMsgHtml( 'restricttitle' )."</em>";
return '';
}
@@ -498,6 +499,7 @@
return NULL;
}
$title = Title::MakeTitle( intval( $row->namespace ), $row->title );
+ if ($title->isRestricted() and ! $GLOBALS['wgUser']->isAllowed('viewrestrict')) return NULL;
if( $title ) {
$date = isset( $row->timestamp ) ? $row->timestamp : '';
$comments = '';
diff -Naur mediawiki-1.15.1.orig/includes/Skin.php mediawiki-1.15.1/includes/Skin.php
--- mediawiki-1.15.1.orig/includes/Skin.php 2009-03-12 12:26:28.000000000 +0000
+++ mediawiki-1.15.1/includes/Skin.php 2010-02-06 07:33:50.886313728 +0000
@@ -1258,7 +1258,7 @@
}
function bottomLinks() {
- global $wgOut, $wgUser, $wgTitle, $wgUseTrackbacks;
+ global $wgOut, $wgUser, $wgTitle, $wgUseTrackbacks, $wgEnableRestrict;
$sep = wfMsgExt( 'pipe-separator' , 'escapenoentities' ) . "\n";
$s = '';
@@ -1296,6 +1296,7 @@
$s .= "\n<br />";
if($wgUser->isAllowed('delete')) { $s .= $this->deleteThisPage(); }
if($wgUser->isAllowed('protect')) { $s .= $sep . $this->protectThisPage(); }
+ if( $wgEnableRestrict == true && $wgUser->isAllowed('restrict')) { $s .= $sep . $this->restrictThisPage(); }
if($wgUser->isAllowed('move')) { $s .= $sep . $this->moveThisPage(); }
}
$s .= "<br />\n" . $this->otherLanguages();
@@ -1576,6 +1577,31 @@
return $s;
}
+ /**
+ * (restrict-patch by Jerome Combaz)
+ * @access private
+ */
+ function restrictThisPage() {
+ global $wgUser, $wgOut, $wgTitle, $wgRequest;
+
+ $diff = $wgRequest->getVal( 'diff' );
+ if ( $wgTitle->getArticleId() && ( ! $diff ) && $wgUser->isAllowed('restrict') ) {
+ $n = $wgTitle->getPrefixedText();
+
+ if ( $wgTitle->isRestricted() ) {
+ $t = wfMsg( 'unrestrictthispage' );
+ $q = 'action=unrestrict';
+ } else {
+ $t = wfMsg( 'restrictthispage' );
+ $q = 'action=restrict';
+ }
+ $s = $this->makeKnownLink( $n, $t, $q );
+ } else {
+ $s = '';
+ }
+ return $s;
+ }
+
function watchThisPage() {
global $wgOut, $wgTitle;
++$this->mWatchLinkNum;
diff -Naur mediawiki-1.15.1.orig/includes/SkinTemplate.php mediawiki-1.15.1/includes/SkinTemplate.php
--- mediawiki-1.15.1.orig/includes/SkinTemplate.php 2009-02-25 00:13:04.000000000 +0000
+++ mediawiki-1.15.1/includes/SkinTemplate.php 2010-02-06 07:37:24.363247680 +0000
@@ -649,7 +649,7 @@
* @private
*/
function buildContentActionUrls() {
- global $wgContLang, $wgLang, $wgOut, $wgUser, $wgRequest;
+ global $wgContLang, $wgLang, $wgOut, $wgUser, $wgRequest, $wgEnableRestrict;
wfProfileIn( __METHOD__ );
@@ -717,6 +717,44 @@
'href' => $this->mTitle->getLocalUrl( 'action=history' ),
'rel' => 'archives',
);
+
+ // page restriction
+ if($wgEnableRestrict == true){
+ if($wgUser->isAllowed('restrict')){
+ if(!$this->mTitle->isRestricted()){
+ $content_actions['restrict'] = array(
+ 'class' => ($action == 'restrict') ? 'selected' : false,
+ 'text' => wfMsg('restrict'),
+ 'href' => $this->mTitle->getLocalUrl( 'action=restrict' )
+ );
+
+ } else {
+ if ($this->mTitle->isRegexRestricted()){
+ $content_actions['unrestrict'] = array(
+ 'class' => ($action == 'unrestrict') ? 'selected' : false,
+ 'text' => wfMsg('restricttitle'),
+ 'href' => $this->mTitle->getLocalUrl( '' )
+ );
+ } else {
+ $content_actions['unrestrict'] = array(
+ 'class' => ($action == 'unrestrict') ? 'selected' : false,
+ 'text' => wfMsg('unrestrict'),
+ 'href' => $this->mTitle->getLocalUrl( 'action=unrestrict' )
+ );
+ }
+ }
+ } else {
+ if($wgUser->isAllowed('viewrestrict')){
+ if($this->mTitle->isRestricted()){
+ $content_actions['unrestrict'] = array(
+ 'class' => ($action == 'unrestrict') ? 'selected' : false,
+ 'text' => wfMsg('restricttitle'),
+ 'href' => $this->mTitle->getLocalUrl( '' )
+ );
+ }
+ }
+ }
+ }
if( $wgUser->isAllowed('delete') ) {
$content_actions['delete'] = array(
diff -Naur mediawiki-1.15.1.orig/includes/SpecialPage.php mediawiki-1.15.1/includes/SpecialPage.php
--- mediawiki-1.15.1.orig/includes/SpecialPage.php 2009-03-18 21:13:34.000000000 +0000
+++ mediawiki-1.15.1/includes/SpecialPage.php 2010-02-06 07:07:23.333048988 +0000
@@ -199,8 +199,8 @@
*/
static function initList() {
global $wgSpecialPages;
- global $wgDisableCounters, $wgDisableInternalSearch, $wgEmailAuthentication;
-
+ global $wgDisableCounters, $wgDisableInternalSearch, $wgEmailAuthentication, $wgEnableRestrict;
+
if ( self::$mListInitialised ) {
return;
}
@@ -222,6 +222,10 @@
self::$mList['Invalidateemail'] = 'EmailInvalidation';
}
+ if( $wgEnableRestrict ) {
+ self::$mList['Restrictedpages'] = array('SpecialPage', 'Restrictedpages' );
+ }
+
# Add extension special pages
self::$mList = array_merge( self::$mList, $wgSpecialPages );
diff -Naur mediawiki-1.15.1.orig/includes/Title.php mediawiki-1.15.1/includes/Title.php
--- mediawiki-1.15.1.orig/includes/Title.php 2009-03-25 11:35:02.000000000 +0000
+++ mediawiki-1.15.1/includes/Title.php 2010-02-06 07:07:23.335049143 +0000
@@ -1041,7 +1041,16 @@
* @return \type{\bool}
*/
public function isNamespaceProtected() {
- global $wgNamespaceProtection, $wgUser;
+ global $wgNamespaceProtection, $wgUser, $wgUserPageRestrict;
+
+ if ( $wgUserPageRestrict == true ) {
+ if ( $this->getNamespace() == NS_USER && ! (substr_count($this->getText(), $wgUser->getName()))) {
+ if ( ( ! $wgUser->isAllowed('viewrestrict') ) && ( ! $wgUser->isAllowed('edituser') ) ) {
+ return false;
+ }
+ }
+ }
+
if( isset( $wgNamespaceProtection[ $this->mNamespace ] ) ) {
foreach( (array)$wgNamespaceProtection[ $this->mNamespace ] as $right ) {
if( $right != '' && !$wgUser->isAllowed( $right ) )
@@ -1376,7 +1385,39 @@
wfProfileOut( __METHOD__ );
return $errors;
}
+
+ /*
+ * Does the title correspond to a restricted article?
+ * (restrict-patch by Jerome Combaz)
+ * @return boolean
+ * @access public
+ */
+ function isRestricted() {
+ global $wgEnableRestrict;
+ if ( $wgEnableRestrict == true ) {
+ $a = $this->getRestrictions("view");
+ if ( $this->isRegexRestricted() || (!empty($a) && $a[0] == true) ) return true;
+ }
+ return false;
+ }
+ function isRegexRestricted() {
+ global $wgEnableRestrict, $wgRegexRestrict;
+ if ( $wgEnableRestrict == true ) {
+ foreach ( $wgRegexRestrict as $k=>$v ) {
+ // Reverse restriction START
+ // If an entry starts with "!!" and the remaining string matches the namespace,
+ // the page is NOT restricted
+ if (substr($v, 0, 2) == "!!") {
+ if (ereg (substr($v, 2), $this->makeName( $this->mNamespace, $this->mTextform) ) ) return false;
+ } else
+ // Reverse restriction END
+ if ( ereg ( $v, $this->makeName( $this->mNamespace, $this->mTextform) ) ) return true;
+ }
+ }
+ return false;
+ }
+
/**
* Is this title subject to title protection?
* @return \type{\mixed} An associative array representing any existent title
@@ -1508,7 +1549,7 @@
* @todo fold these checks into userCan()
*/
public function userCanRead() {
- global $wgUser, $wgGroupPermissions;
+ global $wgUser, $wgGroupPermissions, $wgUserPageRestrict, $wgUserReadRestrict, $wgUserPagePrivate;
$result = null;
wfRunHooks( 'userCan', array( &$this, &$wgUser, 'read', &$result ) );
@@ -1516,6 +1557,32 @@
return $result;
}
+ // restricted page ?
+ if ( $this->isRestricted() && ! $wgUser->isAllowed('viewrestrict') ) {
+ return false;
+ }
+
+ // restricted user pages ?
+ if ( $wgUserPageRestrict == true ) {
+ if ( $wgUserReadRestrict == false ) {
+ if ( $this->getNamespace() == NS_USER && $wgUser->getName() != $this->getText() ) {
+ if ( ! $wgUser->isAllowed('viewrestrict') ) {
+ return false;
+ }
+ }
+ } else {
+ if ( $this->getNamespace() == NS_USER && $wgUser->getName() != $this->getText() ) {
+ if ($wgUserPagePrivate) {
+ foreach ( $wgUserPagePrivate as $k=>$v ) {
+ if ( ereg (substr($v, 2), $this->makeName( $this->mNamespace, $this->mTextform) )
+ && ! (substr_count($this->getText(), $wgUser->getName() ) ) )
+ return false;
+ }
+ }
+ }
+ }
+ }
+
# Shortcut for public wikis, allows skipping quite a bit of code
if ( !empty( $wgGroupPermissions['*']['read'] ) )
return true;
diff -Naur mediawiki-1.15.1.orig/includes/User.php mediawiki-1.15.1/includes/User.php
--- mediawiki-1.15.1.orig/includes/User.php 2009-05-01 06:24:09.000000000 +0000
+++ mediawiki-1.15.1/includes/User.php 2010-02-06 07:07:23.338049133 +0000
@@ -160,6 +160,7 @@
'override-export-depth',
'patrol',
'protect',
+ 'restrict',
'proxyunbannable',
'purge',
'read',
diff -Naur mediawiki-1.15.1.orig/includes/Wiki.php mediawiki-1.15.1/includes/Wiki.php
--- mediawiki-1.15.1.orig/includes/Wiki.php 2009-02-17 03:28:54.000000000 +0000
+++ mediawiki-1.15.1/includes/Wiki.php 2010-02-06 07:38:16.786702542 +0000
@@ -149,7 +149,11 @@
# the Read array in order for the user to see it. (We have to check here to
# catch special pages etc. We check again in Article::view())
if( !is_null( $title ) && !$title->userCanRead() ) {
- $output->loginToUse();
+ if ( $title->isRestricted() ) {
+ $output->restrictGroupRequired();
+ } else {
+ $output->loginToUse();
+ }
$output->output();
$output->disable();
return false;
@@ -462,6 +466,8 @@
case 'rollback':
case 'protect':
case 'unprotect':
+ case 'restrict':
+ case 'unrestrict':
case 'info':
case 'markpatrolled':
case 'render':
diff -Naur mediawiki-1.15.1.orig/includes/parser/Parser.php mediawiki-1.15.1/includes/parser/Parser.php
--- mediawiki-1.15.1.orig/includes/parser/Parser.php 2009-05-15 04:00:34.000000000 +0000
+++ mediawiki-1.15.1/includes/parser/Parser.php 2010-02-06 07:49:14.340048341 +0000
@@ -2878,7 +2878,7 @@
wfDebug( __METHOD__.": template inclusion denied for " . $title->getPrefixedDBkey() );
} else {
list( $text, $title ) = $this->getTemplateDom( $title );
- if ( $text !== false ) {
+ if ( $text !== false && $title->userCanRead() ) {
$found = true;
$isChildObj = true;
}
@@ -2996,9 +2996,14 @@
if ( isset( $this->mTplDomCache[$titleText] ) ) {
return array( $this->mTplDomCache[$titleText], $title );
}
-
- // Cache miss, go to the database
- list( $text, $title ) = $this->fetchTemplateAndTitle( $title );
+
+ // page restriction
+ if (!$title->userCanRead()) {
+ $text = false;
+ } else {
+ // Cache miss, go to the database
+ list( $text, $title ) = $this->fetchTemplateAndTitle( $title );
+ }
if ( $text === false ) {
$this->mTplDomCache[$titleText] = false;
diff -Naur mediawiki-1.15.1.orig/includes/specials/SpecialAllpages.php mediawiki-1.15.1/includes/specials/SpecialAllpages.php
--- mediawiki-1.15.1.orig/includes/specials/SpecialAllpages.php 2009-02-20 16:13:40.000000000 +0000
+++ mediawiki-1.15.1/includes/specials/SpecialAllpages.php 2010-02-06 10:33:14.800048683 +0000
@@ -303,21 +303,23 @@
while( ( $n < $this->maxPerPage ) && ( $s = $res->fetchObject() ) ) {
$t = Title::makeTitle( $s->page_namespace, $s->page_title );
- if( $t ) {
- $link = ( $s->page_is_redirect ? '<div class="allpagesredirect">' : '' ) .
- $sk->makeKnownLinkObj( $t, htmlspecialchars( $t->getText() ), false, false ) .
- ($s->page_is_redirect ? '</div>' : '' );
- } else {
- $link = '[[' . htmlspecialchars( $s->page_title ) . ']]';
- }
- if( $n % 3 == 0 ) {
- $out .= '<tr>';
- }
- $out .= "<td width=\"33%\">$link</td>";
- $n++;
- if( $n % 3 == 0 ) {
- $out .= '</tr>';
- }
+ if (! $GLOBALS['wgEnableRestrict'] or ! $t->isRestricted() or $wgUser->isAllowed('viewrestrict')) {
+ if( $t ) {
+ $link = ( $s->page_is_redirect ? '<div class="allpagesredirect">' : '' ) .
+ $sk->makeKnownLinkObj( $t, htmlspecialchars( $t->getText() ), false, false ) .
+ ($s->page_is_redirect ? '</div>' : '' );
+ } else {
+ $link = '[[' . htmlspecialchars( $s->page_title ) . ']]';
+ }
+ if( $n % 3 == 0 ) {
+ $out .= '<tr>';
+ }
+ $out .= "<td width=\"33%\">$link</td>";
+ $n++;
+ if( $n % 3 == 0 ) {
+ $out .= '</tr>';
+ }
+ } // restrict patch
}
if( ($n % 3) != 0 ) {
$out .= '</tr>';
diff -Naur mediawiki-1.15.1.orig/includes/specials/SpecialAncientpages.php mediawiki-1.15.1/includes/specials/SpecialAncientpages.php
--- mediawiki-1.15.1.orig/includes/specials/SpecialAncientpages.php 2008-07-15 15:43:43.000000000 +0000
+++ mediawiki-1.15.1/includes/specials/SpecialAncientpages.php 2010-02-06 07:07:28.585048968 +0000
@@ -46,6 +46,7 @@
$d = $wgLang->timeanddate( wfTimestamp( TS_MW, $result->value ), true );
$title = Title::makeTitle( $result->namespace, $result->title );
+ if ($GLOBALS['wgEnableRestrict'] and $title->isRestricted() and ! $GLOBALS['wgUser']->isAllowed('viewrestrict')) return "<em>".wfMsgHtml( 'restricttitle' )."</em>";
$link = $skin->makeKnownLinkObj( $title, htmlspecialchars( $wgContLang->convert( $title->getPrefixedText() ) ) );
return wfSpecialList($link, $d);
}
diff -Naur mediawiki-1.15.1.orig/includes/specials/SpecialBrokenRedirects.php mediawiki-1.15.1/includes/specials/SpecialBrokenRedirects.php
--- mediawiki-1.15.1.orig/includes/specials/SpecialBrokenRedirects.php 2008-06-19 21:12:45.000000000 +0000
+++ mediawiki-1.15.1/includes/specials/SpecialBrokenRedirects.php 2010-02-06 07:07:28.586048801 +0000
@@ -64,8 +64,13 @@
return '<s>' . $skin->makeLinkObj( $fromObj ) . '</s>';
}
- $from = $skin->makeKnownLinkObj( $fromObj ,'', 'redirect=no' );
- $edit = $skin->makeKnownLinkObj( $fromObj, wfMsgHtml( 'brokenredirects-edit' ), 'action=edit' );
+ if ($GLOBALS['wgEnableRestrict'] and $fromObj->isRestricted() and ! $GLOBALS['wgUser']->isAllowed('viewrestrict')) {
+ $from = "<em>".wfMsgHtml( 'restricttitle' )."</em>";
+ $edit = "";
+ } else {
+ $from = $skin->makeKnownLinkObj( $fromObj ,'', 'redirect=no' );
+ $edit = $skin->makeKnownLinkObj( $fromObj, wfMsgHtml( 'brokenredirects-edit' ), 'action=edit' );
+ }
$to = $skin->makeBrokenLinkObj( $toObj );
$arr = $wgContLang->getArrow();
diff -Naur mediawiki-1.15.1.orig/includes/specials/SpecialCategories.php mediawiki-1.15.1/includes/specials/SpecialCategories.php
--- mediawiki-1.15.1.orig/includes/specials/SpecialCategories.php 2009-02-25 16:57:03.000000000 +0000
+++ mediawiki-1.15.1/includes/specials/SpecialCategories.php 2010-02-06 07:07:28.593049101 +0000
@@ -92,6 +92,7 @@
function formatRow($result) {
global $wgLang;
$title = Title::makeTitle( NS_CATEGORY, $result->cat_title );
+ if ($GLOBALS['wgEnableRestrict'] and $title->isRestricted() and ! $GLOBALS['wgUser']->isAllowed('viewrestrict')) return "<em>".wfMsgHtml( 'restricttitle' )."</em>";
$titleText = $this->getSkin()->makeLinkObj( $title, htmlspecialchars( $title->getText() ) );
$count = wfMsgExt( 'nmembers', array( 'parsemag', 'escape' ),
$wgLang->formatNum( $result->cat_pages ) );
diff -Naur mediawiki-1.15.1.orig/includes/specials/SpecialContributions.php mediawiki-1.15.1/includes/specials/SpecialContributions.php
--- mediawiki-1.15.1.orig/includes/specials/SpecialContributions.php 2009-05-01 05:23:04.000000000 +0000
+++ mediawiki-1.15.1/includes/specials/SpecialContributions.php 2010-02-06 07:52:27.164510419 +0000
@@ -482,6 +482,9 @@
$page = Title::newFromRow( $row );
$page->resetArticleId( $row->rev_page ); // use process cache
+ if ($GLOBALS['wgEnableRestrict'] and $page->isRestricted() and ! $GLOBALS['wgUser']->isAllowed('viewrestrict'))
+ $link = "<em>".wfMsgHtml( 'restricttitle' )."</em>";
+ else
$link = $sk->makeLinkObj( $page, $page->getPrefixedText(), $page->isRedirect() ? 'redirect=no' : '' );
# Mark current revisions
$difftext = $topmarktext = '';
diff -Naur mediawiki-1.15.1.orig/includes/specials/SpecialDisambiguations.php mediawiki-1.15.1/includes/specials/SpecialDisambiguations.php
--- mediawiki-1.15.1.orig/includes/specials/SpecialDisambiguations.php 2008-11-13 08:15:23.000000000 +0000
+++ mediawiki-1.15.1/includes/specials/SpecialDisambiguations.php 2010-02-06 07:57:45.448576569 +0000
@@ -86,11 +86,19 @@
global $wgContLang;
$title = Title::newFromID( $result->value );
$dp = Title::makeTitle( $result->namespace, $result->title );
-
- $from = $skin->link( $title );
- $edit = $skin->link( $title, "(".wfMsgHtml("qbedit").")", array(), array( 'redirect' => 'no', 'action' => 'edit' ) );
$arr = $wgContLang->getArrow();
- $to = $skin->link( $dp );
+
+ if ($GLOBALS['wgEnableRestrict'] and $title->isRestricted() and ! $GLOBALS['wgUser']->isAllowed('viewrestrict')) {
+ $from = "<em>".wfMsgHtml( 'restricttitle' )."</em>";
+ $edit ="";
+ } else {
+ $from = $skin->makeKnownLinkObj( $title, '' );
+ $edit = $skin->makeKnownLinkObj( $title, "(".wfMsgHtml("qbedit").")", array(), array( 'redirect' => 'no', 'action' => 'edit' ) );
+ }
+ if ($GLOBALS['wgEnableRestrict'] and $dp->isRestricted() and ! $GLOBALS['wgUser']->isAllowed('viewrestrict'))
+ $to = "<em>".wfMsgHtml( 'restricttitle' )."</em>";
+ else
+ $to = $skin->makeKnownLinkObj( $dp, '' );
return "$from $edit $arr $to";
}
diff -Naur mediawiki-1.15.1.orig/includes/specials/SpecialDoubleRedirects.php mediawiki-1.15.1/includes/specials/SpecialDoubleRedirects.php
--- mediawiki-1.15.1.orig/includes/specials/SpecialDoubleRedirects.php 2008-06-19 21:12:45.000000000 +0000
+++ mediawiki-1.15.1/includes/specials/SpecialDoubleRedirects.php 2010-02-06 07:07:28.598048757 +0000
@@ -23,6 +23,7 @@
}
function getSQLText( &$dbr, $namespace = null, $title = null ) {
+ global $wgEnableRestrict, $wgUser;
list( $page, $redirect ) = $dbr->tableNamesN( 'page', 'redirect' );
@@ -38,7 +39,8 @@
" AND ra.rd_title=pb.page_title" .
" AND rb.rd_from=pb.page_id" .
" AND rb.rd_namespace=pc.page_namespace" .
- " AND rb.rd_title=pc.page_title";
+ " AND rb.rd_title=pc.page_title" .
+ (($wgEnableRestrict == true and ! $wgUser->isAllowed('viewrestrict') ) ? " AND pa.page_restrictions NOT LIKE '%view=1%'" : "");
if( $limitToTitle ) {
$encTitle = $dbr->addQuotes( $title );
diff -Naur mediawiki-1.15.1.orig/includes/specials/SpecialListredirects.php mediawiki-1.15.1/includes/specials/SpecialListredirects.php
--- mediawiki-1.15.1.orig/includes/specials/SpecialListredirects.php 2008-10-17 01:25:31.000000000 +0000
+++ mediawiki-1.15.1/includes/specials/SpecialListredirects.php 2010-02-06 07:07:35.943767670 +0000
@@ -32,6 +32,7 @@
# Make a link to the redirect itself
$rd_title = Title::makeTitle( $result->namespace, $result->title );
+ if ($GLOBALS['wgEnableRestrict'] and $rd_title->isRestricted() and ! $GLOBALS['wgUser']->isAllowed('viewrestrict')) return "<em>".wfMsgHtml( 'restricttitle' )."</em>";
$rd_link = $skin->makeLinkObj( $rd_title, '', 'redirect=no' );
# Find out where the redirect leads
diff -Naur mediawiki-1.15.1.orig/includes/specials/SpecialLog.php mediawiki-1.15.1/includes/specials/SpecialLog.php
--- mediawiki-1.15.1.orig/includes/specials/SpecialLog.php 2009-01-28 19:08:18.000000000 +0000
+++ mediawiki-1.15.1/includes/specials/SpecialLog.php 2010-02-06 08:09:53.322049681 +0000
@@ -26,9 +26,9 @@
* constructor
*/
function wfSpecialLog( $par = '' ) {
- global $wgRequest, $wgOut, $wgUser, $wgLogTypes;
-
+ global $wgRequest, $wgOut, $wgUser, $wgLogTypes, $wgEnableRestrict, $wgHideRestrictLog;
# Get parameters
+ if ( ($wgEnableRestrict and $wgHideRestrictLog == true and !($wgUser->isAllowed('restrict') || $wgUser->isAllowed('viewrestrict'))) or ! $wgEnableRestrict ) $this->whereClauses[] = 'log_type != "restrict"';
$parms = explode( '/', ($par = ( $par !== null ) ? $par : '' ) );
$symsForAll = array( '*', 'all' );
if ( $parms[0] != '' && ( in_array( $par, $wgLogTypes ) || in_array( $par, $symsForAll ) ) ) {
diff -Naur mediawiki-1.15.1.orig/includes/specials/SpecialMIMEsearch.php mediawiki-1.15.1/includes/specials/SpecialMIMEsearch.php
--- mediawiki-1.15.1.orig/includes/specials/SpecialMIMEsearch.php 2008-12-01 17:14:30.000000000 +0000
+++ mediawiki-1.15.1/includes/specials/SpecialMIMEsearch.php 2010-02-06 07:07:35.943767670 +0000
@@ -64,6 +64,7 @@
global $wgContLang, $wgLang;
$nt = Title::makeTitle( $result->namespace, $result->title );
+ if ($GLOBALS['wgEnableRestrict'] and $nt->isRestricted() and ! $GLOBALS['wgUser']->isAllowed('viewrestrict')) return "<em>".wfMsgHtml( 'restricttitle' )."</em>";
$text = $wgContLang->convert( $nt->getText() );
$plink = $skin->makeLink( $nt->getPrefixedText(), $text );
diff -Naur mediawiki-1.15.1.orig/includes/specials/SpecialMostcategories.php mediawiki-1.15.1/includes/specials/SpecialMostcategories.php
--- mediawiki-1.15.1.orig/includes/specials/SpecialMostcategories.php 2008-09-08 22:08:39.000000000 +0000
+++ mediawiki-1.15.1/includes/specials/SpecialMostcategories.php 2010-02-06 08:11:33.204699758 +0000
@@ -39,7 +39,7 @@
function formatResult( $skin, $result ) {
global $wgLang;
$title = Title::makeTitleSafe( $result->namespace, $result->title );
-
+ if ($GLOBALS['wgEnableRestrict'] and $titel->isRestricted() and ! $GLOBALS['wgUser']->isAllowed('viewrestrict')) return "<em>".wfMsgHtml( 'restricttitle' )."</em>";
$count = wfMsgExt( 'ncategories', array( 'parsemag', 'escape' ), $wgLang->formatNum( $result->value ) );
$link = $skin->link( $title );
return wfSpecialList( $link, $count );
diff -Naur mediawiki-1.15.1.orig/includes/specials/SpecialMostlinked.php mediawiki-1.15.1/includes/specials/SpecialMostlinked.php
--- mediawiki-1.15.1.orig/includes/specials/SpecialMostlinked.php 2008-07-18 01:31:18.000000000 +0000
+++ mediawiki-1.15.1/includes/specials/SpecialMostlinked.php 2010-02-06 07:07:35.952814569 +0000
@@ -75,6 +75,7 @@
function formatResult( $skin, $result ) {
global $wgLang;
$title = Title::makeTitleSafe( $result->namespace, $result->title );
+ if ($GLOBALS['wgEnableRestrict'] and $title->isRestricted() and ! $GLOBALS['wgUser']->isAllowed('viewrestrict')) return "<em>".wfMsgHtml( 'restricttitle' )."</em>";
$link = $skin->makeLinkObj( $title );
$wlh = $this->makeWlhLink( $title,
wfMsgExt( 'nlinks', array( 'parsemag', 'escape'),
diff -Naur mediawiki-1.15.1.orig/includes/specials/SpecialMostlinkedcategories.php mediawiki-1.15.1/includes/specials/SpecialMostlinkedcategories.php
--- mediawiki-1.15.1.orig/includes/specials/SpecialMostlinkedcategories.php 2008-07-18 01:31:18.000000000 +0000
+++ mediawiki-1.15.1/includes/specials/SpecialMostlinkedcategories.php 2010-02-06 07:07:35.952814569 +0000
@@ -56,6 +56,7 @@
global $wgLang, $wgContLang;
$nt = Title::makeTitle( $result->namespace, $result->title );
+ if ($GLOBALS['wgEnableRestrict'] and $nt->isRestricted() and ! $GLOBALS['wgUser']->isAllowed('viewrestrict')) return "<em>".wfMsgHtml( 'restricttitle' )."</em>";
$text = $wgContLang->convert( $nt->getText() );
$plink = $skin->makeLinkObj( $nt, htmlspecialchars( $text ) );
diff -Naur mediawiki-1.15.1.orig/includes/specials/SpecialMostrevisions.php mediawiki-1.15.1/includes/specials/SpecialMostrevisions.php
--- mediawiki-1.15.1.orig/includes/specials/SpecialMostrevisions.php 2008-07-18 01:31:18.000000000 +0000
+++ mediawiki-1.15.1/includes/specials/SpecialMostrevisions.php 2010-02-06 07:07:35.952814569 +0000
@@ -40,6 +40,7 @@
global $wgLang, $wgContLang;
$nt = Title::makeTitle( $result->namespace, $result->title );
+ if ($GLOBALS['wgEnableRestrict'] and $nt->isRestricted() and ! $GLOBALS['wgUser']->isAllowed('viewrestrict')) return "<em>".wfMsgHtml( 'restricttitle' )."</em>";
$text = $wgContLang->convert( $nt->getPrefixedText() );
$plink = $skin->makeKnownLinkObj( $nt, $text );
diff -Naur mediawiki-1.15.1.orig/includes/specials/SpecialNewimages.php mediawiki-1.15.1/includes/specials/SpecialNewimages.php
--- mediawiki-1.15.1.orig/includes/specials/SpecialNewimages.php 2008-12-20 00:28:34.000000000 +0000
+++ mediawiki-1.15.1/includes/specials/SpecialNewimages.php 2010-02-06 08:12:04.846071268 +0000
@@ -123,12 +123,14 @@
$name = $s->img_name;
$ut = $s->img_user_text;
-
+
$nt = Title::newFromText( $name, NS_FILE );
$ul = $sk->makeLinkObj( Title::makeTitle( NS_USER, $ut ), $ut );
-
- $gallery->add( $nt, "$ul<br />\n<i>".$wgLang->timeanddate( $s->img_timestamp, true )."</i><br />\n" );
-
+
+ // page restrict
+ if (! $GLOBALS['wgEnableRestrict'] or ! $nt->isRestricted() or $GLOBALS['wgUser']->isAllowed('viewrestrict'))
+ $gallery->add( $nt, "$ul<br />\n<i>".$wgLang->timeanddate( $s->img_timestamp, true )."</i><br />\n" );
+
$timestamp = wfTimestamp( TS_MW, $s->img_timestamp );
if( empty( $firstTimestamp ) ) {
$firstTimestamp = $timestamp;
diff -Naur mediawiki-1.15.1.orig/includes/specials/SpecialNewpages.php mediawiki-1.15.1/includes/specials/SpecialNewpages.php
--- mediawiki-1.15.1.orig/includes/specials/SpecialNewpages.php 2009-05-01 05:23:04.000000000 +0000
+++ mediawiki-1.15.1/includes/specials/SpecialNewpages.php 2010-02-06 08:13:50.760259190 +0000
@@ -254,6 +254,7 @@
$dm = $wgContLang->getDirMark();
$title = Title::makeTitleSafe( $result->rc_namespace, $result->rc_title );
+ if ($GLOBALS['wgEnableRestrict'] and $title->isRestricted() and ! $GLOBALS['wgUser']->isAllowed('viewrestrict')) return "<em>".wfMsgHtml( 'restricttitle' )."</em>";
$time = $wgLang->timeAndDate( $result->rc_timestamp, true );
$query = $this->patrollable( $result ) ? "rcid={$result->rc_id}&redirect=no" : 'redirect=no';
$plink = $this->skin->makeKnownLinkObj( $title, '', $query );
diff -Naur mediawiki-1.15.1.orig/includes/specials/SpecialPopularpages.php mediawiki-1.15.1/includes/specials/SpecialPopularpages.php
--- mediawiki-1.15.1.orig/includes/specials/SpecialPopularpages.php 2008-06-19 21:12:45.000000000 +0000
+++ mediawiki-1.15.1/includes/specials/SpecialPopularpages.php 2010-02-06 07:07:35.952814569 +0000
@@ -48,6 +48,7 @@
function formatResult( $skin, $result ) {
global $wgLang, $wgContLang;
$title = Title::makeTitle( $result->namespace, $result->title );
+ if ($GLOBALS['wgEnableRestrict'] and $title->isRestricted() and ! $GLOBALS['wgUser']->isAllowed('viewrestrict')) return "<em>".wfMsgHtml( 'restricttitle' )."</em>";
$link = $skin->makeKnownLinkObj( $title, htmlspecialchars( $wgContLang->convert( $title->getPrefixedText() ) ) );
$nv = wfMsgExt( 'nviews', array( 'parsemag', 'escape'),
$wgLang->formatNum( $result->value ) );
diff -Naur mediawiki-1.15.1.orig/includes/specials/SpecialPrefixindex.php mediawiki-1.15.1/includes/specials/SpecialPrefixindex.php
--- mediawiki-1.15.1.orig/includes/specials/SpecialPrefixindex.php 2009-03-03 19:58:05.000000000 +0000
+++ mediawiki-1.15.1/includes/specials/SpecialPrefixindex.php 2010-02-06 07:07:35.961800354 +0000
@@ -134,6 +134,9 @@
while( ( $n < $this->maxPerPage ) && ( $s = $res->fetchObject() ) ) {
$t = Title::makeTitle( $s->page_namespace, $s->page_title );
+ if ($GLOBALS['wgEnableRestrict'] and $t->isRestricted() and ! $GLOBALS['wgUser']->isAllowed('viewrestrict')) {
+ $link = "<em>".wfMsgHtml( 'restricttitle' )."</em>";
+ } else
if( $t ) {
$link = ($s->page_is_redirect ? '<div class="allpagesredirect">' : '' ) .
$sk->makeKnownLinkObj( $t, htmlspecialchars( $t->getText() ), false, false ) .
diff -Naur mediawiki-1.15.1.orig/includes/specials/SpecialRandompage.php mediawiki-1.15.1/includes/specials/SpecialRandompage.php
--- mediawiki-1.15.1.orig/includes/specials/SpecialRandompage.php 2009-03-05 13:38:17.000000000 +0000
+++ mediawiki-1.15.1/includes/specials/SpecialRandompage.php 2010-02-06 07:07:35.961800354 +0000
@@ -41,7 +41,7 @@
$title = $this->getRandomTitle();
- if( is_null( $title ) ) {
+ if( is_null( $title ) || ($GLOBALS['wgEnableRestrict'] and $title->isRestricted() and ! $GLOBALS['wgUser']->isAllowed('viewrestrict')) ) {
$this->setHeaders();
$wgOut->addWikiMsg( strtolower( $this->mName ) . '-nopages', $wgContLang->getNsText( $this->namespace ) );
return;
diff -Naur mediawiki-1.15.1.orig/includes/specials/SpecialRecentchangeslinked.php mediawiki-1.15.1/includes/specials/SpecialRecentchangeslinked.php
--- mediawiki-1.15.1.orig/includes/specials/SpecialRecentchangeslinked.php 2009-05-01 05:23:04.000000000 +0000
+++ mediawiki-1.15.1/includes/specials/SpecialRecentchangeslinked.php 2010-02-06 07:07:35.961800354 +0000
@@ -51,7 +51,7 @@
return false;
}
$title = Title::newFromURL( $target );
- if( !$title || $title->getInterwiki() != '' ){
+ if( !$title || ($GLOBALS['wgEnableRestrict'] and $title->isRestricted() and ! $GLOBALS['wgUser']->isAllowed('viewrestrict')) || $title->getInterwiki() != '' ){
$wgOut->wrapWikiMsg( '<div class="errorbox">$1</div><br clear="both" />', 'allpagesbadtitle' );
return false;
}
diff -Naur mediawiki-1.15.1.orig/includes/specials/SpecialRestrictedpages.php mediawiki-1.15.1/includes/specials/SpecialRestrictedpages.php
--- mediawiki-1.15.1.orig/includes/specials/SpecialRestrictedpages.php 1970-01-01 00:00:00.000000000 +0000
+++ mediawiki-1.15.1/includes/specials/SpecialRestrictedpages.php 2010-02-06 07:07:35.961800354 +0000
@@ -0,0 +1,80 @@
+<?php
+/**
+ *
+ * @package MediaWiki
+ * @subpackage SpecialPage
+ */
+
+/**
+ *
+ */
+require_once( 'QueryPage.php' );
+
+/**
+ *
+ * @package MediaWiki
+ * @subpackage SpecialPage
+ */
+class RestrictedPagesPage extends QueryPage {
+
+ function getName() {
+ return "Restrictedpages";
+ }
+
+ function isExpensive() {
+ return false;
+ }
+
+ function isSyndicated() { return false; }
+
+ function getPageHeader() {
+ global $wgRegexRestrict;
+
+ $string = '<p>'.wfMsg('restrictedpagespagetext');
+ if (! empty($wgRegexRestrict) ) {
+ $string .= "</p>\n<p>".wfMsg('regexrestrictedpagespagetext');
+ foreach( $wgRegexRestrict as $k => $v ) $string .= "<strong>{$v}</strong>, ";
+ $string = substr( $string, 0, -2);
+ }
+
+ $string .= "</p>\n<br />";
+
+ return $string;
+ }
+
+ function getSQL() {
+ global $wgEnableRestrict, $wgUser;
+
+ $db =& wfGetDB( DB_SLAVE );
+ $page = $db->tableName( 'page' );
+ return
+ "SELECT 'Restrictedpages' as type,
+ page_namespace as namespace,
+ page_title as title,
+ page_title as value
+ FROM $page
+ WHERE page_namespace=".NS_MAIN." AND page_is_redirect=0 AND page_restrictions LIKE '%view=1%'";
+ }
+
+ function sortDescending() {
+ return false;
+ }
+
+ function formatResult( $skin, $result ) {
+ global $wgLang, $wgContLang;
+
+ $d = $wgLang->timeanddate( wfTimestamp( TS_MW, $result->value ), true );
+ $link = $skin->makeKnownLink( $result->title, $wgContLang->convert( $result->title) );
+ return "{$link} ({$d})";
+ }
+}
+
+function wfSpecialRestrictedpages() {
+ list( $limit, $offset ) = wfCheckLimits();
+
+ $app = new RestrictedPagesPage();
+
+ $app->doQuery( $offset, $limit );
+}
+
+?>
diff -Naur mediawiki-1.15.1.orig/includes/specials/SpecialSearch.php mediawiki-1.15.1/includes/specials/SpecialSearch.php
--- mediawiki-1.15.1.orig/includes/specials/SpecialSearch.php 2009-03-21 10:51:08.000000000 +0000
+++ mediawiki-1.15.1/includes/specials/SpecialSearch.php 2010-02-06 07:07:35.961800354 +0000
@@ -1173,6 +1173,7 @@
}
$t = $result->getTitle();
+ if ($GLOBALS['wgEnableRestrict'] and $t->isRestricted() and ! $GLOBALS['wgUser']->isAllowed('viewrestrict')) return "<li><em>".wfMsgHtml( 'restricttitle' )."</em></li>\n";
$sk = $wgUser->getSkin();
$link = $sk->makeKnownLinkObj( $t, $result->getTitleSnippet($terms));
diff -Naur mediawiki-1.15.1.orig/includes/specials/SpecialShortpages.php mediawiki-1.15.1/includes/specials/SpecialShortpages.php
--- mediawiki-1.15.1.orig/includes/specials/SpecialShortpages.php 2008-09-20 09:02:35.000000000 +0000
+++ mediawiki-1.15.1/includes/specials/SpecialShortpages.php 2010-02-06 07:07:35.961800354 +0000
@@ -71,6 +71,7 @@
$dm = $wgContLang->getDirMark();
$title = Title::makeTitleSafe( $result->namespace, $result->title );
+ if ($GLOBALS['wgEnableRestrict'] and $title->isRestricted() and ! $GLOBALS['wgUser']->isAllowed('viewrestrict')) return "<em>".wfMsgHtml( 'restricttitle' )."</em>";
if ( !$title ) {
return '<!-- Invalid title ' . htmlspecialchars( "{$result->namespace}:{$result->title}" ). '-->';
}
diff -Naur mediawiki-1.15.1.orig/includes/specials/SpecialUnusedcategories.php mediawiki-1.15.1/includes/specials/SpecialUnusedcategories.php
--- mediawiki-1.15.1.orig/includes/specials/SpecialUnusedcategories.php 2009-01-27 22:54:01.000000000 +0000
+++ mediawiki-1.15.1/includes/specials/SpecialUnusedcategories.php 2010-02-06 07:07:35.961800354 +0000
@@ -34,6 +34,7 @@
function formatResult( $skin, $result ) {
$title = Title::makeTitle( NS_CATEGORY, $result->title );
+ if ($GLOBALS['wgEnableRestrict'] and $title->isRestricted() and ! $GLOBALS['wgUser']->isAllowed('viewrestrict')) return "<em>".wfMsgHtml( 'restricttitle' )."</em>";
return $skin->makeLinkObj( $title, $title->getText() );
}
}
diff -Naur mediawiki-1.15.1.orig/includes/specials/SpecialUnwatchedpages.php mediawiki-1.15.1/includes/specials/SpecialUnwatchedpages.php
--- mediawiki-1.15.1.orig/includes/specials/SpecialUnwatchedpages.php 2009-01-07 00:19:09.000000000 +0000
+++ mediawiki-1.15.1/includes/specials/SpecialUnwatchedpages.php 2010-02-06 07:07:35.961800354 +0000
@@ -42,6 +42,7 @@
global $wgContLang;
$nt = Title::makeTitle( $result->namespace, $result->title );
+ if ($GLOBALS['wgEnableRestrict'] and $nt->isRestricted() and ! $GLOBALS['wgUser']->isAllowed('viewrestrict')) return "<em>".wfMsgHtml( 'restricttitle' )."</em>";
$text = $wgContLang->convert( $nt->getPrefixedText() );
$plink = $skin->makeKnownLinkObj( $nt, htmlspecialchars( $text ) );
diff -Naur mediawiki-1.15.1.orig/includes/specials/SpecialVersion.php mediawiki-1.15.1/includes/specials/SpecialVersion.php
--- mediawiki-1.15.1.orig/includes/specials/SpecialVersion.php 2009-01-08 01:29:11.000000000 +0000
+++ mediawiki-1.15.1/includes/specials/SpecialVersion.php 2010-02-06 07:07:35.961800354 +0000
@@ -88,7 +88,7 @@
</tr>\n
<tr>
<td>[http://www.mediawiki.org/ MediaWiki]</td>
- <td>" . self::getVersionLinked() . "</td>
+ <td>" . self::getVersionLinked() . " (patched to enable [http://www.mediawiki.org/wiki/Extension:Page_access_restriction page accessrestriction])</td>
</tr>\n
<tr>
<td>[http://www.php.net/ PHP]</td>
diff -Naur mediawiki-1.15.1.orig/languages/messages/MessagesCa.php mediawiki-1.15.1/languages/messages/MessagesCa.php
--- mediawiki-1.15.1.orig/languages/messages/MessagesCa.php 2009-06-01 11:27:42.000000000 +0000
+++ mediawiki-1.15.1/languages/messages/MessagesCa.php 2010-02-06 08:19:27.474156763 +0000
@@ -2484,6 +2484,35 @@
'mw_math_modern' => 'Recomanat per a navegadors moderns',
'mw_math_mathml' => 'MathML si és possible (experimental)',
+# Traducció del pedaç de les restriccions
+# http://www.mediawiki.org/wiki/Extension:Page_access_restriction
+# http://conseil-recherche-innovation.net/index.php/1974/04/11/41-restrict-pages-under-mediawiki-15
+# Pau 05-02-06
+'restrict' => 'Restringeix',
+'restrictthispage' => 'Restringeix aquesta pàgina',
+'unrestrict' => 'Desrentringeix',
+'unrestrictthispage' => 'Permet el lliure accés aquesta pàgina',
+'restricttitle' => 'Pàgina restringida',
+'restricttext' => 'Aquesta pàgina és restringida. Per veure-la, heu d\'esser membres del grup \'restrict\' o del grup \'viewrestrict\'.',
+'restrictedpages' => 'Pàgines restringides',
+'restrictlogpage' => 'Log_restriccions',
+'restrictlogtext' => 'A continuació, teniu una llista de restriccions de pàgina. Vegeu [[{{ns:4}}:Restricted page]] per més informació.',
+'restrictedarticle' => '[[$1]] restringida',
+'unrestrictedarticle' => '[[$1]] desrentringida',
+'restrictsub' => '(Restringeix \'[[$1]]\')',
+'confirmrestrict' => 'Confirma la restricció',
+'confirmrestricttext' => 'Segur que voleu restringir aquesta pàgina?',
+'restrictcomment' => 'Raó per la restricció',
+'unrestrictsub' => '(Desrestringeix \'[[$1]]\')',
+'confirmunrestricttext' => 'Segur que voleu desrestringir aquesta pàgina?',
+'confirmunrestrict' => 'Confirmeu la desrestricció',
+'unrestrictcomment' => 'Raó per la desrestricció',
+'restrictreason' => '(doneu una raó)',
+'tooltip-restrict' => 'Restringeix aquesta pàgina',
+'notallowedtomoverestrictedpagetext' => 'Per moure aquesta pàgina, heu de ser membre del grup \'restrict\'.',
+'restrictedpagespagetext' => 'Aquesta pàgina llista totes les pàgines restringides del wiki. ',
+'regexrestrictedpagespagetext' => 'Totes les pàgines amb títols que compleixin aquesta/aquestes expressió(ns) regulars també seran restringides: ',
+
# Patrolling
'markaspatrolleddiff' => 'Marca com a supervisat',
'markaspatrolledtext' => 'Marca la pàgina com a supervisada',
diff -Naur mediawiki-1.15.1.orig/languages/messages/MessagesCs.php mediawiki-1.15.1/languages/messages/MessagesCs.php
--- mediawiki-1.15.1.orig/languages/messages/MessagesCs.php 2009-06-01 11:27:42.000000000 +0000
+++ mediawiki-1.15.1/languages/messages/MessagesCs.php 2010-02-06 08:23:01.155049621 +0000
@@ -1,3 +1,4 @@
+<<<<<<<
<?php
/** Czech (Česky)
*
@@ -571,6 +572,32 @@
'page-atom-feed' => 'Atom kanál stránky „$1“',
'red-link-title' => '$1 (stránka neexistuje)',
+#Restrict patch (http://www.mediawiki.org/wiki/Extension:Page_access_restriction)
+'restrict' => 'Omezit přístup',
+'restrictthispage' => 'Omezit přístup na tuto stránku',
+'unrestrict' => 'Zveřejnit',
+'unrestrictthispage' => 'Zveřejnit tuto stránku',
+'restricttitle' => 'Stránka s omezeným přístupem',
+'restricttext' => 'Na tuto stránku je omezený přístup. Zřejmě nemáte oprávnění k jejímu čtení',
+'restrictedpages' => 'Stránky s omezeným přístupem',
+'restrictlogpage' => 'Restriction_log',
+'restrictlogtext' => 'Zde je seznam omezení stránky. Pro více informací se podívejte na [[{{ns:4}}:Restricted page]] .',
+'restrictedarticle' => 'omezený [[$1]]',
+'unrestrictedarticle' => 'neomezený [[$1]]',
+'restrictsub' => '(Omezit přístup \'[[$1]]\')',
+'confirmrestrict' => 'Potvrzení omezení přístupu',
+'confirmrestricttext' => 'Opravdu chcete omezit přístup k této stránce?',
+'restrictcomment' => 'Důvod pro omezení',
+'unrestrictsub' => '(Neomezovat \'[[$1]]\')',
+'confirmunrestricttext' => 'Opravdu chcete zveřejnit tuto stránku?',
+'confirmunrestrict' => 'Potvrzení zveřejnění',
+'unrestrictcomment' => 'Důvod zveřejnění',
+'restrictreason' => '(udejte důvod)',
+'tooltip-restrict' => 'Omezit přístup',
+'notallowedtomoverestrictedpagetext' => 'Pro přesunutí této stránky musíte být členem skupiny \'restrict\' ',
+'restrictedpagespagetext' => 'Na této stránce je seznam všech omezených stránek ve wiki.',
+'regexrestrictedpagespagetext' => 'Všechny stránky s názvem obsahující tento/tyto výraz(y) jsou také omezeny : ',
+
# Short words for each namespace, by default used in the namespace tab in monobook
'nstab-main' => 'Stránka',
'nstab-user' => 'Uživatelova stránka',
@@ -683,7 +710,7 @@
'login' => 'Přihlaste se',
'nav-login-createaccount' => 'Přihlášení / vytvoření účtu',
'loginprompt' => 'K přihlášení do {{grammar:2sg|{{SITENAME}}}} musíte mít povoleny cookies.',
-'userlogin' => 'Přihlášení / vytvoření účtu',
+'userlogin' => 'Přihlášení',
'logout' => 'Odhlásit se',
'userlogout' => 'Odhlášení',
'notloggedin' => 'Nejste přihlášen(a)',
@@ -3199,3 +3226,4 @@
'dberr-cachederror' => 'Následující stránka je kopie z cache a nemusí být aktuální.',
);
+
diff -Naur mediawiki-1.15.1.orig/languages/messages/MessagesDe.php mediawiki-1.15.1/languages/messages/MessagesDe.php
--- mediawiki-1.15.1.orig/languages/messages/MessagesDe.php 2009-06-07 23:02:47.000000000 +0000
+++ mediawiki-1.15.1/languages/messages/MessagesDe.php 2010-02-06 08:28:19.594049779 +0000
@@ -319,6 +319,31 @@
);
$messages = array(
+/* Restrict patch (http://www.mediawiki.org/wiki/Extension:Page_access_restriction) */
+'restrict' => 'Sperren',
+'restrictthispage' => 'Diese Seite sperren',
+'unrestrict' => 'Sperrung aufheben',
+'unrestrictthispage' => 'Sperrung der Seite aufheben',
+'restricttitle' => 'Gesperrte Seite',
+'restricttext' => 'Diese Seite ist gesperrt. Um sie zu betrachten, musst du ein Mitglied der Gruppe \'restrict\' oder \'viewrestrict\' sein.',
+'restrictedpages' => 'Gesperrte Seiten',
+'restrictlogpage' => 'Log der Sperrungen',
+'restrictlogtext' => 'Unten folgt eine Liste mit gesperrten Seiten. Vgl. [[{{ns:4}}:Gesperrte Seiten]] für mehr Information.',
+'restrictedarticle' => 'Gesperrt: [[$1]]',
+'unrestrictedarticle' => 'Ungesperrt: [[$1]]',
+'restrictsub' => '(Gesperrt: \'[[$1]]\')',
+'confirmrestrict' => 'Sperrung bestätigen',
+'confirmrestricttext' => 'Willst du die Seite wirklich sperren?',
+'restrictcomment' => 'Grund für die Sperrung',
+'unrestrictsub' => '(Entsperren \'[[$1]]\')',
+'confirmunrestricttext' => 'Willst du die Seite wirklich entsperren?',
+'confirmunrestrict' => 'Entsperrung bestätigen',
+'unrestrictcomment' => 'Grund für Entsperrung',
+'restrictreason' => '(einen Grund angeben)',
+'tooltip-restrict' => 'Diese Seite sperren',
+'notallowedtomoverestrictedpagetext' => 'Um diese Seite zu verschieben, musst du ein Mitglied der Gruppe \'restrict\' sein.',
+'regexrestrictedpagespagetext' => 'Diese Seite listet alle gepserrten Seiten in diesem wiki.',
+
# User preference toggles
'tog-underline' => 'Links unterstreichen:',
'tog-highlightbroken' => 'Links auf nicht vorhandene Seiten hervorheben <a href="" class="new">Beispiel</a> (Alternative: wie dieser<a href="" class="internal">?</a>)',
diff -Naur mediawiki-1.15.1.orig/languages/messages/MessagesEn.php mediawiki-1.15.1/languages/messages/MessagesEn.php
--- mediawiki-1.15.1.orig/languages/messages/MessagesEn.php 2009-06-01 11:27:42.000000000 +0000
+++ mediawiki-1.15.1/languages/messages/MessagesEn.php 2010-02-06 07:07:36.142032833 +0000
@@ -3629,6 +3629,32 @@
'ellipsis' => '…', # only translate this message to other languages if you have to change it
'percent' => '$1%', # only translate this message to other languages if you have to change it
+#Restrict patch (http://www.mediawiki.org/wiki/Extension:Page_access_restriction)
+'restrict' => 'Restrict',
+'restrictthispage' => 'Restrict this page',
+'unrestrict' => 'Unrestrict',
+'unrestrictthispage' => 'Unrestrict this page',
+'restricttitle' => 'Restricted page',
+'restricttext' => 'This page is restricted. To view it you have to be member of the \'restrict\' group or \'viewrestrict\' group.',
+'restrictedpages' => 'Restricted pages',
+'restrictlogpage' => 'Restriction_log',
+'restrictlogtext' => 'Below is a list of page restrictions. See [[{{ns:4}}:Restricted page]] for more information.',
+'restrictedarticle' => 'restricted [[$1]]',
+'unrestrictedarticle' => 'unrestricted [[$1]]',
+'restrictsub' => '(Restrict \'[[$1]]\')',
+'confirmrestrict' => 'Confirm the restriction',
+'confirmrestricttext' => 'Do you really want to restrict this page?',
+'restrictcomment' => 'Reason for restricting',
+'unrestrictsub' => '(Unrestrict \'[[$1]]\')',
+'confirmunrestricttext' => 'Do you really want to unrestrict this page?',
+'confirmunrestrict' => 'Confirm unrestriction',
+'unrestrictcomment' => 'Reason for unrestricting',
+'restrictreason' => '(give a reason)',
+'tooltip-restrict' => 'Restrict this page',
+'notallowedtomoverestrictedpagetext' => 'To move this page, you have to be member of the \'restrict\' group.',
+'restrictedpagespagetext' => 'This page lists all restricted pages in the wiki. ',
+'regexrestrictedpagespagetext' => 'All page titles matching this/these regular expression(s) are also restricted : ',
+
# Multipage image navigation
'imgmultipageprev' => '← previous page',
'imgmultipagenext' => 'next page →',
diff -Naur mediawiki-1.15.1.orig/languages/messages/MessagesEs.php mediawiki-1.15.1/languages/messages/MessagesEs.php
--- mediawiki-1.15.1.orig/languages/messages/MessagesEs.php 2009-06-07 23:02:47.000000000 +0000
+++ mediawiki-1.15.1/languages/messages/MessagesEs.php 2010-02-06 07:07:36.169041035 +0000
@@ -3095,4 +3095,32 @@
'dberr-outofdate' => 'Tenga en cuenta que su índice de nuestro contenido puede estar desactualizado.',
'dberr-cachederror' => 'La siguiente es una página guardada de la página solicitada, y puede no estar actualizada.',
+# Traducción de restriccion de paginas para mediawiki
+# http://www.mediawiki.org/wiki/Extension:Page_access_restriction
+# Coffman 18-07-06
+'restrict' => 'Restringir',
+'restrictthispage' => 'Restringir esta página',
+'unrestrict' => 'Quitar restricción',
+'unrestrictthispage' => 'Quitar restricción en esta página',
+'restricttitle' => 'Página restringida',
+'restricttext' => 'Esta página esta restringida. Para verla tienes que pertenecer al grupo \'restrict\' o al grupo \'viewrestrict\'.',
+'restrictedpages' => 'Páginas restringidas',
+'restrictlogpage' => 'Restriction_log',
+'restrictlogtext' => 'A continuación está una lista de las páginas restringidas. Mira [[{{ns:4}}:Restricted page]] para más información.',
+'restrictedarticle' => 'restringido [[$1]]',
+'unrestrictedarticle' => 'no restringido [[$1]]',
+'restrictsub' => '(Restringir \'[[$1]]\')',
+'confirmrestrict' => 'Confirma la restricción',
+'confirmrestricttext' => '¿ Quieres realmente restringir esta página ?',
+'restrictcomment' => 'Razon de la restricción',
+'unrestrictsub' => '(Quitar restriccion \'[[$1]]\')',
+'confirmunrestricttext' => '¿ Quieres realmente quitar la restricción de esta página ?',
+'confirmunrestrict' => 'Confirma que quieres quitar la restricción',
+'unrestrictcomment' => 'Razon para quitar la restricción',
+'restrictreason' => '(da una razon)',
+'tooltip-restrict' => 'Restringir esta página',
+'notallowedtomoverestrictedpagetext' => 'Para mover esta página, debes ser miembro del grupo \'restrict\'.',
+'restrictedpagespagetext' => 'Esta página lista todas las páginas restringidas del wiki. ',
+'regexrestrictedpagespagetext' => 'Todas las páginas cuyos títulos cumplan alguna de estas expresiones regulares están restringidas : ',
+
);
diff -Naur mediawiki-1.15.1.orig/languages/messages/MessagesFi.php mediawiki-1.15.1/languages/messages/MessagesFi.php
--- mediawiki-1.15.1.orig/languages/messages/MessagesFi.php 2009-06-01 11:27:42.000000000 +0000
+++ mediawiki-1.15.1/languages/messages/MessagesFi.php 2010-02-06 07:07:36.178022908 +0000
@@ -3078,4 +3078,32 @@
'dberr-outofdate' => 'Googlen indeksi ei välttämättä ole ajan tasalla.',
'dberr-cachederror' => 'Alla on välimuistissa oleva sivun versio, joka ei välttämättä ole ajan tasalla.',
+#Restrict patch (http://www.mediawiki.org/wiki/Extension:Page_access_restriction)
+'restrict' => 'Rajoita',
+'restrictthispage' => 'Rajoita sivua',
+'unrestrict' => 'Poista rajoitukset',
+'unrestrictthispage' => 'Poista rajoitukset sivulta',
+'restricttitle' => 'Rajoitettu aihe',
+//##title is different from page in Finnish, I had to make a semantic change: page = sivu, title = aihe . Hope it works.##
+'restricttext' => 'Tällä sivulla on rajoituksia. Nähdäksesi sivun sinun on oltava \'restrict\' tai \'viewrestrict\' -ryhmän jäsen.',
+'restrictedpages' => 'Rajoitetut sivut',
+'restrictlogpage' => 'Rajoitusten_seuranta',
+'restrictlogtext' => 'Alla on listaus sivun rajoituksista. Lue enemmän [[{{ns:4}}:rajoitetuista sivuista]] täältä.',
+'restrictedarticle' => 'rajoitettu [[$1]]',
+'unrestrictedarticle' => 'rajoittamaton [[$1]]',
+'restrictsub' => '(Rajoita aihetta: \'[[$1]]\')',
+//##I had to include "aihe"; $1 refers to a variable, which is probably a new topic/ title (=aihe). Finnish language uses postpositioned suffixes (which are difficult to include in code without making silly sounding sentences). Like this: aihe = title, aiheesta = about a title, aiheeseen = to the title. See what I mean?##
+'confirmrestrict' => 'Vahvista rajoitukset',
+'confirmrestricttext' => 'Haluatko varmasti luoda rajoituksia tälle sivulle?',
+'restrictcomment' => 'Kommentti',
+'unrestrictsub' => '(Poista rajoitus aiheesta: \'[[$1]]\')',
+'confirmunrestricttext' => 'Haluatko varmasti poistaa rajoitukset?',
+'confirmunrestrict' => 'Vahvista rajoitus',
+'unrestrictcomment' => 'Kommentti',
+'restrictreason' => '(syy)',
+'tooltip-restrict' => 'Rajoita',
+'notallowedtomoverestrictedpagetext' => 'Siirtääksesi tätä sivua sinun on oltava jäsen \'restrict\' ryhmässä.',
+'restrictedpagespagetext' => 'Tämä sivu listaa kaikki wikissä olevat rajoitetut sivut...',
+'regexrestrictedpagespagetext' => 'Tätä lauseketta vastaavilla sivuilla on rajoituksia:',
+
);
diff -Naur mediawiki-1.15.1.orig/languages/messages/MessagesFr.php mediawiki-1.15.1/languages/messages/MessagesFr.php
--- mediawiki-1.15.1.orig/languages/messages/MessagesFr.php 2009-06-01 11:27:42.000000000 +0000
+++ mediawiki-1.15.1/languages/messages/MessagesFr.php 2010-02-06 07:07:36.214030095 +0000
@@ -2886,6 +2886,32 @@
'exif-orientation-7' => 'Tournée de 90° dans le sens horaire et inversée verticalement', # 0th row: right; 0th column: bottom
'exif-orientation-8' => 'Tournée de 90° dans le sens antihoraire', # 0th row: left; 0th column: bottom
+#Restrict patch (http://www.mediawiki.org/wiki/Extension:Page_access_restriction)
+'restrict' => 'Restreindre',
+'restrictthispage' => 'Restreindre cette page',
+'unrestrict' => 'Autoriser',
+'unrestrictthispage' => 'Autoriser cette page',
+'restricttitle' => 'Page restreinte',
+'restricttext' => 'L\'accès à cette page a été restreint. Pour pouvoir y accéder vous devez être membre du groupe \'restrict\' ou \'viewrestrict\'',
+'restrictedpages' => 'Pages restreintes',
+'restrictlogpage' => 'Log_de_restriction',
+'restrictlogtext' => 'Voir les [[{{ns:4}}:Page restreinte|directives concernant les pages restreintes]].',
+'restrictedarticle' => 'a restreint [[$1]]',
+'unrestrictedarticle' => 'a autorisé [[$1]]',
+'restrictsub' => '(Restreint \'[[$1]]\')',
+'confirmrestrict' => 'Confirmer la restriction',
+'confirmrestricttext' => 'Voulez vous vraiment restreindre l\'accès à cette page ?',
+'restrictcomment' => 'Raison de la restriction',
+'unrestrictsub' => '(Autorise \'[[$1]]\')',
+'confirmunrestricttext' => 'Voulez-vous vraiment autoriser l\'accès à cette page ?',
+'confirmunrestrict' => 'Confirmer l\'autorisation',
+'unrestrictcomment' => 'Raison de l\'autorisation',
+'restrictreason' => '(indiquez une raison)',
+'tooltip-restrict' => 'Restreindre cette page',
+'notallowedtomoverestrictedpagetext' => 'Pour pouvoir déplacer cette page, vous devez être membre du groupe \'restrict\'',
+'restrictedpagespagetext' => 'Cette page liste les pages restreintes de ce wiki.',
+'regexrestrictedpagespagetext' => 'Les pages dont le titre correspond à cette/ces expressions(s) régulière(s) sont également restreintes : ',
+
'exif-planarconfiguration-1' => 'Données contiguës',
'exif-planarconfiguration-2' => 'Données séparées',
diff -Naur mediawiki-1.15.1.orig/languages/messages/MessagesHe.php mediawiki-1.15.1/languages/messages/MessagesHe.php
--- mediawiki-1.15.1.orig/languages/messages/MessagesHe.php 2009-06-01 11:27:42.000000000 +0000
+++ mediawiki-1.15.1/languages/messages/MessagesHe.php 2010-02-06 07:07:36.223036415 +0000
@@ -3095,6 +3095,32 @@
'confirm-purge-top' => 'לנקות את המטמון של דף זה?',
'confirm-purge-bottom' => 'ניקוי המטמון של דף גורם לגרסה החדשה ביותר להופיע.',
+#Restrict patch ( http://www.mediawiki.org/wiki/Extension:Page_access_restriction )
+'restrict' => '<27><><EFBFBD><EFBFBD>',
+'restrictthispage' => '<27><><EFBFBD><EFBFBD> <20>ף <20><>',
+'unrestrict' => '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>',
+'unrestrictthispage' => '<27><><EFBFBD> <20><><EFBFBD><EFBFBD>ת <20>ף <20><>',
+'restricttitle' => '<27>ף <20><><EFBFBD><EFBFBD><EFBFBD>',
+'restricttext' => '<27>ף <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20>צפ<D7A6><D7A4>. ע<> <20>נת <20>ר<EFBFBD><D7A8>ת<EFBFBD> ע<><D7A2><EFBFBD> <20><><EFBFBD><EFBFBD>ת <20><>ר <20>ק<EFBFBD><D7A7>צת \'restrict\' <20><> \'viewrestrict\'.',
+'restrictedpages' => '<27>פ<EFBFBD><D7A4> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>',
+'restrictlogpage' => '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ת',
+'restrictlogtext' => '<27><><EFBFBD> <20><><EFBFBD><EFBFBD> <20>פ<EFBFBD><D7A4> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. ר<><D7A8> [[{{ns:4}}:Restricted page]] <20><><EFBFBD><EFBFBD>ע נ<>סף.',
+'restrictedarticle' => '<27><><EFBFBD><EFBFBD> <20>ת [[$1]]',
+'unrestrictedarticle' => '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> ע<> [[$1]]',
+'restrictsub' => '(<28><><EFBFBD><EFBFBD> \'[[$1]]\')',
+'confirmrestrict' => '<27><><EFBFBD> <20>ת<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ש<>רצ<D7A8>נכ<D7A0> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ף <20><>?',
+'confirmrestricttext' => '<27><>שר <20>ת <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>',
+'restrictcomment' => 'ס<><D7A1>ת <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>',
+'unrestrictsub' => '(<28><><EFBFBD> <20><><EFBFBD><EFBFBD>ת \'[[$1]]\')',
+'confirmunrestricttext' => '<27><><EFBFBD> <20>ת<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ש<>רצ<D7A8>נכ<D7A0> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>ת <20>ף <20><>?',
+'confirmunrestrict' => '<27><>שר <20>ת <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>',
+'unrestrictcomment' => 'ס<><D7A1>ת <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>',
+'restrictreason' => 'ס<><D7A1><EFBFBD>',
+'tooltip-restrict' => '<27><><EFBFBD><EFBFBD> ע<><D7A2><EFBFBD> <20><>',
+'notallowedtomoverestrictedpagetext' => 'ע<> <20>נת <20><>ע<EFBFBD><D7A2>ר <20>ף <20><> ע<><D7A2><EFBFBD> <20><><EFBFBD><EFBFBD>ת <20><>ר <20>ק<EFBFBD><D7A7>צת \'restrict\'',
+'restrictedpagespagetext' => 'ר<><D7A8> רש<D7A8><D7A9>ת כ<> <20><>פ<EFBFBD><D7A4> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>ק<EFBFBD>',
+'regexrestrictedpagespagetext' => 'כ<> <20><>פ<EFBFBD><D7A4> ש<>ת<EFBFBD><D7AA><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ר<EFBFBD><D7A8><EFBFBD>ר<EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> כ<> :',
+
# Multipage image navigation
'imgmultipageprev' => '→ לדף הקודם',
'imgmultipagenext' => 'לדף הבא ←',
diff -Naur mediawiki-1.15.1.orig/languages/messages/MessagesNl.php mediawiki-1.15.1/languages/messages/MessagesNl.php
--- mediawiki-1.15.1.orig/languages/messages/MessagesNl.php 2009-06-07 23:02:47.000000000 +0000
+++ mediawiki-1.15.1/languages/messages/MessagesNl.php 2010-02-06 07:07:36.241009940 +0000
@@ -2735,6 +2735,33 @@
'mw_math_modern' => 'Aanbevolen methode voor recente browsers',
'mw_math_mathml' => 'MathML als mogelijk (experimenteel)',
+#Restrict patch (http://www.mediawiki.org/wiki/Extension:Page_access_restriction)
+'restrict' => 'Beperk',
+'restrictthispage' => 'Beperk deze pagina',
+'unrestrict' => 'Onbeperk',
+'unrestrictthispage' => 'Onbeperk deze pagina',
+'restricttitle' => 'Beperkte pagina',
+'restricttext' => 'Deze pagina is beperkt. Om deze te zien moet u lid zijn van de \'restrict\' groep of \'viewrestrict\' groep.',
+'restrictedpages' => 'Beperkte paginas',
+'restrictlogpage' => 'Beperkingen_log',
+'restrictlogtext' => 'Hier is een lijst met pagina beperkingen. Zie [[{{ns:4}}:Restricted page]] voor meer informatie.',
+'restrictedarticle' => 'beperkt [[$1]]',
+'unrestrictedarticle' => 'onbeperkt [[$1]]',
+'restrictsub' => '(Beperk \'[[$1]]\')',
+'confirmrestrict' => 'Bevestig de beperking',
+'confirmrestricttext' => 'Wilt u deze pagina echt beperken?',
+'restrictcomment' => 'Reden voor de beperking',
+'unrestrictsub' => '(Unrestrict \'[[$1]]\')',
+'confirmunrestricttext' => 'Wilt u deze pagina echt onbeperken?',
+'confirmunrestrict' => 'Bevestig de onbeperking',
+'unrestrictcomment' => 'Reden voor de onbeperking',
+'restrictreason' => '(geef een reden)',
+'tooltip-restrict' => 'Beperk deze pagina',
+'notallowedtomoverestrictedpagetext' => 'Om de locatie van deze pagina te veranderen, moet u lid zijn van de \'restrict\' groep.',
+'restrictedpagespagetext' => 'Deze pagina geeft een lijst van alle beperkte paginas in deze wiki. ',
+'regexrestrictedpagespagetext' => 'Alle pagina titels die aan deze uitdrukking voldoen zijn ook beperkt : ',
+
+
# Patrolling
'markaspatrolleddiff' => 'Markeren als gecontroleerd',
'markaspatrolledtext' => 'Deze pagina als gecontroleerd markeren',
diff -Naur mediawiki-1.15.1.orig/languages/messages/MessagesPl.php mediawiki-1.15.1/languages/messages/MessagesPl.php
--- mediawiki-1.15.1.orig/languages/messages/MessagesPl.php 2009-06-01 11:27:42.000000000 +0000
+++ mediawiki-1.15.1/languages/messages/MessagesPl.php 2010-02-06 07:07:36.241009940 +0000
@@ -2612,6 +2612,34 @@
'mw_math_modern' => 'HTML zalecane dla nowych przeglądarek',
'mw_math_mathml' => 'MathML jeśli dostępny (eksperymentalne)',
+#Polish translation by Janusz 'Ency' Dorożyński 2006-05-16
+#Restrict patch (http://www.mediawiki.org/wiki/Extension:Page_access_restriction)
+'restrict' => 'Zastrzeżenie',
+'restrictthispage' => 'Zastrzeżenie tej strony',
+'unrestrict' => 'Zdjęcie zastrzeżenia',
+'unrestrictthispage' => 'Zdjęcie zastrzeżenia tej strony',
+'restricttitle' => 'Strona zastrzeżona',
+'restricttext' => 'Ta strona jest zastrzeżona. Aby mieć do niej wgląd musisz być w grupie użytkowników \'restrict\' lub \'viewrestrict\'.',
+'restrictedpages' => 'Strony zastrzeżone',
+'restrictlogpage' => 'Dziennik (log) zastrzeżeń',
+'restrictlogtext' => 'Poniżej jest lista zastrzeżeń stron. Zobacz [[{{ns:4}}:Strony zastrzeżone]] z dodatkowymi informacjami.',
+'restrictedarticle' => 'zastrzeżono [[$1]]',
+'unrestrictedarticle' => 'zdjęto zastrzeżenie [[$1]]',
+'restrictsub' => '(Zastrzeżenie \'[[$1]]\')',
+'confirmrestrict' => 'Potwierdź zastrzeżenie',
+'confirmrestricttext' => 'Czy naprawdę chcesz zastrzec tę stronę?',
+'restrictcomment' => 'Powod zastrzeżenia',
+'unrestrictsub' => '(Zdjęcie zastrzeżenia \'[[$1]]\')',
+'confirmunrestricttext' => 'Czy naprawdę chcesz zdjąć zastrzeżenie tej stronę?',
+'confirmunrestrict' => 'Potwierdź zdjęcie zastrzeżenia',
+'unrestrictcomment' => 'Powód zdjęcia zastrzeżenia',
+'restrictreason' => '(podaj powód)',
+'tooltip-restrict' => 'Zastrzeż tę stronę',
+'notallowedtomoverestrictedpagetext' => 'Przeniesienie tej strony mogą wykonać tylko użytkownicy z grupy \'restrict\'.',
+'restrictedpagespagetext' => 'Ta strona podaje listę wszystkich zastrzeżonych stron tej wiki.',
+'regexrestrictedpagespagetext' => 'Zastrzeżenie dotyczy wszytkich tytułów artykułów spełniających warunki regularnych wyrażeń: '
+
+
# Patrolling
'markaspatrolleddiff' => 'oznacz edycję jako „sprawdzoną”',
'markaspatrolledtext' => 'Oznacz tę stronę jako „sprawdzoną”',
diff -Naur mediawiki-1.15.1.orig/languages/messages/MessagesRu.php mediawiki-1.15.1/languages/messages/MessagesRu.php
--- mediawiki-1.15.1.orig/languages/messages/MessagesRu.php 2009-06-01 11:27:42.000000000 +0000
+++ mediawiki-1.15.1/languages/messages/MessagesRu.php 2010-02-06 07:07:36.268010807 +0000
@@ -3006,6 +3006,32 @@
'confirm-purge-top' => 'Очистить кеш этой страницы?',
'confirm-purge-bottom' => 'После очистки кэша страницы будет показана её последняя версия.',
+#Restrict patch (http://www.mediawiki.org/wiki/Extension:Page_access_restriction)
+'restrict' => '<27>г<EFBFBD>ани<D0BD>и<EFBFBD><D0B8>',
+'restrictthispage' => '<27>г<EFBFBD>ани<D0BD>и<EFBFBD><D0B8> <20><>а<EFBFBD><D0B0><EFBFBD>',
+'unrestrict' => '<27>е ог<D0BE>ани<D0BD>ива<D0B2><D0B0>',
+'unrestrictthispage' => '<27>е ог<D0BE>ани<D0BD>ива<D0B2><D0B0> <20><>а<EFBFBD><D0B0><EFBFBD>',
+'restricttitle' => '<27>о<EFBFBD><D0BE><EFBFBD>п к <20><>а<EFBFBD><D0B0>е ог<D0BE>ани<D0BD>ен',
+'restricttext' => '<27>анна<D0BD> <20><><EFBFBD>ани<D0BD>а ог<D0BE>ани<D0BD>ена дл<D0B4> п<>бли<D0BB>ного п<>о<EFBFBD>мо<D0BC><D0BE>а. <20>л<EFBFBD> п<>о<EFBFBD>мо<D0BC><D0BE>а в<> должн<D0B6> б<><D0B1><EFBFBD> п<>ове<D0B2>енн<D0BD>.',
+'restrictedpages' => '<27>г<EFBFBD>ани<D0BD>енн<D0BD>е <20><>а<EFBFBD><D0B0>и',
+'restrictlogpage' => '<27><><EFBFBD>нал ог<D0BE>ани<D0BD>ений',
+'restrictlogtext' => '<27>иже <20>пи<D0BF>ок <20><><EFBFBD>ани<D0BD> <20> ог<D0BE>ани<D0BD>ени<D0BD>ми. См. [[{{ns:4}}:<3A>г<EFBFBD>ани<D0BD>енн<D0BD>е <20><>а<EFBFBD><D0B0>и]] дл<D0B4> бол<D0BE><D0BB>ей ин<D0B8>о<EFBFBD>ма<D0BC>ии.',
+'restrictedarticle' => '<27>г<EFBFBD>ани<D0BD>енно [[$1]]',
+'unrestrictedarticle' => '<27>е ог<D0BE>ани<D0BD>енно [[$1]]',
+'restrictsub' => '(<28>г<EFBFBD>ани<D0BD>и<EFBFBD><D0B8> \'[[$1]]\')',
+'confirmrestrict' => '<27>од<D0BE>ве<D0B2>ди<D0B4><D0B8> ог<D0BE>ани<D0BD>ение',
+'confirmrestricttext' => '<27><> дей<D0B5><D0B9>ви<D0B2>ел<D0B5>но желае<D0B0>е ог<D0BE>ани<D0BD>и<EFBFBD><D0B8> <20><><EFBFBD> <20><>а<EFBFBD><D0B0><EFBFBD>?',
+'restrictcomment' => '<27><>и<EFBFBD>ин<D0B8> дл<D0B4> ог<D0BE>ани<D0BD>ени<D0BD>',
+'unrestrictsub' => '(<28>е ог<D0BE>ани<D0BD>ива<D0B2><D0B0> \'[[$1]]\')',
+'confirmunrestricttext' => '<27><> дей<D0B5><D0B9>ви<D0B2>ел<D0B5>но желае<D0B0>е <20>н<EFBFBD><D0BD><EFBFBD> ог<D0BE>ани<D0BD>ение?',
+'confirmunrestrict' => '<27>од<D0BE>ве<D0B2>ди<D0B4><D0B8> <20>н<EFBFBD><D0BD>ие ог<D0BE>ани<D0BD>ений',
+'unrestrictcomment' => '<27><>и<EFBFBD>ин<D0B8> <20>н<EFBFBD><D0BD>и<EFBFBD> ог<D0BE>ани<D0BD>ений',
+'restrictreason' => '(<28>кажи<D0B6>е п<>и<EFBFBD>ин<D0B8>)',
+'tooltip-restrict' => '<27>г<EFBFBD>ани<D0BD>и<EFBFBD><D0B8> <20><>а<EFBFBD><D0B0><EFBFBD>',
+'notallowedtomoverestrictedpagetext' => '<27>л<EFBFBD> пе<D0BF>еме<D0BC>ени<D0BD> <20><>ой <20><><EFBFBD>ани<D0BD><D0B8>, <20><> должн<D0B6> б<><D0B1><EFBFBD> <20>леном \'restrict\' г<><D0B3>пп<D0BF>.',
+'restrictedpagespagetext' => '<27> <20><>ом <20>пи<D0BF>ке <20><><EFBFBD>ани<D0BD> ог<D0BE>ани<D0BD>енн<D0BD>е дл<D0B4> п<>о<EFBFBD>мо<D0BC><D0BE>а <20><>а<EFBFBD><D0B0>и. ',
+'regexrestrictedpagespagetext' => '<27><>е названи<D0BD> <20><>а<EFBFBD>ей <20>довле<D0BB>во<D0B2><D0BE><EFBFBD><EFBFBD>и<EFBFBD> <20><>ом<D0BE>/<2F><>им <20>еман<D0B0>и<EFBFBD>е<EFBFBD>ким в<><D0B2>ажени<D0BD>м б<>д<EFBFBD><D0B4> <20>ак же ог<D0BE>ани<D0BD>енн<D0BD>: ',
+
# Multipage image navigation
'imgmultipageprev' => '← предыдущая страница',
'imgmultipagenext' => 'следующая страница →',
diff -Naur mediawiki-1.15.1.orig/languages/messages/MessagesSv.php mediawiki-1.15.1/languages/messages/MessagesSv.php
--- mediawiki-1.15.1.orig/languages/messages/MessagesSv.php 2009-06-01 11:27:42.000000000 +0000
+++ mediawiki-1.15.1/languages/messages/MessagesSv.php 2010-02-06 07:07:36.294990162 +0000
@@ -2563,6 +2563,33 @@
'nocreativecommons' => 'Creative Commons RDF metadata avstängd på denna server.',
'notacceptable' => 'Den här wiki-servern kan inte erbjuda data i ett format som din klient kan läsa.',
+
+#Restrict patch (http://www.mediawiki.org/wiki/Extension:Page_access_restriction)
+'restrict' => 'Begränsa åtkomst',
+'restrictthispage' => "Begränsa åtkomst för denna sida",
+'unrestrict' => 'Upphäv begränsning av åtkomst',
+'unrestrictthispage' => 'Upphäv begränsning av åtkomst för denna sida',
+'restricttitle' => 'Åtkomstbegränsad',
+'restricttext' => 'Denna sida har begränsad åtkomst. För att visa sidan måste du vara medlem i \'åtkomstbegränsa\' - eller \'visaåtkomstbegränsade\' - gruppen.',
+'restrictedpages' => 'Sidor med begränsad åtkomst',
+'restrictlogpage' => 'Logg för åtkomstbegränsning',
+'restrictlogtext' => 'Nedan finns en lista över åtkomstbegränsade sidor. Se [[{{ns:4}}:Åtkomstbegränsadesidor]] för ytterligare information.',
+'restrictedarticle' => 'Begränsade åtkomst för [[$1]]',
+'unrestrictedarticle' => 'Upphävde åtkomstbegränsning för [[$1]]',
+'restrictsub' => '(Begränsa åtkomst för \'[[$1]]\')',
+'confirmrestrict' => 'Bekräfta begränsning av åtkomst',
+'confirmrestricttext' => 'Är du säker på att du vill begränsa åtkomsten för denna sida?',
+'restrictcomment' => 'Orsak till begränsning av åtkomst',
+'unrestrictsub' => '(Upphäv begränsning av åtkomst för \'[[$1]]\')',
+'confirmunrestricttext' => 'Är du säker på att du vill upphäva åtkomstbegränsningen för denna sida?',
+'confirmunrestrict' => 'Bekräfta upphävning av åtkomstbegränsning',
+'unrestrictcomment' => 'Orsak till upphävning av åtkomstbegränsning',
+'restrictreason' => '(ange orsak)',
+'tooltip-restrict' => 'Begränsa åtkomst för denna sida',
+'notallowedtomoverestrictedpagetext' => 'För att kunna flytta denna sida måste du vara medlem i \'åtkomstbegränsa\' - gruppen.',
+'restrictedpagespagetext' => 'Denna sida listar alla sidor med begränsad åtkomst i hela wikin. ',
+'regexrestrictedpagespagetext' => 'Alla titlar som matchar denna/dessa regular expression(s) begränsas också: ',
+
# Attribution
'anonymous' => '{{PLURAL:$1|Anonym användare|Anonyma användare}} på {{SITENAME}}',
'siteuser' => 'användaren $1 på {{SITENAME}}',