#!/usr/bin/env python
"""
mkwiki - make a wiki instance

Usage: mkwiki options

Options:
    --path          - where to create the wiki directory (default .)
    --sitename      - the wiki sitename (default MyWiki)
    --data          - path to the data dir (defalt 'mywiki/data')
    --underlay      - path to underlay dir (default 'mywiki/underlay')
    --user          - owner of the wiki (default 'www-data')
    --group         - group of the wiki (default 'www-data')
    --prefix        - the prefix used in the install (default '/usr')
    --server        - type of server to use. Options are cgi,
                      standalone, twisted, modpy, fastcgi.
                      (default standalone)
    --moin          - path to moin (default none)
    --wikiconfig    - path to wiki config (default none)
    --farmconfig    - path to farmconfig (default none)

Examples:
    
    mkwiki
        
        Creates a wiki named MyWiki in './mywiki/', copy into it 
        data and underlay directories from '/usr/share/moin/', add
        'wikiconfig.py' from '/usr/share/moin/config/' and 'moin.py'
        from '/usr/share/moin/server/'.
"""