| The paths used by Jenkins internally do neither match the ones given on the view screen nor do they match the ones given in the tooltips. This should either be adjusted or added to the help text regarding regular expressions. — Example: I created a folder **ExampleFolder, a subfolder OtherFolder and a job inside the subfulder ExampleProject. If one selects "Recurse in subfolders" this displays two jobs:
- OtherFolder
- OtherFolder » ExampleProject
This means that the regular expression .». should match only the ExampleProject, but it doesn't. The correct expression would be ./. because the path is "OtherFolder/ExampleProject" (even though Jenkins displays this differently). Hovering over "OtherFolder » ExampleProject" gives the full path as "ExampleFolder/OtherFolder/ExampleProject", but this one is also not correct - the regular expression "E.*" should match both OtherFolder as well as ExampleProject in this case, but does not. Suggestion: The easiest way would be to provide a short example in the help text, such as "Paths are divided by '/'. For example, to display all jobs within the folder named Test, write `Test/.*`". |