X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/145e56d0df5162f8b57574e5b5656c6354274280..3d1fb545dd1f49e0624d3adf20e5568b1c33d8ec:/apps/api/urls.py diff --git a/apps/api/urls.py b/apps/api/urls.py index eb2df8c5b..536454f2f 100644 --- a/apps/api/urls.py +++ b/apps/api/urls.py @@ -1,36 +1,20 @@ # -*- coding: utf-8 -*- from django.conf.urls.defaults import * from piston.resource import Resource -#from piston.authentication import HttpBasicAuthentication -#from api.handlers import BookHandler, TagHandler from api import handlers -#auth = OAuthAuthentication(realm='API') -#book_changes_resource = Resource(handler=handlers.BookChangesHandler) -#tag_changes_resource = Resource(handler=handlers.TagChangesHandler)#, authentication=auth) +book_changes_resource = Resource(handler=handlers.BookChangesHandler) +tag_changes_resource = Resource(handler=handlers.TagChangesHandler) changes_resource = Resource(handler=handlers.ChangesHandler) urlpatterns = patterns('', - #url(r'^book_changes/(?P\d*(\.\d*)?)\.(?Pxml|json|yaml)$', book_changes_resource), - #url(r'^tag_changes/(?P\d*(\.\d*)?)\.(?Pxml|json|yaml)$', tag_changes_resource), - url(r'^changes/(?P\d*(\.\d*)?)\.(?Pxml|json|yaml)$', changes_resource), + url(r'^book_changes/(?P\d*?)\.(?Pxml|json|yaml)$', book_changes_resource), + url(r'^tag_changes/(?P\d*?)\.(?Pxml|json|yaml)$', tag_changes_resource), + url(r'^changes/(?P\d*?)\.(?Pxml|json|yaml)$', changes_resource), - #url(r'^books/(?P[\d,]+)\.(?Pxml|json|yaml)$', book_resource), - #url(r'^books\.(?Pxml|json|yaml)$', book_resource), - #url(r'^tags/(?P[a-zA-Z0-9-/]*)\.(?Pxml|json|yaml)$', tag_resource), - #url(r'^lektura/(?P[a-zA-Z0-9-]+)\.(?Pxml|json|yaml)$', book_resource), #detail - #url(r'^lektura/(?P[a-zA-Z0-9-]+)/motyw/(?P[a-zA-Z0-9-]+)\.(?Pxml|json|yaml)$', book_resource), #fragments - #url(r'^oauth/callback/$','oauth_callback'), + url(r'book/(?P\d*?)/info\.html$', 'catalogue.views.book_info'), + url(r'tag/(?P\d*?)/info\.html$', 'catalogue.views.tag_info'), ) - -""" -urlpatterns += patterns( -'piston.authentication', - url(r'^oauth/request_token/$','oauth_request_token'), - url(r'^oauth/authorize/$','oauth_user_auth'), - url(r'^oauth/access_token/$','oauth_access_token'), -) -"""