diff --git a/LICENSE b/LICENSE index 9319a8f3..a7da10e1 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2014 by Armin Ronacher and contributors. See AUTHORS +Copyright (c) 2015 by Armin Ronacher and contributors. See AUTHORS for more details. Some rights reserved. diff --git a/docs/conf.py b/docs/conf.py index 62d4e91a..922f2f7e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -43,7 +43,7 @@ master_doc = 'index' # General information about the project. project = u'Flask' -copyright = u'2014, Armin Ronacher' +copyright = u'2015, Armin Ronacher' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the diff --git a/examples/flaskr/flaskr.py b/examples/flaskr/flaskr.py index a38a04eb..b4c1d6bd 100644 --- a/examples/flaskr/flaskr.py +++ b/examples/flaskr/flaskr.py @@ -6,7 +6,7 @@ A microblog example application written as Flask tutorial with Flask and sqlite3. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/examples/flaskr/test_flaskr.py b/examples/flaskr/test_flaskr.py index 07116f81..084f13f4 100644 --- a/examples/flaskr/test_flaskr.py +++ b/examples/flaskr/test_flaskr.py @@ -5,7 +5,7 @@ Tests the Flaskr application. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/examples/jqueryexample/jqueryexample.py b/examples/jqueryexample/jqueryexample.py index 034cc495..d1fca62b 100644 --- a/examples/jqueryexample/jqueryexample.py +++ b/examples/jqueryexample/jqueryexample.py @@ -5,7 +5,7 @@ A simple application that shows how Flask and jQuery get along. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ from flask import Flask, jsonify, render_template, request diff --git a/examples/minitwit/minitwit.py b/examples/minitwit/minitwit.py index f772b682..bbc3b483 100644 --- a/examples/minitwit/minitwit.py +++ b/examples/minitwit/minitwit.py @@ -5,7 +5,7 @@ A microblogging application written with Flask and sqlite3. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/examples/minitwit/test_minitwit.py b/examples/minitwit/test_minitwit.py index c9345e9d..bd58d4dc 100644 --- a/examples/minitwit/test_minitwit.py +++ b/examples/minitwit/test_minitwit.py @@ -5,7 +5,7 @@ Tests the MiniTwit application. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ import os diff --git a/flask/__init__.py b/flask/__init__.py index f2c82a46..f6aa67bc 100644 --- a/flask/__init__.py +++ b/flask/__init__.py @@ -6,7 +6,7 @@ A microframework based on Werkzeug. It's extensively documented and follows best practice patterns. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/__main__.py b/flask/__main__.py index 78362293..cbefccd2 100644 --- a/flask/__main__.py +++ b/flask/__main__.py @@ -5,7 +5,7 @@ Alias for flask.run for the command line. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/_compat.py b/flask/_compat.py index 4631d02e..8ea7719f 100644 --- a/flask/_compat.py +++ b/flask/_compat.py @@ -7,7 +7,7 @@ version of six so we don't have to depend on a specific version of it. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ import sys diff --git a/flask/app.py b/flask/app.py index b84c98a7..96667155 100644 --- a/flask/app.py +++ b/flask/app.py @@ -5,7 +5,7 @@ This module implements the central WSGI application object. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/blueprints.py b/flask/blueprints.py index 3d2e7641..8bbc9521 100644 --- a/flask/blueprints.py +++ b/flask/blueprints.py @@ -6,7 +6,7 @@ Blueprints are the recommended way to implement larger or more pluggable applications in Flask 0.7 and later. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ from functools import update_wrapper diff --git a/flask/cli.py b/flask/cli.py index ada0637c..1b86645e 100644 --- a/flask/cli.py +++ b/flask/cli.py @@ -5,7 +5,7 @@ A simple command line application to run flask apps. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/config.py b/flask/config.py index 774e00df..0f7b5eba 100644 --- a/flask/config.py +++ b/flask/config.py @@ -5,7 +5,7 @@ Implements the configuration related objects. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/ctx.py b/flask/ctx.py index 5041a640..8c574c2e 100644 --- a/flask/ctx.py +++ b/flask/ctx.py @@ -5,7 +5,7 @@ Implements the objects required to keep the context. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/debughelpers.py b/flask/debughelpers.py index 20d9735a..90710dd3 100644 --- a/flask/debughelpers.py +++ b/flask/debughelpers.py @@ -5,7 +5,7 @@ Various helpers to make the development experience better. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ from ._compat import implements_to_string, text_type diff --git a/flask/ext/__init__.py b/flask/ext/__init__.py index 315d7e5e..051f44ac 100644 --- a/flask/ext/__init__.py +++ b/flask/ext/__init__.py @@ -14,7 +14,7 @@ We're switching from namespace packages because it was just too painful for everybody involved. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/exthook.py b/flask/exthook.py index 0422817f..9b822811 100644 --- a/flask/exthook.py +++ b/flask/exthook.py @@ -16,7 +16,7 @@ This is used by `flask.ext`. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ import sys diff --git a/flask/globals.py b/flask/globals.py index 03c2f277..0b70a3ef 100644 --- a/flask/globals.py +++ b/flask/globals.py @@ -6,7 +6,7 @@ Defines all the global objects that are proxies to the current active context. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/helpers.py b/flask/helpers.py index 37b6be8f..080ea899 100644 --- a/flask/helpers.py +++ b/flask/helpers.py @@ -5,7 +5,7 @@ Implements various helpers. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/json.py b/flask/json.py index b554b9ff..32060061 100644 --- a/flask/json.py +++ b/flask/json.py @@ -5,7 +5,7 @@ Implementation helpers for the JSON support in Flask. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ import io diff --git a/flask/logging.py b/flask/logging.py index 2bdab56c..b741ee31 100644 --- a/flask/logging.py +++ b/flask/logging.py @@ -5,7 +5,7 @@ Implements the logging support for Flask. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/sessions.py b/flask/sessions.py index 7256a261..1aa42f17 100644 --- a/flask/sessions.py +++ b/flask/sessions.py @@ -5,7 +5,7 @@ Implements cookie based sessions based on itsdangerous. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/signals.py b/flask/signals.py index cc584a6c..ca1c1d90 100644 --- a/flask/signals.py +++ b/flask/signals.py @@ -6,7 +6,7 @@ Implements signals based on blinker if available, otherwise falls silently back to a noop. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ signals_available = False diff --git a/flask/templating.py b/flask/templating.py index 8ec0d02d..1e39b932 100644 --- a/flask/templating.py +++ b/flask/templating.py @@ -5,7 +5,7 @@ Implements the bridge to Jinja2. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ from jinja2 import BaseLoader, Environment as BaseEnvironment, \ diff --git a/flask/testing.py b/flask/testing.py index 6463c084..54ce20ef 100644 --- a/flask/testing.py +++ b/flask/testing.py @@ -6,7 +6,7 @@ Implements test support helpers. This module is lazily imported and usually not used in production environments. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/views.py b/flask/views.py index d72ad234..9bd6b615 100644 --- a/flask/views.py +++ b/flask/views.py @@ -5,7 +5,7 @@ This module provides class-based views inspired by the ones in Django. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ from .globals import request diff --git a/flask/wrappers.py b/flask/wrappers.py index 738cbb12..abcf90f8 100644 --- a/flask/wrappers.py +++ b/flask/wrappers.py @@ -5,7 +5,7 @@ Implements the WSGI wrappers (request and response). - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/scripts/flask-07-upgrade.py b/scripts/flask-07-upgrade.py index 18395b50..7cab94e1 100644 --- a/scripts/flask-07-upgrade.py +++ b/scripts/flask-07-upgrade.py @@ -16,7 +16,7 @@ the most common patterns at least. The diff it generates should be hand reviewed and not applied blindly without making backups. - :copyright: (c) Copyright 2014 by Armin Ronacher. + :copyright: (c) Copyright 2015 by Armin Ronacher. :license: see LICENSE for more details. """ import re diff --git a/scripts/flaskext_compat.py b/scripts/flaskext_compat.py index be5e701c..3784936c 100644 --- a/scripts/flaskext_compat.py +++ b/scripts/flaskext_compat.py @@ -12,7 +12,7 @@ flaskext_compat.activate() from flask.ext import foo - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ import sys diff --git a/scripts/flaskext_tester.py b/scripts/flaskext_tester.py index 1fda3021..45adb0a4 100644 --- a/scripts/flaskext_tester.py +++ b/scripts/flaskext_tester.py @@ -5,7 +5,7 @@ Tests the Flask extensions. - :copyright: (c) 2014 by Ali Afshar. + :copyright: (c) 2015 by Ali Afshar. :license: BSD, see LICENSE for more details. """ diff --git a/scripts/make-release.py b/scripts/make-release.py index ed933239..4a74cb59 100644 --- a/scripts/make-release.py +++ b/scripts/make-release.py @@ -7,7 +7,7 @@ Helper script that performs a release. Does pretty much everything automatically for us. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ import sys diff --git a/tests/conftest.py b/tests/conftest.py index 7b24be3d..7a209c22 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -3,7 +3,7 @@ tests.conftest ~~~~~~~~~~~~~~ - :copyright: (c) 2014 by the Flask Team, see AUTHORS for more details. + :copyright: (c) 2015 by the Flask Team, see AUTHORS for more details. :license: BSD, see LICENSE for more details. """ import flask diff --git a/tests/test_appctx.py b/tests/test_appctx.py index a3db4547..28836ec5 100644 --- a/tests/test_appctx.py +++ b/tests/test_appctx.py @@ -5,7 +5,7 @@ Tests the application context. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/tests/test_basic.py b/tests/test_basic.py index ea66e987..d7209362 100644 --- a/tests/test_basic.py +++ b/tests/test_basic.py @@ -5,7 +5,7 @@ The basic functionality. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/tests/test_blueprints.py b/tests/test_blueprints.py index cb47d13d..7e22bc7f 100644 --- a/tests/test_blueprints.py +++ b/tests/test_blueprints.py @@ -5,7 +5,7 @@ Blueprints (and currently modules) - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/tests/test_config.py b/tests/test_config.py index edfe43cc..c16bb2f9 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -3,7 +3,7 @@ tests.test_config ~~~~~~~~~~~~~~~~~ - :copyright: (c) 2014 by the Flask Team, see AUTHORS for more details. + :copyright: (c) 2015 by the Flask Team, see AUTHORS for more details. :license: BSD, see LICENSE for more details. """ diff --git a/tests/test_deprecations.py b/tests/test_deprecations.py index e84080bb..757aacd0 100644 --- a/tests/test_deprecations.py +++ b/tests/test_deprecations.py @@ -5,7 +5,7 @@ Tests deprecation support. Not used currently. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/tests/test_ext.py b/tests/test_ext.py index 68431ecf..f5728312 100644 --- a/tests/test_ext.py +++ b/tests/test_ext.py @@ -5,7 +5,7 @@ Tests the extension import thing. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/tests/test_helpers.py b/tests/test_helpers.py index e9738f76..5fce5a45 100644 --- a/tests/test_helpers.py +++ b/tests/test_helpers.py @@ -5,7 +5,7 @@ Various helpers. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/tests/test_instance_config.py b/tests/test_instance_config.py index 733ee099..7c2ce6ff 100644 --- a/tests/test_instance_config.py +++ b/tests/test_instance_config.py @@ -3,7 +3,7 @@ tests.test_instance ~~~~~~~~~~~~~~~~~~~ - :copyright: (c) 2014 by the Flask Team, see AUTHORS for more details. + :copyright: (c) 2015 by the Flask Team, see AUTHORS for more details. :license: BSD, see LICENSE for more details. """ import os diff --git a/tests/test_regression.py b/tests/test_regression.py index 809236e2..80cb2659 100644 --- a/tests/test_regression.py +++ b/tests/test_regression.py @@ -5,7 +5,7 @@ Tests regressions. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/tests/test_reqctx.py b/tests/test_reqctx.py index 05e80709..b4f704a6 100644 --- a/tests/test_reqctx.py +++ b/tests/test_reqctx.py @@ -5,7 +5,7 @@ Tests the request context. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/tests/test_signals.py b/tests/test_signals.py index e9cabb93..e17acfd4 100644 --- a/tests/test_signals.py +++ b/tests/test_signals.py @@ -5,7 +5,7 @@ Signalling. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/tests/test_subclassing.py b/tests/test_subclassing.py index a32f8d2e..3f81ecd8 100644 --- a/tests/test_subclassing.py +++ b/tests/test_subclassing.py @@ -6,7 +6,7 @@ Test that certain behavior of flask can be customized by subclasses. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ import flask diff --git a/tests/test_templating.py b/tests/test_templating.py index 4df0c0db..7285c18c 100644 --- a/tests/test_templating.py +++ b/tests/test_templating.py @@ -5,7 +5,7 @@ Template functionality - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/tests/test_testing.py b/tests/test_testing.py index 81512bce..a9e06fab 100644 --- a/tests/test_testing.py +++ b/tests/test_testing.py @@ -5,7 +5,7 @@ Test client and more. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ import pytest diff --git a/tests/test_views.py b/tests/test_views.py index 1c164b10..8a66bd53 100644 --- a/tests/test_views.py +++ b/tests/test_views.py @@ -5,7 +5,7 @@ Pluggable views. - :copyright: (c) 2014 by Armin Ronacher. + :copyright: (c) 2015 by Armin Ronacher. :license: BSD, see LICENSE for more details. """