Mercurial > public > sg101
annotate gpp/oembed/urls.py @ 333:0bf5a5677067
Import from future with_statement for Python 2.5 in import_old_links and podcasts scripts.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Fri, 25 Feb 2011 22:03:08 +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 ) |