Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ojii/cmsplugin-blog
https://github.com/ojii/cmsplugin-blog
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ojii/cmsplugin-blog
- Owner: ojii
- Created: 2011-01-11T13:14:13.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2011-01-13T17:11:46.000Z (almost 14 years ago)
- Last Synced: 2024-04-15T00:40:44.351Z (7 months ago)
- Language: Python
- Homepage:
- Size: 256 KB
- Stars: 1
- Watchers: 3
- Forks: 46
- Open Issues: 0
-
Metadata Files:
- Readme: README.txt
Awesome Lists containing this project
README
BETA
Name: cmsplugin-blog
Description: A blog plugin for django-cms
Download: http://bitbucket.org/fivethreeo/cmsplugin-blog/Features:
- multilanguage posts
- editing of content using django cms plugins
- plugin for django cms for showing latest entries
- feeds for languages / tagsRequires:
- django-cms 2.1Setup
- make sure requirements are installed and properly working
pip install -e git+https://github.com/divio/django-cms.git#egg=django-cms # until a stable hits pypi
pip install cmsplugin_blog # should do it
- follow install for django-cms http://django-cms.readthedocs.org/
- add 'cmsplugin_blog' to INSTALLED_APPS
- for multilanguage posts :
add 'cms.middleware.multilingual.MultilingualURLMiddleware'
add 'simple_translation.middleware.MultilingualGenericsMiddleware'
to MIDDLEWARE_CLASSES
- run 'python manage.py syncdb'
- create a page in cms and in the 'Advanced settings' section of the admin for that page for 'Application' select 'Blog Apphook'
Do this for each language you want to show posts in.
(Restart of the server required due to caching!)