Skip to content

Commit

Permalink
FWIW: HTTPS everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
stroeder committed Aug 15, 2017
1 parent 09ec9c5 commit 8afd4c0
Show file tree
Hide file tree
Showing 73 changed files with 150 additions and 152 deletions.
4 changes: 2 additions & 2 deletions Build/build-openbsd/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $Id: Makefile,v 1.5 2014/11/18 08:28:48 stroeder Exp $
# $Id: Makefile,v 1.6 2017/08/15 16:21:58 stroeder Exp $

WRKDIST= ${.CURDIR}/../..
VERSION!= sh ${WRKDIST}/Build/version.sh
Expand All @@ -7,7 +7,7 @@ PKGNAME= python-ldap-${VERSION}
RUN_DEPENDS= python:lang/python
CATEGORIES= misc
MAINTAINER= leonard@users.sourceforge.net
HOMEPAGE= http://www.python-ldap.org/
HOMEPAGE= https://www.python-ldap.org/

FAKE= Yes
CONFIGURE_STYLE= gnu
Expand Down
2 changes: 1 addition & 1 deletion Demo/pyasn1/noopsearch.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""
Demo script for counting searching with OpenLDAP's no-op control
See http://www.python-ldap.org/ for project details.
See https://www.python-ldap.org/ for project details.
This needs the following software:
Python
pyasn1
Expand Down
2 changes: 1 addition & 1 deletion Demo/pyasn1/ppolicy.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
"""
Demo script for Password Policy Controls
(see http://tools.ietf.org/html/draft-behera-ldap-password-policy)
(see https://tools.ietf.org/html/draft-behera-ldap-password-policy)
This needs the following software:
Python
Expand Down
4 changes: 2 additions & 2 deletions Demo/pyasn1/psearch.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# -*- coding: utf-8 -*-
"""
Demo script for Persistent Search Control
(see http://tools.ietf.org/html/draft-ietf-ldapext-psearch)
(see https://tools.ietf.org/html/draft-ietf-ldapext-psearch)
See http://www.python-ldap.org/ for project details.
See https://www.python-ldap.org/ for project details.
This needs the following software:
Python
pyasn1
Expand Down
4 changes: 2 additions & 2 deletions Demo/pyasn1/sessiontrack.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"""
demo_track_ldap_session.py
Client-seitige Demo-Implementierung von Session Tracking Control
Client-side demo implementation of Session Tracking Control
http://tools.ietf.org/html/draft-wahl-ldap-session-03
https://tools.ietf.org/html/draft-wahl-ldap-session-03
"""

__version__ = '0.1'
Expand Down
4 changes: 2 additions & 2 deletions Lib/dsml.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
dsml - generate and parse DSMLv1 data
(see http://www.oasis-open.org/committees/dsml/)
See http://www.python-ldap.org/ for details.
See https://www.python-ldap.org/ for details.
$Id: dsml.py,v 1.59 2017/08/03 17:24:43 stroeder Exp $
$Id: dsml.py,v 1.60 2017/08/15 16:21:58 stroeder Exp $
Python compability note:
Tested with Python 2.0+.
Expand Down
4 changes: 2 additions & 2 deletions Lib/ldap/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""
ldap - base module
See http://www.python-ldap.org/ for details.
See https://www.python-ldap.org/ for details.
$Id: __init__.py,v 1.120 2017/08/03 17:24:43 stroeder Exp $
$Id: __init__.py,v 1.121 2017/08/15 16:21:58 stroeder Exp $
"""

# This is also the overall release version number
Expand Down
4 changes: 2 additions & 2 deletions Lib/ldap/async.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""
ldap.async - handle async LDAP operations
See http://www.python-ldap.org/ for details.
See https://www.python-ldap.org/ for details.
\$Id: async.py,v 1.34 2015/06/06 09:21:37 stroeder Exp $
\$Id: async.py,v 1.35 2017/08/15 16:21:58 stroeder Exp $
Python compability note:
Tested on Python 2.0+ but should run on Python 1.5.x.
Expand Down
4 changes: 2 additions & 2 deletions Lib/ldap/controls/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"""
controls.py - support classes for LDAP controls
See http://www.python-ldap.org/ for details.
See https://www.python-ldap.org/ for details.
$Id: __init__.py,v 1.10 2015/06/06 09:21:38 stroeder Exp $
$Id: __init__.py,v 1.11 2017/08/15 16:21:58 stroeder Exp $
Description:
The ldap.controls module provides LDAPControl classes.
Expand Down
4 changes: 2 additions & 2 deletions Lib/ldap/controls/deref.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
ldap.controls.deref - classes for
(see https://tools.ietf.org/html/draft-masarati-ldap-deref)
See http://www.python-ldap.org/ for project details.
See https://www.python-ldap.org/ for project details.
$Id: deref.py,v 1.3 2017/02/08 09:44:18 stroeder Exp $
$Id: deref.py,v 1.4 2017/08/15 16:21:58 stroeder Exp $
"""

__all__ = [
Expand Down
4 changes: 2 additions & 2 deletions Lib/ldap/controls/libldap.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
controls.libldap - LDAP controls wrapper classes with en-/decoding done
by OpenLDAP functions
See http://www.python-ldap.org/ for details.
See https://www.python-ldap.org/ for details.
$Id: libldap.py,v 1.3 2015/06/06 09:21:38 stroeder Exp $
$Id: libldap.py,v 1.4 2017/08/15 16:21:58 stroeder Exp $
"""

import _ldap,ldap
Expand Down
4 changes: 2 additions & 2 deletions Lib/ldap/controls/openldap.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"""
ldap.controls.openldap - classes for OpenLDAP-specific controls
See http://www.python-ldap.org/ for project details.
See https://www.python-ldap.org/ for project details.
$Id: openldap.py,v 1.6 2015/10/24 16:21:56 stroeder Exp $
$Id: openldap.py,v 1.7 2017/08/15 16:21:58 stroeder Exp $
"""

import ldap.controls
Expand Down
4 changes: 2 additions & 2 deletions Lib/ldap/controls/pagedresults.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
ldap.controls.paged - classes for Simple Paged control
(see RFC 2696)
See http://www.python-ldap.org/ for project details.
See https://www.python-ldap.org/ for project details.
$Id: pagedresults.py,v 1.2 2014/12/12 10:10:23 stroeder Exp $
$Id: pagedresults.py,v 1.3 2017/08/15 16:21:58 stroeder Exp $
"""

__all__ = [
Expand Down
6 changes: 3 additions & 3 deletions Lib/ldap/controls/ppolicy.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# -*- coding: utf-8 -*-
"""
ldap.controls.ppolicy - classes for Password Policy controls
(see http://tools.ietf.org/html/draft-behera-ldap-password-policy)
(see https://tools.ietf.org/html/draft-behera-ldap-password-policy)
See http://www.python-ldap.org/ for project details.
See https://www.python-ldap.org/ for project details.
$Id: ppolicy.py,v 1.4 2015/06/06 09:21:38 stroeder Exp $
$Id: ppolicy.py,v 1.5 2017/08/15 16:21:58 stroeder Exp $
"""

__all__ = [
Expand Down
6 changes: 3 additions & 3 deletions Lib/ldap/controls/psearch.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# -*- coding: utf-8 -*-
"""
ldap.controls.psearch - classes for Persistent Search Control
(see http://tools.ietf.org/html/draft-ietf-ldapext-psearch)
(see https://tools.ietf.org/html/draft-ietf-ldapext-psearch)
See http://www.python-ldap.org/ for project details.
See https://www.python-ldap.org/ for project details.
$Id: psearch.py,v 1.4 2011/07/22 13:47:47 stroeder Exp $
$Id: psearch.py,v 1.5 2017/08/15 16:21:58 stroeder Exp $
"""

__all__ = [
Expand Down
6 changes: 3 additions & 3 deletions Lib/ldap/controls/pwdpolicy.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# -*- coding: utf-8 -*-
"""
ldap.controls.pwdpolicy - classes for Password Policy controls
(see http://tools.ietf.org/html/draft-vchu-ldap-pwd-policy)
(see https://tools.ietf.org/html/draft-vchu-ldap-pwd-policy)
See http://www.python-ldap.org/ for project details.
See https://www.python-ldap.org/ for project details.
$Id: pwdpolicy.py,v 1.5 2015/10/24 15:55:07 stroeder Exp $
$Id: pwdpolicy.py,v 1.6 2017/08/15 16:21:58 stroeder Exp $
"""

__all__ = [
Expand Down
4 changes: 2 additions & 2 deletions Lib/ldap/controls/readentry.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
ldap.controls.readentry - classes for the Read Entry controls
(see RFC 4527)
See http://www.python-ldap.org/ for project details.
See https://www.python-ldap.org/ for project details.
$Id: readentry.py,v 1.5 2015/09/18 17:24:55 stroeder Exp $
$Id: readentry.py,v 1.6 2017/08/15 16:21:58 stroeder Exp $
"""

import ldap
Expand Down
4 changes: 2 additions & 2 deletions Lib/ldap/controls/sessiontrack.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
ldap.controls.sessiontrack - class for session tracking control
(see draft-wahl-ldap-session)
See http://www.python-ldap.org/ for project details.
See https://www.python-ldap.org/ for project details.
$Id: sessiontrack.py,v 1.5 2015/09/18 17:25:07 stroeder Exp $
$Id: sessiontrack.py,v 1.6 2017/08/15 16:21:58 stroeder Exp $
"""

from ldap.controls import RequestControl
Expand Down
4 changes: 2 additions & 2 deletions Lib/ldap/controls/simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"""
ldap.controls.simple - classes for some very simple LDAP controls
See http://www.python-ldap.org/ for details.
See https://www.python-ldap.org/ for details.
$Id: simple.py,v 1.10 2015/06/06 09:21:38 stroeder Exp $
$Id: simple.py,v 1.11 2017/08/15 16:21:58 stroeder Exp $
"""

import struct,ldap
Expand Down
4 changes: 2 additions & 2 deletions Lib/ldap/controls/sss.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
ldap.controls.sss - classes for Server Side Sorting
(see RFC 2891)
See http://www.python-ldap.org/ for project details.
See https://www.python-ldap.org/ for project details.
$Id: sss.py,v 1.3 2016/09/26 22:06:54 stroeder Exp $
$Id: sss.py,v 1.4 2017/08/15 16:21:58 stroeder Exp $
"""

__all__ = [
Expand Down
4 changes: 2 additions & 2 deletions Lib/ldap/controls/vlv.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
ldap.controls.vlv - classes for Virtual List View
(see draft-ietf-ldapext-ldapv3-vlv)
See http://www.python-ldap.org/ for project details.
See https://www.python-ldap.org/ for project details.
$Id: vlv.py,v 1.3 2015/07/07 12:46:31 stroeder Exp $
$Id: vlv.py,v 1.4 2017/08/15 16:21:58 stroeder Exp $
"""

__all__ = [
Expand Down
4 changes: 2 additions & 2 deletions Lib/ldap/dn.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""
dn.py - misc stuff for handling distinguished names (see RFC 4514)
See http://www.python-ldap.org/ for details.
See https://www.python-ldap.org/ for details.
\$Id: dn.py,v 1.16 2016/07/24 15:58:26 stroeder Exp $
\$Id: dn.py,v 1.17 2017/08/15 16:21:58 stroeder Exp $
Compability:
- Tested with Python 2.0+
Expand Down
4 changes: 2 additions & 2 deletions Lib/ldap/extop/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""
controls.py - support classes for LDAPv3 extended operations
See http://www.python-ldap.org/ for details.
See https://www.python-ldap.org/ for details.
\$Id: __init__.py,v 1.4 2011/07/22 13:27:02 stroeder Exp $
\$Id: __init__.py,v 1.5 2017/08/15 16:21:58 stroeder Exp $
Description:
The ldap.extop module provides base classes for LDAPv3 extended operations.
Expand Down
8 changes: 3 additions & 5 deletions Lib/ldap/extop/dds.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,9 @@
ldap.extop.dds - Classes for Dynamic Entries extended operations
(see RFC 2589)
This needs the following software:
Python
pyasn1
pyasn1-modules
python-ldap 2.4+
See https://www.python-ldap.org/ for details.
$Id: dds.py,v 1.3 2017/08/15 16:21:58 stroeder Exp $
"""

from ldap.extop import ExtendedRequest,ExtendedResponse
Expand Down
4 changes: 2 additions & 2 deletions Lib/ldap/filter.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""
filters.py - misc stuff for handling LDAP filter strings (see RFC2254)
See http://www.python-ldap.org/ for details.
See https://www.python-ldap.org/ for details.
\$Id: filter.py,v 1.11 2016/07/24 15:14:56 stroeder Exp $
\$Id: filter.py,v 1.12 2017/08/15 16:21:58 stroeder Exp $
Compability:
- Tested with Python 2.0+
Expand Down
4 changes: 2 additions & 2 deletions Lib/ldap/functions.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""
functions.py - wraps functions of module _ldap
See http://www.python-ldap.org/ for details.
See https://www.python-ldap.org/ for details.
\$Id: functions.py,v 1.33 2016/07/25 08:15:14 stroeder Exp $
\$Id: functions.py,v 1.34 2017/08/15 16:21:58 stroeder Exp $
Compability:
- Tested with Python 2.0+ but should work with Python 1.5.x
Expand Down
4 changes: 2 additions & 2 deletions Lib/ldap/ldapobject.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""
ldapobject.py - wraps class _ldap.LDAPObject
See http://www.python-ldap.org/ for details.
See https://www.python-ldap.org/ for details.
\$Id: ldapobject.py,v 1.163 2017/05/29 09:00:15 stroeder Exp $
\$Id: ldapobject.py,v 1.164 2017/08/15 16:21:58 stroeder Exp $
Compability:
- Tested with Python 2.0+ but should work with Python 1.5.x
Expand Down
4 changes: 2 additions & 2 deletions Lib/ldap/modlist.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""
ldap.modlist - create add/modify modlist's
See http://www.python-ldap.org/ for details.
See https://www.python-ldap.org/ for details.
$Id: modlist.py,v 1.18 2011/06/06 13:07:38 stroeder Exp $
$Id: modlist.py,v 1.19 2017/08/15 16:21:58 stroeder Exp $
Python compability note:
This module is known to work with Python 2.0+ but should work
Expand Down
4 changes: 2 additions & 2 deletions Lib/ldap/resiter.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""
ldap.resiter - processing LDAP results with iterators
See http://www.python-ldap.org/ for details.
See https://www.python-ldap.org/ for details.
\$Id: resiter.py,v 1.7 2015/09/18 20:20:32 stroeder Exp $
\$Id: resiter.py,v 1.8 2017/08/15 16:21:58 stroeder Exp $
Python compability note:
Requires Python 2.3+
Expand Down
4 changes: 2 additions & 2 deletions Lib/ldap/sasl.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""
sasl.py - support for SASL mechanism
See http://www.python-ldap.org/ for details.
See https://www.python-ldap.org/ for details.
\$Id: sasl.py,v 1.17 2015/06/06 09:21:38 stroeder Exp $
\$Id: sasl.py,v 1.18 2017/08/15 16:21:58 stroeder Exp $
Description:
The ldap.sasl module provides SASL authentication classes.
Expand Down
4 changes: 2 additions & 2 deletions Lib/ldap/schema/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""
ldap.schema - LDAPv3 schema handling
See http://www.python-ldap.org/ for details.
See https://www.python-ldap.org/ for details.
\$Id: __init__.py,v 1.7 2009/07/26 11:09:58 stroeder Exp $
\$Id: __init__.py,v 1.8 2017/08/15 16:21:58 stroeder Exp $
"""

from ldap import __version__
Expand Down
4 changes: 2 additions & 2 deletions Lib/ldap/schema/models.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""
schema.py - support for subSchemaSubEntry information
See http://www.python-ldap.org/ for details.
See https://www.python-ldap.org/ for details.
\$Id: models.py,v 1.49 2017/02/18 15:32:01 stroeder Exp $
\$Id: models.py,v 1.50 2017/08/15 16:21:58 stroeder Exp $
"""

import UserDict,ldap.cidict
Expand Down
Loading

0 comments on commit 8afd4c0

Please sign in to comment.