On 10/5/07, dk <[EMAIL PROTECTED]> wrote: > I am running a system with subversion, trac, webdav and a few other > services. Goal is to have a shared user management (through a htpasswd > file) and define permissions in the individual services using user > groups defined in a htgroup file. > > The trac version is 0.10.3 on a debian etch. There are multiple trac/ > svn repositories. To define what users are allowed inside Trac > (TRAC_ADMIN, TICKET_VIEW, WIKI_CREATE, ...) I would like to use the > groups defined in the htgroup file instead of setting up all > permissions for all user in every trac individually. I found out that > you can define groups in the trac-permission dialog (which end up in > the permission db table) but is it possible to use the external > information (htgroup file) to do this (either read the group > information directly from that file or populate the database from a > htpasswd/httgroup combination)? Is there a plugin for this? Is this > functionally in the trac core and I am just am unable to see it?
This exact functionality is not built into Trac, but it could be implemented fairly easily in a plugin using the IPermissionGroupProvider interface. There may even already be such a plugin out there. Erik --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
