| | 1 | = Home of Django Blog = |
| | 2 | |
| | 3 | This project is a yet another simple blog. There are many like it, but this one is mine. |
| | 4 | |
| | 5 | Example usage in your sites' urls.py file: |
| | 6 | {{{ |
| | 7 | (r'^', include('blog.urls')), |
| | 8 | }}} |
| | 9 | |
| | 10 | == Version 1.1 Features == |
| | 11 | |
| | 12 | * Comment moderation added, controlled by the following variables in a sites settings.py: |
| | 13 | * BLOG_COMMENTS_CLOSE_AFTER = <# days after which comments are closed> |
| | 14 | * BLOG_COMMENTS_MODERATE_AFTER = <# days after which comments are moderated> |
| | 15 | * BLOG_COMMENTS_EMAIL_NOTIFICATION = True/False |
| | 16 | * You must use the new admin include or the default templates will not work. |
| | 17 | * Entry and author pages now show edit links that allow direct editing of the element via the admin interface. |
| | 18 | * Draft entries show the word 'Draft' in their headline during the preview. |
| | 19 | * BLOG_PAGINATE_ENTRY_LIST controls the number of pages show in the entry_list page, default is 10. |
| | 20 | |
| | 21 | |
| | 22 | == Download Release == |
| | 23 | * [http://code.photodwarf.org/downloads/python/django-blog/django-blog-1.1.tar.gz 1.1] Jan 24 2010 |
| | 24 | |