X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/357027375ff8867f42ca34bcbfb5a78b5b185fc3..d5e836566b0bbff5242de33acc264ca94ad11f49:/src/basicauth.py diff --git a/src/basicauth.py b/src/basicauth.py index befcc6fe7..3635727c4 100644 --- a/src/basicauth.py +++ b/src/basicauth.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- ############################################################################# # from http://djangosnippets.org/snippets/243/ @@ -7,8 +8,8 @@ import base64 from django.http import HttpResponse from django.contrib.auth import authenticate, login -# -def view_or_basicauth(view, request, test_func, realm = "", *args, **kwargs): + +def view_or_basicauth(view, request, test_func, realm="", *args, **kwargs): """ This is a helper function used by 'logged_in_or_basicauth' and 'has_perm_or_basicauth' (deleted) that does the nitty of determining if they @@ -47,7 +48,7 @@ def view_or_basicauth(view, request, test_func, realm = "", *args, **kwargs): # -def logged_in_or_basicauth(realm = ""): +def logged_in_or_basicauth(realm=""): """ A simple decorator that requires a user to be logged in. If they are not logged in the request is examined for a 'authorization' header.