Skip to content

Commit

Permalink
Happy New Year 2014
Browse files Browse the repository at this point in the history
  • Loading branch information
DasIch committed Jan 2, 2014
1 parent a3a2f52 commit 52098e1
Show file tree
Hide file tree
Showing 45 changed files with 45 additions and 45 deletions.
2 changes: 1 addition & 1 deletion examples/flaskr/flaskr.py
Expand Up @@ -6,7 +6,7 @@
A microblog example application written as Flask tutorial with
Flask and sqlite3.
:copyright: (c) 2010 by Armin Ronacher.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion examples/flaskr/flaskr_tests.py
Expand Up @@ -5,7 +5,7 @@
Tests the Flaskr application.
:copyright: (c) 2010 by Armin Ronacher.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""
import os
Expand Down
2 changes: 1 addition & 1 deletion examples/jqueryexample/jqueryexample.py
Expand Up @@ -5,7 +5,7 @@
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.
"""
from flask import Flask, jsonify, render_template, request
Expand Down
2 changes: 1 addition & 1 deletion examples/minitwit/minitwit.py
Expand Up @@ -5,7 +5,7 @@
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.
"""

Expand Down
2 changes: 1 addition & 1 deletion examples/minitwit/minitwit_tests.py
Expand Up @@ -5,7 +5,7 @@
Tests the MiniTwit application.
:copyright: (c) 2010 by Armin Ronacher.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""
import os
Expand Down
2 changes: 1 addition & 1 deletion flask/__init__.py
Expand Up @@ -6,7 +6,7 @@
A microframework based on Werkzeug. It's extensively documented
and follows best practice patterns.
:copyright: (c) 2011 by Armin Ronacher.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion flask/_compat.py
Expand Up @@ -7,7 +7,7 @@
version of six so we don't have to depend on a specific version
of it.
:copyright: (c) 2013 by Armin Ronacher.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""
import sys
Expand Down
2 changes: 1 addition & 1 deletion flask/app.py
Expand Up @@ -5,7 +5,7 @@
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.
"""

Expand Down
2 changes: 1 addition & 1 deletion flask/blueprints.py
Expand Up @@ -6,7 +6,7 @@
Blueprints are the recommended way to implement larger or more
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.
"""
from functools import update_wrapper
Expand Down
2 changes: 1 addition & 1 deletion flask/config.py
Expand Up @@ -5,7 +5,7 @@
Implements the configuration related objects.
:copyright: (c) 2011 by Armin Ronacher.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion flask/ctx.py
Expand Up @@ -5,7 +5,7 @@
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.
"""

Expand Down
2 changes: 1 addition & 1 deletion flask/debughelpers.py
Expand Up @@ -5,7 +5,7 @@
Various helpers to make the development experience better.
:copyright: (c) 2011 by Armin Ronacher.
1 :copyright: (c) 2014 by Armin Ronacher.

This comment has been minimized.

Copy link
@murphyne

murphyne Jan 11, 2014

I guess that "1" isn't supposed to be there.

:license: BSD, see LICENSE for more details.
"""
from ._compat import implements_to_string
Expand Down
2 changes: 1 addition & 1 deletion flask/ext/__init__.py
Expand Up @@ -14,7 +14,7 @@
We're switching from namespace packages because it was just too painful for
everybody involved.
:copyright: (c) 2011 by Armin Ronacher.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion flask/exthook.py
Expand Up @@ -16,7 +16,7 @@
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.
"""
import sys
Expand Down
2 changes: 1 addition & 1 deletion flask/globals.py
Expand Up @@ -6,7 +6,7 @@
Defines all the global objects that are proxies to the current
active context.
:copyright: (c) 2011 by Armin Ronacher.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion flask/helpers.py
Expand Up @@ -5,7 +5,7 @@
Implements various helpers.
:copyright: (c) 2011 by Armin Ronacher.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion flask/json.py
Expand Up @@ -5,7 +5,7 @@
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.
"""
import io
Expand Down
2 changes: 1 addition & 1 deletion flask/logging.py
Expand Up @@ -5,7 +5,7 @@
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.
"""

Expand Down
2 changes: 1 addition & 1 deletion flask/module.py
Expand Up @@ -5,7 +5,7 @@
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.
"""

Expand Down
2 changes: 1 addition & 1 deletion flask/sessions.py
Expand Up @@ -5,7 +5,7 @@
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.
"""

Expand Down
2 changes: 1 addition & 1 deletion flask/signals.py
Expand Up @@ -6,7 +6,7 @@
Implements signals based on blinker if available, otherwise
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.
"""
signals_available = False
Expand Down
2 changes: 1 addition & 1 deletion flask/templating.py
Expand Up @@ -5,7 +5,7 @@
Implements the bridge to Jinja2.
:copyright: (c) 2011 by Armin Ronacher.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""
import posixpath
Expand Down
2 changes: 1 addition & 1 deletion flask/testing.py
Expand Up @@ -6,7 +6,7 @@
Implements test support helpers. This module is lazily imported
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.
"""

Expand Down
2 changes: 1 addition & 1 deletion flask/testsuite/__init__.py
Expand Up @@ -6,7 +6,7 @@
Tests Flask itself. The majority of Flask is already tested
as part of Werkzeug.
:copyright: (c) 2011 by Armin Ronacher.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion flask/testsuite/appctx.py
Expand Up @@ -5,7 +5,7 @@
Tests the application context.
:copyright: (c) 2012 by Armin Ronacher.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion flask/testsuite/basic.py
Expand Up @@ -5,7 +5,7 @@
The basic functionality.
:copyright: (c) 2011 by Armin Ronacher.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion flask/testsuite/blueprints.py
Expand Up @@ -5,7 +5,7 @@
Blueprints (and currently modules)
:copyright: (c) 2011 by Armin Ronacher.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion flask/testsuite/config.py
Expand Up @@ -5,7 +5,7 @@
Configuration and instances.
:copyright: (c) 2011 by Armin Ronacher.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion flask/testsuite/deprecations.py
Expand Up @@ -5,7 +5,7 @@
Tests deprecation support.
:copyright: (c) 2011 by Armin Ronacher.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion flask/testsuite/examples.py
Expand Up @@ -5,7 +5,7 @@
Tests the examples.
:copyright: (c) 2011 by Armin Ronacher.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""
import os
Expand Down
2 changes: 1 addition & 1 deletion flask/testsuite/ext.py
Expand Up @@ -5,7 +5,7 @@
Tests the extension import thing.
:copyright: (c) 2011 by Armin Ronacher.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion flask/testsuite/helpers.py
Expand Up @@ -5,7 +5,7 @@
Various helpers.
:copyright: (c) 2011 by Armin Ronacher.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion flask/testsuite/regression.py
Expand Up @@ -5,7 +5,7 @@
Tests regressions.
:copyright: (c) 2011 by Armin Ronacher.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion flask/testsuite/reqctx.py
Expand Up @@ -5,7 +5,7 @@
Tests the request context.
:copyright: (c) 2012 by Armin Ronacher.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion flask/testsuite/signals.py
Expand Up @@ -5,7 +5,7 @@
Signalling.
:copyright: (c) 2011 by Armin Ronacher.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion flask/testsuite/subclassing.py
Expand Up @@ -6,7 +6,7 @@
Test that certain behavior of flask can be customized by
subclasses.
:copyright: (c) 2011 by Armin Ronacher.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""
import flask
Expand Down
2 changes: 1 addition & 1 deletion flask/testsuite/templating.py
Expand Up @@ -5,7 +5,7 @@
Template functionality
:copyright: (c) 2011 by Armin Ronacher.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion flask/testsuite/testing.py
Expand Up @@ -5,7 +5,7 @@
Test client and more.
:copyright: (c) 2011 by Armin Ronacher.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion flask/testsuite/views.py
Expand Up @@ -5,7 +5,7 @@
Pluggable views.
:copyright: (c) 2011 by Armin Ronacher.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion flask/views.py
Expand Up @@ -5,7 +5,7 @@
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.
"""
from .globals import request
Expand Down
2 changes: 1 addition & 1 deletion flask/wrappers.py
Expand Up @@ -5,7 +5,7 @@
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.
"""

Expand Down
2 changes: 1 addition & 1 deletion scripts/flask-07-upgrade.py
Expand Up @@ -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 2011 by Armin Ronacher.
:copyright: (c) Copyright 2014 by Armin Ronacher.
:license: see LICENSE for more details.
"""
import re
Expand Down
2 changes: 1 addition & 1 deletion scripts/flaskext_compat.py
Expand Up @@ -12,7 +12,7 @@
flaskext_compat.activate()
from flask.ext import foo
:copyright: (c) 2011 by Armin Ronacher.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""
import sys
Expand Down
2 changes: 1 addition & 1 deletion scripts/flaskext_test.py
Expand Up @@ -5,7 +5,7 @@
Tests the Flask extensions.
:copyright: (c) 2010 by Ali Afshar.
:copyright: (c) 2014 by Ali Afshar.
:license: BSD, see LICENSE for more details.
"""

Expand Down

1 comment on commit 52098e1

@sfermigier
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't it be "Copyright 2010-2014" (or 2011-...) instead ?

Please sign in to comment.