﻿id	summary	reporter	owner	description	type	status	priority	component	severity	resolution	keywords	cc	release
8467	Show tags not only on EDIT page	dh1jc	Alec Thomas	"Hi,

I found the tags of a page at the bottom right only on the wiki_edit page.
So I changed the code wiki.py to insert the tags not before the ""buttons"" but behind the wikipage



Index: wiki.py
===================================================================
--- wiki.py     (revision 9816)
+++ wiki.py     (working copy)
@@ -97,7 +97,7 @@
             li.append(tag.li(anchor, ' '))

         insert = tag.ul(class_='tags')(tag.li('Tags', class_='header'), li)
-        return stream | Transformer('//div[@class=""buttons""]').before(insert)
+        return stream | Transformer('//div[contains(@class,""wikipage"")]').after(insert)

     def _update_tags(self, req, page):
         tag_system = TagSystem(self.env)"	defect	new	normal	TagsPlugin	normal			anonymous	0.11
