{"id":19056388,"url":"https://github.com/formfu/catalyst-controller-html-formfu","last_synced_at":"2025-11-07T07:01:54.493Z","repository":{"id":1202799,"uuid":"1111779","full_name":"FormFu/Catalyst-Controller-HTML-FormFu","owner":"FormFu","description":null,"archived":false,"fork":false,"pushed_at":"2021-08-01T00:37:58.000Z","size":208,"stargazers_count":6,"open_issues_count":7,"forks_count":11,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-04-18T13:09:40.332Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://formfu.rocks","language":"Perl","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/FormFu.png","metadata":{"files":{"readme":"README.md","changelog":"Changes","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2010-11-25T10:55:42.000Z","updated_at":"2022-02-01T14:57:30.000Z","dependencies_parsed_at":"2022-08-06T10:15:41.912Z","dependency_job_id":null,"html_url":"https://github.com/FormFu/Catalyst-Controller-HTML-FormFu","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FormFu%2FCatalyst-Controller-HTML-FormFu","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FormFu%2FCatalyst-Controller-HTML-FormFu/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FormFu%2FCatalyst-Controller-HTML-FormFu/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FormFu%2FCatalyst-Controller-HTML-FormFu/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FormFu","download_url":"https://codeload.github.com/FormFu/Catalyst-Controller-HTML-FormFu/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250566204,"owners_count":21451225,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-08T23:49:16.032Z","updated_at":"2025-11-07T07:01:54.375Z","avatar_url":"https://github.com/FormFu.png","language":"Perl","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.org/FormFu/Catalyst-Controller-HTML-FormFu.svg?branch=master)](https://travis-ci.org/FormFu/Catalyst-Controller-HTML-FormFu)\n[![Kwalitee status](http://cpants.cpanauthors.org/dist/Catalyst-Controller-HTML-FormFu.png)](http://cpants.charsbar.org/dist/overview/Catalyst-Controller-HTML-FormFu)\n[![GitHub issues](https://img.shields.io/github/issues/FormFu/Catalyst-Controller-HTML-FormFu.svg)](https://github.com/FormFu/Catalyst-Controller-HTML-FormFu/issues)\n[![GitHub tag](https://img.shields.io/github/tag/FormFu/Catalyst-Controller-HTML-FormFu.svg)]()\n[![Cpan license](https://img.shields.io/cpan/l/Catalyst-Controller-HTML-FormFu.svg)](https://metacpan.org/release/Catalyst-Controller-HTML-FormFu)\n[![Cpan version](https://img.shields.io/cpan/v/Catalyst-Controller-HTML-FormFu.svg)](https://metacpan.org/release/Catalyst-Controller-HTML-FormFu)\n\n# NAME\n\nCatalyst::Controller::HTML::FormFu - Catalyst integration for HTML::FormFu\n\n# VERSION\n\nversion 2.04\n\n# SYNOPSIS\n\n    package MyApp::Controller::My::Controller;\n\n    use Moose;\n    use namespace::autoclean;\n\n    BEGIN { extends 'Catalyst::Controller::HTML::FormFu'; }\n\n    sub index : Local {\n        my ( $self, $c ) = @_;\n\n        # doesn't use an Attribute to make a form\n        # can get an empty form from $self-\u003eform()\n\n        my $form = $self-\u003eform();\n    }\n\n    sub foo : Local : Form {\n        my ( $self, $c ) = @_;\n\n        # using the Form attribute is equivalent to:\n        #\n        # my $form = $self-\u003eform;\n        #\n        # $form-\u003eprocess;\n        #\n        # $c-\u003estash-\u003e{form} = $form;\n    }\n\n    sub bar : Local : FormConfig {\n        my ( $self, $c ) = @_;\n\n        # using the FormConfig attribute is equivalent to:\n        #\n        # my $form = $self-\u003eform;\n        #\n        # $form-\u003eload_config_filestem('root/forms/my/controller/bar');\n        #\n        # $form-\u003eprocess;\n        #\n        # $c-\u003estash-\u003e{form} = $form;\n        #\n        # so you only need to do the following...\n\n        my $form = $c-\u003estash-\u003e{form};\n\n        if ( $form-\u003esubmitted_and_valid ) {\n            do_something();\n        }\n    }\n\n    sub baz : Local : FormConfig('my_config') {\n        my ( $self, $c ) = @_;\n\n        # using the FormConfig attribute with an argument is equivalent to:\n        #\n        # my $form = $self-\u003eform;\n        #\n        # $form-\u003eload_config_filestem('root/forms/my_config');\n        #\n        # $form-\u003eprocess;\n        #\n        # $c-\u003estash-\u003e{form} = $form;\n        #\n        # so you only need to do the following...\n\n        my $form = $c-\u003estash-\u003e{form};\n\n        if ( $form-\u003esubmitted_and_valid ) {\n            do_something();\n        }\n    }\n\n    sub quux : Local : FormMethod('load_form') {\n        my ( $self, $c ) = @_;\n\n        # using the FormMethod attribute with an argument is equivalent to:\n        #\n        # my $form = $self-\u003eform;\n        #\n        # $form-\u003epopulate( $c-\u003eload_form );\n        #\n        # $form-\u003eprocess;\n        #\n        # $c-\u003estash-\u003e{form} = $form;\n        #\n        # so you only need to do the following...\n\n        my $form = $c-\u003estash-\u003e{form};\n\n        if ( $form-\u003esubmitted_and_valid ) {\n            do_something();\n        }\n    }\n\n    sub load_form {\n        my ( $self, $c ) = @_;\n\n        # Automatically called by the above FormMethod('load_form') action.\n        # Called as a method on the controller object, with the context\n        # object as an argument.\n\n        # Must return a hash-ref suitable to be fed to $form-\u003epopulate()\n    }\n\nYou can also use specially-named actions that will only be called under certain\ncircumstances.\n\n    sub edit : Chained('group') : PathPart : Args(0) : FormConfig { }\n\n    sub edit_FORM_VALID {\n        my ( $self, $c ) = @_;\n\n        my $form  = $c-\u003estash-\u003e{form};\n        my $group = $c-\u003estash-\u003e{group};\n\n        $form-\u003emodel-\u003eupdate( $group );\n\n        $c-\u003eresponse-\u003eredirect( $c-\u003euri_for( '/group', $group-\u003eid ) );\n    }\n\n    sub edit_FORM_NOT_SUBMITTED {\n        my ( $self, $c ) = @_;\n\n        my $form  = $c-\u003estash-\u003e{form};\n        my $group = $c-\u003estash-\u003e{group};\n\n        $form-\u003emodel-\u003edefault_values( $group );\n    }\n\n# METHODS\n\n## form\n\nThis creates a new [HTML::FormFu](https://metacpan.org/pod/HTML::FormFu) object, passing as it's argument the\ncontents of the [\"constructor\"](#constructor) config value.\n\nThis is useful when using the ConfigForm() or MethodForm() action attributes,\nto create a 2nd form which isn't populated using a config-file or method return\nvalue.\n\n    sub foo : Local {\n        my ( $self, $c ) = @_;\n\n        my $form = $self-\u003eform;\n    }\n\nNote that when using this method, the form's [query](https://metacpan.org/pod/HTML::FormFu#query) method\nis not populated with the Catalyst request object.\n\n# SPECIAL ACTION NAMES\n\nAn example showing how a complicated action method can be broken down into\nsmaller sections, making it clearer which code will be run, and when.\n\n    sub edit : Local : FormConfig {\n        my ( $self, $c ) = @_;\n\n        my $form  = $c-\u003estash-\u003e{form};\n        my $group = $c-\u003estash-\u003e{group};\n\n        $c-\u003edetach('/unauthorised') unless $c-\u003euser-\u003ecan_edit( $group );\n\n        if ( $form-\u003esubmitted_and_valid ) {\n            $form-\u003emodel-\u003eupdate( $group );\n\n            $c-\u003eresponse-\u003eredirect( $c-\u003euri_for('/group', $group-\u003eid ) );\n            return;\n        }\n        elsif ( !$form-\u003esubmitted ) {\n            $form-\u003emodel-\u003edefault_values( $group );\n        }\n\n        $self-\u003e_add_breadcrumbs_nav( $c, $group );\n    }\n\nInstead becomes...\n\n    sub edit : Local : FormConfig {\n        my ( $self, $c ) = @_;\n\n        $c-\u003edetach('/unauthorised') unless $c-\u003euser-\u003ecan_edit(\n            $c-\u003estash-\u003e{group}\n        );\n    }\n\n    sub edit_FORM_VALID {\n        my ( $self, $c ) = @_;\n\n        my $group = $c-\u003estash-\u003e{group};\n\n        $c-\u003estash-\u003e{form}-\u003emodel-\u003eupdate( $group );\n\n        $c-\u003eresponse-\u003eredirect( $c-\u003euri_for('/group', $group-\u003eid ) );\n    }\n\n    sub edit_FORM_NOT_SUBMITTED {\n        my ( $self, $c ) = @_;\n\n        $c-\u003estash-\u003e{form}-\u003emodel-\u003edefault_values(\n            $c-\u003estash-\u003e{group}\n        );\n    }\n\n    sub edit_FORM_RENDER {\n        my ( $self, $c ) = @_;\n\n        $self-\u003e_add_breadcrumbs_nav( $c, $c-\u003estash-\u003e{group} );\n    }\n\nFor any action method that uses a `Form`, `FormConfig` or `FormMethod`\nattribute, you can add extra methods that use the naming conventions below.\n\nThese methods will be called after the original, plainly named action method.\n\n## \\_FORM\\_VALID\n\nRun when the form has been submitted and has no errors.\n\n## \\_FORM\\_SUBMITTED\n\nRun when the form has been submitted, regardless of whether or not there was\nerrors.\n\n## \\_FORM\\_COMPLETE\n\nFor MultiForms, is run if the MultiForm is completed.\n\n## \\_FORM\\_NOT\\_VALID\n\nRun when the form has been submitted and there were errors.\n\n## \\_FORM\\_NOT\\_SUBMITTED\n\nRun when the form has not been submitted.\n\n## \\_FORM\\_NOT\\_COMPLETE\n\nFor MultiForms, is run if the MultiForm is not completed.\n\n## \\_FORM\\_RENDER\n\nFor normal `Form` base classes, this subroutine is run after any of the other\nspecial methods, unless `$form-\u003esubmitted_and_valid` is true.\n\nFor `MultiForm` base classes, this subroutine is run after any of the other\nspecial methods, unless `$multi-\u003ecomplete` is true.\n\n# CUSTOMIZATION\n\nYou can set your own config settings, using either your controller config or\nyour application config.\n\n    $c-\u003econfig( 'Controller::HTML::FormFu' =\u003e \\%my_values );\n\n    # or\n\n    MyApp-\u003econfig( 'Controller::HTML::FormFu' =\u003e \\%my_values );\n\n    # or, in myapp.conf\n\n    \u003cController::HTML::FormFu\u003e\n        default_action_use_path 1\n    \u003c/Controller::HTML::FormFu\u003e\n\n## form\\_method\n\nOverride the method-name used to create a new form object.\n\nSee [\"form\"](#form).\n\nDefault value: `form`.\n\n## form\\_stash\n\nSets the stash key name used to store the form object.\n\nDefault value: `form`.\n\n## form\\_attr\n\nSets the attribute name used to load the\n[Catalyst::Controller::HTML::FormFu::Action::Form](https://metacpan.org/pod/Catalyst::Controller::HTML::FormFu::Action::Form) action.\n\nDefault value: `Form`.\n\n## config\\_attr\n\nSets the attribute name used to load the\n[Catalyst::Controller::HTML::FormFu::Action::Config](https://metacpan.org/pod/Catalyst::Controller::HTML::FormFu::Action::Config) action.\n\nDefault value: `FormConfig`.\n\n## method\\_attr\n\nSets the attribute name used to load the\n[Catalyst::Controller::HTML::FormFu::Action::Method](https://metacpan.org/pod/Catalyst::Controller::HTML::FormFu::Action::Method) action.\n\nDefault value: `FormMethod`.\n\n## form\\_action\n\nSets which package will be used by the Form() action.\n\nProbably only useful if you want to create a sub-class which provides custom\nbehaviour.\n\nDefault value: `Catalyst::Controller::HTML::FormFu::Action::Form`.\n\n## config\\_action\n\nSets which package will be used by the Config() action.\n\nProbably only useful if you want to create a sub-class which provides custom\nbehaviour.\n\nDefault value: `Catalyst::Controller::HTML::FormFu::Action::Config`.\n\n## method\\_action\n\nSets which package will be used by the Method() action.\n\nProbably only useful if you want to create a sub-class which provides custom\nbehaviour.\n\nDefault value: `Catalyst::Controller::HTML::FormFu::Action::Method`.\n\n## constructor\n\nPass common defaults to the [HTML::FormFu constructor](https://metacpan.org/pod/HTML::FormFu#new).\n\nThese values are used by all of the action attributes, and by the `$self-\u003eform` method.\n\nDefault value: `{}`.\n\n## config\\_callback\n\nArguments: bool\n\nIf true, a coderef is passed to `$form-\u003econfig_callback-\u003e{plain_value}`\nwhich replaces any instance of `__uri_for(URI)__` found in form config files\nwith the result of passing the `URI` argument to [\"uri\\_for\" in Catalyst](https://metacpan.org/pod/Catalyst#uri_for).\n\nThe form `__uri_for(URI, PATH, PARTS)__` is also supported, which is\nequivalent to `$c-\u003euri_for( 'URI', \\@ARGS )`. At this time, there is no\nway to pass query values equivalent to `$c-\u003euri_for( 'URI', \\@ARGS,\n\\%QUERY_VALUES )`.\n\nThe second codeword that is being replaced is `__path_to( @DIRS )__`. Any\ninstance is replaced with the result of passing the `DIRS` arguments to\n[\"path\\_to\" in Catalyst](https://metacpan.org/pod/Catalyst#path_to). Don't use qoutationmarks as they would become part of the\npath.\n\nDefault value: 1\n\n## default\\_action\\_use\\_name\n\nIf set to a true value the action for the form will be set to the currently\ncalled action name.\n\nDefault value: `false`.\n\n## default\\_action\\_use\\_path\n\nIf set to a true value the action for the form will be set to the currently\ncalled action path. The action path includes concurrent to action name\nadditioal parameters which were code inside the path.\n\nDefault value: `false`.\n\nExample:\n\n    action: /foo/bar\n    called uri contains: /foo/bar/1\n\n    # default_action_use_name =\u003e 1 leads to:\n    $form-\u003eaction = /foo/bar\n\n    # default_action_use_path =\u003e 1 leads to:\n    $form-\u003eaction = /foo/bar/1\n\n## model\\_stash\n\nArguments: \\\\%stash\\_keys\\_to\\_model\\_names\n\nUsed to place Catalyst models on the form stash.\n\nIf it's being used to make a [DBIx::Class](https://metacpan.org/pod/DBIx::Class) schema available for\n[\"options\\_from\\_model\" in HTML::FormFu::Model::DBIC](https://metacpan.org/pod/HTML::FormFu::Model::DBIC#options_from_model), for `Select` and other\nGroup-type elements - then the hash-key must be `schema`. For example, if your\nschema model class is `MyApp::Model::MySchema`, you would set `model_stash`\nlike so:\n\n    \u003cController::HTML::FormFu\u003e\n        \u003cmodel_stash\u003e\n            schema MySchema\n        \u003c/model_stash\u003e\n    \u003c/Controller::HTML::FormFu\u003e\n\n## context\\_stash\n\nTo allow your form validation packages, etc, access to the catalyst context, a\nweakened reference of the context is copied into the form's stash.\n\n    $form-\u003estash-\u003e{context};\n\nThis setting allows you to change the key name used in the form stash.\n\nDefault value: `context`\n\n## languages\\_from\\_context\n\nIf you're using a L10N / I18N plugin such as [Catalyst::Plugin::I18N](https://metacpan.org/pod/Catalyst::Plugin::I18N) which\nprovides a `languages` method that returns a list of valid languages to use\nfor the currect request - and you want to use formfu's built-in I18N packages,\nthen setting [\"languages\\_from\\_context\"](#languages_from_context)\n\n## localize\\_from\\_context\n\nIf you're using a L10N / I18N plugin such as [Catalyst::Plugin::I18N](https://metacpan.org/pod/Catalyst::Plugin::I18N) which\nprovides it's own `localize` method, you can set [localize\\_from\\_context](https://metacpan.org/pod/localize_from_context) to\nuse that method for formfu's localization.\n\n## request\\_token\\_enable\n\nIf true, adds an instance of [HTML::FormFu::Plugin::RequestToken](https://metacpan.org/pod/HTML::FormFu::Plugin::RequestToken) to every\nform, to stop accidental double-submissions of data and to prevent CSRF\nattacks.\n\n## request\\_token\\_field\\_name\n\nDefaults to `_token`.\n\n## request\\_token\\_session\\_key\n\nDefaults to `__token`.\n\n## request\\_token\\_expiration\\_time\n\nDefaults to `3600`.\n\n# DISCONTINUED CONFIG SETTINGS\n\n## config\\_file\\_ext\n\nSupport for this has now been removed. Config files are now searched for, with\nany file extension supported by Config::Any.\n\n## config\\_file\\_path\n\nSupport for this has now been removed. Use `{constructor}{config_file_path}` instead.\n\n# CAVEATS\n\nWhen using the `Form` action attribute to create an empty form, you must call\n[$form-\u003eprocess](https://metacpan.org/pod/HTML::FormFu#process) after populating the form. However,\nyou don't need to pass any arguments to `process`, as the Catalyst request\nobject will have automatically been set in [$form-\u003equery](https://metacpan.org/pod/HTML::FormFu#query).\n\nWhen using the `FormConfig` and `FormMethod` action attributes, if you make\nany modifications to the form, such as adding or changing it's elements, you\nmust call [$form-\u003eprocess](https://metacpan.org/pod/HTML::FormFu#process) before rendering the form.\n\n# AUTHORS\n\n- Carl Franks \u003ccpan@fireartist.com\u003e\n- Nigel Metheringham \u003cnigelm@cpan.org\u003e\n- Dean Hamstead \u003cdean@bytefoundry.com.au\u003e\n\n# COPYRIGHT AND LICENSE\n\nThis software is copyright (c) 2007-2018 by Carl Franks / Nigel Metheringham / Dean Hamstead.\n\nThis is free software; you can redistribute it and/or modify it under\nthe same terms as the Perl 5 programming language system itself.\n\n# SUPPORT\n\n## Perldoc\n\nYou can find documentation for this module with the perldoc command.\n\n    perldoc Catalyst::Controller::HTML::FormFu\n\n## Websites\n\nThe following websites have more information about this module, and may be of help to you. As always,\nin addition to those websites please use your favorite search engine to discover more resources.\n\n- MetaCPAN\n\n    A modern, open-source CPAN search engine, useful to view POD in HTML format.\n\n    [http://metacpan.org/release/Catalyst-Controller-HTML-FormFu](http://metacpan.org/release/Catalyst-Controller-HTML-FormFu)\n\n- Search CPAN\n\n    The default CPAN search engine, useful to view POD in HTML format.\n\n    [http://search.cpan.org/dist/Catalyst-Controller-HTML-FormFu](http://search.cpan.org/dist/Catalyst-Controller-HTML-FormFu)\n\n- RT: CPAN's Bug Tracker\n\n    The RT ( Request Tracker ) website is the default bug/issue tracking system for CPAN.\n\n    [https://rt.cpan.org/Public/Dist/Display.html?Name=Catalyst-Controller-HTML-FormFu](https://rt.cpan.org/Public/Dist/Display.html?Name=Catalyst-Controller-HTML-FormFu)\n\n- AnnoCPAN\n\n    The AnnoCPAN is a website that allows community annotations of Perl module documentation.\n\n    [http://annocpan.org/dist/Catalyst-Controller-HTML-FormFu](http://annocpan.org/dist/Catalyst-Controller-HTML-FormFu)\n\n- CPAN Ratings\n\n    The CPAN Ratings is a website that allows community ratings and reviews of Perl modules.\n\n    [http://cpanratings.perl.org/d/Catalyst-Controller-HTML-FormFu](http://cpanratings.perl.org/d/Catalyst-Controller-HTML-FormFu)\n\n- CPAN Forum\n\n    The CPAN Forum is a web forum for discussing Perl modules.\n\n    [http://cpanforum.com/dist/Catalyst-Controller-HTML-FormFu](http://cpanforum.com/dist/Catalyst-Controller-HTML-FormFu)\n\n- CPANTS\n\n    The CPANTS is a website that analyzes the Kwalitee ( code metrics ) of a distribution.\n\n    [http://cpants.cpanauthors.org/dist/Catalyst-Controller-HTML-FormFu](http://cpants.cpanauthors.org/dist/Catalyst-Controller-HTML-FormFu)\n\n- CPAN Testers\n\n    The CPAN Testers is a network of smokers who run automated tests on uploaded CPAN distributions.\n\n    [http://www.cpantesters.org/distro/C/Catalyst-Controller-HTML-FormFu](http://www.cpantesters.org/distro/C/Catalyst-Controller-HTML-FormFu)\n\n- CPAN Testers Matrix\n\n    The CPAN Testers Matrix is a website that provides a visual overview of the test results for a distribution on various Perls/platforms.\n\n    [http://matrix.cpantesters.org/?dist=Catalyst-Controller-HTML-FormFu](http://matrix.cpantesters.org/?dist=Catalyst-Controller-HTML-FormFu)\n\n- CPAN Testers Dependencies\n\n    The CPAN Testers Dependencies is a website that shows a chart of the test results of all dependencies for a distribution.\n\n    [http://deps.cpantesters.org/?module=Catalyst::Controller::HTML::FormFu](http://deps.cpantesters.org/?module=Catalyst::Controller::HTML::FormFu)\n\n## Bugs / Feature Requests\n\nPlease report any bugs or feature requests by email to `bug-catalyst-controller-html-formfu at rt.cpan.org`, or through\nthe web interface at [https://rt.cpan.org/Public/Bug/Report.html?Queue=Catalyst-Controller-HTML-FormFu](https://rt.cpan.org/Public/Bug/Report.html?Queue=Catalyst-Controller-HTML-FormFu). You will be automatically notified of any\nprogress on the request by the system.\n\n## Source Code\n\nThe code is open to the world, and available for you to hack on. Please feel free to browse it and play\nwith it, or whatever. If you want to contribute patches, please send me a diff or prod me to pull\nfrom your repository :)\n\n[https://github.com/FormFu/Catalyst-Controller-HTML-FormFu](https://github.com/FormFu/Catalyst-Controller-HTML-FormFu)\n\n    git clone https://github.com/FormFu/Catalyst-Controller-HTML-FormFu.git\n\n# CONTRIBUTORS\n\n- Aran Deltac \u003caran@ziprecruiter.com\u003e\n- bricas \u003cbrian.cassidy@gmail.com\u003e\n- dandv \u003cddascalescu@gmail.com\u003e\n- fireartist \u003cfireartist@gmail.com\u003e\n- lestrrat \u0026lt;lestrrat+github@gmail.com\u003e\n- marcusramberg \u003cmarcus.ramberg@gmail.com\u003e\n- mariominati \u003cmario.minati@googlemail.com\u003e\n- Moritz Onken \u003c1nd@gmx.de\u003e\n- Moritz Onken \u003conken@netcubed.de\u003e\n- Nigel Metheringham \u003cnm9762github@muesli.org.uk\u003e\n- omega \u003candreas.marienborg@gmail.com\u003e\n- Petr Písař \u003cppisar@redhat.com\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fformfu%2Fcatalyst-controller-html-formfu","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fformfu%2Fcatalyst-controller-html-formfu","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fformfu%2Fcatalyst-controller-html-formfu/lists"}