Django tCMS.
Project description
Django tCMS an easy to setup CMS that integrates easily with django-admin.
This project was brought to life by Matías Aguirre while hacking a CMS framework for Mydeco while working on Insophia.
Description
Sites with custom CMS systems usually relies on deployment to bring new pages layouts, and these new pages are created by us, developers. tCMS brings a new mechanism where new pages definitions can be defined using our favorite tool, python. With a set of building blocks pages are created easily once it’s structure is well defined.
Features
Dependencies
This application only depends on django-admin.
Installation
From pypi:
$ pip install django-tcms
or:
$ easy_install django-tcms
or clone from github:
$ git clone git://github.com/omab/django-tcms.git
and add tCMS to PYTHONPATH:
$ export PYTHONPATH=$PYTHONPATH:$(pwd)/tcms/
or:
$ cd tcms $ sudo python setup.py install
Configuration
Add tCMS to installed applications:
INSTALLED_APPS = ( ... 'tcms', )
Define where your pages are defined:
TCMS_PAGES = 'tcms_pages'
The application will import the modules inside and inspect anything that has a PAGE variable defined.
Define where images should be uploaded:
TCMS_IMAGES_UPLOAD_TO = 'cms/image/%Y/%m/%d'
This setting is used to populate a upload_to Django field parameter, so you can use any supported formats.
Define this setting if you have CKEditor installed and want it to be used while editing content:
TCMS_CKEDITOR_BASE_URL = '/media/js/ckeditor'
The application uses Django cache to store content to speed up loading the content when serving the content to users, by default the cache name is tcms, but you can override it by defining:
TCMS_CACHE_NAME = '...'
To enable page localizations, set this setting to True:
TCMS_LOCALIZED = True
Localization is disabled by default.
Define your settings with the extra name/values needed by your templates:
RENDER_EXTRA_CONTEXT = {...}
Localization
If your site support multiple languages, you will want to create pages on every language.
tCMS uses Django LANGUAGES when searching for supported languages, but allows you to create global language pages, for example if you support en-gb and en-us locales, it’s possible to define a page with locale en and it will be used to server the same content for users requesting for one or other locale.
Example proyect
Check the example to see how it works.
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
File details
Details for the file django-tcms-0.1.11.tar.gz
.
File metadata
- Download URL: django-tcms-0.1.11.tar.gz
- Upload date:
- Size: 92.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6ad6ea3d027c4739c04b03805c985983ebdb5ea6ee61d5a2901974522ec48edd |
|
MD5 | e5c073acfc1b31261f2820a02a012830 |
|
BLAKE2b-256 | c49548024a9e6769c702f736cabe76fb7a5492b798af4dc3416f2e59ecbd86a9 |