Skip to content
Snippets Groups Projects
Commit c754cd5d authored by LE GAC Renaud's avatar LE GAC Renaud
Browse files

Remove obsolete method.

parent 54ae1efb
No related branches found
No related tags found
No related merge requests found
plugin_dbui.fieldsmodifier.FieldsModifier.append_plugins
========================================================
.. currentmodule:: plugin_dbui.fieldsmodifier
.. automethod:: FieldsModifier.append_plugins
\ No newline at end of file
plugin_dbui.gridmodifier.GridModifier.add_column
================================================
.. currentmodule:: plugin_dbui.gridmodifier
.. automethod:: GridModifier.add_column
\ No newline at end of file
...@@ -11,7 +11,6 @@ plugin_dbui.fieldsmodifier.FieldsModifier ...@@ -11,7 +11,6 @@ plugin_dbui.fieldsmodifier.FieldsModifier
.. autosummary:: .. autosummary::
:toctree: fieldsmodifier/ :toctree: fieldsmodifier/
~FieldsModifier.append_plugins
~FieldsModifier.configure_field ~FieldsModifier.configure_field
~FieldsModifier.merge_fields ~FieldsModifier.merge_fields
......
...@@ -9,7 +9,6 @@ plugin_dbui.gridmodifier.GridModifier ...@@ -9,7 +9,6 @@ plugin_dbui.gridmodifier.GridModifier
.. autosummary:: .. autosummary::
:toctree: gridmodifier/ :toctree: gridmodifier/
~GridModifier.add_column
~GridModifier.append_filter ~GridModifier.append_filter
~GridModifier.configure_column ~GridModifier.configure_column
~GridModifier.configure_filters ~GridModifier.configure_filters
......
...@@ -49,18 +49,6 @@ class FieldsModifier(Modifier): ...@@ -49,18 +49,6 @@ class FieldsModifier(Modifier):
self.data.composite_fields.others = [] self.data.composite_fields.others = []
def append_plugins(self, *plugins):
"""Do nothing.
Supersede the method of the base class since it make
no sense for this modifier.
Keyword Args:
*plugins: variable list of plugin names or configurations
"""
def configure(self, **extjs): def configure(self, **extjs):
"""Do nothing """Do nothing
......
...@@ -105,21 +105,6 @@ class GridModifier(Modifier): ...@@ -105,21 +105,6 @@ class GridModifier(Modifier):
self.data.template_columns = [] self.data.template_columns = []
def add_column(self, ktable, kfield, position=0, extjs={}):
"""NOT YET IMPLEMENTED
Add a column displaying the database field kfield of the
foreign table ktable.
The keyword argument position is a number defining where the
column will be insert. The first column is at 0.
The keyword argument ExtJS is a dictionary containing
configuration options of the underlying :class:`.GridColumn`.
"""
def append_filter(self, filter, **kwargs): def append_filter(self, filter, **kwargs):
"""Append a filter condition. """Append a filter condition.
A filter is a condition applied on one database field. A filter is a condition applied on one database field.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment