1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00

Add p5-URL-Encode 0.03, encoding and decoding of

application/x-www-form-urlencoded encoding.

PR:		198308
Submitted by:	Geoffroy Desvernay <dgeo@centrale-marseille.fr>
This commit is contained in:
Vanilla I. Shu 2015-03-10 06:21:00 +00:00
parent 67945ba992
commit 12e69d0dd8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=380897
5 changed files with 40 additions and 0 deletions

View File

@ -1216,6 +1216,7 @@
SUBDIR += p5-URI-Sequin
SUBDIR += p5-URI-Title
SUBDIR += p5-URI-ToDisk
SUBDIR += p5-URL-Encode
SUBDIR += p5-URL-Encode-XS
SUBDIR += p5-VUser-Google-ProvisioningAPI
SUBDIR += p5-W3C-LinkChecker

View File

@ -0,0 +1,20 @@
# Created by: Geoffroy Desvernay <dgeo@centrale-marseille.fr>
# $FreeBSD$
PORTNAME= URL-Encode
PORTVERSION= 0.03
CATEGORIES= www perl5
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= CPAN:CHANSEN
PKGNAMEPREFIX= p5-
MAINTAINER= dgeo@centrale-marseille.fr
COMMENT= Encoding and decoding of application/x-www-form-urlencoded encoding
LICENSE= ART10 GPLv1
LICENSE_COMB= dual
USES= perl5
USE_PERL5= configure
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (URL-Encode-0.03.tar.gz) = 7295d7f07796b179131d9c0f230a6effa56d204de2f8dc72f2e09c61458c8ee6
SIZE (URL-Encode-0.03.tar.gz) = 24012

View File

@ -0,0 +1,13 @@
encode and decode strings into and from application/x-www-form-urlencoded
The application/x-www-form-urlencoded format encodes a ordered data sets of
pairs consisting of a name and a value, with pairs seperated by ampersand or
semicolon and names and values seperated by the equal sign. Space characters
are replaced with plus sign and any characters not in the unreserved character
set is encoded using the percent-encoding scheme also used for resource
identifiers.
A percent-encoded octet is encoded as a character triplet, consisting of the
percent character "%" followed by the two hexadecimal digits representing that
octet's numeric value.
WWW: https://metacpan.org/pod/URL::Encode

View File

@ -0,0 +1,4 @@
%%PERL5_MAN3%%/URL::Encode.3.gz
%%SITE_PERL%%/URL/Encode.pm
%%SITE_PERL%%/URL/Encode.pod
%%SITE_PERL%%/URL/Encode/PP.pm