On Wednesday, April 30, 2014 10:09:50 AM UTC-7, Mark Leisher wrote: > > How do I get Trac 1.* to start in View Tickets? >
I'll assume you want to arrive on the QueryModule page when navigating to the base url. For this, you need to set [trac] default_handler = QueryModule. http://trac.edgewall.org/wiki/TracIni#trac-section A use-case I've been thinking about lately is displaying a specific report (or any other resource) when navigating to the base url. I don't see a way to accomplish that with the current options available. The only way would be to write a small plugin that implements the IRequestHandler and redirects to the a report. > With the last version I set up, 0.12, all I recall doing was turning off > the reports module and setting an href. But I lost that config file in a > crash and can't remember the configuration details. > Disabling the ReportModule will result in the //View Tickets// link navigating to the QueryModule. However, you can accomplish the same thing without disabling the report module: [mainnav] tickets.hef = /query Neither change should have any effect on the behavior when navigating to the base url and invoking the default_handler. -- 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.
