forked from pallets-eco/flask-security-3.0
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Matt Wright
committed
Oct 10, 2012
1 parent
6b80aae
commit a269930
Showing
15 changed files
with
824 additions
and
506 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<h3>About</h3> | ||
<p> | ||
Flask-Security is an opinionated Flask extension which adds basic | ||
security and authentication features to your Flask apps quickly | ||
and easily. Flask-Social can also be used to add "social" or OAuth | ||
login and connection management. | ||
</p> | ||
<h3>Useful Links</h3> | ||
<ul> | ||
<li><a href="http://pypi.python.org/pypi/Flask-Security">Flask-Security @ PyPI</a></li> | ||
<li><a href="http://github.com/mattupstate/flask-security">Flask-Security @ github</a></li> | ||
<li><a href="http://github.com/jfinkels/flask-security/issues">Issue Tracker</a></li> | ||
</ul> | ||
<ul> | ||
<li><a href="http://pypi.python.org/pypi/Flask-Social">Flask-Social</a></li> | ||
<li><a href="http://github.com/mattupstate/flask-social">Flask-Social @ github</a></li> | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<p class="logo"><a href="{{ pathto(master_doc) }}"> | ||
<img class="logo" src="{{ pathto('_static/logo-helmet.png', 1) }}" alt="Logo"/> | ||
</a></p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ Contents | |
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
overview | ||
features | ||
configuration | ||
quickstart | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,36 @@ | ||
Flask-Security | ||
============== | ||
|
||
Flask-Security quickly adds security features to your Flask application. | ||
Flask-Security allows you to quickly add common security mechanisms to your | ||
Flask application. They include: | ||
|
||
1. Session based authentication | ||
2. Role management | ||
3. Password encryption | ||
4. Basic HTTP authentication | ||
5. Token based authentication | ||
6. Token based account activation (optional) | ||
7. Token based password recovery/resetting (optional) | ||
8. User registration (optional) | ||
9. Login tracking (optional) | ||
|
||
Many of these features are made possible by integrating various Flask extensions | ||
and libraries. They include: | ||
|
||
1. `Flask-Login <http://packages.python.org/Flask-Login/>`_ | ||
2. `Flask-Mail <http://packages.python.org/Flask-Mail/>`_ | ||
3. `Flask-Principal <http://packages.python.org/Flask-Principal/>`_ | ||
4. `Flask-Script <http://packages.python.org/Flask-Script/>`_ | ||
5. `Flask-WTF <http://packages.python.org/Flask-Mail/>`_ | ||
6. `itsdangerous <http://packages.python.org/itsdangerous/>`_ | ||
7. `passlib <http://packages.python.org/passlib/>`_ | ||
|
||
Additionally, it assumes you'll be using a common library for your database | ||
connections and model definitions. Flask-Security supports the following Flask | ||
extensions out of the box for data persistance: | ||
|
||
1. `Flask-SQLAlchemy <http://packages.python.org/Flask-SQLAlchemy/>`_ | ||
2. `Flask-MongoEngine <http://packages.python.org/Flask-MongoEngine/>`_ | ||
|
||
|
||
.. include:: contents.rst.inc |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,4 @@ source-dir = docs/ | |
build-dir = docs/_build | ||
|
||
[upload_sphinx] | ||
upload-dir = docs/_build/html | ||
upload-dir = docs/_build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.