diff --git a/flask_website/listings/extensions.py b/flask_website/listings/extensions.py index 51672d6647..97213bdabd 100644 --- a/flask_website/listings/extensions.py +++ b/flask_website/listings/extensions.py @@ -141,25 +141,25 @@ def docserver(self): around it would be a good idea to decide on a common interface. ''' ), - Extension('Flask-Mail', 'Ron DuPlain (created by Dan Jacob)', + Extension('Flask-Mail', 'Matt Wright (created by Dan Jacob)', description='''

Makes sending mails from Flask applications very easy and has also support for unittesting. ''', - github='rduplain/flask-mail', + github='mattupstate/flask-mail', docs='http://packages.python.org/Flask-Mail/', approved=True ), - Extension('Flask-WTF', 'Ron DuPlain (created by Dan Jacob)', + Extension('Flask-WTF', 'Anthony Ford (created by Dan Jacob)', description='''

Flask-WTF offers simple integration with WTForms. This integration includes optional CSRF handling for greater security. ''', - github='rduplain/flask-wtf', + github='ajford/flask-wtf', docs='http://packages.python.org/Flask-WTF/', approved=True ), - Extension('Flask-Testing', u'Christoph Heer & Ron DuPlain (created by Dan Jacob)', + Extension('Flask-Testing', u'Christoph Heer (created by Dan Jacob)', description='''

The Flask-Testing extension provides unit testing utilities for Flask. ''', @@ -167,12 +167,12 @@ def docserver(self): docs='http://packages.python.org/Flask-Testing/', approved=True ), - Extension('Flask-Script', 'Ron DuPlain (created by Dan Jacob)', + Extension('Flask-Script', 'Sean Lynch (created by Dan Jacob)', description='''

The Flask-Script extension provides support for writing external scripts in Flask. It uses argparse to parse command line arguments. ''', - github='rduplain/flask-script', + github='techniq/flask-script', docs='http://packages.python.org/Flask-Script/', approved=True, notes=''' @@ -344,7 +344,7 @@ def docserver(self): handles the common tasks of logging in, logging out, and remembering your users' sessions over extended periods of time. ''', - bitbucket='leafstorm/flask-login', + github='maxcountryman/flask-login', docs='http://packages.python.org/Flask-Login/', approved=True ), @@ -382,13 +382,13 @@ def docserver(self): docs='http://packages.python.org/Flask-GAE-Mini-Profiler', github='passy/flask-gae-mini-profiler' ), - Extension('Flask-Admin', 'Andy Wilson', + Extension('Flask-Admin', 'Serge Koval', description='''

Flask extension module that provides an admin interface ''', - docs='http://packages.python.org/Flask-Admin/', - github='wilsaj/flask-admin' + docs='http://flask-admin.readthedocs.org/en/latest/index.html', + github='mrjoes/flask-admin' ), Extension('Flask-ZODB', 'Dag Odenhall', description=''' @@ -491,6 +491,7 @@ def docserver(self): github='kennethreitz/flask-heroku', approved=False ), + Extension('Flask-Mako', 'Beranger Enselme, Frank Murphy', description='''

Allows for Mako templates @@ -500,6 +501,14 @@ def docserver(self): docs='http://packages.python.org/Flask-Mako/', approved=False ), + Extension('Flask-WeasyPrint', 'Simon Sapin', + description=''' +

Make PDF with WeasyPrint + in your Flask app. + ''', + docs='http://packages.python.org/Flask-WeasyPrint/', + github='SimonSapin/Flask-WeasyPrint', + ), ] @@ -596,8 +605,7 @@ def docserver(self): github='willowtreeapps/flask-solr', notes=''' Fully exposes pysolr API in Flask extension pattern, and code is - production-ready. It lacks documentation and tests because the - author has yet to find the time. + production-ready. It lacks documentation and tests. ''' ), Extension('flask-csrf', 'Steve Losh', diff --git a/flask_website/templates/general/index.html b/flask_website/templates/general/index.html index f53420c80e..3d04a0f166 100644 --- a/flask_website/templates/general/index.html +++ b/flask_website/templates/general/index.html @@ -57,7 +57,7 @@

And Easy to Setup

$ pip install Flask
 $ python hello.py
  * Running on http://localhost:5000/
- +

Interested?