Modify ↓
Opened 14 years ago
Closed 13 years ago
#8467 closed enhancement (duplicate)
Show tags not only on EDIT page
Reported by: | dh1jc | Owned by: | Alec Thomas |
---|---|---|---|
Priority: | normal | Component: | TagsPlugin |
Severity: | normal | Keywords: | wiki page |
Cc: | Ryan J Ollos, Michael Renzmann | Trac Release: | 0.11 |
Description (last modified by )
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
-
wiki.py
97 97 li.append(tag.li(anchor, ' ')) 98 98 99 99 insert = tag.ul(class_='tags')(tag.li('Tags', class_='header'), li) 100 return stream | Transformer('//div[ @class="buttons"]').before(insert)100 return stream | Transformer('//div[contains(@class,"wikipage")]').after(insert) 101 101 102 102 def _update_tags(self, req, page): 103 103 tag_system = TagSystem(self.env)
Attachments (0)
Change History (3)
comment:1 Changed 14 years ago by
Description: | modified (diff) |
---|
comment:2 Changed 13 years ago by
Keywords: | wiki page added |
---|---|
Type: | defect → enhancement |
comment:3 Changed 13 years ago by
Cc: | Ryan J Ollos Michael Renzmann added; anonymous removed |
---|---|
Resolution: | → duplicate |
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
This is an enhancement proposal/request, right?