Browse Source

Add and update source file headers

sh4nks 9 years ago
parent
commit
1e7c19dbc4

+ 1 - 1
LICENSE

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

+ 1 - 1
flaskbb/__init__.py

@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 """
     flaskbb
-    ~~~~~~~~~~~~~~~~~~~~
+    ~~~~~~~
 
     FlaskBB is a forum software written in python using the
     microframework Flask.

+ 1 - 1
flaskbb/app.py

@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 """
     flaskbb.app
-    ~~~~~~~~~~~~~~~~~~~~
+    ~~~~~~~~~~~
 
     manages the app creation and configuration process
 

+ 1 - 1
flaskbb/auth/forms.py

@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 """
     flaskbb.auth.forms
-    ~~~~~~~~~~~~~~~~~~~~
+    ~~~~~~~~~~~~~~~~~~
 
     It provides the forms that are needed for the auth views.
 

+ 1 - 1
flaskbb/auth/views.py

@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 """
     flaskbb.auth.views
-    ~~~~~~~~~~~~~~~~~~~~
+    ~~~~~~~~~~~~~~~~~~
 
     This view provides user authentication, registration and a view for
     resetting the password of a user if he has lost his password

+ 2 - 2
flaskbb/email.py

@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 """
-    flaskbb.emails
-    ~~~~~~~~~~~~~~~~~~~~
+    flaskbb.email
+    ~~~~~~~~~~~~~
 
     This module adds the functionality to send emails
 

+ 1 - 1
flaskbb/extensions.py

@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 """
     flaskbb.extensions
-    ~~~~~~~~~~~~~~~~~~~~
+    ~~~~~~~~~~~~~~~~~~
 
     The extensions that are used by FlaskBB.
 

+ 1 - 1
flaskbb/forum/forms.py

@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 """
     flaskbb.forum.forms
-    ~~~~~~~~~~~~~~~~~~~~
+    ~~~~~~~~~~~~~~~~~~~
 
     It provides the forms that are needed for the forum views.
 

+ 1 - 1
flaskbb/forum/views.py

@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 """
     flaskbb.forum.views
-    ~~~~~~~~~~~~~~~~~~~~
+    ~~~~~~~~~~~~~~~~~~~
 
     This module handles the forum logic like creating and viewing
     topics and posts.

+ 10 - 0
flaskbb/plugins/__init__.py

@@ -1,3 +1,13 @@
+# -*- coding: utf-8 -*-
+"""
+    flaskbb.plugins
+    ~~~~~~~~~~~~~~~
+
+    This module contains the Plugin class used by all Plugins for FlaskBB.
+
+    :copyright: (c) 2014 by the FlaskBB Team.
+    :license: BSD, see LICENSE for more details.
+"""
 from flask import current_app
 from flask_plugins import Plugin
 

+ 10 - 0
flaskbb/plugins/portal/__init__.py

@@ -1,3 +1,13 @@
+# -*- coding: utf-8 -*-
+"""
+    flaskbb.plugins.portal
+    ~~~~~~~~~~~~~~~~~~~~~~
+
+    A Portal Plugin for FlaskBB.
+
+    :copyright: (c) 2014 by the FlaskBB Team.
+    :license: BSD, see LICENSE for more details.
+"""
 from flask.ext.plugins import connect_event
 
 from flaskbb.plugins import FlaskBBPlugin

+ 9 - 0
flaskbb/plugins/portal/views.py

@@ -1,4 +1,13 @@
 # -*- coding: utf-8 -*-
+"""
+    flaskbb.plugins.portal.views
+    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+    This module contains the portal view.
+
+    :copyright: (c) 2014 by the FlaskBB Team.
+    :license: BSD, see LICENSE for more details.
+"""
 from flask import Blueprint, current_app, flash, request
 from flask_babelplus import gettext as _
 from flask_login import current_user

+ 1 - 1
flaskbb/user/forms.py

@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 """
     flaskbb.user.forms
-    ~~~~~~~~~~~~~~~~~~~~
+    ~~~~~~~~~~~~~~~~~~
 
     It provides the forms that are needed for the user views.
 

+ 1 - 1
flaskbb/user/models.py

@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 """
     flaskbb.user.models
-    ~~~~~~~~~~~~~~~~~~~~
+    ~~~~~~~~~~~~~~~~~~~
 
     This module provides the models for the user.
 

+ 1 - 1
flaskbb/user/views.py

@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 """
     flaskbb.user.views
-    ~~~~~~~~~~~~~~~~~~~~
+    ~~~~~~~~~~~~~~~~~~
 
     The user view handles the user profile
     and the user settings from a signed in user.

+ 10 - 0
flaskbb/utils/datastructures.py

@@ -1,3 +1,13 @@
+# -*- coding: utf-8 -*-
+"""
+    flaskbb.utils.datastructures
+    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+    A few helpers that are used by flaskbb
+
+    :copyright: (c) 2014 by the FlaskBB Team.
+    :license: BSD, see LICENSE for more details.
+"""
 try:
     from types import SimpleNamespace
 

+ 1 - 1
flaskbb/utils/helpers.py

@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 """
     flaskbb.utils.helpers
-    ~~~~~~~~~~~~~~~~~~~~
+    ~~~~~~~~~~~~~~~~~~~~~
 
     A few helpers that are used by flaskbb
 

+ 10 - 0
flaskbb/utils/markup.py

@@ -1,3 +1,13 @@
+# -*- coding: utf-8 -*-
+"""
+    flaskbb.utils.markup
+    ~~~~~~~~~~~~~~~~~~~~
+
+    A module for all markup related stuff like markdown and emojis.
+
+    :copyright: (c) 2016 by the FlaskBB Team.
+    :license: BSD, see LICENSE for more details.
+"""
 import os
 import re
 

+ 1 - 1
flaskbb/utils/populate.py

@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 """
     flaskbb.utils.populate
-    ~~~~~~~~~~~~~~~~~~~~
+    ~~~~~~~~~~~~~~~~~~~~~~
 
     A module that makes creating data more easily
 

+ 10 - 0
flaskbb/utils/translations.py

@@ -1,3 +1,13 @@
+# -*- coding: utf-8 -*-
+"""
+    flaskbb.utils.translations
+    ~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+    This module contains the translation Domain used by FlaskBB.
+
+    :copyright: (c) 2016 by the FlaskBB Team.
+    :license: BSD, see LICENSE for more details.
+"""
 import os
 
 import babel

+ 10 - 0
flaskbb/utils/views.py

@@ -1,3 +1,13 @@
+# -*- coding: utf-8 -*-
+"""
+    flaskbb.utils.views
+    ~~~~~~~~~~~~~~~~~~~
+
+    This module contains some helpers for creating views.
+
+    :copyright: (c) 2016 by the FlaskBB Team.
+    :license: BSD, see LICENSE for more details.
+"""
 from flaskbb.utils.helpers import render_template
 from flask.views import View
 

+ 1 - 1
flaskbb/utils/widgets.py

@@ -3,7 +3,7 @@
     flaskbb.utils.widgets
     ~~~~~~~~~~~~~~~~~~~~~
 
-    Additional widgets for wtforms
+    Additional widgets for wtforms.
 
     :copyright: (c) 2014 by the FlaskBB Team.
     :license: BSD, see LICENSE for more details.