Is there a way to give users permission to edit talk pages but not the main pages? The only extension I found is no longer maintained.
I want to give regular users permissions to read the main page and then make comments on the talk page, but not edit the main page.
I thought that to set the page protected or semi-protected can achieve this.
Envoyé de mon iPod
Le 31 janv. 2014 à 21:16, yan@seiner.com a écrit :
Is there a way to give users permission to edit talk pages but not the main pages? The only extension I found is no longer maintained.
I want to give regular users permissions to read the main page and then make comments on the talk page, but not edit the main page.
MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
Is there a way to do this wiki-wide? I need this as default behavior.
I thought that to set the page protected or semi-protected can achieve this.
Envoyé de mon iPod
Le 31 janv. 2014 à 21:16, yan@seiner.com a écrit :
Is there a way to give users permission to edit talk pages but not the main pages? The only extension I found is no longer maintained.
I want to give regular users permissions to read the main page and then make comments on the talk page, but not edit the main page.
MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
!DSPAM:52eba96434231394619061!
https://www.mediawiki.org/wiki/Manual:$wgNamespaceProtection would be what you are looking for, create a user right that editors have. and set protection on all non-talk namespaces using that setting
On Fri, Jan 31, 2014 at 8:50 AM, yan@seiner.com wrote:
Is there a way to do this wiki-wide? I need this as default behavior.
I thought that to set the page protected or semi-protected can achieve this.
Envoyé de mon iPod
Le 31 janv. 2014 à 21:16, yan@seiner.com a écrit :
Is there a way to give users permission to edit talk pages but not the main pages? The only extension I found is no longer maintained.
I want to give regular users permissions to read the main page and then make comments on the talk page, but not edit the main page.
MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
!DSPAM:52eba96434231394619061!
MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
You could try something like this in your LocalSettings.php
$wgNamespaceProtection[NS_MAIN] = array( 'main-edit' ); $wgGroupPermissions['sysop']['main-edit'] = true; $wgNamespaceProtection[NS_MAIN_TALK] = array( 'talk-edit' ); $wgGroupPermissions['*']['talk-edit'] = true;
(un-tested)
mediawiki-l@lists.wikimedia.org