Mercurial > moin > 1.9
view MoinMoin/action/showtags.py @ 3572:870cc4c47705
AttachFile: fix saving of drawing files
author | Thomas Waldmann <tw AT waldmann-edv DOT de> |
---|---|
date | Sat, 10 May 2008 17:28:44 +0200 |
parents | bb2e053067fb |
children | 85884c67228d |
line wrap: on
line source
# -*- coding: iso-8859-1 -*- """ MoinMoin - "showtags" action This action shows all sync tags related to a specific page. @copyright: 2006 MoinMoin:AlexanderSchremmer @license: GNU GPL, see COPYING for details. """ from MoinMoin import config from MoinMoin.Page import Page from MoinMoin.wikisync import TagStore def execute(pagename, request): mimetype = "text/plain" request.emit_http_headers(["Content-Type: %s; charset=%s" % (mimetype, config.charset)]) page = Page(request, pagename) tags = TagStore(page) request.write(tags.dump())