Mercurial > moin > 1.9
view MoinMoin/macro/StatsChart.py @ 0:77665d8e2254
tag of nonpublic@localhost--archive/moin--enterprise--1.5--base-0
(automatically generated log message)
imported from: moin--main--1.5--base-0
author | Thomas Waldmann <tw-public@gmx.de> |
---|---|
date | Thu, 22 Sep 2005 15:09:50 +0000 |
parents | |
children | 54d5932d5a03 |
line wrap: on
line source
# -*- coding: iso-8859-1 -*- """ MoinMoin - StatsChart Macro This macro creates charts from the data in "event.log". @copyright: 2002-2004 by Jürgen Hermann <jh@web.de> @license: GNU GPL, see COPYING for details. """ from MoinMoin.util import pysupport Dependencies = ["time24:00"] def execute(macro, args, **kw): _ = macro.request.getText formatter = macro.request.formatter if not args: return (formatter.sysmsg(1) + formatter.text(_('You need to provide a chart type!')) + formatter.sysmsg(0)) func = pysupport.importName("MoinMoin.stats." + args, "linkto") if not func: return (formatter.sysmsg(1) + formatter.text(_('Bad chart type "%s"!') % args) + formatter.sysmsg(0)) return func(macro.formatter.page.page_name, macro.request)