Browse Source

It's 2014

sh4nks 11 years ago
parent
commit
b8a25f1a4c

+ 1 - 1
LICENSE

@@ -1,4 +1,4 @@
-Copyright (c) 2013 by the FlaskBB Team  and contributors. See AUTHORS
+Copyright (c) 2014 by the FlaskBB Team  and contributors. See AUTHORS
 for more details.
 
 Some rights reserved.

+ 1 - 1
flaskbb/__init__.py

@@ -6,7 +6,7 @@
     FlaskBB is a forum software written in python using the
     microframework Flask.
 
-    :copyright: (c) 2013 by the FlaskBB Team.
+    :copyright: (c) 2014 by the FlaskBB Team.
     :license: BSD, see LICENSE for more details.
 """
 

+ 1 - 1
flaskbb/admin/forms.py

@@ -5,7 +5,7 @@
 
     It provides the forms that are needed for the admin views.
 
-    :copyright: (c) 2013 by the FlaskBB Team.
+    :copyright: (c) 2014 by the FlaskBB Team.
     :license: BSD, see LICENSE for more details.
 """
 from flask.ext.wtf import Form

+ 9 - 0
flaskbb/admin/views.py

@@ -1,4 +1,13 @@
 # -*- coding: utf-8 -*-
+"""
+    flaskbb.admin.views
+    ~~~~~~~~~~~~~~~~~~~
+
+    This module handles the admin views.
+
+    :copyright: (c) 2014 by the FlaskBB Team.
+    :license: BSD, see LICENSE for more details.
+"""
 import sys
 
 from flask import (Blueprint, render_template, current_app, request, redirect,

+ 1 - 1
flaskbb/app.py

@@ -5,7 +5,7 @@
 
     manages the app creation and configuration process
 
-    :copyright: (c) 2013 by the FlaskBB Team.
+    :copyright: (c) 2014 by the FlaskBB Team.
     :license: BSD, see LICENSE for more details.
 """
 import os

+ 1 - 1
flaskbb/auth/forms.py

@@ -5,7 +5,7 @@
 
     It provides the forms that are needed for the auth views.
 
-    :copyright: (c) 2013 by the FlaskBB Team.
+    :copyright: (c) 2014 by the FlaskBB Team.
     :license: BSD, see LICENSE for more details.
 """
 from datetime import datetime

+ 1 - 1
flaskbb/auth/views.py

@@ -6,7 +6,7 @@
     This view provides user authentication, registration and a view for
     resetting the password of a user if he has lost his password
 
-    :copyright: (c) 2013 by the FlaskBB Team.
+    :copyright: (c) 2014 by the FlaskBB Team.
     :license: BSD, see LICENSE for more details.
 """
 from flask import (Blueprint, flash, redirect, render_template,

+ 1 - 1
flaskbb/configs/default.py

@@ -6,7 +6,7 @@
     This is the default configuration for FlaskBB that every site should have.
     You can override these configuration variables in another class.
 
-    :copyright: (c) 2013 by the FlaskBB Team.
+    :copyright: (c) 2014 by the FlaskBB Team.
     :license: BSD, see LICENSE for more details.
 """
 import os

+ 1 - 1
flaskbb/configs/development.py.example

@@ -4,7 +4,7 @@
 
     This is the FlaskBB's development config.
 
-    :copyright: (c) 2013 by the FlaskBB Team.
+    :copyright: (c) 2014 by the FlaskBB Team.
     :license: BSD, see LICENSE for more details.
 """
 from flaskbb.configs.default import DefaultConfig

+ 1 - 1
flaskbb/configs/production.py.example

@@ -4,7 +4,7 @@
 
     This is how a production configuration can look like.
 
-    :copyright: (c) 2013 by the FlaskBB Team.
+    :copyright: (c) 2014 by the FlaskBB Team.
     :license: BSD, see LICENSE for more details.
 """
 from flaskbb.configs.default import DefaultConfig

+ 1 - 1
flaskbb/decorators.py

@@ -5,7 +5,7 @@
 
     A place for our decorators.
 
-    :copyright: (c) 2013 by the FlaskBB Team.
+    :copyright: (c) 2014 by the FlaskBB Team.
     :license: BSD, see LICENSE for more details.
 """
 from functools import wraps

+ 1 - 1
flaskbb/email.py

@@ -5,7 +5,7 @@
 
     This module adds the functionality to send emails
 
-    :copyright: (c) 2013 by the FlaskBB Team.
+    :copyright: (c) 2014 by the FlaskBB Team.
     :license: BSD, see LICENSE for more details.
 """
 from flask import render_template

+ 1 - 1
flaskbb/extensions.py

@@ -5,7 +5,7 @@
 
     The extensions that are used by FlaskBB.
 
-    :copyright: (c) 2013 by the FlaskBB Team.
+    :copyright: (c) 2014 by the FlaskBB Team.
     :license: BSD, see LICENSE for more details.
 """
 from flask.ext.sqlalchemy import SQLAlchemy

+ 1 - 1
flaskbb/forum/forms.py

@@ -5,7 +5,7 @@
 
     It provides the forms that are needed for the forum views.
 
-    :copyright: (c) 2013 by the FlaskBB Team.
+    :copyright: (c) 2014 by the FlaskBB Team.
     :license: BSD, see LICENSE for more details.
 """
 from flask.ext.wtf import Form

+ 1 - 1
flaskbb/forum/helpers.py

@@ -5,7 +5,7 @@
 
     A few helper functions that are used by the forum's module.
 
-    :copyright: (c) 2013 by the FlaskBB Team.
+    :copyright: (c) 2014 by the FlaskBB Team.
     :license: BSD, see LICENSE for more details.
 """
 from collections import OrderedDict

+ 1 - 1
flaskbb/forum/models.py

@@ -5,7 +5,7 @@
 
     It provides the models for the forum
 
-    :copyright: (c) 2013 by the FlaskBB Team.
+    :copyright: (c) 2014 by the FlaskBB Team.
     :license: BSD, see LICENSE for more details.
 """
 from datetime import datetime, timedelta

+ 1 - 1
flaskbb/forum/views.py

@@ -6,7 +6,7 @@
     This module handles the forum logic like creating and viewing
     topics and posts.
 
-    :copyright: (c) 2013 by the FlaskBB Team.
+    :copyright: (c) 2014 by the FlaskBB Team.
     :license: BSD, see LICENSE for more details.
 """
 import datetime

+ 1 - 1
flaskbb/user/forms.py

@@ -5,7 +5,7 @@
 
     It provides the forms that are needed for the user views.
 
-    :copyright: (c) 2013 by the FlaskBB Team.
+    :copyright: (c) 2014 by the FlaskBB Team.
     :license: BSD, see LICENSE for more details.
 """
 from flask.ext.login import current_user

+ 1 - 1
flaskbb/user/models.py

@@ -5,7 +5,7 @@
 
     This module provides the models for the user.
 
-    :copyright: (c) 2013 by the FlaskBB Team.
+    :copyright: (c) 2014 by the FlaskBB Team.
     :license: BSD, see LICENSE for more details.
 """
 import sys

+ 1 - 1
flaskbb/user/views.py

@@ -6,7 +6,7 @@
     The user view handles the user profile
     and the user settings from a signed in user.
 
-    :copyright: (c) 2013 by the FlaskBB Team.
+    :copyright: (c) 2014 by the FlaskBB Team.
     :license: BSD, see LICENSE for more details.
 """
 from datetime import datetime

+ 1 - 1
flaskbb/utils/helpers.py

@@ -5,7 +5,7 @@
 
     A few helpers that are used by flaskbb
 
-    :copyright: (c) 2013 by the FlaskBB Team.
+    :copyright: (c) 2014 by the FlaskBB Team.
     :license: BSD, see LICENSE for more details.
 """
 import time

+ 1 - 1
flaskbb/utils/populate.py

@@ -5,7 +5,7 @@
 
     A module that makes creating data more easily
 
-    :copyright: (c) 2013 by the FlaskBB Team.
+    :copyright: (c) 2014 by the FlaskBB Team.
     :license: BSD, see LICENSE for more details.
 """
 from collections import OrderedDict

+ 1 - 1
flaskbb/utils/query.py

@@ -5,7 +5,7 @@
 
     This module holds the query classes that are used by flaskbb
 
-    :copyright: (c) 2013 by the FlaskBB Team.
+    :copyright: (c) 2014 by the FlaskBB Team.
     :license: BSD, see LICENSE for more details.
 """
 from math import ceil

+ 1 - 1
flaskbb/utils/types.py

@@ -5,7 +5,7 @@
 
     Additional types for SQLAlchemy
 
-    :copyright: (c) 2013 by the FlaskBB Team.
+    :copyright: (c) 2014 by the FlaskBB Team.
     :license: BSD, see LICENSE for more details.
 """
 from sqlalchemy import types

+ 1 - 1
flaskbb/utils/widgets.py

@@ -5,7 +5,7 @@
 
     Additional widgets for wtforms
 
-    :copyright: (c) 2013 by the FlaskBB Team.
+    :copyright: (c) 2014 by the FlaskBB Team.
     :license: BSD, see LICENSE for more details.
 """
 from datetime import datetime

+ 1 - 1
manage.py

@@ -7,7 +7,7 @@
     You can also run the development server with it.
     Just type `python manage.py` to see the full list of commands.
 
-    :copyright: (c) 2013 by the FlaskBB Team.
+    :copyright: (c) 2014 by the FlaskBB Team.
     :license: BSD, see LICENSE for more details.
 """
 from flask import current_app