pylowiki
pylowiki
About Pylowiki
.. contents:: Sections
Pylowiki’s Primary Objective
.. 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.
What does the name Pylowiki mean?
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 _
def wiki( wik-ee ):
A collaborative website whose content can be edited by anyone who has
access to it.
. . . more about wiki _
def Pylowiki( pahy - loh - wik-ee ):
A wiki built using the Pylons framework.
- Pylo wiki
- Pile-O-wiki
- Pile of wiki
What mark-up does Pylowiki use?
Pylowiki uses
reStructured Text (reST) _
as its wiki mark-up.
How does Pylowiki render mark-up for real-time preview?
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:
- Users get feedback before they save changes.
- Users do not have to leave the article to make a change, they may
edit while the browse.
- It is faster and leads to less consecutive edits by the same user.
- Its fun and futuristic!
I’d like to help, what could I do?
Thank you! Take a look at the todo list _ 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
Where can I get the sourcecode?
Yes, Pylowiki is opensourced. The hg mercurial repository is located at:
- http://bitbucket.org/russellballestrini/pylowiki
Installation and Setup
1. Setup a working pylons virtualenv, review the pylons wiki to get
started.
http://pylonshq.com/docs/en/1.0/gettingstarted/
2. Acquire the Pylowiki source::
hg clone ssh://hg@bitbucket.org/russellballestrini/pylowiki
3. Navigate to the pylowiki directory and create a config file as
follows::
paster make-config Pylowiki config.ini
4. Tweak the config file as appropriate and then setup the
application::
paster setup-app config.ini
5. Test the install by running the dev paste server::
paster serve –reload config.ini
6. Navigate a browser to http://127.0.0.1:5000