summaryrefslogtreecommitdiff
path: root/www/p5-Rose-URI
AgeCommit message (Collapse)AuthorFilesLines
2011-08-14Revision bump after updating perl5 to 5.14.1.obache1-1/+2
2010-09-10Updating www/p5-Rose-URI from 0.50nb1 to 1.00sno2-8/+8
pkgsrc changes: - add license definition - adjust dependency format for dependencies without minimum version Upstream changes: 1.00 (03.17.2010) - John Siracusa <siracusa@gmail.com> * Updated tests to accomodate new default escaping rules in URI::Escape 3.30 (and, presumably, later versions). * Bumped version number to reflect API stability.
2010-08-21Bump the PKGREVISION for all packages which depend directly on perl,seb1-1/+2
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1. The list of packages is computed by finding all packages which end up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl, or PERL5_PACKLIST defined in their make setup (tested via "make show-vars VARNAMES=..."), minus the packages updated after the perl package update. sno@ was right after all, obache@ kindly asked and he@ led the way. Thanks!
2008-12-16Update from version 0.022nb1 to 0.500 (upstream 0.50):he2-9/+8
Pkgsrc changes: o Canonicalize HOMEPAGE Upstream changes: 0.50 (10.21.2008) - John Siracusa <siracusa@gmail.com> * Fixed a bug that caused empty query parameters to be omitted from the query string. * Added the omit_empty_query_params object attribute (with class- wide default override) to preserve the old behavior.
2008-10-19Bump the PKGREVISION for all packages which depend directly on perl,he1-1/+2
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0. The list of packages is computed by finding all packages which end up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl, or PERL5_PACKLIST defined in their make setup (tested via "make show-vars VARNAMES=...").
2008-07-15Added www/p5-Rose-URI version 0.022abs3-0/+47
Rose::URI is an alternative to URI. Important differences include: Rose::URI provides a rich set of query string manipulation methods. Query parameters can be added, removed, and checked for their existence. URI allows the entire query to be set or returned as a whole via the query_form or query methods, and the URI::QueryParam module provides a few more methods for query string manipulation. Rose::URI supports query parameters with multiple values (e.g. "a=1&a=2"). URI has limited support for this through query_form's list return value. Better methods are available in URI::QueryParam. Rose::URI uses Apache's C-based URI parsing and HTML escaping functions when running in a mod_perl 1.x web server environment. Rose::URI stores each URI "in pieces" (scheme, host, path, etc.) and then assembles those pieces when the entire URI is needed as a string. This technique is based on the assumption that the URI will be manipulated many more times than it is stringified. If this is not the case in your usage scenario, then URI may be a better alternative.