Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Django 1.9 not support url data #145

Closed
kurkop opened this issue Dec 9, 2015 · 5 comments
Closed

Django 1.9 not support url data #145

kurkop opened this issue Dec 9, 2015 · 5 comments

Comments

@kurkop
Copy link

kurkop commented Dec 9, 2015

This error occurs when I add: url(r'^tinymce/', include('tinymce.urls')) to urls.py (urlpatterns).

urlpatterns = [
    url(r'^admin/', admin.site.urls),
    url(r'^$', views.home, name='home'),
    url(r'^tinymce/', include('tinymce.urls')),
]
/usr/local/lib/python3.4/site-packages/tinymce/urls.py:10: RemovedInDjango110Warning: Support for string view arguments to url() is deprecated and will be removed in Django 1.10 (got textareas_js). Pass the callable instead.
  url(r'^js/textareas/(?P<name>.+)/$', 'textareas_js', name='tinymce-js'),

/usr/local/lib/python3.4/site-packages/tinymce/urls.py:11: RemovedInDjango110Warning: Support for string view arguments to url() is deprecated and will be removed in Django 1.10 (got textareas_js). Pass the callable instead.
  url(r'^js/textareas/(?P<name>.+)/(?P<lang>.*)$', 'textareas_js', name='tinymce-js-lang'),

/usr/local/lib/python3.4/site-packages/tinymce/urls.py:12: RemovedInDjango110Warning: Support for string view arguments to url() is deprecated and will be removed in Django 1.10 (got spell_check). Pass the callable instead.
  url(r'^spellchecker/$', 'spell_check'),

/usr/local/lib/python3.4/site-packages/tinymce/urls.py:13: RemovedInDjango110Warning: Support for string view arguments to url() is deprecated and will be removed in Django 1.10 (got flatpages_link_list). Pass the callable instead.
  url(r'^flatpages_link_list/$', 'flatpages_link_list'),

/usr/local/lib/python3.4/site-packages/tinymce/urls.py:14: RemovedInDjango110Warning: Support for string view arguments to url() is deprecated and will be removed in Django 1.10 (got compressor). Pass the callable instead.
  url(r'^compressor/$', 'compressor', name='tinymce-compressor'),

/usr/local/lib/python3.4/site-packages/tinymce/urls.py:15: RemovedInDjango110Warning: Support for string view arguments to url() is deprecated and will be removed in Django 1.10 (got filebrowser). Pass the callable instead.
  url(r'^filebrowser/$', 'filebrowser', name='tinymce-filebrowser'),

/usr/local/lib/python3.4/site-packages/tinymce/urls.py:16: RemovedInDjango110Warning: Support for string view arguments to url() is deprecated and will be removed in Django 1.10 (got preview). Pass the callable instead.
  url(r'^preview/(?P<name>.+)/$', 'preview', name='tinymce-preview'),

/usr/local/lib/python3.4/site-packages/tinymce/urls.py:16: RemovedInDjango110Warning: django.conf.urls.patterns() is deprecated and will be removed in Django 1.10. Update your urlpatterns to be a list of django.conf.urls.url() instances instead.
  url(r'^preview/(?P<name>.+)/$', 'preview', name='tinymce-preview'),
@hugodes
Copy link
Contributor

hugodes commented Dec 12, 2015

+1

Is fixed in PR to the tinymce4 branch, would be nice to have it on master too:
b06ec54 @akx

@jccode
Copy link

jccode commented Dec 23, 2015

+1

@Natim
Copy link
Collaborator

Natim commented Dec 23, 2015 via email

@hugodes
Copy link
Contributor

hugodes commented Dec 23, 2015

@Natim made a pull request to master : #148 . I hope it was the right branch to do so. Please tell me if otherwise

@Natim
Copy link
Collaborator

Natim commented Dec 23, 2015

Released with in django-tinymce 2.1.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants