Hi.
It seems that it's not possible to create a new ticket for
SvnAuthzPlugin (the code and tickets of this plugin are not hosted on
trac-hacks).
So I don't know how to submit a (simple) patch, making the plugin
work with Trac 1.2.
Should I edit the plugin page and add a 'Comment section' or whatever ?
The patch is attached to this mail...
--
You received this message because you are subscribed to the Google Groups "Trac
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/d/optout.
Index: svnauthz/svnauthz.py
===================================================================
--- svnauthz/svnauthz.py (revision 50)
+++ svnauthz/svnauthz.py (working copy)
@@ -10,13 +10,13 @@
# IAdminPanelProvider methods
def get_admin_panels(self, req):
if req.perm.has_permission('TRAC_ADMIN'):
yield ('svn', 'Subversion', 'authz', 'Permissions')
def render_admin_panel(self, req, cat, page, path_info):
assert req.perm.has_permission('TRAC_ADMIN')
# get default authz file from trac.ini
- authz_file = self.config.get('trac', 'authz_file')
+ authz_file = self.config.get('svn', 'authz_file')
# test if authz file exists and is writable
if not os.access(authz_file,os.W_OK|os.R_OK):