X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/10510d28f980e9a61bdd2b5471e78eec872952ba..ae60b2a3949e96357477cc04f90fd0873cee8a92:/apps/api/urls.py diff --git a/apps/api/urls.py b/apps/api/urls.py deleted file mode 100644 index d6f0dbf91..000000000 --- a/apps/api/urls.py +++ /dev/null @@ -1,22 +0,0 @@ -# -*- coding: utf-8 -*- -from django.conf.urls.defaults import * -from piston.resource import Resource -from piston.authentication import OAuthAuthentication - -from api.handlers import BookHandler - - -auth = OAuthAuthentication(realm="Wolne Lektury") -book_resource = Resource(handler=BookHandler, authentication=auth) - - -urlpatterns = patterns('', - url(r'^books/(?P[^/]+)\.(?Pxml|json|yaml)$', book_resource), - url(r'^books\.(?Pxml|json|yaml)$', book_resource), - -) + 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'), -)