public
Description: A Blog App for Django.
Homepage:
Clone URL: git://github.com/sykora/djournal.git
name age message
file .gitignore Thu Jun 18 00:02:08 -0700 2009 Introduced typogrify, and restructured text. Cu... [sykora]
file README.rst Sat Jun 27 20:28:05 -0700 2009 Updated README. [sykora]
file __init__.py Tue Jun 23 03:33:56 -0700 2009 Implemented comment moderation with akismet sup... [sykora]
file admin.py Fri Oct 02 21:28:56 -0700 2009 Added subtitle field to entries. [sykora]
directory conf/ Sun Sep 20 20:34:03 -0700 2009 Removed extraneous settings, and renamed others. [sykora]
file context_processors.py Wed Jun 24 04:41:58 -0700 2009 Implemented basic application-specific settings. [sykora]
file feeds.py Mon Oct 05 05:26:41 -0700 2009 Removed hard coding of feed attributes, moved t... [sykora]
file managers.py Sat May 30 03:02:19 -0700 2009 Forgot I was still in python 2.x. [sykora]
file models.py Fri Oct 02 21:28:56 -0700 2009 Added subtitle field to entries. [sykora]
file moderators.py Sun Jul 26 03:36:08 -0700 2009 Implemented templated email for comment notific... [sykora]
file sitemaps.py Sat Jun 27 20:28:29 -0700 2009 Removed debugging information in sitemaps.py. [sykora]
file tests.py Fri May 29 21:55:40 -0700 2009 Initial Commit. [sykora]
directory urls/ Mon Oct 05 05:26:08 -0700 2009 Added names to feed url patterns. [sykora]
file views.py Mon Sep 28 21:18:31 -0700 2009 Updated for changed naming convention. [sykora]
README.rst

Djournal

Djournal is a blog application for Django written by P.C. Shyamshankar.

Installation Instructions

  • Add "djournal" to your INSTALLED_APPS.
  • Add "djournal.context_processors.djournal_settings" to your TEMPLATE_CONTEXT_PROCESSORS list.
  • Add "django.contrib.flatpages.middleware.FlatpageFallbackMiddleware" to your MIDDLEWARE_CLASSES.
  • If you want Akismet or Typepad Anti-Spam protection for your comments, make sure either AKISMET_API_KEY or TYPEPAD_ANTISPAM_API_KEY is set.

Required Modules

These are thing you'll need to add to your INSTALLED_APPS list.

From django.contrib, we have:

  • django.contrib.comments
  • django.contrib.humanize
  • django.contrib.syndication
  • django.contrib.sitemaps
  • django.contrib.flatpages

Third party stuff:

  • typogrify Web typography.
  • rip (ReST in Peace) Restructured Text Formatter (Optional.)
  • django-tagging
  • akismet antispam service API bindings (Optional.) (Not in INSTALLED_APPS)