.. contents:: Sections
.. pull-quote:: “Users are able to browse, search, edit, preview, and submit all from the same page!”
The original goal of Pylowiki was to create an advanced same page, section edit and preview, wiki solution. We succeeded!
Users are able to search, browse, and view articles. If they see a problem or something they wish to make an addition, they may edit and save changes on the same page.
During the edit, a preview of the result will be displayed real-time and in place.
Users can see how the page will look before submitting.
The name Pylowiki is a portmanteau of the words Pylons and wiki. To define Pylowiki we must first define Pylons and wiki.
def Pylons( pahy-lons ):
Pylons is a light-weight python web framework emphasizing flexibility and rapid development.
. . . more about Pylons <http://pylonshq.com/>_
def wiki( wik-ee ):
A collaborative website whose content can be edited by anyone who has access to it.
. . . more about wiki <http://en.wikipedia.org/wiki/Wiki>_
def Pylowiki( pahy - loh - wik-ee ):
A wiki built using the Pylons framework.
Pylowiki uses
reStructured Text (reST) <http://docutils.sourceforge.net/docs/user/rst/quickref.html>_
as its wiki mark-up.
Pylowiki uses ajax to send reST mark-up to the web server. The web server accepts reST and converts it to HTML. The HTML is sent back to the browser and appears on the page in place and in real-time!
Why is real-time preview important? ```````````````````````````````````````````` Real-time preview of the users wiki mark-up is important because of the following reasons:
Thank you! Take a look at the todo list </todo>_
and see about implementing something.
You can also usability test, bug test, feature test Pylowiki.
Bitbucket.org allows repository branching and merging. I will review all submissions and patches and intergrate into the main branch.
IRC irc.freenode.net Channel #pylowiki
Yes, Pylowiki is opensourced. The hg mercurial repository is located at:
Setup a working pylons virtualenv, review the pylons wiki to get started.
http://pylonshq.com/docs/en/1.0/gettingstarted/
Acquire the Pylowiki source::
hg clone ssh://hg@bitbucket.org/russellballestrini/pylowiki
Navigate to the pylowiki directory and create a config file as follows::
paster make-config Pylowiki config.ini
Tweak the config file as appropriate and then setup the application::
paster setup-app config.ini
Test the install by running the dev paste server::
paster serve –reload config.ini
Navigate a browser to http://127.0.0.1:5000