Skip to content

Commit

Permalink
Back to development 2.0.0.dev0
Browse files Browse the repository at this point in the history
  • Loading branch information
Rémy HUBSCHER committed Jul 23, 2015
1 parent f80966c commit 724b4eb
Show file tree
Hide file tree
Showing 39 changed files with 13,584 additions and 4,867 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Changelog
#########

This document describes changes between each past release.


2.0.0 (unreleased)
==================

* Starts supporting Django 1.8
35 changes: 24 additions & 11 deletions README.md → README.rst
Original file line number Diff line number Diff line change
@@ -1,31 +1,39 @@
django-tinymce
===
==============

**django-tinymce** is a Django application that contains a widget to render a form field as a TinyMCE editor.

Quickstart:
===
Quickstart
==========

Install django-tinymce:

.. code-block::
$ pip install django-tinymce
Add tinymce to INSTALLED_APPS in settings.py for your project:

.. code-block::
INSTALLED_APPS = (
...
'tinymce',
)
Add tinymce.urls to urls.py for your project:

.. code-block::
urlpatterns = patterns('',
...
(r'^tinymce/', include('tinymce.urls')),
)
In your code:

.. code-block::
from django.db import models
from tinymce.models import HTMLField
Expand All @@ -35,17 +43,22 @@ In your code:
**django-tinymce** uses staticfiles so everything should work as expected, different use cases (like using widget instead of HTMLField) and other stuff is available in documentation.

Documentation:
===
Documentation
=============

http://django-tinymce.readthedocs.org/

Support and updates:
===
You can contact me directly at [email protected], track updates at https://twitter.com/maljosa or use github issues.
Be persistent and bug me, I often find myself lost in time so ping me if you're still waiting for me to answer.
Support and updates
===================

You can contact me directly at [email protected], track
updates at https://twitter.com/maljosa or use github issues. Be
persistent and bug me, I often find myself lost in time so ping me if
you're still waiting for me to answer.

License
=======

License (and related information):
===
Originally written by Joost Cassee.

This program is licensed under the MIT License (see LICENSE.txt)
Binary file added docs/.build/doctrees/environment.pickle
Binary file not shown.
Binary file added docs/.build/doctrees/history.doctree
Binary file not shown.
Binary file added docs/.build/doctrees/index.doctree
Binary file not shown.
Binary file added docs/.build/doctrees/installation.doctree
Binary file not shown.
Binary file added docs/.build/doctrees/usage.doctree
Binary file not shown.
4 changes: 2 additions & 2 deletions docs/.build/html/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 263f8d28b751e09777a05c53837d8831
tags: fbb0d17656682115ca4d033fb2f83ba1
config: 7b9e4e4e46e2cbd3472bbf0248c4d433
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file added docs/.build/html/_static/ajax-loader.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 724b4eb

Please sign in to comment.