Mercurial > moin > 1.9
view MoinMoin/action/bookmark.py @ 4109:e88baf535b48
fix backup action configuration (broke on windows due to backslashes in e.g. cache_dir), try 2.
cfg.backup_exclude is now just a function of filename, telling whether the file should be excluded.
By default, no file is excluded.
author | Thomas Waldmann <tw AT waldmann-edv DOT de> |
---|---|
date | Fri, 19 Sep 2008 21:41:40 +0200 |
parents | 74f42592c7a0 |
children | 40acd13fb3d6 |
line wrap: on
line source
# -*- coding: iso-8859-1 -*- """ MoinMoin - set or delete bookmarks (in time) for RecentChanges @copyright: 2000-2004 by Juergen Hermann <jh@web.de>, 2006 by MoinMoin:ThomasWaldmann @license: GNU GPL, see COPYING for details. """ import time from MoinMoin import wikiutil from MoinMoin.Page import Page def execute(pagename, request): """ set bookmarks (in time) for RecentChanges or delete them """ _ = request.getText if not request.user.valid: actname = __name__.split('.')[-1] request.theme.add_msg(_("You must login to use this action: %(action)s.") % {"action": actname}, "error") return Page(request, pagename).send_page() timestamp = request.form.get('time', [None])[0] if timestamp is not None: if timestamp == 'del': tm = None else: try: tm = int(timestamp) except StandardError: tm = wikiutil.timestamp2version(time.time()) else: tm = wikiutil.timestamp2version(time.time()) if tm is None: request.user.delBookmark() else: request.user.setBookmark(tm) request.page.send_page()