Skip to content

Commit 33534bb

Browse files
committed
Happy New Year 2015
1 parent 4fde65e commit 33534bb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+48
-48
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2014 by Armin Ronacher and contributors. See AUTHORS
1+
Copyright (c) 2015 by Armin Ronacher and contributors. See AUTHORS
22
for more details.
33

44
Some rights reserved.

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343

4444
# General information about the project.
4545
project = u'Flask'
46-
copyright = u'2014, Armin Ronacher'
46+
copyright = u'2015, Armin Ronacher'
4747

4848
# The version info for the project you're documenting, acts as replacement for
4949
# |version| and |release|, also used in various other places throughout the

examples/flaskr/flaskr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
A microblog example application written as Flask tutorial with
77
Flask and sqlite3.
88
9-
:copyright: (c) 2014 by Armin Ronacher.
9+
:copyright: (c) 2015 by Armin Ronacher.
1010
:license: BSD, see LICENSE for more details.
1111
"""
1212

examples/flaskr/test_flaskr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Tests the Flaskr application.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

examples/jqueryexample/jqueryexample.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
A simple application that shows how Flask and jQuery get along.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111
from flask import Flask, jsonify, render_template, request

examples/minitwit/minitwit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
A microblogging application written with Flask and sqlite3.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

examples/minitwit/test_minitwit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Tests the MiniTwit application.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111
import os

flask/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
A microframework based on Werkzeug. It's extensively documented
77
and follows best practice patterns.
88
9-
:copyright: (c) 2014 by Armin Ronacher.
9+
:copyright: (c) 2015 by Armin Ronacher.
1010
:license: BSD, see LICENSE for more details.
1111
"""
1212

flask/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Alias for flask.run for the command line.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

flask/_compat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
version of six so we don't have to depend on a specific version
88
of it.
99
10-
:copyright: (c) 2014 by Armin Ronacher.
10+
:copyright: (c) 2015 by Armin Ronacher.
1111
:license: BSD, see LICENSE for more details.
1212
"""
1313
import sys

flask/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
This module implements the central WSGI application object.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

flask/blueprints.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Blueprints are the recommended way to implement larger or more
77
pluggable applications in Flask 0.7 and later.
88
9-
:copyright: (c) 2014 by Armin Ronacher.
9+
:copyright: (c) 2015 by Armin Ronacher.
1010
:license: BSD, see LICENSE for more details.
1111
"""
1212
from functools import update_wrapper

flask/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
A simple command line application to run flask apps.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

flask/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Implements the configuration related objects.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

flask/ctx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Implements the objects required to keep the context.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

flask/debughelpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Various helpers to make the development experience better.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111
from ._compat import implements_to_string, text_type

flask/ext/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
We're switching from namespace packages because it was just too painful for
1515
everybody involved.
1616
17-
:copyright: (c) 2014 by Armin Ronacher.
17+
:copyright: (c) 2015 by Armin Ronacher.
1818
:license: BSD, see LICENSE for more details.
1919
"""
2020

flask/exthook.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
1717
This is used by `flask.ext`.
1818
19-
:copyright: (c) 2014 by Armin Ronacher.
19+
:copyright: (c) 2015 by Armin Ronacher.
2020
:license: BSD, see LICENSE for more details.
2121
"""
2222
import sys

flask/globals.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Defines all the global objects that are proxies to the current
77
active context.
88
9-
:copyright: (c) 2014 by Armin Ronacher.
9+
:copyright: (c) 2015 by Armin Ronacher.
1010
:license: BSD, see LICENSE for more details.
1111
"""
1212

flask/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Implements various helpers.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

flask/json.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Implementation helpers for the JSON support in Flask.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111
import io

flask/logging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Implements the logging support for Flask.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

flask/sessions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Implements cookie based sessions based on itsdangerous.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

flask/signals.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Implements signals based on blinker if available, otherwise
77
falls silently back to a noop.
88
9-
:copyright: (c) 2014 by Armin Ronacher.
9+
:copyright: (c) 2015 by Armin Ronacher.
1010
:license: BSD, see LICENSE for more details.
1111
"""
1212
signals_available = False

flask/templating.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Implements the bridge to Jinja2.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111
from jinja2 import BaseLoader, Environment as BaseEnvironment, \

flask/testing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Implements test support helpers. This module is lazily imported
77
and usually not used in production environments.
88
9-
:copyright: (c) 2014 by Armin Ronacher.
9+
:copyright: (c) 2015 by Armin Ronacher.
1010
:license: BSD, see LICENSE for more details.
1111
"""
1212

flask/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
This module provides class-based views inspired by the ones in Django.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111
from .globals import request

flask/wrappers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Implements the WSGI wrappers (request and response).
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

scripts/flask-07-upgrade.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
the most common patterns at least. The diff it generates should be
1717
hand reviewed and not applied blindly without making backups.
1818
19-
:copyright: (c) Copyright 2014 by Armin Ronacher.
19+
:copyright: (c) Copyright 2015 by Armin Ronacher.
2020
:license: see LICENSE for more details.
2121
"""
2222
import re

scripts/flaskext_compat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
flaskext_compat.activate()
1313
from flask.ext import foo
1414
15-
:copyright: (c) 2014 by Armin Ronacher.
15+
:copyright: (c) 2015 by Armin Ronacher.
1616
:license: BSD, see LICENSE for more details.
1717
"""
1818
import sys

scripts/flaskext_tester.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Tests the Flask extensions.
77
8-
:copyright: (c) 2014 by Ali Afshar.
8+
:copyright: (c) 2015 by Ali Afshar.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

scripts/make-release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Helper script that performs a release. Does pretty much everything
88
automatically for us.
99
10-
:copyright: (c) 2014 by Armin Ronacher.
10+
:copyright: (c) 2015 by Armin Ronacher.
1111
:license: BSD, see LICENSE for more details.
1212
"""
1313
import sys

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
tests.conftest
44
~~~~~~~~~~~~~~
55
6-
:copyright: (c) 2014 by the Flask Team, see AUTHORS for more details.
6+
:copyright: (c) 2015 by the Flask Team, see AUTHORS for more details.
77
:license: BSD, see LICENSE for more details.
88
"""
99
import flask

tests/test_appctx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Tests the application context.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

tests/test_basic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
The basic functionality.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

tests/test_blueprints.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Blueprints (and currently modules)
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

tests/test_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
tests.test_config
44
~~~~~~~~~~~~~~~~~
55
6-
:copyright: (c) 2014 by the Flask Team, see AUTHORS for more details.
6+
:copyright: (c) 2015 by the Flask Team, see AUTHORS for more details.
77
:license: BSD, see LICENSE for more details.
88
"""
99

tests/test_deprecations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Tests deprecation support. Not used currently.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

tests/test_ext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Tests the extension import thing.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

tests/test_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Various helpers.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

tests/test_instance_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
tests.test_instance
44
~~~~~~~~~~~~~~~~~~~
55
6-
:copyright: (c) 2014 by the Flask Team, see AUTHORS for more details.
6+
:copyright: (c) 2015 by the Flask Team, see AUTHORS for more details.
77
:license: BSD, see LICENSE for more details.
88
"""
99
import os

tests/test_regression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Tests regressions.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

tests/test_reqctx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Tests the request context.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

tests/test_signals.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Signalling.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

0 commit comments

Comments
 (0)