// Since I can't see my message come into the Mailing list, I send it again, sorry for disturb //
Hello guys,
One of my users asked for a Mediawiki for his department to store a couple of information. That is not a big deal; a couple of ones are already running on our intranet. I'm running Mediawiki 1.10 with SSO authentication (users are automatically recognized and his login is displayed at the top of the page like a regular manual registration but without any intervention of the user)
I did a couple of group in LocalSettings.php :
Users not authenticated can read :
$wgGroupPermissions['*' ]['createaccount'] = false; $wgGroupPermissions['*' ]['read'] = true; $wgGroupPermissions['*' ]['edit'] = false; $wgGroupPermissions['*' ]['createpage'] = false; $wgGroupPermissions['*' ]['createtalk'] = false;
User successfully authenticated by the SSO plugin can read, create a talk..
$wgGroupPermissions['user' ]['move'] = false; $wgGroupPermissions['user' ]['read'] = true; $wgGroupPermissions['user' ]['edit'] = false; $wgGroupPermissions['user' ]['createpage'] = false; $wgGroupPermissions['user' ]['createtalk'] = true; $wgGroupPermissions['user' ]['upload'] = false; $wgGroupPermissions['user' ]['reupload'] = false; $wgGroupPermissions['user' ]['reupload-shared'] = false; $wgGroupPermissions['user' ]['minoredit'] = false;
If an authenticated user who is in the Contributor group can read/edit and so on $wgGroupPermissions['Contributor' ]['move'] = true; $wgGroupPermissions['Contributor' ]['read'] = true; $wgGroupPermissions['Contributor' ]['edit'] = true; $wgGroupPermissions['Contributor' ]['createpage'] = true; $wgGroupPermissions['Contributor' ]['createtalk'] = true; $wgGroupPermissions['Contributor' ]['upload'] = true; $wgGroupPermissions['Contributor' ]['reupload'] = true; $wgGroupPermissions['Contributor' ]['reupload-shared'] = true; $wgGroupPermissions['Contributor' ]['minoredit'] = true;
My colleague want "user" has an UI very simple by removing: "Discussion" "View Source", "Contribution", "My Discussion Page" on the top of the page and the "Toolbox" menu of the left. Is there a way to do that?
Second question: How to edit the footer? (copyright & so on)
Thanks by advance,
Johan
"Les informations contenues dans ce message electronique peuvent etre de nature confidentielles et soumises a une obligation de secret. Elles sont destinees a l'usage exclusif du reel destinataire. Si vous n'etes pas le reel destinataire, ou si vous recevez ce message par erreur, merci de le detruire immediatement et de le notifier a son emetteur."
"The information contained in this e-mail may be privileged and confidential. It is intended for the exclusive use of the designated recipients named above. If you are not the intended recipient or if you receive this e-mail in error, please delete it and immediately notify the sender."
johan.boye wrote:
My colleague want "user" has an UI very simple by removing: "Discussion" "View Source", "Contribution", "My Discussion Page" on the top of the page and the "Toolbox" menu of the left. Is there a way to do that?
Put on Mediawiki:Common.css li#ca-talk, li#ca-edit, li#pt-mycontris, li#pt-mytalk, #p-tb { display: none }
Second question: How to edit the footer? (copyright & so on)
Edit MediaWiki:Copyright, Mediawiki:disclaimers, Mediawiki:disclaimerpage, Mediawiki:aboutsite, Mediawiki:aboutpage, Mediawiki:Privacy, Mediawiki:privacypage
mediawiki-l@lists.wikimedia.org