Bug 107785 - [new port] Catalyst-Plugin-Params-Nested
Summary: [new port] Catalyst-Plugin-Params-Nested
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Martin Wilke
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-01-10 19:20 UTC by Fernan Aguero
Modified: 2007-01-12 22:00 UTC (History)
1 user (show)

See Also:


Attachments
p5-Catalyst-Plugin-Params-Nested.shar (3.79 KB, text/plain)
2007-01-10 19:20 UTC, Fernan Aguero
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Fernan Aguero 2007-01-10 19:20:31 UTC
        

        YACP, Yet Another Catalyst Plugin :)
Comment 1 Martin Wilke freebsd_committer freebsd_triage 2007-01-10 19:21:18 UTC
Responsible Changed
From-To: freebsd-ports-bugs->miwi

I'll take it.
Comment 2 dfilter service freebsd_committer freebsd_triage 2007-01-12 21:54:13 UTC
miwi        2007-01-12 21:54:05 UTC

  FreeBSD ports repository

  Modified files:
    www                  Makefile 
  Added files:
    www/p5-Catalyst-Plugin-Params-Nested Makefile distinfo 
                                         pkg-descr pkg-plist 
  Log:
  Ruby on Rails has a nice feature to create nested parameters that help
  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>
  
  Revision  Changes    Path
  1.1681    +1 -0      ports/www/Makefile
  1.1       +34 -0     ports/www/p5-Catalyst-Plugin-Params-Nested/Makefile (new)
  1.1       +3 -0      ports/www/p5-Catalyst-Plugin-Params-Nested/distinfo (new)
  1.1       +23 -0     ports/www/p5-Catalyst-Plugin-Params-Nested/pkg-descr (new)
  1.1       +12 -0     ports/www/p5-Catalyst-Plugin-Params-Nested/pkg-plist (new)
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
Comment 3 Martin Wilke freebsd_committer freebsd_triage 2007-01-12 21:57:10 UTC
State Changed
From-To: open->closed

Committed. Thanks!