From afa3e1633431137f4e76c7efc359b579f4d9c08e Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Wed, 6 Feb 2013 08:23:18 -0500 Subject: [PATCH] Fixed #19743 - Documented some limitations of contrib.auth. Thanks Aymeric for the suggestion. --- docs/topics/auth/index.txt | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/topics/auth/index.txt b/docs/topics/auth/index.txt index ddb2d2f992..8447d449ce 100644 --- a/docs/topics/auth/index.txt +++ b/docs/topics/auth/index.txt @@ -37,6 +37,14 @@ The auth system consists of: * Forms and view tools for logging in users, or restricting content * A pluggable backend system +The authentication system in Django aims to be very generic and doesn't provide +some features commonly found in web authentication systems. Solutions for some +of these common problems have been implemented in third-party packages: + +* Password strength checking +* Throttling of login attempts +* Authentication against third-parties (OAuth, for example) + Installation ============