Attachment 'refresh.py'

Download

   1 # -*- coding: iso-8859-1 -*-
   2 """
   3     MoinMoin - refresh cache of a page
   4 
   5     @copyright: 2000-2004 Juergen Hermann <jh@web.de>,
   6                 2006 MoinMoin:ThomasWaldmann
   7     @license: GNU GPL, see COPYING for details.
   8 """
   9 from MoinMoin.Page import Page
  10 
  11 def execute(pagename, request):
  12     """ Handle refresh action """
  13     # Without arguments, refresh action will refresh the page text_html cache.
  14     arena = request.values.get('arena', 'Page.py')
  15     if arena == 'Page.py':
  16         arena = Page(request, pagename)
  17     key = request.values.get('key', 'text_html')
  18 
  19     # Remove cache entry (if exists), and send the page
  20     from MoinMoin import caching
  21     caching.CacheEntry(request, arena, key, scope='item').remove()
  22     caching.CacheEntry(request, arena, "pagelinks", scope='item').remove()
  23     #[IanRiley 2014-07-04] delete pdf created by PDF.py action
  24     caching.CacheEntry(request, arena, "text_pdf.pdf", scope='item').remove()
  25     request.page.send_page()

You are not allowed to attach a file to this page.