FCK-connector
FCKeditor is a HMTL-WYSIWYG editor for most common browsers. Check out its demo
We have to fork django-fckconnector at September 2006, as far we haven't received any reply to our code-commits suggestions. This component takes care about media file uploads, renaming and browsing them online.
Download
Check out with Subversion: svn co http://django.org.ua/svn/plesonet_fckeditor/trunk/
README.txt
django.org.ua
FCK-editor connector to upload&browse media files.
1. add to your settings:
#--FCK connector
FCK_BASE_PATH = MEDIA_ROOT
FCK_BASE_URL = '/media/'
FCK_AUTH = True
FCK_CREATE_MONTH_DIR = True
2. connect to urls:
urlpatterns = patterns('',
(r'^fckeditor_connector/', include('apps.plesonet_fckeditor.urls')), )
3. use in admin models:
class EntryAdmin(admin.ModelAdmin):
class Media:
js = ( #relative path to MEDIA dir
'../media-admin/fckeditor/fckeditor.js', #FCK-editor itself
'../media-admin/js/admin/textareas.js', ) #script that replaces textareas with FCK
4. tune FCK settings in fckconfig.js
Roadmap
Since some changes in FCKeditor 2.6, in future versions we are going to:
- update to the latest API version
- integrate a new official Python connector
Attachments
-
fckeditor-demo.jpg
(22.6 KB) - added by 235
17 months ago.


