Mercurial > moin > 1.9
view MoinMoin/script/cli/show.py @ 3108:2572688e031a
improved moin script's builtin help function, thanks to Federico Lorenzi (ported from 1.6)
author | Thomas Waldmann <tw AT waldmann-edv DOT de> |
---|---|
date | Sat, 23 Feb 2008 23:40:48 +0100 |
parents | bb2e053067fb |
children | 3f8be25b79cc |
line wrap: on
line source
# -*- coding: iso-8859-1 -*- """ MoinMoin - cli show script @copyright: 2006 MoinMoin:ThomasWaldmann @license: GNU GPL, see COPYING for details. """ from MoinMoin.script import MoinScript class PluginScript(MoinScript): """\ Purpose: ======== Just run a CLI request and show the output. Detailed Instructions: ====================== General syntax: moin [options] cli show [options] usually should be: --config-dir=/path/to/my/cfg/ --wiki-url=wiki.example.org/ """ def __init__(self, argv, def_values): MoinScript.__init__(self, argv, def_values) def mainloop(self): self.init_request() self.request.run()