1
This code was taken from
2
http://code.google.com/p/django-basic-apps
4
It is in the widelands repository, because it will see some modifications
5
over time. It is a simple enough blog to get us started.
7
Following, the original Readme:
9
===========================================
11
http://code.google.com/p/django-basic-apps/
12
===========================================
14
A simple blog application for Django projects.
16
To install this app, simply create a folder somewhere in
17
your PYTHONPATH named 'basic' and place the 'blog'
18
app inside. Then add 'basic.blog' to your projects
19
INSTALLED_APPS list in your settings.py file.
23
* [http://www.djangoproject.com/documentation/add_ons/#comments Django Comments]
24
* [http://code.google.com/p/django-tagging Django Tagging]
25
* [http://www.djangoproject.com/documentation/add_ons/#markup Markup]
26
* [http://www.crummy.com/software/BeautifulSoup/ BeautifulSoup] - only if you want to use the [http://code.google.com/p/django-basic-blog/wiki/BlogInlinesProposal render_inlines] filter, otherwise it's not necessary.