-paginate_re = r'(?:before/(?P<before>[a-z0-9-]+)/)?(?:after/(?P<after>[a-z0-9-]+)/)?(?:count/(?P<count>[0-9]+)/)?$'
-
-
-@ssi_included
-def incl(request, model, pk, emitter_format):
- resource = {
- 'book': book_list_resource,
- 'fragment': fragment_list_resource,
- 'tag': tag_list_resource,
- }[model]
- request.piwik_track = False
- resp = resource(request, pk=pk, emitter_format=emitter_format)
- if emitter_format == 'xml':
- # Ugly, but quick way of stripping <?xml?> header and <response> tags.
- resp.content = resp.content[49:-11]
- return resp
-
-
-urlpatterns = patterns(
- 'piston.authentication',
- url(r'^oauth/request_token/$', 'oauth_request_token'),
- url(r'^oauth/authorize/$', 'oauth_user_auth'),
+paginate_re = r'(?:after/(?P<after>[a-z0-9-]+)/)?(?:count/(?P<count>[0-9]+)/)?$'
+
+
+urlpatterns = [
+ url(r'^oauth/request_token/$', oauth_request_token),
+ url(r'^oauth/authorize/$', oauth_user_auth, name='oauth_user_auth'),