Question
I would like to have a list of changed topics in a specific web like the the
WebChanges but then refine my search and present only the topics that was changed by a specific Group only.
The first one is easy to do it by using a %SEARCH{...}% but i don't know how to do the second part of the problem.
To make my self clear, i want to be able to see topics that was changed or created by a user in the
TWikiAdminGroup (or MyWebAdminGroup) for example but to not see topics that had a new revision because a user add a comment.
Thanks in advance.
Environment
--
GeorgeVagenas - 05 Apr 2007
Answer
If you answer a question - or someone answered one of your questions - please remember to edit the page and set the status to answered. The status selector is below the edit box.
I hope I'm wrong, but I don't think you can do this without writing a plugin- It may come later as
SimpleFieldQueriesInMETASEARCH comes online though.
--
SvenDowideit - 24 Apr 2007
Assuming your admin group has a signature in every topic you could search for the names of the admin members. That could be a hardcoded regex search, sorted by date, such as
%SEARCH{ "(UserA|UserB|UserC)" type="regex" nosearch="on" order="modified" reverse="on" limit="50" }%.
You could do a nested SEARCH where you find out the members of a group, then feed that into above search. See example of nested search at
FormattedSearch.
--
PeterThoeny - 24 Apr 2007