mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-04-21 21:44:43 +00:00
cleanup
This commit is contained in:
parent
09f5b2493c
commit
52be17c2fe
3 changed files with 23 additions and 9 deletions
|
|
@ -15,14 +15,21 @@ are used for versioning (schema follows below):
|
|||
0.3.4 to 0.4).
|
||||
- All backwards incompatible changes are mentioned in this document.
|
||||
|
||||
0.12.17
|
||||
--------
|
||||
yyyy-mm-dd (not released yet)
|
||||
|
||||
- Minor fixes and cleanups.
|
||||
- If CKEditor is installed, use it (rich text) for success page message.
|
||||
|
||||
0.12.16
|
||||
--------
|
||||
2018-01-21
|
||||
|
||||
.. note::
|
||||
|
||||
Note, that this release contains minor backwards incompatible changes, that may
|
||||
slightly break your JS and/or styling.
|
||||
Note, that this release contains minor backwards incompatible changes, that
|
||||
may slightly break your JS and/or styling.
|
||||
|
||||
The `form-horizontal` class attribute on the main form with elements (in
|
||||
templates) has been replaced with `fobi-form` id attribute.
|
||||
|
|
|
|||
|
|
@ -15,14 +15,21 @@ are used for versioning (schema follows below):
|
|||
0.3.4 to 0.4).
|
||||
- All backwards incompatible changes are mentioned in this document.
|
||||
|
||||
0.12.17
|
||||
--------
|
||||
yyyy-mm-dd (not released yet)
|
||||
|
||||
- Minor fixes and cleanups.
|
||||
- If CKEditor is installed, use it (rich text) for success page message.
|
||||
|
||||
0.12.16
|
||||
--------
|
||||
2018-01-21
|
||||
|
||||
.. note::
|
||||
|
||||
Note, that this release contains minor backwards incompatible changes, that may
|
||||
slightly break your JS and/or styling.
|
||||
Note, that this release contains minor backwards incompatible changes, that
|
||||
may slightly break your JS and/or styling.
|
||||
|
||||
The `form-horizontal` class attribute on the main form with elements (in
|
||||
templates) has been replaced with `fobi-form` id attribute.
|
||||
|
|
|
|||
|
|
@ -2769,7 +2769,7 @@ def assemble_form_field_widget_class(base_class, plugin):
|
|||
def get_registered_plugins(registry, as_instances=False, sort_items=True):
|
||||
"""Get registered plugins.
|
||||
|
||||
Get a list of registered plugins in a form if tuple (plugin name, plugin
|
||||
Get a list of registered plugins in a form of tuple (plugin name, plugin
|
||||
description). If not yet auto-discovered, auto-discovers them.
|
||||
|
||||
:param registry:
|
||||
|
|
@ -2797,7 +2797,7 @@ def get_registered_plugins(registry, as_instances=False, sort_items=True):
|
|||
def get_registered_plugins_grouped(registry, sort_items=True):
|
||||
"""Get registered plugins grouped.
|
||||
|
||||
Gets a list of registered plugins in a form if tuple (plugin name, plugin
|
||||
Gets a list of registered plugins in a form of tuple (plugin name, plugin
|
||||
description). If not yet auto-discovered, auto-discovers them.
|
||||
|
||||
:return dict:
|
||||
|
|
@ -2861,7 +2861,7 @@ def validate_plugin_uid(registry, plugin_uid):
|
|||
def get_registered_form_element_plugins():
|
||||
"""Get registered form element plugins.
|
||||
|
||||
Gets a list of registered plugins in a form if tuple (plugin name, plugin
|
||||
Gets a list of registered plugins in a form of tuple (plugin name, plugin
|
||||
description). If not yet auto-discovered, auto-discovers them.
|
||||
|
||||
:return list:
|
||||
|
|
@ -2872,7 +2872,7 @@ def get_registered_form_element_plugins():
|
|||
def get_registered_form_element_plugins_grouped():
|
||||
"""Get registered form element plugins grouped.
|
||||
|
||||
Gets a list of registered plugins in a form if tuple (plugin name, plugin
|
||||
Gets a list of registered plugins in a form of tuple (plugin name, plugin
|
||||
description). If not yet auto-discovered, auto-discovers them.
|
||||
|
||||
:return dict:
|
||||
|
|
@ -2883,7 +2883,7 @@ def get_registered_form_element_plugins_grouped():
|
|||
def get_registered_form_element_plugin_uids(flattern=True):
|
||||
"""Get registered form element plugin uids.
|
||||
|
||||
Gets a list of registered plugins in a form if tuple (plugin name, plugin
|
||||
Gets a list of registered plugins in a form of tuple (plugin name, plugin
|
||||
description). If not yet auto-discovered, auto-discovers them.
|
||||
|
||||
:return list:
|
||||
|
|
|
|||
Loading…
Reference in a new issue