Cloud Wiki was implemented as a response to the lack of Python wiki servers that
are intended to run as an individual server process and provide functionality to
meet its designer's needs.
Cloud Wiki's nodes are stored in a sqlite database, and served using python's
BaseHTTPServer, running as a long lived application service. Wiki markup is a
simple unobtrusive dialect, providing free linking, images, tables, unordered
lists and preformatted text blocks. Rendered content data is stored in the
database, along with content change information, to improve server response times.
Cloud Wiki supports user authentication, but does not ...