annotate gpp/oembed/urls.py @ 490:f0f3966ea44f

For #233, switched to asynchronous loading of the social media sharing javascript. Also switched to Facebook's javascript SDK instead of using an iframe for the like/share button.
author Brian Neal <bgneal@gmail.com>
date Thu, 20 Oct 2011 00:36:37 +0000
parents 72fd300685d5
children ddd69a8e07c7
rev   line source
bgneal@285 1 """
bgneal@285 2 URLs for the oembed application.
bgneal@285 3 """
bgneal@285 4 from django.conf.urls.defaults import *
bgneal@285 5
bgneal@285 6 urlpatterns = patterns('oembed.views',
bgneal@285 7 url(r'^fetch/$', 'fetch_media', name='oembed-fetch_media'),
bgneal@286 8 url(r'^fetch_saved/$', 'fetch_saved_media', name='oembed-fetch_saved_media'),
bgneal@285 9 )