/usr/share/doc/python-django-auth-ldap-doc/html/index.html is in python-django-auth-ldap-doc 1.4.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Django Authentication Using LDAP — django-auth-ldap 1.4.0 documentation</title>
<link rel="stylesheet" href="_static/classic.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '1.4.0',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true,
SOURCELINK_SUFFIX: '.txt'
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
<link rel="next" title="Installation" href="install.html" />
</head>
<body>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="install.html" title="Installation"
accesskey="N">next</a> |</li>
<li class="nav-item nav-item-0"><a href="#">django-auth-ldap 1.4.0 documentation</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<div class="section" id="django-authentication-using-ldap">
<h1>Django Authentication Using LDAP<a class="headerlink" href="#django-authentication-using-ldap" title="Permalink to this headline">¶</a></h1>
<p>This is a Django authentication backend that authenticates against an LDAP
service. Configuration can be as simple as a single distinguished name template,
but there are many rich configuration options for working with users, groups,
and permissions.</p>
<ul class="simple">
<li>Repository: <a class="reference external" href="https://bitbucket.org/illocution/django-auth-ldap">https://bitbucket.org/illocution/django-auth-ldap</a></li>
<li>Documentation: <a class="reference external" href="https://django-auth-ldap.readthedocs.io/">https://django-auth-ldap.readthedocs.io/</a></li>
<li>Mailing list: <a class="reference external" href="https://groups.google.com/group/django-auth-ldap">https://groups.google.com/group/django-auth-ldap</a></li>
</ul>
<p>This version is supported on Python 2.7 and 3.4+; and Django 1.11+. It requires
<a class="reference external" href="https://pypi.python.org/pypi/python-ldap">python-ldap</a> >= 3.0.</p>
<div class="toctree-wrapper compound">
<ul>
<li class="toctree-l1"><a class="reference internal" href="install.html">Installation</a></li>
<li class="toctree-l1"><a class="reference internal" href="authentication.html">Authentication</a><ul>
<li class="toctree-l2"><a class="reference internal" href="authentication.html#server-config">Server Config</a></li>
<li class="toctree-l2"><a class="reference internal" href="authentication.html#search-bind">Search/Bind</a></li>
<li class="toctree-l2"><a class="reference internal" href="authentication.html#direct-bind">Direct Bind</a></li>
<li class="toctree-l2"><a class="reference internal" href="authentication.html#customizing-authentication">Customizing Authentication</a></li>
<li class="toctree-l2"><a class="reference internal" href="authentication.html#notes">Notes</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="groups.html">Working With Groups</a><ul>
<li class="toctree-l2"><a class="reference internal" href="groups.html#types-of-groups">Types of Groups</a></li>
<li class="toctree-l2"><a class="reference internal" href="groups.html#finding-groups">Finding Groups</a></li>
<li class="toctree-l2"><a class="reference internal" href="groups.html#limiting-access">Limiting Access</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="users.html">User objects</a><ul>
<li class="toctree-l2"><a class="reference internal" href="users.html#populating-users">Populating Users</a></li>
<li class="toctree-l2"><a class="reference internal" href="users.html#easy-attributes">Easy Attributes</a></li>
<li class="toctree-l2"><a class="reference internal" href="users.html#updating-users">Updating Users</a></li>
<li class="toctree-l2"><a class="reference internal" href="users.html#direct-attribute-access">Direct Attribute Access</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="permissions.html">Permissions</a><ul>
<li class="toctree-l2"><a class="reference internal" href="permissions.html#using-groups-directly">Using Groups Directly</a></li>
<li class="toctree-l2"><a class="reference internal" href="permissions.html#group-mirroring">Group Mirroring</a></li>
<li class="toctree-l2"><a class="reference internal" href="permissions.html#non-ldap-users">Non-LDAP Users</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="multiconfig.html">Multiple LDAP Configs</a></li>
<li class="toctree-l1"><a class="reference internal" href="logging.html">Logging</a></li>
<li class="toctree-l1"><a class="reference internal" href="performance.html">Performance</a></li>
<li class="toctree-l1"><a class="reference internal" href="example.html">Example Configuration</a></li>
<li class="toctree-l1"><a class="reference internal" href="reference.html">Reference</a><ul>
<li class="toctree-l2"><a class="reference internal" href="reference.html#settings">Settings</a></li>
<li class="toctree-l2"><a class="reference internal" href="reference.html#module-django_auth_ldap">Module Properties</a></li>
<li class="toctree-l2"><a class="reference internal" href="reference.html#module-django_auth_ldap.config">Configuration</a></li>
<li class="toctree-l2"><a class="reference internal" href="reference.html#module-django_auth_ldap.backend">Backend</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="changes.html">Change Log</a><ul>
<li class="toctree-l2"><a class="reference internal" href="changes.html#cleanup-and-fixes">1.4.0 - 2018-03-22 - Cleanup and fixes</a></li>
<li class="toctree-l2"><a class="reference internal" href="changes.html#various-improvements-and-cleanup">1.3.0 - 2017-11-20 - Various improvements and cleanup</a></li>
<li class="toctree-l2"><a class="reference internal" href="changes.html#minor-fixes">1.2.16 - 2017-09-30 - Minor fixes</a></li>
<li class="toctree-l2"><a class="reference internal" href="changes.html#documentation-improvements">1.2.15 - 2017-08-17 - Documentation improvements</a></li>
<li class="toctree-l2"><a class="reference internal" href="changes.html#user-dn-caching">1.2.14 - 2017-07-24 - User DN caching</a></li>
<li class="toctree-l2"><a class="reference internal" href="changes.html#selective-group-mirroring">1.2.13 - 2017-06-19 - Selective group mirroring</a></li>
<li class="toctree-l2"><a class="reference internal" href="changes.html#complex-group-queries">1.2.12 - 2017-05-20 - Complex group queries</a></li>
<li class="toctree-l2"><a class="reference internal" href="changes.html#testing-and-debugging-cleanup">1.2.11 - 2017-04-22 - Testing and debugging cleanup</a></li>
<li class="toctree-l2"><a class="reference internal" href="changes.html#fix-python-ldap-incompatibility">1.2.9 - 2017-02-14 - Fix python-ldap incompatibility</a></li>
<li class="toctree-l2"><a class="reference internal" href="changes.html#auth-ldap-user-attrlist">1.2.8 - 2016-04-18 - AUTH_LDAP_USER_ATTRLIST</a></li>
<li class="toctree-l2"><a class="reference internal" href="changes.html#python-3">1.2.7 - 2015-09-29 - Python 3</a></li>
<li class="toctree-l2"><a class="reference internal" href="changes.html#id8">1.2.6 - 2015-03-29</a></li>
<li class="toctree-l2"><a class="reference internal" href="changes.html#id9">1.2.5 - 2015-01-30</a></li>
<li class="toctree-l2"><a class="reference internal" href="changes.html#nisnetgroup-support">1.2.4 - 2014-12-28 - nisNetgroup support</a></li>
<li class="toctree-l2"><a class="reference internal" href="changes.html#id10">1.2.3 - 2014-11-18</a></li>
<li class="toctree-l2"><a class="reference internal" href="changes.html#id12">1.2.2 - 2014-09-22</a></li>
<li class="toctree-l2"><a class="reference internal" href="changes.html#id13">1.2.1 - 2014-08-24</a></li>
<li class="toctree-l2"><a class="reference internal" href="changes.html#id14">1.2 - 2014-04-10</a></li>
<li class="toctree-l2"><a class="reference internal" href="changes.html#id15">1.1.8 - 2014-02-01</a></li>
<li class="toctree-l2"><a class="reference internal" href="changes.html#id17">1.1.7 - 2013-11-19</a></li>
<li class="toctree-l2"><a class="reference internal" href="changes.html#id18">1.1.5 - 2013-10-25</a></li>
<li class="toctree-l2"><a class="reference internal" href="changes.html#id20">1.1.4 - 2013-03-09</a></li>
<li class="toctree-l2"><a class="reference internal" href="changes.html#id21">1.1.3 - 2013-01-05</a></li>
</ul>
</li>
</ul>
</div>
<div class="section" id="license">
<h2>License<a class="headerlink" href="#license" title="Permalink to this headline">¶</a></h2>
<p>Copyright (c) 2009, Peter Sagerson
All rights reserved.</p>
<p>Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:</p>
<ul class="simple">
<li>Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.</li>
<li>Redistributions in binary form must reproduce the above copyright notice, this
list of conditions and the following disclaimer in the documentation and/or
other materials provided with the distribution.</li>
</ul>
<p>THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</p>
</div>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
<div class="sphinxsidebarwrapper">
<h3><a href="#">Table Of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">Django Authentication Using LDAP</a><ul>
<li><a class="reference internal" href="#license">License</a></li>
</ul>
</li>
</ul>
<h4>Next topic</h4>
<p class="topless"><a href="install.html"
title="next chapter">Installation</a></p>
<div role="note" aria-label="source link">
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="_sources/index.rst.txt"
rel="nofollow">Show Source</a></li>
</ul>
</div>
<div id="searchbox" style="display: none" role="search">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
<div><input type="text" name="q" /></div>
<div><input type="submit" value="Go" /></div>
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="install.html" title="Installation"
>next</a> |</li>
<li class="nav-item nav-item-0"><a href="#">django-auth-ldap 1.4.0 documentation</a> »</li>
</ul>
</div>
<div class="footer" role="contentinfo">
© Copyright 2018, Peter Sagerson.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.6.7.
</div>
</body>
</html>
|