Question

Is it possible to make a milestone invisible in trac 0.11 ?
I have found custom python modules which are a starting point for doing so but none of them worked so far.

Was it helpful?

Solution

Trac 0.11. is quite out-of-date by now. You'll find a large number of plugins no longer support it. What I'm going to suggest will most likely work in Trac 0.11, but if you encounter bugs then you may have to upgrade to get them resolved.

Where would you like to hide the milestone? If you'd like to hide it from the milestone menu on the ticket form, that is easy - once the milestone is closed it will be hidden from all users that don't have TICKET_ADMIN or TRAC_ADMIN permission.

If you would like the milestone to be hidden from the roadmap, all links to the milestone rendered as disabled, and the milestone not view-able when navigating to the URL /milestone/<milestone name>, you can use the fine-grained permissions module. You can hide the milestone by elevating the permissions that are required to view the module. For example,

[milestone:milestone1]
* = MILESTONE_ADMIN

would hide the milestone from users that don't have MILESTONE_ADMIN.

In Trac 0.11, the module fine-grained permissions module is /sample-plugins/permissions/authz_policy.py (it was moved to /tracopt in later releases). FineGrainedPageAuthzEditorPlugin provides a web interface for editing the authz file.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top