Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
flask-simpleldap
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nimrod
flask-simpleldap
Commits
fd1e5fe4
Commit
fd1e5fe4
authored
8 years ago
by
Alexandre Ferland
Browse files
Options
Downloads
Patches
Plain Diff
drop flask 0.9 support, remove unused code
parent
50a3071a
Branches
Branches containing commit
Tags
v1.0.0
Tags containing commit
No related merge requests found
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
.travis.yml
+0
-1
0 additions, 1 deletion
.travis.yml
README.md
+1
-1
1 addition, 1 deletion
README.md
docs/index.rst
+1
-1
1 addition, 1 deletion
docs/index.rst
flask_simpleldap/__init__.py
+0
-5
0 additions, 5 deletions
flask_simpleldap/__init__.py
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
3 additions
and
9 deletions
.travis.yml
+
0
−
1
View file @
fd1e5fe4
...
...
@@ -6,7 +6,6 @@ python:
env
:
-
FLASK=0.11
-
FLASK=0.10.1
-
FLASK=0.9
install
:
-
pip install Flask==$FLASK
-
pip install -r dev_requirements.txt
...
...
This diff is collapsed.
Click to expand it.
README.md
+
1
−
1
View file @
fd1e5fe4
...
...
@@ -13,7 +13,7 @@ First, install Flask-SimpleLDAP:
$ pip install flask-simpleldap
Flask-SimpleLDAP depends, and will install for you, recent versions of Flask
(0.
9
or later) and
[
pyldap
](
https://github.com/pyldap/pyldap
)
. Flask-SimpleLDAP is compatible
(0.
10.1
or later) and
[
pyldap
](
https://github.com/pyldap/pyldap
)
. Flask-SimpleLDAP is compatible
with and tested on Python 2.7, 3.4 and 3.5.
Next, add a
``LDAP``
instance to your code and at least the three
...
...
This diff is collapsed.
Click to expand it.
docs/index.rst
+
1
−
1
View file @
fd1e5fe4
...
...
@@ -19,7 +19,7 @@ First, install Flask-SimpleLDAP:
$ pip install flask-simpleldap
Flask-SimpleLDAP depends, and will install for you, recent versions of Flask
(0.
9
or later) and pyldap. Flask-SimpleLDAP is compatible
(0.
10.1
or later) and pyldap. Flask-SimpleLDAP is compatible
with and tested on Python 2.7, 3.4 and 3.5.
Next, add a :class:`~flask_simpleldap.LDAP` to your code and at least the three
...
...
This diff is collapsed.
Click to expand it.
flask_simpleldap/__init__.py
+
0
−
5
View file @
fd1e5fe4
...
...
@@ -8,11 +8,6 @@ from flask import abort, current_app, g, make_response, redirect, url_for, \
__all__
=
[
'
LDAP
'
]
try
:
from
flask
import
_app_ctx_stack
as
stack
except
ImportError
:
from
flask
import
_request_ctx_stack
as
stack
class
LDAPException
(
RuntimeError
):
message
=
None
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
fd1e5fe4
...
...
@@ -21,7 +21,7 @@ setup(
include_package_data
=
True
,
platforms
=
'
any
'
,
install_requires
=
[
'
Flask>=0.10
'
,
'
Flask>=0.10
.1
'
,
'
pyldap
'
],
classifiers
=
[
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment