|
NAMEURI::FromHash - Build a URI from a set of named parametersVERSIONversion 0.05SYNOPSISuse URI::FromHash qw( uri ); my $uri = uri( path => '/some/path', query => { foo => 1, bar => 2 }, ); DESCRIPTIONThis module provides a simple one-subroutine "named parameters" style interface for creating URIs. Underneath the hood it uses "URI.pm", though because of the simplified interface it may not support all possible options for all types of URIs.It was created for the common case where you simply want to have a simple interface for creating syntactically correct URIs from known components (like a path and query string). Doing this using the native "URI.pm" interface is rather tedious, requiring a number of method calls, which is particularly ugly when done inside a templating system such as Mason or TT2. FUNCTIONSThis module provides two functions both of which are optionally exportable:uri( ... ) and uri_object( ... )Both of these functions accept the same set of parameters, except for one additional parameter allowed when calling "uri()".The "uri()" function simply returns a string representing a canonicalized URI based on the provided parameters. The "uri_object()" function returns new a "URI.pm" object based on the given parameters. These parameters are:
BUGSPlease report any bugs or feature requests to "bug-uri-fromhash@rt.cpan.org", or through the web interface at <http://rt.cpan.org>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.AUTHORDave Rolsky <autarch@urth.org>COPYRIGHT AND LICENSEThis software is Copyright (c) 2015 by Dave Rolsky.This is free software, licensed under: The Artistic License 2.0 (GPL Compatible)
Visit the GSP FreeBSD Man Page Interface. |