Mercurial > moin > 1.9
changeset 16:9c868ac2ccc6
Added support for edit by doubleclick in the diff view.
imported from: moin--main--1.5--patch-17
author | Alexander Schremmer <alex@alexanderweb.de.tla> |
---|---|
date | Fri, 23 Sep 2005 21:39:41 +0000 |
parents | 5a2a8201bb6f |
children | 3ef174b732c6 |
files | MoinMoin/wikiaction.py docs/CHANGES |
diffstat | 2 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/MoinMoin/wikiaction.py Fri Sep 23 20:02:07 2005 +0000 +++ b/MoinMoin/wikiaction.py Fri Sep 23 21:39:41 2005 +0000 @@ -106,7 +106,7 @@ request.setContentLanguage(request.lang) request.http_headers() - wikiutil.send_title(request, _('Diff for "%s"') % (pagename,), pagename=pagename) + wikiutil.send_title(request, _('Diff for "%s"') % (pagename,), pagename=pagename, allow_doubleclick=1) if (rev1>0 and rev2>0 and rev1>rev2) or (rev1==0 and rev2>0): rev1,rev2 = rev2,rev1
--- a/docs/CHANGES Fri Sep 23 20:02:07 2005 +0000 +++ b/docs/CHANGES Fri Sep 23 21:39:41 2005 +0000 @@ -40,6 +40,7 @@ of the interwiki map. * moved save/preview/... buttons to the top so that they can be easily reached * reduced edit_rows default to 20 lines + * Added support for edit by doubleclick in the diff view * Improved wiki farm support * make user files sharable between several wikis in a farm