Skip to content

pombredanne/djpcms

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Djpcms is a dynamic Content Management System which uses Python on the server side and Javascript with jQuery on the browser side. It is designed to handle dynamic applications requiring high level of customization. Lots of AJAX enabled features including inline editing, autocomplete, ajax forms, dynamic tables and more. It works with Python 2.6 and up including python 3 series. Djpcms does not use any template specific language, it uses Python alone to render on the server side.

Web

http://djpcms.com/

Documentation

http://djpcms.com/docs/

Dowloads

http://pypi.python.org/pypi/djpcms/

Source

http://github.com/lsbardel/djpcms

Keywords

web, cms, dynamic, ajax, python, jquery

Contents

Features

  • Dynamic pages based on database models or not.
  • Applications based on database model or not.
  • Extendible using plugins.
  • Inline editing of plugins and pages.
  • Move plugins in page using drag-and-drop functionalities.
  • Font icons from Fontawesome.
  • Autocomplete functionality.
  • DataTables integration.
  • Extendible AJAX decorators.
  • Several battery included application classes.
  • Extendible form layouts.
  • Sitemap design.

Installing

You can download the latest archive from pypi, uncompress and:

python setup.py install

Otherwise you can use pip:

pip install djpcms

Version Check

To check the version:

>>> import djpcms
>>> djpcms.__version__
'0.9.0'
>>> djpcms.get_version()
'0.9.0'

Running tests

On the top level directory type:

python runtests.py

For options in running tests type:

python runtests.py --help

Tests can also be run for specific tags, For a list of tags type:

python runtests.py --list

To access coverage of tests you need to install the coverage package and run the tests using:

coverage run runtests.py

and to check out the coverage report:

coverage report -m

Requirements

The core library requires pulsar.

Kudos

Djpcms includes several open-source libraries and plugins developed by other authors and communities:

  • jQuery core and UI are the building block.
  • jQuery form plugin for AJAX forms.
  • jQuery DataTables plugin for managing dynamic tables.
  • Fontawesome for font icons.