~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to news/README.txt

  • Committer: Holger Rapp
  • Date: 2009-02-21 18:24:02 UTC
  • Revision ID: sirver@kallisto.local-20090221182402-k3tuf5c4gjwslbjf
Main Page contains now the same informations as before

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
This code was taken from
 
2
http://code.google.com/p/django-basic-apps
 
3
 
 
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.
 
6
 
 
7
Following, the original Readme:
 
8
 
 
9
===========================================
 
10
Django Basic Blog
 
11
http://code.google.com/p/django-basic-apps/
 
12
===========================================
 
13
 
 
14
A simple blog application for Django projects.
 
15
 
 
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.
 
20
 
 
21
=== Dependancies ===
 
22
 * Basic Inlines
 
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.