﻿id	summary	reporter	owner	description	type	status	priority	component	severity	resolution	keywords	cc	release
7231	"[Patch] Make label ""Breadcrumbs:"" configurable"	anonymous	hasienda	"Patch:

{{{
#!diff
--- a/breadcrumbs.py
+++ b/breadcrumbs.py
@@ -23,4 +23,7 @@
     supported_paths = ListOption('breadcrumbs', 'paths', '/wiki*,/ticket*,/milestone*',
         doc='List of URL paths to allow breadcrumb tracking. Globs are supported.')
+
+    label = Option('breadcrumbs','label','Breadcrumbs:',
+                   doc=""""""Text label to show before breadcrumb list"""""")
     
     compiled_ignore_pattern = None
@@ -160,5 +163,5 @@
             )
             
-        insert = tag.ul(class_=""nav"", id=""breadcrumbs"")(tag.lh(""Breadcrumbs:""), li)
+        insert = tag.ul(class_=""nav"", id=""breadcrumbs"")(tag.lh(self.label), li)
 
         return stream | Transformer('//div[@id=""metanav""]/ul').after(insert)
}}}
"	enhancement	closed	normal	BreadCrumbsNavPlugin	normal	fixed	custom label	pipern	0.12
