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
