Skip to content

Commit 0e1d20c

Browse files
committed
remove remnants of LGPL headers
Fixes #48
1 parent 22d6963 commit 0e1d20c

File tree

9 files changed

+0
-137
lines changed

9 files changed

+0
-137
lines changed

docs/source/examples/ldap_parallelsearch.py

-15
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,4 @@
11
#!/usr/bin/env python3
2-
# Copyright (C) 2001 Tommi Virtanen
3-
#
4-
# This library is free software; you can redistribute it and/or
5-
# modify it under the terms of version 2.1 of the GNU Lesser General Public
6-
# License as published by the Free Software Foundation.
7-
#
8-
# This library is distributed in the hope that it will be useful,
9-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11-
# Lesser General Public License for more details.
12-
#
13-
# You should have received a copy of the GNU Lesser General Public
14-
# License along with this library; if not, write to the Free Software
15-
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16-
172
from ldaptor.protocols.ldap import (
183
ldapclient,
194
ldapsyntax,

ldaptor/protocols/ldap/__init__.py

-15
Original file line numberDiff line numberDiff line change
@@ -1,16 +1 @@
1-
# Copyright (C) 2001 Tommi Virtanen
2-
#
3-
# This library is free software; you can redistribute it and/or
4-
# modify it under the terms of version 2.1 of the GNU Lesser General Public
5-
# License as published by the Free Software Foundation.
6-
#
7-
# This library is distributed in the hope that it will be useful,
8-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
9-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10-
# Lesser General Public License for more details.
11-
#
12-
# You should have received a copy of the GNU Lesser General Public
13-
# License along with this library; if not, write to the Free Software
14-
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15-
161
"""LDAP protocol logic"""

ldaptor/protocols/ldap/ldapclient.py

-15
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,3 @@
1-
# Copyright (C) 2001 Tommi Virtanen
2-
#
3-
# This library is free software; you can redistribute it and/or
4-
# modify it under the terms of version 2.1 of the GNU Lesser General Public
5-
# License as published by the Free Software Foundation.
6-
#
7-
# This library is distributed in the hope that it will be useful,
8-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
9-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10-
# Lesser General Public License for more details.
11-
#
12-
# You should have received a copy of the GNU Lesser General Public
13-
# License along with this library; if not, write to the Free Software
14-
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15-
161
"""LDAP protocol client"""
172

183
from ldaptor.protocols import pureldap, pureber

ldaptor/protocols/ldap/ldaperrors.py

-16
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,3 @@
1-
# Copyright (C) 2001 Tommi Virtanen
2-
#
3-
# This library is free software; you can redistribute it and/or
4-
# modify it under the terms of version 2.1 of the GNU Lesser General Public
5-
# License as published by the Free Software Foundation.
6-
#
7-
# This library is distributed in the hope that it will be useful,
8-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
9-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10-
# Lesser General Public License for more details.
11-
#
12-
# You should have received a copy of the GNU Lesser General Public
13-
# License along with this library; if not, write to the Free Software
14-
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15-
16-
171
from ldaptor._encoder import to_bytes
182

193

ldaptor/protocols/ldap/ldapserver.py

-16
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,3 @@
1-
# Ldaptor, a Pure-Python library for LDAP
2-
# Copyright (C) 2003 Tommi Virtanen
3-
#
4-
# This library is free software; you can redistribute it and/or
5-
# modify it under the terms of version 2.1 of the GNU Lesser General Public
6-
# License as published by the Free Software Foundation.
7-
#
8-
# This library is distributed in the hope that it will be useful,
9-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11-
# Lesser General Public License for more details.
12-
#
13-
# You should have received a copy of the GNU Lesser General Public
14-
# License along with this library; if not, write to the Free Software
15-
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16-
171
"""LDAP protocol server"""
182

193
from ldaptor import interfaces, delta

ldaptor/protocols/pureber.py

-15
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,3 @@
1-
# Copyright (C) 2001 Tommi Virtanen
2-
#
3-
# This library is free software; you can redistribute it and/or
4-
# modify it under the terms of version 2.1 of the GNU Lesser General Public
5-
# License as published by the Free Software Foundation.
6-
#
7-
# This library is distributed in the hope that it will be useful,
8-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
9-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10-
# Lesser General Public License for more details.
11-
#
12-
# You should have received a copy of the GNU Lesser General Public
13-
# License along with this library; if not, write to the Free Software
14-
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15-
161
"""Pure, simple, BER encoding and decoding"""
172

183
# This BER library is currently aimed at supporting LDAP, thus

ldaptor/protocols/pureldap.py

-15
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,3 @@
1-
# Copyright (C) 2001 Tommi Virtanen
2-
#
3-
# This library is free software; you can redistribute it and/or
4-
# modify it under the terms of version 2.1 of the GNU Lesser General Public
5-
# License as published by the Free Software Foundation.
6-
#
7-
# This library is distributed in the hope that it will be useful,
8-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
9-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10-
# Lesser General Public License for more details.
11-
#
12-
# You should have received a copy of the GNU Lesser General Public
13-
# License along with this library; if not, write to the Free Software
14-
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15-
161
"""LDAP protocol message conversion; no application logic here."""
172

183
import string

ldaptor/test/test_pureber.py

-15
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,3 @@
1-
# Copyright (C) 2001 Tommi Virtanen
2-
#
3-
# This library is free software; you can redistribute it and/or
4-
# modify it under the terms of version 2.1 of the GNU Lesser General Public
5-
# License as published by the Free Software Foundation.
6-
#
7-
# This library is distributed in the hope that it will be useful,
8-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
9-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10-
# Lesser General Public License for more details.
11-
#
12-
# You should have received a copy of the GNU Lesser General Public
13-
# License along with this library; if not, write to the Free Software
14-
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15-
161
"""
172
Test cases for ldaptor.protocols.pureber module.
183
"""

ldaptor/test/test_pureldap.py

-15
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,3 @@
1-
# Copyright (C) 2001 Tommi Virtanen
2-
#
3-
# This library is free software; you can redistribute it and/or
4-
# modify it under the terms of version 2.1 of the GNU Lesser General Public
5-
# License as published by the Free Software Foundation.
6-
#
7-
# This library is distributed in the hope that it will be useful,
8-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
9-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10-
# Lesser General Public License for more details.
11-
#
12-
# You should have received a copy of the GNU Lesser General Public
13-
# License along with this library; if not, write to the Free Software
14-
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15-
161
"""
172
Test cases for ldaptor.protocols.pureldap module.
183
"""

0 commit comments

Comments
 (0)