nshah / django-blog-entries
- Source
- Commits
- Network (2)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Wed Jan 28 18:10:52 -0800 2009 | |
| |
README.markdown | Sun Feb 08 17:37:32 -0800 2009 | |
| |
__init__.py | Thu Aug 21 16:53:38 -0700 2008 | |
| |
admin.py | Sun Feb 08 17:37:32 -0800 2009 | |
| |
context_processors.py | Thu Aug 21 16:53:38 -0700 2008 | |
| |
feeds.py | Sun Feb 08 12:57:00 -0800 2009 | |
| |
managers.py | Sun Feb 08 12:57:00 -0800 2009 | |
| |
models.py | Sun Feb 08 17:37:32 -0800 2009 | |
| |
sitemap.py | Sat Aug 30 21:12:56 -0700 2008 | |
| |
templatetags/ | Mon Apr 13 21:54:13 -0700 2009 | |
| |
tests.py | Sun Feb 08 12:57:00 -0800 2009 | |
| |
urls.py | Thu Apr 16 23:51:45 -0700 2009 |
README.markdown
Blog Entries
A generic Blog application with too many features:
Features
- Live/Draft/Hidden Entries
- Uses Generic List and Date views
- Future Entries are hidden until the date arrives
- Uses comment-utils for Moderation/Akismet integration
- Uses django-tagging
- Uses django-translatable-model for Language specific Models
- Uses django.contrib.sitemaps
- Uses django.contrib.sites
- Uses django.contrib.syndication.feeds for latest/tag based feeds
- Uses django.utils.translation
- Uses template-utils for formatting support
Dependencies
- django (trunk)
- django-admin-manager-monkey - to allow specifying the manager for admin
- django-comment-utils
- django-tagging
- django-template-utils
- django-translatable-model
Optional
Settings
BLOG_ENTRIES_FEED_TITLE
The title for use with feeds.
BLOG_ENTRIES_BODY_WIDGET
Optional. Can be used to specify a Widget for the Body field in the Admin interface. django-rte-widgets provides some widgets which can be used here. For example:
BLOG_ENTRIES_BODY_WIDGET = ('rte_widgets.yui.YuiTextarea', {'config': {'height': '400px', 'width': '700px', 'format': 'xhtml'}})
The setting must be a tuple of two elements, where the first is a resolved to a
callable using django's get_callable and the second is a dict which will be
passed to the callable as keyword arguments. This works with standard Widget
classes.
BLOG_ENTRIES_EXCERPT_WIDGET
Optional. Can be used to specify a Widget for the Excerpt field in the Admin interface.
BLOG_ENTRIES_PAGINATE_BY
The number of items to show per page. Defaults to 15.
BLOG_ENTRIES_COMMENTS_MODERATE_AFTER
Optional. The number of days after which comments will be closed on an Entry. The default is None which means never.
