Manual talk:RevisionDelete
Contents |
[edit] How to enable?
"a feature (that is disabled by default)" is useful information. But the page doesn't explain how to turn this feature on. That would be really nice info to have. --ShakataGaNai ^_^ 18:25, 9 July 2008 (UTC)
- It can be enabled by setting user rights in LocalSettings.php. I'll document it on the page. SPQRobin 11:52, 24 July 2008 (UTC)
- I added a screenshot to make it visually clear that RevisionDelete is accessed from a wiki page's 'View History' tab and emphasizes the 'show/hide' functionality. --SomaticJourney 15:16, 14 March 2010 (UTC)
[edit] real deletion of revision
Hi, i want reduce the size of my Database because some Users edits the same Articel in less minutes. Is it possible, to use the extension, to delete and not only hide a revision ? --Starwhooper 07:34, 7 October 2010 (UTC)
I also want to a) keep the actual article but b) delete some revisions (made one after another in minutes) to clean the database. Maybe this should be called RevisionMerge(ByTimeDistance)? Is this possible in the Actual MediaWiki? -- Chris R., 8 October 2011
[edit] Why is this function called "delete" when all it does is hide?
Why is this function called "delete" when all it does is hide?
How do we permanently delete revision history without deleting the original document?
[edit] In MW1.16.2 'supress' does equal 'oversights'
When using the example commands found in DefaultSettings.php like:
- $wgGroupPermissions['suppress']['hideuser'] = true;
MediaWiki ignores the group name suppress and instead creates a group named Oversights (displayed in the plural but the actual name is oversight as evidenced by the :Oversight page it links to). This is not special to Wikimedia wikis like the Manual page says. Any MediaWiki 1.16.2 (possibly others but I only use 1.16.2) based wiki will encounter this oddity and see an Oversights group on their Special:ListGroupRights page. This should be noted on the front page as such so people aren't expecting to find a suppress group. Plus mediawiki.org defines a different group altogether named Oversighters seen on Special:ListGroupRights though this new name could be a MW1.17 change.
If you were to use a couple commands like:
- $wgGroupPermissions['suppress']['hideuser'] = true; #MediaWiki creates the Oversight group
- $wgGroupPermissions['oversight']['suppressionlog'] = true; #SHOULD add a right to the Oversights group
you would expect the Oversights group created by MediaWiki to show the two rights. This is not the case. The second command creates an entirely new group named oversight and assigns the second right to it. You will now have two groups with the same name listed on Special:ListGroupRights. BUT these two groups point to the same group page (oversight).
MediaWiki should either create a suppress group or the default needs to be changed to oversight. Then MediaWiki has to be fixed so that it treats 'oversight' as the same group it creates with 'suppress'. Perhaps this is simply a display issue with Special:ListGroupRights but I think it's deeper since that page finds two different groups which the core has to have created. ~ 05:37, 26 March 2011 (UTC)
- Just to clarify, this is not true and things cannot be assumed this way. By your logic, you would be able to use $wgGroupPermissions['sysop'] and $wgGroupPermissions['administrator'], which isn't the case. "Oversights" is just an interface message - the actual group name is still the same. — Waterfox ~talk~ 21:33, 1 September 2011 (UTC)