Metadata-Version: 2.0
Name: djangocms-revealjs
Version: 0.3
Summary: django CMS plugin to create reveal.js presentations
Home-page: https://github.com/nephila/djangocms-revealjs
Author: Iacopo Spalletti
Author-email: i.spalletti@nephila.it
License: BSD
Keywords: djangocms-revealjs,django CMS,reveal.js,django
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Requires-Dist: cmsplugin-filer
Requires-Dist: django-cms (>=3.0)
Requires-Dist: django-filer
Requires-Dist: djangocms-text-ckeditor

==================
djangocms-revealjs
==================

.. image:: https://badge.fury.io/py/djangocms-revealjs.png
    :target: https://badge.fury.io/py/djangocms-revealjs

.. image:: http://img.shields.io/pypi/dm/djangocms-page-tags.png
        :target: https://pypi.python.org/pypi/djangocms-page-meta


django CMS plugin to create reveal.js presentations

**Still Experimental and largely undocumented**


Quickstart
----------

Install djangocms-revealjs::

    pip install djangocms-revealjs

Then add it to INSTALLED_APPS along with its dependencies::

    'filer',
    'djangocms_revealjs',

Download and install `reveal.js`_ in your django CMS project.

Features
--------

Provides four django CMS plugins to edit Reveal.JS presentations:

Slide (RevealSlidePlugin)
+++++++++++++++++++++++++

This is the plugin to insert normal slides.

It supports settings transitions, background color and images, markdown syntax.

Container (RevealSlidesContainer)
+++++++++++++++++++++++++++++++++

Containers allow to nest slides in a vertical way.

Only slides can be put in a container; only one-level of container is supported.

Slide fragment (RevealFragmentPlugin)
+++++++++++++++++++++++++++++++++++++

Fragments allow to display part of a slide progressively. This plugin handles
inline fragments (i.e.: like `span` elements).

Block slide fragment (RevealBlockFragmentPlugin)
++++++++++++++++++++++++++++++++++++++++++++++++

This plugin is equal to the above, but renders block fragments
(i.e.: like `div` elements).

Dependencies
------------

* `django-filer`_ >= 0.9.5

.. _django-filer: https://pypi.python.org/pypi/django-filer
.. _reveal.js: http://lab.hakim.se/reveal-js/



History
-------

0.3.0 (2016-09-10)
++++++++++++++++++

* Allow RevealCodePlugin/RevealNotePlugin in RevealSlidePlugin
* Add reveal.js sources

0.2.0 (2015-11-02)
++++++++++++++++++

* Add django 1.7 support
* Minor enhancements

0.1.1 (2015-09-13)
++++++++++++++++++

* Provide better title
* Minor fixes

0.1.0 (2014-04-27)
++++++++++++++++++

* First release on PyPI.

