-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPKG-INFO
216 lines (148 loc) · 7.89 KB
/
PKG-INFO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
Metadata-Version: 1.1
Name: django-wysiwyg-redactor
Version: 0.5.1
Summary: django-wysiwyg-redactor is a lightweight responsive wysiwyg editor for Django
Home-page: https://github.com/douglasmiranda/django-wysiwyg-redactor
Author: Douglas Miranda
Author-email: [email protected]
License: MIT
Description: A lightweight wysiwyg editor for Django
=======================================
Screenshot
----------
.. image:: https://raw.githubusercontent.com/douglasmiranda/django-wysiwyg-redactor/master/screenshots/redactor.jpg
What's that
-----------------
*django-wysiwyg-redactor* is a text editor application for Django, using `Redactor WYSIWYG editor <https://imperavi.com/redactor/>`_
Dependency
----------
- `Pillow or PIL` # for image upload
Getting started
---------------
- Install *django-wysiwyg-redactor*:
``pip install django-wysiwyg-redactor``
- Add `'redactor'` to INSTALLED_APPS.
.. code-block:: python
INSTALLED_APPS = (
# ...
'redactor',
# ...
)
- Add `url(r'^redactor/', include('redactor.urls'))`, to urls.py
.. code-block:: python
urlpatterns = [
# ...
url(r'^redactor/', include('redactor.urls')),
# ...
]
- Add default config in settings.py
.. code-block:: python
REDACTOR_OPTIONS = {'lang': 'en'}
REDACTOR_UPLOAD = 'uploads/'
More `redactor settings <http://imperavi.com/redactor/docs/settings/>`_.
Using in model
--------------
.. code-block:: python
from django.db import models
from redactor.fields import RedactorField
class Entry(models.Model):
title = models.CharField(max_length=250, verbose_name=u'Title')
short_text = RedactorField(verbose_name=u'Text')
or use custom parameters:
.. code-block:: python
short_text = RedactorField(
verbose_name=u'Text',
redactor_options={'lang': 'en', 'focus': True},
upload_to='tmp/',
allow_file_upload=True,
allow_image_upload=True
)
Using only in Django Admin
--------------------------
.. code-block:: python
from django import forms
from redactor.widgets import RedactorEditor
from blog.models import Entry
class EntryAdminForm(forms.ModelForm):
class Meta:
model = Entry
widgets = {
'short_text': RedactorEditor(),
}
class EntryAdmin(admin.ModelAdmin):
form = EntryAdminForm
`RedactorEditor` takes the same parameters as `RedactorField`.
Using Plugins
-------------
`Download <http://imperavi.com/redactor/plugins/>`_ the plugin you want or `create a custom plugin <http://imperavi.com/redactor/docs/how-to-create-plugin/>`_.
Then:
.. code-block:: python
from django.db import models
from redactor.fields import RedactorField
class Entry(models.Model):
title = models.CharField(max_length=250, verbose_name=u'Title')
short_text = RedactorField(
verbose_name=u'Text',
# for example, if you downloaded the 'table' plugin:
redactor_options={'plugins': ['table']}
)
OR (on settings.py):
.. code-block:: python
REDACTOR_OPTIONS = {'lang': 'en', 'plugins': ['table']}
Important: if you set a plugin called "table", you must create/paste the "table.js" on **YOUR_STATIC_FILES_FOLDER/redactor/plugins/table.js**
Upload Handlers
---------------
SimpleUploader - The Standard Uploader. Will upload your file to REDACTOR_UPLOAD.
UUIDUploader - This handler will replace the original file name for an UUID.
DateDirectoryUploader - This handler saves the file in a directory based on the current server date.
Usage:
For example, if I want to use the DateDirectoryUploader handler, I will put this on settings.py:
.. code-block:: python
REDACTOR_UPLOAD_HANDLER = 'redactor.handlers.DateDirectoryUploader'
Upload permissions
------------------
By default django-wysiwyg-redactor uses `staff_member_required` decorator from
`django.contrib.admin.views.decorators` package to control access to dispatch
method.
To use custom authentication decorator, set `REDACTOR_AUTH_DECORATOR` to
anything else, eg. if every authenticated user should have permissions to
upload files/images/etc.:
.. code-block:: python
REDACTOR_AUTH_DECORATOR = 'django.contrib.auth.decorators.login_required'
File Storages
-------------
*django-wysiwyg-redactor* defaults to using the default media storage for your Django application.
This can be overridden to use a different storage backend with this settings.py variable:
.. code-block::
REDACTOR_FILE_STORAGE = 'my_site.file_storages.StorageClass'
Information on writing a custom storage backend is `here in the Django documentation <https://docs.djangoproject.com/en/1.7/howto/custom-file-storage/>`_.
Other third-party libraries exist to provide storage backends for cloud object storages (e.g. `django-cumulus <https://github.com/django-cumulus/django-cumulus/>`_ for Rackspace/OpenStack or `django-storages <http://django-storages.readthedocs.org/en/latest/backends/amazon-S3.html>`_ for Amazon S3). For example, following should be enough to store all your files and images to Amazon S3, even if the rest of the application uses different storage.
.. code-block:: python
REDACTOR_FILE_STORAGE = 'storages.backends.s3boto.S3BotoStorage'
AWS_ACCESS_KEY_ID = '...'
AWS_SECRET_ACCESS_KEY = '...'
AWS_STORAGE_BUCKET_NAME = '...'
NOTE: Soon we will have a better documentation.
Contributing
------------
1. Fork it!
2. Create your feature branch: `git checkout -b my-new-feature`
3. Commit your changes: `git commit -am 'Add some feature'`
4. Push to the branch: `git push origin my-new-feature`
5. Submit a pull request =]
Made by robots, or what?
------------------------
Awesome people, you should see the `AUTHORS <https://github.com/douglasmiranda/django-wysiwyg-redactor/blob/master/AUTHORS>`_ file.
About the licensing
-------------------
You may want to see the `LICENSE <https://github.com/douglasmiranda/django-wysiwyg-redactor/blob/master/LICENSE>`_ file.
Keywords: django,admin,wysiwyg,editor,redactor,redactorjs
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3