184 lines
6.3 KiB
Python
184 lines
6.3 KiB
Python
from urlparse import urlparse
|
|
from werkzeug import url_quote
|
|
from flask import Markup
|
|
|
|
|
|
class Extension(object):
|
|
|
|
def __init__(self, name, author, description,
|
|
github=None, bitbucket=None, docs=None, website=None,
|
|
approved=False):
|
|
self.name = name
|
|
self.author = author
|
|
self.description = Markup(description)
|
|
self.github = github
|
|
self.bitbucket = bitbucket
|
|
self.docs = docs
|
|
self.website = website
|
|
self.approved = approved
|
|
|
|
def to_json(self):
|
|
rv = vars(self).copy()
|
|
rv['description'] = unicode(rv['description'])
|
|
return rv
|
|
|
|
@property
|
|
def pypi(self):
|
|
return 'http://pypi.python.org/pypi/%s' % url_quote(self.name)
|
|
|
|
@property
|
|
def docserver(self):
|
|
if self.docs:
|
|
return urlparse(self.docs)[1]
|
|
|
|
|
|
extensions = [
|
|
Extension('Flask-OAuth', 'Armin Ronacher',
|
|
description='''
|
|
<p>Adds <a href="http://oauth.net/">OAuth</a> support to Flask.
|
|
''',
|
|
github='mitsuhiko/flask-oauth',
|
|
docs='http://packages.python.org/Flask-OAuth/'
|
|
),
|
|
Extension('Flask-OpenID', 'Armin Ronacher',
|
|
description='''
|
|
<p>Adds <a href="http://openid.net/">OpenID</a> support to Flask.
|
|
''',
|
|
github='mitsuhiko/flask-openid',
|
|
docs='http://packages.python.org/Flask-OpenID/'
|
|
),
|
|
Extension('Flask-Babel', 'Armin Ronacher',
|
|
description='''
|
|
<p>Adds i18n/l10n support to Flask, based on
|
|
<a href=http://babel.edgewall.org/>babel</a> and
|
|
<a href=http://pytz.sourceforge.net/>pytz</a>.
|
|
''',
|
|
github='mitsuhiko/flask-babel',
|
|
docs='http://packages.python.org/Flask-Babel/',
|
|
approved=True
|
|
),
|
|
Extension('Flask-SQLAlchemy', 'Armin Ronacher',
|
|
description='''
|
|
<p>Adds SQLAlchemy support to Flask. Quick and easy.
|
|
''',
|
|
github='mitsuhiko/flask-sqlalchemy',
|
|
docs='http://packages.python.org/Flask-SQLAlchemy/',
|
|
approved=True
|
|
),
|
|
Extension('Flask-XML-RPC', 'Matthew Frazier',
|
|
description='''
|
|
<p>Adds <a href="http://www.xmlrpc.com/">XML-RPC</a> support to Flask.
|
|
''',
|
|
bitbucket='leafstorm/flask-xml-rpc',
|
|
docs='http://packages.python.org/Flask-XML-RPC/',
|
|
approved=True
|
|
),
|
|
Extension('Flask-CouchDB', 'Matthew Frazier',
|
|
description='''
|
|
<p>Adds <a href="http://couchdb.apache.org/">CouchDB</a> support to Flask.
|
|
''',
|
|
bitbucket='leafstorm/flask-couchdb',
|
|
docs='http://packages.python.org/Flask-CouchDB/',
|
|
approved=True
|
|
),
|
|
Extension('Flask-Uploads', 'Matthew Frazier',
|
|
description='''
|
|
<p>Flask-Uploads allows your application to flexibly and
|
|
efficiently handle file uploading and serving the uploaded files.
|
|
You can create different sets of uploads - one for document
|
|
attachments, one for photos, etc.
|
|
''',
|
|
bitbucket='leafstorm/flask-uploads',
|
|
docs='http://packages.python.org/Flask-Uploads/',
|
|
approved=True
|
|
),
|
|
Extension('Flask-Themes', 'Matthew Frazier',
|
|
description='''
|
|
<p>Flask-Themes makes it easy for your application to support
|
|
a wide range of appearances.
|
|
''',
|
|
bitbucket='leafstorm/flask-themes',
|
|
docs='http://packages.python.org/Flask-Themes/',
|
|
approved=True
|
|
),
|
|
Extension('Flask-CouchDBKit', 'Kridsada Thanabulpong',
|
|
description='''
|
|
<p>Adds <a href="http://www.couchdbkit.org/">CouchDBKit</a> support to Flask.
|
|
''',
|
|
github='sirn/flask-couchdbkit',
|
|
docs='http://packages.python.org/Flask-CouchDBKit/'
|
|
),
|
|
Extension('Flask-Genshi', 'Dag Odenhall',
|
|
description='''
|
|
<p>Adds support for the <a href="http://genshi.edgewall.org/">Genshi</a>
|
|
templating language to Flask applications.
|
|
''',
|
|
bitbucket='dag/flask-genshi',
|
|
docs='http://packages.python.org/Flask-Genshi/',
|
|
approved=True
|
|
),
|
|
Extension('Flask-Mail', 'Dan Jacob',
|
|
description='''
|
|
<p>Makes sending mails from Flask applications very easy and
|
|
has also support for unittesting.
|
|
''',
|
|
bitbucket='danjac/flask-mail',
|
|
docs='http://packages.python.org/flask-mail/',
|
|
approved=True
|
|
),
|
|
Extension('Flask-WTF', 'Dan Jacob',
|
|
description='''
|
|
<p>Flask-WTF offers simple integration with WTForms. This
|
|
integration includes optional CSRF handling for greater security.
|
|
''',
|
|
bitbucket='danjac/flask-wtf',
|
|
docs='http://packages.python.org/Flask-WTF/',
|
|
approved=True
|
|
),
|
|
Extension('Flask-Testing', 'Dan Jacob',
|
|
description='''
|
|
<p>The Flask-Testing extension provides unit testing utilities for Flask.
|
|
''',
|
|
bitbucket='danjac/flask-testing',
|
|
docs='http://packages.python.org/Flask-Testing/',
|
|
approved=True
|
|
),
|
|
Extension('Flask-Script', 'Dan Jacob',
|
|
description='''
|
|
<p>The Flask-Script extension provides support for writing external
|
|
scripts in Flask. It uses argparse to parse command line arguments.
|
|
''',
|
|
bitbucket='danjac/flask-script',
|
|
docs='http://packages.python.org/Flask-Script/',
|
|
approved=True
|
|
),
|
|
Extension('flask-csrf', 'Steve Losh',
|
|
description='''
|
|
<p>A small Flask extension for adding
|
|
<a href=http://en.wikipedia.org/wiki/CSRF>CSRF</a> protection.
|
|
''',
|
|
docs='http://sjl.bitbucket.org/flask-csrf/',
|
|
bitbucket='sjl/flask-csrf'
|
|
),
|
|
Extension('flask-lesscss', 'Steve Losh',
|
|
description='''
|
|
<p>
|
|
A small Flask extension that makes it easy to use
|
|
<a href=http://lesscss.org/>LessCSS</a> with your
|
|
Flask application.
|
|
''',
|
|
docs='http://sjl.bitbucket.org/flask-lesscss/',
|
|
bitbucket='sjl/flask-lesscss'
|
|
),
|
|
Extension('Flask-Creole', 'Ali Afshar',
|
|
description='''
|
|
<p>Creole parser filters for Flask.
|
|
''',
|
|
docs='http://packages.python.org/Flask-Creole',
|
|
bitbucket='aafshar/flask-creole-main',
|
|
approved=True
|
|
)
|
|
]
|
|
|
|
|
|
extensions.sort(key=lambda x: x.name.lower())
|