Difference between revisions of "Help on Trac"
Jump to navigation
Jump to search
Jgvictores (talk | contribs) (Created page with 'To integrate TRAC with Authz.conf, in trac.ini: [trac] authz_file = /(path_to_your)/authz.conf # ... more stuff ... permission_policies = AuthzSourcePolicy, ... more stuff …') |
Jgvictores (talk | contribs) |
||
(6 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | To integrate TRAC with Authz.conf, in trac.ini: | + | To integrate TRAC with Authz.conf, in trac.ini: (don't add this stuff to apache.conf) |
[trac] | [trac] | ||
authz_file = /(path_to_your)/authz.conf | authz_file = /(path_to_your)/authz.conf | ||
# ... more stuff ... | # ... more stuff ... | ||
permission_policies = AuthzSourcePolicy, ... more stuff ... | permission_policies = AuthzSourcePolicy, ... more stuff ... | ||
+ | |||
+ | Warning: for TRAC, case-sensitiveness on authz.conf paths. | ||
+ | ---- | ||
+ | TRAC & Doxygen: | ||
+ | |||
+ | http://trac-hacks.org/wiki/DoxygenPlugin#DoxygenPluginforTrac says: | ||
+ | sudo easy_install http://trac-hacks.org/svn/doxygenplugin/0.11/ | ||
+ | |||
+ | sudo trac-admin /srv/trac/tracASIBOTcoderepo permission add authenticated DOXYGEN_VIEW | ||
+ | |||
+ | And stuff on trac.ini: | ||
+ | [components] | ||
+ | doxygentrac.* = enabled | ||
+ | |||
+ | [doxygen] | ||
+ | path = /var/robots/doc/trunk/jmc_rave/doc | ||
+ | html_output = html | ||
+ | index = index.html |
Latest revision as of 19:36, 16 July 2010
To integrate TRAC with Authz.conf, in trac.ini: (don't add this stuff to apache.conf)
[trac] authz_file = /(path_to_your)/authz.conf # ... more stuff ... permission_policies = AuthzSourcePolicy, ... more stuff ...
Warning: for TRAC, case-sensitiveness on authz.conf paths.
TRAC & Doxygen:
http://trac-hacks.org/wiki/DoxygenPlugin#DoxygenPluginforTrac says:
sudo easy_install http://trac-hacks.org/svn/doxygenplugin/0.11/
sudo trac-admin /srv/trac/tracASIBOTcoderepo permission add authenticated DOXYGEN_VIEW
And stuff on trac.ini:
[components] doxygentrac.* = enabled [doxygen] path = /var/robots/doc/trunk/jmc_rave/doc html_output = html index = index.html