aboutsummaryrefslogtreecommitdiff
path: root/www/p5-Catalyst-Plugin-Params-Nested
Commit message (Collapse)AuthorAgeFilesLines
* - Add TEST_DEPENDSSteve Wills2012-04-111-0/+1
| | | | | | | | PR: ports/166343 Approved by: maintainer timeout (fernan@iib.unsam.edu.ar, >2 weeks) Notes: svn path=/head/; revision=294584
* - Change PERL_CONFIGURE to "yes" for all values between 5.8.1+ and 5.8.9+Sunpoet Po-Chuan Hsieh2011-09-171-1/+1
| | | | | | | | Suggested by: az With hat: perl Notes: svn path=/head/; revision=281882
* - Get Rid MD5 supportMartin Wilke2011-03-191-1/+0
| | | | Notes: svn path=/head/; revision=271305
* - Fix index (remove stray /)Philip M. Gollucci2010-08-231-1/+1
| | | | Notes: svn path=/head/; revision=259787
* - Update to 0.03Philip M. Gollucci2010-08-232-6/+5
| | | | | | | | | | PR: ports/147408 Submitted by: pgollucci (myself) Reviewed by: az Approved by: maintainer timeout (fernan@iib.unsam.edu.ar ; > 2.5 months) Notes: svn path=/head/; revision=259779
* - Take advantage of CPAN macro from bsd.sites.mk, change ↵Marcelo Araujo2008-04-171-2/+1
| | | | | | | | | | | | ${MASTER_SITE_PERL_CPAN} to CPAN. PR: ports/122674 Submitted by: Philip M. Gollucci <pgollucci@p6m7g8.com> Reworked by: araujo (myself) Approved by: portmgr (pav) Notes: svn path=/head/; revision=211450
* Welcome bsd.perl.mk. Add support for constructs such as USE_PERL5=5.8.0+.Mark Linimon2007-09-081-8/+2
| | | | | | | | | | | Drop support for antique perl. Work done by: gabor Sponsored by: Google Summer of Code 2007 Hat: portmgr Notes: svn path=/head/; revision=199069
* Ruby on Rails has a nice feature to create nested parameters that helpMartin Wilke2007-01-124-0/+72
with the organization of data in a form - parameters can be an arbitrarily deep nested structure. The way this structure is denoted is that when you construct a form the field names have a special syntax which is parsed. This plugin supports two syntaxes: dot notation <input name="foo.bar.gorch" /> subscript notation <input name="foo[bar][gorch]" /> When reading query parameters from $c->req you can now access all the items starting with "foo" as one entity using $c->req->param('foo');. Each subitem, denoted by either the dot or the square brackets, will be returned as a further deeper hashref. WWW: http://search.cpan.org/dist/Catalyst-Plugin-Params-Nested PR: ports/107785 Submitted by: Fernan Aguero <fernan at iib.unsam.edu.ar> Notes: svn path=/head/; revision=182233