view bns_website/urls.py @ 60:a0d3bc630ebd

For issue #8, create a videos application to randomize videos in the playlist. This commit now adds a dependency to the Google Python GData library. The admin enters a playlist URL in the admin. Then the admin uses an admin action to synchronize the playlist with YouTube. This reads the playlist title and retrieves the video list from YouTube. The view function reads all the playlist objects to get the complete list of videos, then shuffles them up. The template generates Javascript to create a YouTube player with the shuffled list. A fixture is included for convenience and for the tests. I also committed a test tool I wrote to prove out this idea in case it is useful for future enhancements or experimentation.
author Brian Neal <bgneal@gmail.com>
date Sat, 19 Nov 2011 14:19:00 -0600
parents 71f2beb03789
children 1b5def90f5bf
line wrap: on
line source
from django.conf.urls.defaults import patterns, include, url
from django.contrib import admin
from django.views.generic.base import TemplateView
from django.views.generic import ListView

from bands.models import Band
from news.models import News
from reviews.models import Review

admin.autodiscover()

urlpatterns = patterns('',
    url(r'^$',
        TemplateView.as_view(template_name="home.html"),
        name="home"),
    url(r'^reviews/$',
        ListView.as_view(model=Review),
        name="reviews"),
    url(r'^bands/$',
        ListView.as_view(model=Band),
        name="bands"),
    url(r'^news/$',
        ListView.as_view(model=News),
        name="news"),
    url(r'^listen/$',
        TemplateView.as_view(template_name="music.html"),
        name="music"),
    url(r'^watch/$', include('videos.urls')),
    url(r'^buy/$',
        TemplateView.as_view(template_name="buy.html"),
        name="buy"),
    url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
    url(r'^admin/', include(admin.site.urls)),
)