/usr/share/pyshared/MoinMoin/action/refresh.py is in python-moinmoin 1.9.3-1ubuntu2.3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # -*- 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.values.get('arena', 'Page.py')
if arena == 'Page.py':
arena = Page(request, pagename)
key = request.values.get('key', 'text_html')
# 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()
|