Sophisticated blogging engine for Django-powered sites
Project description
django-articles is the blog engine that I use on codekoala.com
Features
========
* Tags for articles, with a tag cloud template tag
* Ability to post in the future
* Article expiration facilities
* Allows articles to be written in plain text/HTML or using Markdown, ReStructured Text, or Textile markup
* Related articles
* Follow-up articles
* Disqus comments
* Article archive, with pagination
* Internationalization-ready
* Detects links in articles and creates a per-article index for you
* Word count
* RSS feeds for the latest articles
* RSS feeds for the latest articles by tag
Requirements
============
``django-articles`` wants a modern version of Django--something after 1.1. It used to rely on ``django.contrib.comments`` for commenting needs, but I recently switched to `Disqus <http://www.disqus.com/>`_. Included herein is a management command to convert ``django.contrib.comments`` comments to Disqus.
This project also expects ``django.contrib.sites``, ``django.contrib.admin``, ``django.contrib.markup``, ``django.contrib.auth``, ``django.contrib.humanize``, and ``django.contrib.syndication`` to be properly installed.
Installation
============
Download ``django-articles`` using *one* of the following methods:
Checkout from Mercurial
-----------------------
{{{
hg clone http://django-articles.googlecode.com/hg/ django-articles
hg clone http://bitbucket.org/codekoala/django-articles/
}}}
Configuration
=============
First of all, you must add this project to your list of ``INSTALLED_APPS`` in ``settings.py``:
{{{
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.humanize',
'django.contrib.markup',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.syndication',
...
'articles',
...
)
}}}
Run ``manage.py syncdb``. This creates a few tables in your database that are necessary for operation.
Next, set a couple of settings in your ``settings.py``:
* ``DISQUS_USER_API_KEY``: Your user API key from Disqus. This is free, and you can learn how to get it from `Disqus's API Page <http://2ze.us/ME>`_ or you can try http://disqus.com/api/get_my_key/ when you're logged into Disqus. You only need this one if you're going to be converting comments from ``django.contrib.comments`` to Disqus.
* ``DISQUS_FORUM_SHORTNAME``: set this to ``True`` if you want to see markers on the map
When that's done, you should be able to begin using ``django-articles``!
Good luck! Please contact me with any questions or concerns you have with the project!
Features
========
* Tags for articles, with a tag cloud template tag
* Ability to post in the future
* Article expiration facilities
* Allows articles to be written in plain text/HTML or using Markdown, ReStructured Text, or Textile markup
* Related articles
* Follow-up articles
* Disqus comments
* Article archive, with pagination
* Internationalization-ready
* Detects links in articles and creates a per-article index for you
* Word count
* RSS feeds for the latest articles
* RSS feeds for the latest articles by tag
Requirements
============
``django-articles`` wants a modern version of Django--something after 1.1. It used to rely on ``django.contrib.comments`` for commenting needs, but I recently switched to `Disqus <http://www.disqus.com/>`_. Included herein is a management command to convert ``django.contrib.comments`` comments to Disqus.
This project also expects ``django.contrib.sites``, ``django.contrib.admin``, ``django.contrib.markup``, ``django.contrib.auth``, ``django.contrib.humanize``, and ``django.contrib.syndication`` to be properly installed.
Installation
============
Download ``django-articles`` using *one* of the following methods:
Checkout from Mercurial
-----------------------
{{{
hg clone http://django-articles.googlecode.com/hg/ django-articles
hg clone http://bitbucket.org/codekoala/django-articles/
}}}
Configuration
=============
First of all, you must add this project to your list of ``INSTALLED_APPS`` in ``settings.py``:
{{{
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.humanize',
'django.contrib.markup',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.syndication',
...
'articles',
...
)
}}}
Run ``manage.py syncdb``. This creates a few tables in your database that are necessary for operation.
Next, set a couple of settings in your ``settings.py``:
* ``DISQUS_USER_API_KEY``: Your user API key from Disqus. This is free, and you can learn how to get it from `Disqus's API Page <http://2ze.us/ME>`_ or you can try http://disqus.com/api/get_my_key/ when you're logged into Disqus. You only need this one if you're going to be converting comments from ``django.contrib.comments`` to Disqus.
* ``DISQUS_FORUM_SHORTNAME``: set this to ``True`` if you want to see markers on the map
When that's done, you should be able to begin using ``django-articles``!
Good luck! Please contact me with any questions or concerns you have with the project!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-articles-1.5.tar.gz
(18.9 kB
view details)
File details
Details for the file django-articles-1.5.tar.gz
.
File metadata
- Download URL: django-articles-1.5.tar.gz
- Upload date:
- Size: 18.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0e39c0bc48125185591025370f027a4eff54f42eea76f75ba982db4d7a0d16af |
|
MD5 | c3df31c39945690104e5cf727671fe86 |
|
BLAKE2b-256 | d479721879e7766bfffb1c9d85d7f6dfc5febd83f554c8f7a0d457cbe090fbee |