Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(3) | Call(2) | Derive(0) | Import(1)
src/b/o/boar-HEAD/boar/urls.py boar(Download)
from django.http import HttpResponse from boar.articles.feeds import ArticlesFeed, SectionFeed, TopicFeed, UserFeed from boar.articles.models import Section, Article from boar.articles.views import *
url(r'^feed/featured/$', ArticlesFeed(featured=True), name='articles_feed_featured'), # TODO: Put these in SectionView url(r'^(?P<slug>[-\w]+)/feed/$', SectionFeed(), name='articles_feed_section'), url(r'^(?P<slug>[-\w]+)/feed/featured/$', SectionFeed(featured=True), name='articles_feed_section_featured'), url(r'^(?P<section_slug>[-\w]+)/(?P<topic_slug>[-\w\+]+)/feed/$',