Re: [MediaWiki-l] Edit talk pages but not anything else

2014-01-31 Thread Wesley Singh
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) ___

Re: [MediaWiki-l] Edit talk pages but not anything else

2014-01-31 Thread John
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, wrote: > Is there a way to do this wiki-wide? I need this as

Re: [MediaWiki-l] Edit talk pages but not anything else

2014-01-31 Thread yan
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, y...@seiner.com a écrit : > >> Is there a way to give users permission to edit talk pages

Re: [MediaWiki-l] Edit talk pages but not anything else

2014-01-31 Thread Steph
I thought that to set the page protected or semi-protected can achieve this. Envoyé de mon iPod Le 31 janv. 2014 à 21:16, y...@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

[MediaWiki-l] Edit talk pages but not anything else

2014-01-31 Thread yan
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.