Edgewall Software

Changes between Version 9 and Version 10 of TracMultipleProjectsSVNAccess


Ignore:
Timestamp:
Apr 16, 2008, 11:08:03 AM (16 years ago)
Author:
anonymous
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TracMultipleProjectsSVNAccess

    v9 v10  
    108108
    109109It appears to me that SVN has made mod_authz_svn smarter and it breaks this hack.
     110
     111== Hack variant ==
     112
     113The described hack did not work for me. The apparent reason is that trac (11beta2) does not return the environment list when asking for an unknown environment (TracIndex). My solution to this was to modify dispatch_request in trac/web/main.py L345 to add
     114{{{
     115if env_name == 'TracIndex':
     116  send_project_index(environ, strat_response, env_parent_dir, env_paths)
     117  return []
     118}}}