Mercurial > moin > 1.9
view MoinMoin/action/refresh.py @ 1918:bb2e053067fb
fixing copyright headers: remove umlauts (encoding troubles), make epydoc compatible, reformat
author | Thomas Waldmann <tw AT waldmann-edv DOT de> |
---|---|
date | Tue, 27 Mar 2007 21:07:33 +0200 |
parents | ed44b93599b5 |
children | 40acd13fb3d6 |
line wrap: on
line source
# -*- coding: iso-8859-1 -*- """ MoinMoin - refresh cache of a page @copyright: 2000-2004 Juergen Hermann <jh@web.de>, 2006 MoinMoin:ThomasWaldmann @license: GNU GPL, see COPYING for details. """ from MoinMoin.Page import Page def execute(pagename, request): """ Handle refresh action """ # Without arguments, refresh action will refresh the page text_html cache. arena = request.form.get('arena', ['Page.py'])[0] if arena == 'Page.py': arena = Page(request, pagename) key = request.form.get('key', ['text_html'])[0] # Remove cache entry (if exists), and send the page from MoinMoin import caching caching.CacheEntry(request, arena, key, scope='item').remove() caching.CacheEntry(request, arena, "pagelinks", scope='item').remove() request.page.send_page()