Skip to content

Commit

Permalink
prepare 0.13.10
Browse files Browse the repository at this point in the history
  • Loading branch information
barseghyanartur committed Feb 28, 2019
1 parent cec5bd9 commit 6260cb4
Show file tree
Hide file tree
Showing 648 changed files with 821 additions and 642 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ are used for versioning (schema follows below):
0.3.4 to 0.4).
- All backwards incompatible changes are mentioned in this document.

0.13.10
-------
2019-02-28

- Add `mail_sender` DRF integration plugin.

0.13.9
------
2019-02-28
Expand Down
2 changes: 1 addition & 1 deletion LICENSE_GPL2.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

django-fobi - A customisable, modular form builder application for Django.
Copyright (C) 2013-2018 Artur Barseghyan
Copyright (C) 2013-2019 Artur Barseghyan

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion LICENSE_LGPL_2.1.txt
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ convey the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.

django-fobi - A customisable, modular form builder application for Django.
Copyright (C) 2013-2018 Artur Barseghyan
Copyright (C) 2013-2019 Artur Barseghyan

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
Expand Down
6 changes: 6 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ are used for versioning (schema follows below):
0.3.4 to 0.4).
- All backwards incompatible changes are mentioned in this document.

0.13.10
-------
2019-02-28

- Add `mail_sender` DRF integration plugin.

0.13.9
------
2019-02-28
Expand Down
4 changes: 2 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5746,7 +5746,7 @@ Installation
values: "val", "repr" or "mix" to get the desired behaviour.

Usage
-----
~~~~~
You should be entering a single choice per line. Choice might
consist of just a single value or value/label pair.

Expand Down Expand Up @@ -6350,7 +6350,7 @@ Installation
following values: "val", "repr" or "mix" to get the desired behaviour.

Usage
-----
~~~~~
You should be entering a single choice per line. Choice might
consist of just a single value or value/label pair. If you enter an integer in
the 'max_choices' field, the user can choose only <max_choices> or less choices.
Expand Down
1 change: 1 addition & 0 deletions examples/simple/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -462,6 +462,7 @@ def gettext(s):
# Form handlers
'fobi.contrib.apps.drf_integration.form_handlers.db_store',
'fobi.contrib.apps.drf_integration.form_handlers.mail',
'fobi.contrib.apps.drf_integration.form_handlers.mail_sender',
'fobi.contrib.apps.drf_integration.form_handlers.http_repost',

# ***********************************************************************
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from distutils.version import LooseVersion
from setuptools import setup, find_packages

version = '0.13.9'
version = '0.13.10'

# ***************************************************************************
# ************************** Python version *********************************
Expand Down
4 changes: 2 additions & 2 deletions src/fobi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__title__ = 'django-fobi'
__version__ = '0.13.9'
__version__ = '0.13.10'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'

default_app_config = 'fobi.apps.Config'
2 changes: 1 addition & 1 deletion src/fobi/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

__title__ = 'fobi.admin'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = (
'base_bulk_change_plugins',
Expand Down
2 changes: 1 addition & 1 deletion src/fobi/app.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__title__ = 'fobi.app'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('app_name', 'app_config',)

Expand Down
2 changes: 1 addition & 1 deletion src/fobi/apps.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__title__ = 'fobi.apps'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('Config',)

Expand Down
2 changes: 1 addition & 1 deletion src/fobi/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@

__title__ = 'fobi.base'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = (
'assemble_form_field_widget_class',
Expand Down
2 changes: 1 addition & 1 deletion src/fobi/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from . import defaults

__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('get_setting',)

Expand Down
2 changes: 1 addition & 1 deletion src/fobi/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__title__ = 'fobi.constants'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = (
'ACTION_CHOICE_REPLACE',
Expand Down
2 changes: 1 addition & 1 deletion src/fobi/context_processors.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

__title__ = 'fobi.context_processors'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = (
'dynamic_values',
Expand Down
2 changes: 1 addition & 1 deletion src/fobi/contrib/apps/djangocms_integration/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__title__ = 'fobi.contrib.apps.djangocms_integration'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('default_app_config',)

Expand Down
2 changes: 1 addition & 1 deletion src/fobi/contrib/apps/djangocms_integration/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__title__ = 'fobi.contrib.apps.djangocms_integration.apps'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('Config',)

Expand Down
2 changes: 1 addition & 1 deletion src/fobi/contrib/apps/djangocms_integration/cms_plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

__title__ = 'fobi.contrib.apps.djangocms_integration.cms_plugins'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('FobiFormWidgetPlugin',)

Expand Down
2 changes: 1 addition & 1 deletion src/fobi/contrib/apps/djangocms_integration/cms_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__title__ = 'fobi.contrib.apps.djangocms_integration.cms_version'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = (
'CMS_VERSION',
Expand Down
2 changes: 1 addition & 1 deletion src/fobi/contrib/apps/djangocms_integration/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

__title__ = 'fobi.contrib.apps.djangocms_integration.conf'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('get_setting',)

Expand Down
2 changes: 1 addition & 1 deletion src/fobi/contrib/apps/djangocms_integration/defaults.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__title__ = 'fobi.contrib.apps.djangocms_integration.defaults'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = (
'WIDGET_FORM_SENT_GET_PARAM',
Expand Down
2 changes: 1 addition & 1 deletion src/fobi/contrib/apps/djangocms_integration/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

__title__ = 'fobi.contrib.apps.djangocms_integration.helpers'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = (
'get_form_template_choices',
Expand Down
2 changes: 1 addition & 1 deletion src/fobi/contrib/apps/djangocms_integration/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

__title__ = 'fobi.contrib.apps.djangocms_integration.models'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('FobiFormWidget',)

Expand Down
2 changes: 1 addition & 1 deletion src/fobi/contrib/apps/djangocms_integration/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

__title__ = 'fobi.contrib.apps.djangocms_integration.settings'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = (
'WIDGET_FORM_SENT_GET_PARAM',
Expand Down
2 changes: 1 addition & 1 deletion src/fobi/contrib/apps/drf_integration/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__title__ = 'fobi.contrib.apps.drf_integration'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2016-2018 Artur Barseghyan'
__copyright__ = '2016-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('default_app_config',)

Expand Down
2 changes: 1 addition & 1 deletion src/fobi/contrib/apps/drf_integration/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__title__ = 'fobi.contrib.apps.drf_integration.apps'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2016-2018 Artur Barseghyan'
__copyright__ = '2016-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('Config',)

Expand Down
2 changes: 1 addition & 1 deletion src/fobi/contrib/apps/drf_integration/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

__title__ = 'fobi.contrib.apps.drf_integration.base'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2016-2018 Artur Barseghyan'
__copyright__ = '2016-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = (
'DRFIntegrationFormElementPluginProcessor',
Expand Down
2 changes: 1 addition & 1 deletion src/fobi/contrib/apps/drf_integration/dynamic.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

__title__ = 'fobi.contrib.apps.drf_integration.dynamic'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = (
'assemble_serializer_class',
Expand Down
2 changes: 1 addition & 1 deletion src/fobi/contrib/apps/drf_integration/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

__title__ = 'fobi.contrib.apps.drf_integration.fields'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2016-2018 Artur Barseghyan'
__copyright__ = '2016-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = (
'ContentImageField',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__title__ = 'fobi.contrib.apps.drf_integration.form_elements.content.' \
'content_image'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('default_app_config', 'UID',)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
__title__ = 'fobi.contrib.apps.drf_integration.form_elements.content.' \
'content_image.apps'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('Config',)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
__title__ = 'fobi.contrib.apps.drf_integration.form_elements.content.' \
'content_image.base'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('ContentImagePlugin',)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
__title__ = 'fobi.contrib.apps.drf_integration.form_elements.content.' \
'content_image.fobi_integration_form_elements'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('ContentImagePlugin',)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__title__ = 'fobi.contrib.apps.drf_integration.form_elements.content.' \
'content_image_url'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('default_app_config', 'UID',)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
__title__ = 'fobi.contrib.apps.drf_integration.form_elements.content.' \
'content_image_url.apps'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('Config',)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
__title__ = 'fobi.contrib.apps.drf_integration.form_elements.content.' \
'content_image_url.base'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('ContentImageURLPlugin',)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
__title__ = 'fobi.contrib.apps.drf_integration.form_elements.content.' \
'content_image_url.fobi_integration_form_elements'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('ContentImageURLPlugin',)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__title__ = 'fobi.contrib.apps.drf_integration.form_elements.content.' \
'content_markdown'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('default_app_config', 'UID',)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
__title__ = 'fobi.contrib.apps.drf_integration.form_elements.content.' \
'content_markdown.apps'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('Config',)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
__title__ = 'fobi.contrib.apps.drf_integration.form_elements.content.' \
'content_markdown.base'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('ContentMarkdownPlugin',)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
__title__ = 'fobi.contrib.apps.drf_integration.form_elements.content.' \
'content_markdown.fobi_integration_form_elements'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('ContentMarkdownPlugin',)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__title__ = 'fobi.contrib.apps.drf_integration.form_elements.content.' \
'content_richtext'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('default_app_config', 'UID',)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
__title__ = 'fobi.contrib.apps.drf_integration.form_elements.content.' \
'content_richtext.apps'
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2018 Artur Barseghyan'
__copyright__ = '2014-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('Config',)

Expand Down
Loading

0 comments on commit 6260cb4

Please sign in to comment.