~ubuntu-branches/ubuntu/natty/moin/natty-updates

« back to all changes in this revision

Viewing changes to MoinMoin/action/showtags.py

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2008-06-22 21:17:13 UTC
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: james.westby@ubuntu.com-20080622211713-inlv5k4eifxckelr
ImportĀ upstreamĀ versionĀ 1.7.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
from MoinMoin.wikisync import TagStore
14
14
 
15
15
def execute(pagename, request):
16
 
    request.mimetype = "text/plain"
 
16
    mimetype = "text/plain"
 
17
 
 
18
    request.emit_http_headers(["Content-Type: %s; charset=%s" % (mimetype, config.charset)])
17
19
 
18
20
    page = Page(request, pagename)
19
21
    tags = TagStore(page)