election_day.directives ======================= .. py:module:: election_day.directives Attributes ---------- .. autoapisummary:: election_day.directives.FormCallable Classes ------- .. autoapisummary:: election_day.directives.ManageHtmlAction election_day.directives.ManageFormAction election_day.directives.SvgFileViewAction election_day.directives.PdfFileViewAction election_day.directives.JsonFileAction election_day.directives.CsvFileAction election_day.directives.ScreenWidgetRegistry election_day.directives.ScreenWidgetAction Functions --------- .. autoapisummary:: election_day.directives.render_svg election_day.directives.render_pdf election_day.directives.render_json election_day.directives.render_csv Module Contents --------------- .. py:type:: FormCallable :canonical: Callable[[Any, _RequestT], type[Form]] .. py:class:: ManageHtmlAction(model: type | str, render: collections.abc.Callable[[Any, onegov.core.directives._RequestT], webob.Response] | str | None = None, template: _typeshed.StrOrBytesPath | None = None, load: collections.abc.Callable[[onegov.core.directives._RequestT], Any] | str | None = None, permission: object | str | None = None, internal: bool = False, **predicates: Any) Bases: :py:obj:`morepath.directive.HtmlAction` HTML directive for manage views which makes sure the permission is set to private. .. py:class:: ManageFormAction(model: type | str, form: type[wtforms.Form] | FormCallable[onegov.core.directives._RequestT] = EmptyForm, render: collections.abc.Callable[[Any, onegov.core.directives._RequestT], webob.Response] | str | None = None, template: _typeshed.StrOrBytesPath = 'form.pt', load: collections.abc.Callable[[onegov.core.directives._RequestT], Any] | str | None = None, permission: object | str | None = None, internal: bool = False, **predicates: Any) Bases: :py:obj:`onegov.core.directives.HtmlHandleFormAction` HTML directive for manage forms which makes sure the permission is set to private. Sets a valid default for the template and form class. .. py:function:: render_svg(content: dict[str, Any], request: onegov.core.request.CoreRequest) -> morepath.request.Response .. py:function:: render_pdf(content: dict[str, Any], request: onegov.core.request.CoreRequest) -> morepath.request.Response .. py:function:: render_json(content: dict[str, Any], request: onegov.core.request.CoreRequest) -> morepath.request.Response .. py:function:: render_csv(content: dict[str, Any], request: onegov.core.request.CoreRequest) -> morepath.request.Response .. py:class:: SvgFileViewAction(model: type | str, load: collections.abc.Callable[[onegov.core.directives._RequestT], Any] | str | None = None, permission: object | str = Public, internal: bool = False, **predicates: Any) Bases: :py:obj:`morepath.directive.ViewAction` View directive for viewing SVG files from filestorage. The SVGs are created using a cronjob and might not be available. .. py:class:: PdfFileViewAction(model: type | str, load: collections.abc.Callable[[onegov.core.directives._RequestT], Any] | str | None = None, permission: object | str = Public, internal: bool = False, **predicates: Any) Bases: :py:obj:`morepath.directive.ViewAction` View directive for viewing PDF files from filestorage. The PDFs are created using a cronjob and might not be available. .. py:class:: JsonFileAction(model: type | str, load: collections.abc.Callable[[onegov.core.directives._RequestT], Any] | str | None = None, permission: object | str = Public, internal: bool = False, **predicates: Any) Bases: :py:obj:`morepath.directive.ViewAction` View directive for viewing JSON data as file. .. py:class:: CsvFileAction(model: type | str, load: collections.abc.Callable[[onegov.core.directives._RequestT], Any] | str | None = None, permission: object | str = Public, internal: bool = False, **predicates: Any) Bases: :py:obj:`morepath.directive.ViewAction` View directive for viewing CSV data as file. .. py:class:: ScreenWidgetRegistry Bases: :py:obj:`dict`\ [\ :py:obj:`str`\ , :py:obj:`dict`\ [\ :py:obj:`str`\ , :py:obj:`ScreenWidget`\ ]\ ] dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object's (key, value) pairs dict(iterable) -> new dictionary initialized as if via: d = {} for k, v in iterable: d[k] = v dict(**kwargs) -> new dictionary initialized with the name=value pairs in the keyword argument list. For example: dict(one=1, two=2) .. py:method:: by_categories(categories: collections.abc.Iterable[str]) -> dict[str, ScreenWidget] .. py:class:: ScreenWidgetAction(tag: str, category: str) Bases: :py:obj:`dectate.Action` Register a screen widget. .. py:attribute:: config Describe configuration. A dict mapping configuration names to factory functions. The resulting configuration objects are passed into :meth:`Action.identifier`, :meth:`Action.discriminators`, :meth:`Action.perform`, and :meth:`Action.before` and :meth:`Action.after`. After commit completes, the configured objects are found as attributes on :class:`App.config`. .. py:attribute:: tag .. py:attribute:: category .. py:method:: identifier(screen_widget_registry: ScreenWidgetRegistry) -> str Returns an immutable that uniquely identifies this config. Needs to be implemented by the :class:`Action` subclass. Used for overrides and conflict detection. If two actions in the same group have the same identifier in the same configurable, those two actions are in conflict and a :class:`ConflictError` is raised during :func:`commit`. If an action in an extending configurable has the same identifier as the configurable being extended, that action overrides the original one in the extending configurable. :param ``**kw``: a dictionary of configuration objects as specified by the ``config`` class attribute. :return: an immutable value uniquely identifying this action. .. py:method:: perform(func: collections.abc.Callable[[], InputScreenWidget], screen_widget_registry: ScreenWidgetRegistry) -> None Do whatever configuration is needed for ``obj``. Needs to be implemented by the :class:`Action` subclass. Raise a :exc:`DirectiveError` to indicate that the action cannot be performed due to incorrect configuration. :param obj: the object that the action should be performed for. Typically a function or a class object. :param ``**kw``: a dictionary of configuration objects as specified by the ``config`` class attribute.