1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-27 06:43:46 +00:00
2008-07-25 15:38:11 +00:00

9 lines
163 B
Python

from django.conf.urls.defaults import *
from scrapyorg.download.views import *
urlpatterns = patterns('',
(r"^(?P<link_id>\d+)/toggle/$", toggle_public),
)