annotate smiley/urls.py @ 907:344f7914d421

Add scheme=https to oembed request. YouTube added this so you could get HTML that used https to embed the video. It seems that Vimeo also supports it.
author Brian Neal <bgneal@gmail.com>
date Sun, 15 Mar 2015 21:48:33 -0500
parents ee87ea74d46b
children 5ba2508939f7
rev   line source
bgneal@12 1 """
bgneal@12 2 Urls for the Smiley application.
bgneal@12 3 """
bgneal@12 4
bgneal@574 5 from django.conf.urls import patterns, url
bgneal@12 6
bgneal@12 7 urlpatterns = patterns('smiley.views',
bgneal@12 8 url(r'^farm/$', 'farm', name='smiley-farm'),
bgneal@123 9 url(r'^farm/extra/$', 'farm', kwargs={'extra': True}, name='smiley-farm_extra'),
bgneal@12 10 )