comparison gpp/oembed/urls.py @ 574:ddd69a8e07c7

For Django 1.4, use django.conf.urls instead of django.conf.urls.defaults.
author Brian Neal <bgneal@gmail.com>
date Thu, 03 May 2012 20:45:16 -0500
parents 72fd300685d5
children
comparison
equal deleted inserted replaced
573:bcc4e8cf841b 574:ddd69a8e07c7
1 """ 1 """
2 URLs for the oembed application. 2 URLs for the oembed application.
3 """ 3 """
4 from django.conf.urls.defaults import * 4 from django.conf.urls import patterns, url
5 5
6 urlpatterns = patterns('oembed.views', 6 urlpatterns = patterns('oembed.views',
7 url(r'^fetch/$', 'fetch_media', name='oembed-fetch_media'), 7 url(r'^fetch/$', 'fetch_media', name='oembed-fetch_media'),
8 url(r'^fetch_saved/$', 'fetch_saved_media', name='oembed-fetch_saved_media'), 8 url(r'^fetch_saved/$', 'fetch_saved_media', name='oembed-fetch_saved_media'),
9 ) 9 )