Administration question about revisions
is there any way to easily know the number of revisions of each article published in the wiki? this would make it easier for the administration to locate and purge very old revisions of each article.
Greetings
Comments
Log in or create an account to post a comment.
Re: Administration question about old revisions
page table
version_id
-> $this->page['version_id']revisions
-> $this->page['revisions']config table
pages_purge_time
-> $this->db->pages_purge_timepages_purge_time
in the Admin panel.revisions
holds the number of the available revisions for each page.You can write a own action to show and purge pages, which reaching a self defined threshold.
Re: Administration question about revisions
I managed to place the revision numbers in the index as I find it useful to know for all users.
Files modified for this purpose:
to activate or deactivate it use the following line
will show you only the revision number if there is no previous revision or otherwise both. (only for the administrator)
i already shared my modification for your review and opinion?
Greetings
Re: Administration question about revisions
mostpopular
ormypages
action, copy it and start from there. Take your time. For instance if you take mypages, you can reuse the tabs for sorting the pages afterrevisions
orversion_id
. You can put the value in front and add a tab for the admin to do some selected actions. Additionally you can show some extra infos when hovering over a certain record.Re: Administration question about revisions
Re: Administration question about revisions
Re: Administration question about revisions
mypages
and call itadmin_reviews
to modify the SQL statements and remove the filter by the user.new action, I already sent it for review.
Re: Administration question about revisions
Additionally we should add links to all workflow related action and handlers. I have some ideas, something like we have with filemeta / attachments / upload handler and the user action.
Re: Administration question about revisions