Skip to main content

A Django application that contains a widget to render a form field with a WYMEditor interface.

Project description

A Django application that contains a widget to render a form field with a WYMEditor interface.

Requirements

Currently integration with django-filebrowser or django-bfm is hard-coded in. This will be fixed in a future version. For now, make sure you have django- filebrowser installed and included in your INSTALLED_APPS, and that one of the following is in your URLconf:

# For django-filebrowser

urlpatterns += patterns('',
    (r'^admin/filebrowser/', include('filebrowser.urls'))
)


# For django-bfm

# Hack for WYMEditor hardcoded link URL... :-(
from django.views.generic import RedirectView
urlpatterns += patterns('',
    url(r'^admin/filebrowser/browse/', RedirectView.as_view(url="/admin/files/")),
    url(r'^admin/files/', include('django_bfm.urls'))
)

With that, you should have full filebrowser integration w/ WYMEditor.

Project details


Release history Release notifications | RSS feed

This version

1.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-wymeditor-1.0.tar.gz (163.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page