This is a Python package providing the agglomeration of the necessary
TiddlyWeb and TiddlyWiki plugins constituting the TiddlyWebWiki vertical:

   A collaborative wiki environment using TiddlyWeb and TiddlyWiki.
   http://tiddlyweb.peermore.com/wiki/#TiddlyWebWiki

Note that this adds an "instance" command to twanager which creates a
TiddlyWeb instance preconfigured with a tiddlywebconfig.py, client-side
plugins and default bag policies.
(There is no default user for the ADMIN role used in those policies.)

To invoke the instance command from any directory, use twanager's --load option:

    twanager --load tiddlywebwiki.config instance <directory>


Requires:

  wikklytextrender
    TiddlyWeb plugin that renders tiddlywiki syntax to HTML, using
    wikklytext.
    Available at:
    http://github.com/tiddlyweb/tiddlyweb-plugins/tree/master/wikklytextrender
  wikklytext
    Python package for parsing TiddlyWiki markup.
    Available via easy_install.
  BeautifulSoup
    Parser for HTML, used to read TiddlyWiki documents.
    Available via easy_install.

If tiddlywebwiki is installed as a Python package via easy_install,
BeautifulSoup, wikklytext and wikklytextrender and status are inluded
automatically.

If you are installing from source run:

    python setup.py install

In a TiddlyWeb instance in which you want to use tiddlywebwiki to
tiddlywebconfig.py add:

config = {
        'system_plugins': ['tiddlywebwiki'],
        'twanager_plugins': ['tiddlywebwiki'],
        }

(This is included in the default tiddlywebconfig.py generated by
twanager instance.)
