Mercurial > moin > 1.9
changeset 12:13f4178d6c13
editbar was getting far too long, esp. in german on subpages
imported from: moin--main--1.5--patch-13
author | Thomas Waldmann <tw@waldmann-edv.de> |
---|---|
date | Fri, 23 Sep 2005 09:30:15 +0000 |
parents | 0f537d114a39 |
children | 77499985c79f |
files | MoinMoin/theme/__init__.py |
diffstat | 1 files changed, 8 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/MoinMoin/theme/__init__.py Fri Sep 23 08:40:00 2005 +0000 +++ b/MoinMoin/theme/__init__.py Fri Sep 23 09:30:15 2005 +0000 @@ -843,11 +843,7 @@ _ = self.request.getText user = self.request.user if user.valid: - # user valid, get current page status - if user.isQuickLinkedTo([page.page_name]): - title = _("Remove from Quicklinks") - else: - title = _("Add to Quicklinks") + title = _("Quicklink") quotedname = wikiutil.quoteWikinameURL(page.page_name) link = wikiutil.link_tag(self.request, quotedname + '?action=quicklink', title) @@ -1033,7 +1029,7 @@ # Parent page parent = page.getParentPage() if parent: - add(parent.link_to(request, _("Show Parent", formatted=False))) + add(parent.link_to(request, _("Parent Page", formatted=False))) # Page actions if page.isWritable() and request.user.may.write(page.page_name): @@ -1049,10 +1045,13 @@ else: add(_('Immutable Page', formatted=False)) - add(link(request, quotedname + '?action=diff', - _('Show Changes', formatted=False))) + #This is kind of superfluous as RC and action=info contains this, too. + #And it showed only the "Last Change", so it was named wrong and + #bookmark on RC is superior. + #add(link(request, quotedname + '?action=diff', + # _('Show Changes', formatted=False))) add(link(request, quotedname + '?action=info', - _('Get Info', formatted=False))) + _('Infos', formatted=False))) add(self.subscribeLink(page)) add(self.quicklinkLink(page)) add(self.actionsMenu(page))