id,summary,reporter,owner,description,type,status,priority,component,severity,resolution,keywords,cc,release
4037,Default configuration for "paths" configuration seems unintended,matthijs,hasienda,The default value for the "paths" configuration is "/wiki*_/ticket*_/milestone". According to the code_ each of the elements in this list is interpreted as a regex and passed to re.match.\r\n\r\nFrom looking at this_ it looks like the * should match anything_ so /wiki* should match anything starting with wiki. However_ this is a regex_ so it should be /wiki.* Now_ the * only serves to make the i preceding it optional: /wiki* matches /wik_ /wikfoo_ /wikiiiiii_ etc.\r\n\r\nFurthermore_ the re.match function already handles the "starts with" part_ so just "/wiki" should be enough.\r\n\r\nLastly_ I would expect the / after wiki to be included. Currently_ /wikifoo would also match_ while you would want to limit to /wiki/foo.\r\n\r\nI propose changing the default value of "paths" to "/wiki/_/ticket/_/milestone/". Would that make sense?,defect,closed,normal,BreadCrumbsNavPlugin,normal,fixed,regexp,,0.11
