Browse Source

Happy New Year 2014

pull/1208/head
Daniel Neuhäuser 11 years ago
parent
commit
52098e1e4f
  1. 2
      examples/flaskr/flaskr.py
  2. 2
      examples/flaskr/flaskr_tests.py
  3. 2
      examples/jqueryexample/jqueryexample.py
  4. 2
      examples/minitwit/minitwit.py
  5. 2
      examples/minitwit/minitwit_tests.py
  6. 2
      flask/__init__.py
  7. 2
      flask/_compat.py
  8. 2
      flask/app.py
  9. 2
      flask/blueprints.py
  10. 2
      flask/config.py
  11. 2
      flask/ctx.py
  12. 2
      flask/debughelpers.py
  13. 2
      flask/ext/__init__.py
  14. 2
      flask/exthook.py
  15. 2
      flask/globals.py
  16. 2
      flask/helpers.py
  17. 2
      flask/json.py
  18. 2
      flask/logging.py
  19. 2
      flask/module.py
  20. 2
      flask/sessions.py
  21. 2
      flask/signals.py
  22. 2
      flask/templating.py
  23. 2
      flask/testing.py
  24. 2
      flask/testsuite/__init__.py
  25. 2
      flask/testsuite/appctx.py
  26. 2
      flask/testsuite/basic.py
  27. 2
      flask/testsuite/blueprints.py
  28. 2
      flask/testsuite/config.py
  29. 2
      flask/testsuite/deprecations.py
  30. 2
      flask/testsuite/examples.py
  31. 2
      flask/testsuite/ext.py
  32. 2
      flask/testsuite/helpers.py
  33. 2
      flask/testsuite/regression.py
  34. 2
      flask/testsuite/reqctx.py
  35. 2
      flask/testsuite/signals.py
  36. 2
      flask/testsuite/subclassing.py
  37. 2
      flask/testsuite/templating.py
  38. 2
      flask/testsuite/testing.py
  39. 2
      flask/testsuite/views.py
  40. 2
      flask/views.py
  41. 2
      flask/wrappers.py
  42. 2
      scripts/flask-07-upgrade.py
  43. 2
      scripts/flaskext_compat.py
  44. 2
      scripts/flaskext_test.py
  45. 2
      scripts/make-release.py

2
examples/flaskr/flaskr.py

@ -6,7 +6,7 @@
A microblog example application written as Flask tutorial with A microblog example application written as Flask tutorial with
Flask and sqlite3. Flask and sqlite3.
:copyright: (c) 2010 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
examples/flaskr/flaskr_tests.py

@ -5,7 +5,7 @@
Tests the Flaskr application. Tests the Flaskr application.
:copyright: (c) 2010 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """
import os import os

2
examples/jqueryexample/jqueryexample.py

@ -5,7 +5,7 @@
A simple application that shows how Flask and jQuery get along. A simple application that shows how Flask and jQuery get along.
:copyright: (c) 2010 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """
from flask import Flask, jsonify, render_template, request from flask import Flask, jsonify, render_template, request

2
examples/minitwit/minitwit.py

@ -5,7 +5,7 @@
A microblogging application written with Flask and sqlite3. A microblogging application written with Flask and sqlite3.
:copyright: (c) 2010 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
examples/minitwit/minitwit_tests.py

@ -5,7 +5,7 @@
Tests the MiniTwit application. Tests the MiniTwit application.
:copyright: (c) 2010 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """
import os import os

2
flask/__init__.py

@ -6,7 +6,7 @@
A microframework based on Werkzeug. It's extensively documented A microframework based on Werkzeug. It's extensively documented
and follows best practice patterns. and follows best practice patterns.
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/_compat.py

@ -7,7 +7,7 @@
version of six so we don't have to depend on a specific version version of six so we don't have to depend on a specific version
of it. of it.
:copyright: (c) 2013 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """
import sys import sys

2
flask/app.py

@ -5,7 +5,7 @@
This module implements the central WSGI application object. This module implements the central WSGI application object.
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/blueprints.py

@ -6,7 +6,7 @@
Blueprints are the recommended way to implement larger or more Blueprints are the recommended way to implement larger or more
pluggable applications in Flask 0.7 and later. pluggable applications in Flask 0.7 and later.
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """
from functools import update_wrapper from functools import update_wrapper

2
flask/config.py

@ -5,7 +5,7 @@
Implements the configuration related objects. Implements the configuration related objects.
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/ctx.py

@ -5,7 +5,7 @@
Implements the objects required to keep the context. Implements the objects required to keep the context.
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/debughelpers.py

@ -5,7 +5,7 @@
Various helpers to make the development experience better. Various helpers to make the development experience better.
:copyright: (c) 2011 by Armin Ronacher. 1 :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """
from ._compat import implements_to_string from ._compat import implements_to_string

2
flask/ext/__init__.py

@ -14,7 +14,7 @@
We're switching from namespace packages because it was just too painful for We're switching from namespace packages because it was just too painful for
everybody involved. everybody involved.
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/exthook.py

@ -16,7 +16,7 @@
This is used by `flask.ext`. This is used by `flask.ext`.
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """
import sys import sys

2
flask/globals.py

@ -6,7 +6,7 @@
Defines all the global objects that are proxies to the current Defines all the global objects that are proxies to the current
active context. active context.
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/helpers.py

@ -5,7 +5,7 @@
Implements various helpers. Implements various helpers.
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/json.py

@ -5,7 +5,7 @@
Implementation helpers for the JSON support in Flask. Implementation helpers for the JSON support in Flask.
:copyright: (c) 2012 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """
import io import io

2
flask/logging.py

@ -5,7 +5,7 @@
Implements the logging support for Flask. Implements the logging support for Flask.
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/module.py

@ -5,7 +5,7 @@
Implements a class that represents module blueprints. Implements a class that represents module blueprints.
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/sessions.py

@ -5,7 +5,7 @@
Implements cookie based sessions based on itsdangerous. Implements cookie based sessions based on itsdangerous.
:copyright: (c) 2012 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/signals.py

@ -6,7 +6,7 @@
Implements signals based on blinker if available, otherwise Implements signals based on blinker if available, otherwise
falls silently back to a noop falls silently back to a noop
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """
signals_available = False signals_available = False

2
flask/templating.py

@ -5,7 +5,7 @@
Implements the bridge to Jinja2. Implements the bridge to Jinja2.
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """
import posixpath import posixpath

2
flask/testing.py

@ -6,7 +6,7 @@
Implements test support helpers. This module is lazily imported Implements test support helpers. This module is lazily imported
and usually not used in production environments. and usually not used in production environments.
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/testsuite/__init__.py

@ -6,7 +6,7 @@
Tests Flask itself. The majority of Flask is already tested Tests Flask itself. The majority of Flask is already tested
as part of Werkzeug. as part of Werkzeug.
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/testsuite/appctx.py

@ -5,7 +5,7 @@
Tests the application context. Tests the application context.
:copyright: (c) 2012 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/testsuite/basic.py

@ -5,7 +5,7 @@
The basic functionality. The basic functionality.
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/testsuite/blueprints.py

@ -5,7 +5,7 @@
Blueprints (and currently modules) Blueprints (and currently modules)
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/testsuite/config.py

@ -5,7 +5,7 @@
Configuration and instances. Configuration and instances.
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/testsuite/deprecations.py

@ -5,7 +5,7 @@
Tests deprecation support. Tests deprecation support.
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/testsuite/examples.py

@ -5,7 +5,7 @@
Tests the examples. Tests the examples.
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """
import os import os

2
flask/testsuite/ext.py

@ -5,7 +5,7 @@
Tests the extension import thing. Tests the extension import thing.
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/testsuite/helpers.py

@ -5,7 +5,7 @@
Various helpers. Various helpers.
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/testsuite/regression.py

@ -5,7 +5,7 @@
Tests regressions. Tests regressions.
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/testsuite/reqctx.py

@ -5,7 +5,7 @@
Tests the request context. Tests the request context.
:copyright: (c) 2012 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/testsuite/signals.py

@ -5,7 +5,7 @@
Signalling. Signalling.
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/testsuite/subclassing.py

@ -6,7 +6,7 @@
Test that certain behavior of flask can be customized by Test that certain behavior of flask can be customized by
subclasses. subclasses.
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """
import flask import flask

2
flask/testsuite/templating.py

@ -5,7 +5,7 @@
Template functionality Template functionality
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/testsuite/testing.py

@ -5,7 +5,7 @@
Test client and more. Test client and more.
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/testsuite/views.py

@ -5,7 +5,7 @@
Pluggable views. Pluggable views.
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/views.py

@ -5,7 +5,7 @@
This module provides class-based views inspired by the ones in Django. This module provides class-based views inspired by the ones in Django.
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """
from .globals import request from .globals import request

2
flask/wrappers.py

@ -5,7 +5,7 @@
Implements the WSGI wrappers (request and response). Implements the WSGI wrappers (request and response).
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
scripts/flask-07-upgrade.py

@ -16,7 +16,7 @@
the most common patterns at least. The diff it generates should be the most common patterns at least. The diff it generates should be
hand reviewed and not applied blindly without making backups. hand reviewed and not applied blindly without making backups.
:copyright: (c) Copyright 2011 by Armin Ronacher. :copyright: (c) Copyright 2014 by Armin Ronacher.
:license: see LICENSE for more details. :license: see LICENSE for more details.
""" """
import re import re

2
scripts/flaskext_compat.py

@ -12,7 +12,7 @@
flaskext_compat.activate() flaskext_compat.activate()
from flask.ext import foo from flask.ext import foo
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """
import sys import sys

2
scripts/flaskext_test.py

@ -5,7 +5,7 @@
Tests the Flask extensions. Tests the Flask extensions.
:copyright: (c) 2010 by Ali Afshar. :copyright: (c) 2014 by Ali Afshar.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
scripts/make-release.py

@ -7,7 +7,7 @@
Helper script that performs a release. Does pretty much everything Helper script that performs a release. Does pretty much everything
automatically for us. automatically for us.
:copyright: (c) 2011 by Armin Ronacher. :copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """
import sys import sys

Loading…
Cancel
Save