On Fri, Jul 25, 2008 at 7:18 AM, Fluxx <[EMAIL PROTECTED]> wrote: > > I want to separate informations for internal and external users. > Therefore I would like to create a second wiki (accessible only for a > small group of users) inside the same trac instance. > > Is this possible? >
Use the authz permission policy plugin that's included with Trac 0.11. I would recommending creating a group for privileged users and adding everyone who needs to see the "private" wiki to that group. Then in your permission policy just add something like: [wiki:Private/*] @privileged = WIKI_VIEW And so on. Then, all wiki pages that start with Private/ will be viewable only to the people in the @privileged group. That's basically how this is done. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~----------~----~----~----~------~----~------~--~---
