Modify

Opened 13 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 Ryan J Ollos)

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

     
    9797            li.append(tag.li(anchor, ' '))
    9898
    9999        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)
    101101
    102102    def _update_tags(self, req, page):
    103103        tag_system = TagSystem(self.env)

Attachments (0)

Change History (3)

comment:1 Changed 13 years ago by Ryan J Ollos

Description: modified (diff)

comment:2 Changed 13 years ago by Steffen Hoffmann

Keywords: wiki page added
Type: defectenhancement

This is an enhancement proposal/request, right?

comment:3 Changed 13 years ago by Steffen Hoffmann

Cc: Ryan J Ollos Michael Renzmann added; anonymous removed
Resolution: duplicate
Status: newclosed

What revision/source have you been looking on?

This has been fixed in [7384] for trunk, so your claim is largely invalid. Would you like to express, this needs backporting?

Furthermore this is a duplicate of #3851. Discuss over there, even reopen, if you feel the need.

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain Alec Thomas.
The resolution will be deleted. Next status will be 'reopened'.

Add Comment


E-mail address and name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.