File: moin.py

package info (click to toggle)
moin 1.9.9-1%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 76,024 kB
  • sloc: python: 143,896; java: 10,704; php: 2,385; perl: 1,574; xml: 371; makefile: 214; sh: 81; sed: 5
file content (25 lines) | stat: -rwxr-xr-x 757 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env python
# -*- coding: iso-8859-1 -*-
"""
    MoinMoin - "moin" is the main script command and calls other stuff as
    a sub-command.

    Usage: moin cmdmodule cmdname [options]

    @copyright: 2006 MoinMoin:ThomasWaldmann
    @license: GNU GPL, see COPYING for details.
"""

def run():
    from MoinMoin.script import MoinScript
    MoinScript().run(showtime=0)

if __name__ == "__main__":
    # Insert the path to MoinMoin in the start of the path
    import sys, os
    # we use position 1 (not 0) to give a config dir inserted at 0 a chance
    # beware: we have a wikiconfig.py at the toplevel directory in the branch
    sys.path.insert(1, os.path.abspath(os.path.join(os.path.dirname(sys.argv[0]), os.pardir, os.pardir)))

    run()