Репозиторий Sisyphus
Последнее обновление: 1 октября 2023 | Пакетов: 18631 | Посещений: 37762082
en ru br
Репозитории ALT

Группа :: Разработка/Perl
Пакет: perl-URI-Encode

 Главная   Изменения   Спек   Патчи   Исходники   Загрузить   Gear   Bugs and FR  Repocop 

pax_global_header00006660000000000000000000000064121152667540014523gustar00rootroot0000000000000052 comment=58a48d27f1a4adf95ff5ffbbc69af3f5e0485e5e
URI-Encode-0.09/000075500000000000000000000000001211526675400133035ustar00rootroot00000000000000URI-Encode-0.09/.author/000075500000000000000000000000001211526675400146635ustar00rootroot00000000000000URI-Encode-0.09/.author/benchmark.pl000075500000000000000000000042611211526675400171600ustar00rootroot00000000000000#!/usr/bin/perl

####################
# LOAD CORE MODULES
####################
use strict;
use warnings FATAL => 'all';

# Autoflush ON
local $| = 1;

####################
# LOAD MODULES
####################
use URI::Encode;
use URI::Escape qw();
use URI::Escape::XS qw();
use Benchmark qw(cmpthese);

####################
# SETTINGS
####################

my $num_of_iters = '1000000';
my $url = 'http://www.google.com/search?q=Ingy dц╤t Net';

# Objects
my $obj_uri_encode = URI::Encode->new();

# Reserved characters
my $reserved_re = "^a-zA-Z0-9\-\_\.\~\!\*\'\(\)\;\:\@\&\=\+\$\,\/\?\%\#\[\]";

print "Encoding URL: $url\n";
print "Using URI::Escape ($URI::Escape::VERSION)\t-> "
. URI::Escape::uri_escape_utf8( $url, $reserved_re ) . "\n";
print "Using URI::Escape::XS ($URI::Escape::XS::VERSION)\t-> "
. URI::Escape::XS::uri_escape( $url, $reserved_re ) . "\n";
print "Using URI::Encode ($URI::Encode::VERSION)\t-> "
. $obj_uri_encode->encode($url) . "\n";

####################
# RUN BENCH
####################
print "\n\nBenchmarking $num_of_iters iterations on Perl $] ($^O)\n\n";

cmpthese(
$num_of_iters, {
'URI::Escape' => sub {
URI::Escape::uri_escape_utf8( $url, $reserved_re );
},
'URI::Escape::XS' => sub {
URI::Escape::XS::uri_escape( $url, $reserved_re );
},
'URI::Encode' => sub { $obj_uri_encode->encode($url) },
}
);

print "\n";

####################
# DONE
####################
exit 0;

__END__

=pod

Sample script output

Encoding URL: http://www.google.com/search?q=Ingy dц╤t Net
Using URI::Escape (3.31) -> http://www.google.com/search?q=Ingy dц┐б╤t Net
Using URI::Escape::XS (0.08)-> http://www.google.com/search?q=Ingy dц╤t Net
Using URI::Encode (0.06) -> http://www.google.com/search?q=Ingy%20d%C3%83%C2%B6t%20Net


Benchmarking 1000000 iterations on Perl 5.012003 (darwin)

Rate URI::Encode URI::Escape URI::Escape::XS
URI::Encode 61237/s -- -87% -91%
URI::Escape 473934/s 674% -- -29%
URI::Escape::XS 671141/s 996% 42% --

=cut
URI-Encode-0.09/.gitignore000064400000000000000000000001051211526675400152670ustar00rootroot00000000000000*.bak
*.tar.gz
*.tmp
*~
blib*
Build
pm_to_blib*
_build*
URI-Encode-*
URI-Encode-0.09/Build.PL000064400000000000000000000022651211526675400146040ustar00rootroot00000000000000#!perl

####################
# LOAD MODULES
####################
use strict;
use warnings FATAL => 'all';
use Module::Build;

# Autoflush ON
local $| = 1;

####################
# INIT BUILDER
####################

my $builder = Module::Build->new(
module_name => 'URI::Encode',
license => 'perl',
dist_author => 'Mithun Ayachit <mithun@cpan.org>',
configure_requires => { 'Module::Build' => 0.38 },
build_requires => {
'Test::More' => 0,
'version' => 0,
},
requires => {
'perl' => '5.8.1', # for Unicode support
'Encode' => '2.12',
},
add_to_cleanup => ['URI-Encode-*'],
create_license => 1,
create_makefile_pl => 'traditional',
meta_merge => {
keywords => [qw(uri escape encode percent)],
resources => {
bugtracker => 'http://rt.cpan.org/Public/Dist/Display.html?Name=URI-Encode',
repository => 'git://github.com/mithun/perl-uri-encode.git',
homepage => 'https://github.com/mithun/perl-uri-encode',
},
},
);

####################
# CREATE BUILD SCRIPT
####################
$builder->create_build_script();
URI-Encode-0.09/Changes000064400000000000000000000020221211526675400145720ustar00rootroot00000000000000Version History for URI-Encode
Mithun Ayachit


0.09
====

- [RT #83761] Lower-cased encoded characters were not being decoded.
Fixed now. Thanks David Arenillas ...

0.08
====

- [RT #80177] doh! double_encode wasn't working at all. Fixed now.
Thanks DWRIGHT ...
- [RT #80178] Do not reset default options when they (not all) are
passed to the constructor. Thanks DWRIGHT ...
- Updated some POD. Do not promote the old interface for setting
options

0.07
====

- Fix issue where '%' was not being encoded unless encode_reserved was
requested [RT #78314]
- Introduce option to NOT encode an already encoded string/URL

0.061
=====

- POD updates
- Added a benchmark script

0.06
====

- Fixed synopsis

0.05
====

- Store character maps in object
- Update repo format

0.04
====

- Allow strings to be '0' (literally). See RT #70628
- Added option in constructor to set reserved encoding

0.03
====

- Minimum perl 5.8.1

0.02
====

- Corrected POD

0.01
====

- Initial release

* * * * *
URI-Encode-0.09/INSTALL000064400000000000000000000010051211526675400143300ustar00rootroot00000000000000Installing URI-Encode
Mithun Ayachit


Distribution page
=================

The latest and all previous releases for URI-Encode can be downloaded
from https://metacpan.org/release/URI-Encode

Install using cpanm
===================

URI-Encode can be installed with cpanm using the following command

cpanm .

Install using Module::Build
===========================

URI-Encode can be installed with Module::Build using the following
commands

perl ./Build.PL
./Build
./Build test
./Build install
URI-Encode-0.09/LICENSE000064400000000000000000000437471211526675400143270ustar00rootroot00000000000000This software is copyright (c) 2013 by Mithun Ayachit <mithun@cpan.org>.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

Terms of the Perl programming language system itself

a) the GNU General Public License as published by the Free
Software Foundation; either version 1, or (at your option) any
later version, or
b) the "Artistic License"

--- The GNU General Public License, Version 1, February 1989 ---

This software is Copyright (c) 2013 by Mithun Ayachit <mithun@cpan.org>.

This is free software, licensed under:

The GNU General Public License, Version 1, February 1989

GNU GENERAL PUBLIC LICENSE
Version 1, February 1989

Copyright (C) 1989 Free Software Foundation, Inc.
51 Franklin St, Suite 500, Boston, MA 02110-1335 USA

Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.

Preamble

The license agreements of most software companies try to keep users
at the mercy of those companies. By contrast, our General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users. The
General Public License applies to the Free Software Foundation's
software and to any other program whose authors commit to using it.
You can use it for your programs, too.

When we speak of free software, we are referring to freedom, not
price. Specifically, the General Public License is designed to make
sure that you have the freedom to give away or sell copies of free
software, that you receive source code or can get it if you want it,
that you can change the software or use pieces of it in new free
programs; and that you know you can do these things.

To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.

For example, if you distribute copies of a such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have. You must make sure that they, too, receive or can get the
source code. And you must tell them their rights.

We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.

Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software. If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.

The precise terms and conditions for copying, distribution and
modification follow.

GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

0. This License Agreement applies to any program or other work which
contains a notice placed by the copyright holder saying it may be
distributed under the terms of this General Public License. The
"Program", below, refers to any such program or work, and a "work based
on the Program" means either the Program or any work containing the
Program or a portion of it, either verbatim or with modifications. Each
licensee is addressed as "you".

1. You may copy and distribute verbatim copies of the Program's source
code as you receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice and
disclaimer of warranty; keep intact all the notices that refer to this
General Public License and to the absence of any warranty; and give any
other recipients of the Program a copy of this General Public License
along with the Program. You may charge a fee for the physical act of
transferring a copy.

2. You may modify your copy or copies of the Program or any portion of
it, and copy and distribute such modifications under the terms of Paragraph
1 above, provided that you also do the following:

a) cause the modified files to carry prominent notices stating that
you changed the files and the date of any change; and

b) cause the whole of any work that you distribute or publish, that
in whole or in part contains the Program or any part thereof, either
with or without modifications, to be licensed at no charge to all
third parties under the terms of this General Public License (except
that you may choose to grant warranty protection to some or all
third parties, at your option).

c) If the modified program normally reads commands interactively when
run, you must cause it, when started running for such interactive use
in the simplest and most usual way, to print or display an
announcement including an appropriate copyright notice and a notice
that there is no warranty (or else, saying that you provide a
warranty) and that users may redistribute the program under these
conditions, and telling the user how to view a copy of this General
Public License.

d) You may charge a fee for the physical act of transferring a
copy, and you may at your option offer warranty protection in
exchange for a fee.

Mere aggregation of another independent work with the Program (or its
derivative) on a volume of a storage or distribution medium does not bring
the other work under the scope of these terms.

3. You may copy and distribute the Program (or a portion or derivative of
it, under Paragraph 2) in object code or executable form under the terms of
Paragraphs 1 and 2 above provided that you also do one of the following:

a) accompany it with the complete corresponding machine-readable
source code, which must be distributed under the terms of
Paragraphs 1 and 2 above; or,

b) accompany it with a written offer, valid for at least three
years, to give any third party free (except for a nominal charge
for the cost of distribution) a complete machine-readable copy of the
corresponding source code, to be distributed under the terms of
Paragraphs 1 and 2 above; or,

c) accompany it with the information you received as to where the
corresponding source code may be obtained. (This alternative is
allowed only for noncommercial distribution and only if you
received the program in object code or executable form alone.)

Source code for a work means the preferred form of the work for making
modifications to it. For an executable file, complete source code means
all the source code for all modules it contains; but, as a special
exception, it need not include source code for modules which are standard
libraries that accompany the operating system on which the executable
file runs, or for standard header files or definitions files that
accompany that operating system.

4. You may not copy, modify, sublicense, distribute or transfer the
Program except as expressly provided under this General Public License.
Any attempt otherwise to copy, modify, sublicense, distribute or transfer
the Program is void, and will automatically terminate your rights to use
the Program under this License. However, parties who have received
copies, or rights to use copies, from you under this General Public
License will not have their licenses terminated so long as such parties
remain in full compliance.

5. By copying, distributing or modifying the Program (or any work based
on the Program) you indicate your acceptance of this license to do so,
and all its terms and conditions.

6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the original
licensor to copy, distribute or modify the Program subject to these
terms and conditions. You may not impose any further restrictions on the
recipients' exercise of the rights granted herein.

7. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

Each version is given a distinguishing version number. If the Program
specifies a version number of the license which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation. If the Program does not specify a version number of
the license, you may choose any version ever published by the Free Software
Foundation.

8. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission. For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this. Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.

NO WARRANTY

9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.

10. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.

END OF TERMS AND CONDITIONS

Appendix: How to Apply These Terms to Your New Programs

If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.

To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.

<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 1, or (at your option)
any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA


Also add information on how to contact you by electronic and paper mail.

If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:

Gnomovision version 69, Copyright (C) 19xx name of author
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the
appropriate parts of the General Public License. Of course, the
commands you use may be called something other than `show w' and `show
c'; they could even be mouse-clicks or menu items--whatever suits your
program.

You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary. Here a sample; alter the names:

Yoyodyne, Inc., hereby disclaims all copyright interest in the
program `Gnomovision' (a program to direct compilers to make passes
at assemblers) written by James Hacker.

<signature of Ty Coon>, 1 April 1989
Ty Coon, President of Vice

That's all there is to it!


--- The Artistic License 1.0 ---

This software is Copyright (c) 2013 by Mithun Ayachit <mithun@cpan.org>.

This is free software, licensed under:

The Artistic License 1.0

The Artistic License

Preamble

The intent of this document is to state the conditions under which a Package
may be copied, such that the Copyright Holder maintains some semblance of
artistic control over the development of the package, while giving the users of
the package the right to use and distribute the Package in a more-or-less
customary fashion, plus the right to make reasonable modifications.

Definitions:

- "Package" refers to the collection of files distributed by the Copyright
Holder, and derivatives of that collection of files created through
textual modification.
- "Standard Version" refers to such a Package if it has not been modified,
or has been modified in accordance with the wishes of the Copyright
Holder.
- "Copyright Holder" is whoever is named in the copyright or copyrights for
the package.
- "You" is you, if you're thinking about copying or distributing this Package.
- "Reasonable copying fee" is whatever you can justify on the basis of media
cost, duplication charges, time of people involved, and so on. (You will
not be required to justify it to the Copyright Holder, but only to the
computing community at large as a market that must bear the fee.)
- "Freely Available" means that no fee is charged for the item itself, though
there may be fees involved in handling the item. It also means that
recipients of the item may redistribute it under the same conditions they
received it.

1. You may make and give away verbatim copies of the source form of the
Standard Version of this Package without restriction, provided that you
duplicate all of the original copyright notices and associated disclaimers.

2. You may apply bug fixes, portability fixes and other modifications derived
from the Public Domain or from the Copyright Holder. A Package modified in such
a way shall still be considered the Standard Version.

3. You may otherwise modify your copy of this Package in any way, provided that
you insert a prominent notice in each changed file stating how and when you
changed that file, and provided that you do at least ONE of the following:

a) place your modifications in the Public Domain or otherwise make them
Freely Available, such as by posting said modifications to Usenet or an
equivalent medium, or placing the modifications on a major archive site
such as ftp.uu.net, or by allowing the Copyright Holder to include your
modifications in the Standard Version of the Package.

b) use the modified Package only within your corporation or organization.

c) rename any non-standard executables so the names do not conflict with
standard executables, which must also be provided, and provide a separate
manual page for each non-standard executable that clearly documents how it
differs from the Standard Version.

d) make other distribution arrangements with the Copyright Holder.

4. You may distribute the programs of this Package in object code or executable
form, provided that you do at least ONE of the following:

a) distribute a Standard Version of the executables and library files,
together with instructions (in the manual page or equivalent) on where to
get the Standard Version.

b) accompany the distribution with the machine-readable source of the Package
with your modifications.

c) accompany any non-standard executables with their corresponding Standard
Version executables, giving the non-standard executables non-standard
names, and clearly documenting the differences in manual pages (or
equivalent), together with instructions on where to get the Standard
Version.

d) make other distribution arrangements with the Copyright Holder.

5. You may charge a reasonable copying fee for any distribution of this
Package. You may charge any fee you choose for support of this Package. You
may not charge a fee for this Package itself. However, you may distribute this
Package in aggregate with other (possibly commercial) programs as part of a
larger (possibly commercial) software distribution provided that you do not
advertise this Package as a product of your own.

6. The scripts and library files supplied as input to or produced as output
from the programs of this Package do not automatically fall under the copyright
of this Package, but belong to whomever generated them, and may be sold
commercially, and may be aggregated with this Package.

7. C or perl subroutines supplied by you and linked into this Package shall not
be considered part of this Package.

8. The name of the Copyright Holder may not be used to endorse or promote
products derived from this software without specific prior written permission.

9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.

The End

URI-Encode-0.09/MANIFEST000064400000000000000000000002201211526675400144260ustar00rootroot00000000000000Build.PL
Changes
INSTALL
lib/URI/Encode.pm
LICENSE
Makefile.PL
MANIFEST This list of files
META.json
META.yml
README
t/00-load.t
t/01-basic.t
URI-Encode-0.09/MANIFEST.SKIP000064400000000000000000000001621211526675400152000ustar00rootroot00000000000000^_build
^Build$
^blib
~$
\.bak$
^MANIFEST\.SKIP$
^\.git
\.DS_Store$
^MYMETA.yml$
^MYMETA\.json$
\.mkdn$
^\.author
URI-Encode-0.09/META.json000064400000000000000000000026021211526675400147240ustar00rootroot00000000000000{
"abstract" : "Simple percent Encoding/Decoding",
"author" : [
"Mithun Ayachit <mithun@cpan.org>"
],
"dynamic_config" : 1,
"generated_by" : "Module::Build version 0.4003, CPAN::Meta::Converter version 2.120921",
"keywords" : [
"uri",
"escape",
"encode",
"percent"
],
"license" : [
"perl_5"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"version" : "2"
},
"name" : "URI-Encode",
"prereqs" : {
"build" : {
"requires" : {
"Test::More" : "0",
"version" : "0"
}
},
"configure" : {
"requires" : {
"Module::Build" : "0.38"
}
},
"runtime" : {
"requires" : {
"Encode" : "2.12",
"perl" : "v5.8.1"
}
}
},
"provides" : {
"URI::Encode" : {
"file" : "lib/URI/Encode.pm",
"version" : "0.09"
}
},
"release_status" : "stable",
"resources" : {
"bugtracker" : {
"web" : "http://rt.cpan.org/Public/Dist/Display.html?Name=URI-Encode"
},
"homepage" : "https://github.com/mithun/perl-uri-encode",
"license" : [
"http://dev.perl.org/licenses/"
],
"repository" : {
"url" : "git://github.com/mithun/perl-uri-encode.git"
}
},
"version" : "0.09"
}
URI-Encode-0.09/META.yml000064400000000000000000000014651211526675400145620ustar00rootroot00000000000000---
abstract: 'Simple percent Encoding/Decoding'
author:
- 'Mithun Ayachit <mithun@cpan.org>'
build_requires:
Test::More: 0
version: 0
configure_requires:
Module::Build: 0.38
dynamic_config: 1
generated_by: 'Module::Build version 0.4003, CPAN::Meta::Converter version 2.120921'
keywords:
- uri
- escape
- encode
- percent
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
name: URI-Encode
provides:
URI::Encode:
file: lib/URI/Encode.pm
version: 0.09
requires:
Encode: 2.12
perl: v5.8.1
resources:
bugtracker: http://rt.cpan.org/Public/Dist/Display.html?Name=URI-Encode
homepage: https://github.com/mithun/perl-uri-encode
license: http://dev.perl.org/licenses/
repository: git://github.com/mithun/perl-uri-encode.git
version: 0.09
URI-Encode-0.09/Makefile.PL000064400000000000000000000006511211526675400152570ustar00rootroot00000000000000# Note: this file was auto-generated by Module::Build::Compat version 0.4003
require 5.008001;
use ExtUtils::MakeMaker;
WriteMakefile
(
'PL_FILES' => {},
'INSTALLDIRS' => 'site',
'NAME' => 'URI::Encode',
'EXE_FILES' => [],
'VERSION_FROM' => 'lib/URI/Encode.pm',
'PREREQ_PM' => {
'Test::More' => 0,
'version' => 0,
'Encode' => '2.12'
}
)
;
URI-Encode-0.09/README000064400000000000000000000073211211526675400141660ustar00rootroot00000000000000NAME
====

URI::Encode - Simple percent Encoding/Decoding

SYNOPSIS
========

# OOP Interface
use URI::Encode;
my $uri = URI::Encode->new( { encode_reserved => 0 } );
my $encoded = $uri->encode($data);
my $decoded = $uri->decode($encoded);

# Functional
use URI::Encode qw(uri_encode uri_decode);
my $encoded = uri_encode($data);
my $decoded = uri_decode($encoded);

DESCRIPTION
===========

This modules provides simple URI (Percent) encoding/decoding

The main purpose of this module (at least for me) was to provide an easy
method to encode strings (mainly URLs) into a format which can be pasted
into a plain text emails, and that those links are 'click-able' by the
person reading that email. This can be accomplished by NOT encoding the
reserved characters.

This module can also be useful when using HTTP::Tiny to ensure the URLs
are properly escaped.

If you are looking for speed and want to encode reserved characters, use
URI::Escape::XS

See this script for a comparison on encoding results and performance.

METHODS
=======

new()
-----

Creates a new object, no arguments are required

my $encoder = URI::Encode->new(\%options);

The following options can be passed to the constructor

- encode_reserved

my $encoder = URI::Encode->new({encode_reserved => 0});

If true, "Reserved Characters" are also encoded. Defaults to false.

- double_encode

my $encoder = URI::Encode->new({double_encode => 1});

If false, characters that are already percent-encoded will not be
encoded again. Defaults to true.

my $encoder = URI::Encode->new({double_encode => 0});
print $encoder->encode('http://perl.com/foo%20bar'); # prints http://perl.com/foo%20bar

encode($url, \%options)
-----------------------

This method encodes the URL provided. The $url provided is first
converted into UTF-8 before percent encoding. Options set in the
constructor, or defaults, can be overrided by passing them as the
(optional) second argument. Options passed must be a hashref.

$uri->encode("http://perl.com/foo bar");
$uri->encode( "http://perl.com/foo bar", { encode_reserved => 1 } );

decode($url)
------------

This method decodes a 'percent' encoded URL. If you had encoded the URL
using this module (or any other method), chances are that the URL was
converted to UTF-8 before 'percent' encoding. Be sure to check the
format and convert back if required.

$uri->decode("http%3A%2F%2Fperl.com%2Ffoo%20bar");

EXPORTED FUNCTIONS
==================

The following functions are exported upon request. This provides a
non-OOP interface

- uri_encode($url, \%options)
- uri_decode($url)

CHARACTER CLASSES
=================

Reserved Characters
-------------------

The following characters are considered as reserved (RFC 3986). They
will be encoded only if requested.

! * ' ( ) ; : @ & = + $ , / ? # [ ]

Unreserved Characters
---------------------

The following characters are considered as Unreserved. They will not be
encoded

a-z
A-Z
0-9
- _ . ~

DEPENDENCIES
============

Encode

ACKNOWLEDGEMENTS
================

Gisle Aas for URI::Escape

David Nicol for Tie::UrlEncoder

SEE ALSO
========

RFC 3986

URI::Escape

URI::Escape::XS

URI::Escape::JavaScript

Tie::UrlEncoder

BUGS AND LIMITATIONS
====================

Please report any bugs or feature requests to
bug-uri-encode@rt.cpan.org, or through the web interface at
http://rt.cpan.org/Public/Dist/Display.html?Name=URI-Encode

AUTHOR
======

Mithun Ayachit mithun@cpan.org

LICENSE AND COPYRIGHT
=====================

Copyright (c) 2012, Mithun Ayachit. All rights reserved.

This module is free software; you can redistribute it and/or modify it
under the same terms as Perl itself. See perlartistic.
URI-Encode-0.09/changes.mkdn000064400000000000000000000020001211526675400155560ustar00rootroot00000000000000% Version History for URI-Encode
% Mithun Ayachit
%

# 0.09

- [RT \#83761] Lower-cased encoded characters were not being decoded.
Fixed now. Thanks David Arenillas ...

# 0.08

- [RT \#80177] doh! double\_encode wasn't working at all. Fixed now.
Thanks DWRIGHT ...
- [RT \#80178] Do not reset default options when they (not all) are
passed to the constructor. Thanks DWRIGHT ...
- Updated some POD. Do not promote the old interface for setting
options

# 0.07

- Fix issue where '%' was not being encoded unless `encode_reserved`
was requested [RT \#78314]
- Introduce option to NOT encode an already encoded string/URL

# 0.061

- POD updates
- Added a benchmark script

# 0.06

- Fixed synopsis

# 0.05

- Store character maps in object
- Update repo format

# 0.04

- Allow strings to be '0' (literally). See RT \#70628
- Added option in constructor to set reserved encoding

# 0.03

- Minimum perl 5.8.1

# 0.02

- Corrected POD

# 0.01

- Initial release

* * * * *
URI-Encode-0.09/install.mkdn000064400000000000000000000007261211526675400156310ustar00rootroot00000000000000% Installing URI-Encode
% Mithun Ayachit
%

# Distribution page

The latest and all previous releases for URI-Encode can be downloaded
from https://metacpan.org/release/URI-Encode

# Install using `cpanm`

URI-Encode can be installed with `cpanm` using the following command

cpanm .

# Install using `Module::Build`

URI-Encode can be installed with `Module::Build` using the following
commands

perl ./Build.PL
./Build
./Build test
./Build install
URI-Encode-0.09/lib/000075500000000000000000000000001211526675400140515ustar00rootroot00000000000000URI-Encode-0.09/lib/URI/000075500000000000000000000000001211526675400145105ustar00rootroot00000000000000URI-Encode-0.09/lib/URI/Encode.pm000064400000000000000000000177361211526675400162610ustar00rootroot00000000000000package URI::Encode;

#######################
# LOAD MODULES
#######################
use strict;
use warnings FATAL => 'all';

use 5.008001;
use Encode qw();
use Carp qw(croak carp);

#######################
# VERSION
#######################
our $VERSION = '0.09';

#######################
# EXPORT
#######################
use base qw(Exporter);
our (@EXPORT_OK);

@EXPORT_OK = qw(uri_encode uri_decode);

#######################
# SETTINGS
#######################

# Reserved characters
my $reserved_re
= qr{([^a-zA-Z0-9\-\_\.\~\!\*\'\(\)\;\:\@\&\=\+\$\,\/\?\#\[\]\%])}x;

# Un-reserved characters
my $unreserved_re = qr{([^a-zA-Z0-9\Q-_.~\E\%])}x;

# Encoded character set
my $encoded_chars = qr{%([a-fA-F0-9]{2})}x;

#######################
# CONSTRUCTOR
#######################
sub new {
my ( $class, @in ) = @_;

# Check Input
my $defaults = {

# this module, unlike URI::Escape,
# does not encode reserved characters
encode_reserved => 0,

# Allow Double encoding?
# defaults to YES
double_encode => 1,
};

my $input = {};
if ( ref $in[0] eq 'HASH' ) { $input = $in[0]; }
else { $input = {@in}; }

# Set options
my $options = {

# Defaults
%{$defaults},

# Input
%{$input},

# Encoding Map
enc_map => { ( map { chr($_) => sprintf( "%%%02X", $_ ) } ( 0 ... 255 ) ) },

# Decoding Map
dec_map => { ( map { sprintf( "%02X", $_ ) => chr($_) } ( 0 ... 255 ) ), },
};

# Return
my $self = bless $options, $class;
return $self;
} ## end sub new

#######################
# ENCODE
#######################
sub encode {
my ( $self, $data, $options ) = @_;

# Check for data
# Allow to be '0'
return unless defined $data;

my $enc_res = $self->{encode_reserved};
my $double_encode = $self->{double_encode};

if ( defined $options ) {
if ( ref $options eq 'HASH' ) {
$enc_res = $options->{encode_reserved} if exists $options->{encode_reserved};
$double_encode = $options->{double_encode}
if exists $options->{double_encode};
} ## end if ( ref $options eq 'HASH')
else {
$enc_res = $options;
}
} ## end if ( defined $options )

# UTF-8 encode
$data = Encode::encode( 'utf-8-strict', $data );

# Encode a literal '%'
if ($double_encode) { $data =~ s{(\%)}{$self->_get_encoded_char($1)}gex; }
else { $data =~ s{(\%)}{$self->_encode_literal_percent($1, $')}gex; }

# Percent Encode
if ($enc_res) {
$data =~ s{$unreserved_re}{$self->_get_encoded_char($1)}gex;
}
else {
$data =~ s{$reserved_re}{$self->_get_encoded_char($1)}gex;
}

# Done
return $data;
} ## end sub encode

#######################
# DECODE
#######################
sub decode {
my ( $self, $data ) = @_;

# Check for data
# Allow to be '0'
return unless defined $data;

# Percent Decode
$data =~ s{$encoded_chars}{ $self->_get_decoded_char($1) }gex;

return $data;
} ## end sub decode

#######################
# EXPORTED FUNCTIONS
#######################

# Encoder
sub uri_encode { return __PACKAGE__->new()->encode(@_); }

# Decoder
sub uri_decode { return __PACKAGE__->new()->decode(@_); }

#######################
# INTERNAL
#######################


sub _get_encoded_char {
my ( $self, $char ) = @_;
return $self->{enc_map}->{$char} if exists $self->{enc_map}->{$char};
return $char;
} ## end sub _get_encoded_char


sub _encode_literal_percent {
my ( $self, $char, $post ) = @_;
return $self->_get_encoded_char($char) if not defined $post;
if ( $post =~ m{^([a-fA-F0-9]{2})}x ) {
return $self->_get_encoded_char($char) unless exists $self->{dec_map}->{$1};
return $char;
} ## end if ( $post =~ m{^([a-fA-F0-9]{2})}x)
return $self->_get_encoded_char($char);
} ## end sub _encode_literal_percent


sub _get_decoded_char {
my ( $self, $char ) = @_;
return $self->{dec_map}->{ uc($char) }
if exists $self->{dec_map}->{ uc($char) };
return $char;
} ## end sub _get_decoded_char

#######################
1;

__END__

#######################
# POD SECTION
#######################
=pod

=head1 NAME

URI::Encode - Simple percent Encoding/Decoding

=head1 SYNOPSIS

# OOP Interface
use URI::Encode;
my $uri = URI::Encode->new( { encode_reserved => 0 } );
my $encoded = $uri->encode($data);
my $decoded = $uri->decode($encoded);

# Functional
use URI::Encode qw(uri_encode uri_decode);
my $encoded = uri_encode($data);
my $decoded = uri_decode($encoded);


=head1 DESCRIPTION

This modules provides simple URI (Percent) encoding/decoding

The main purpose of this module (at least for me) was to provide an
easy method to encode strings (mainly URLs) into a format which can be
pasted into a plain text emails, and that those links are 'click-able'
by the person reading that email. This can be accomplished by NOT
encoding the reserved characters.

This module can also be useful when using L<HTTP::Tiny> to ensure the
URLs are properly escaped.

If you are looking for speed and want to encode reserved characters,
use L<URI::Escape::XS>

See L<this
script|https://github.com/mithun/perl-uri-encode/raw/master/.author/benchmark.pl>
for a comparison on encoding results and performance.

=head1 METHODS

=head2 new()

Creates a new object, no arguments are required

my $encoder = URI::Encode->new(\%options);

The following options can be passed to the constructor

=over

=item encode_reserved

my $encoder = URI::Encode->new({encode_reserved => 0});

If true, L</"Reserved Characters"> are also encoded. Defaults to false.

=item double_encode

my $encoder = URI::Encode->new({double_encode => 1});

If false, characters that are already percent-encoded will not be
encoded again. Defaults to true.

my $encoder = URI::Encode->new({double_encode => 0});
print $encoder->encode('http://perl.com/foo%20bar'); # prints http://perl.com/foo%20bar

=back

=head2 C<encode($url, \%options)>

This method encodes the URL provided. The C<$url> provided is first
converted into UTF-8 before percent encoding. Options set in the
constructor, or defaults, can be overrided by passing them as the
(optional) second argument. Options passed must be a hashref.

$uri->encode("http://perl.com/foo bar");
$uri->encode( "http://perl.com/foo bar", { encode_reserved => 1 } );

=head2 C<decode($url)>

This method decodes a 'percent' encoded URL. If you had encoded the URL
using this module (or any other method), chances are that the URL was
converted to UTF-8 before 'percent' encoding. Be sure to check the
format and convert back if required.

$uri->decode("http%3A%2F%2Fperl.com%2Ffoo%20bar");

=head1 EXPORTED FUNCTIONS

The following functions are exported upon request. This provides a
non-OOP interface

=over

=item C<uri_encode($url, \%options)>

=item C<uri_decode($url)>

=back

=head1 CHARACTER CLASSES

=head2 Reserved Characters

The following characters are considered as reserved (L<RFC
3986|http://tools.ietf.org/html/rfc3986>). They will be encoded only if
requested.

! * ' ( ) ; : @ & = + $ , / ? # [ ]

=head2 Unreserved Characters

The following characters are considered as Unreserved. They will not be
encoded

a-z
A-Z
0-9
- _ . ~

=head1 DEPENDENCIES

L<Encode>

=head1 ACKNOWLEDGEMENTS

Gisle Aas for L<URI::Escape>

David Nicol for L<Tie::UrlEncoder>

=head1 SEE ALSO

L<RFC 3986|http://tools.ietf.org/html/rfc3986>

L<URI::Escape>

L<URI::Escape::XS>

L<URI::Escape::JavaScript>

L<Tie::UrlEncoder>

=head1 BUGS AND LIMITATIONS

Please report any bugs or feature requests to
C<bug-uri-encode@rt.cpan.org>, or through the web interface at
L<http://rt.cpan.org/Public/Dist/Display.html?Name=URI-Encode>

=head1 AUTHOR

Mithun Ayachit C<mithun@cpan.org>

=head1 LICENSE AND COPYRIGHT

Copyright (c) 2012, Mithun Ayachit. All rights reserved.

This module is free software; you can redistribute it and/or modify it
under the same terms as Perl itself. See L<perlartistic>.

=cut
URI-Encode-0.09/readme.mkdn000064400000000000000000000103051211526675400154120ustar00rootroot00000000000000# NAME

URI::Encode - Simple percent Encoding/Decoding

# SYNOPSIS

# OOP Interface
use URI::Encode;
my $uri = URI::Encode->new( { encode_reserved => 0 } );
my $encoded = $uri->encode($data);
my $decoded = $uri->decode($encoded);

# Functional
use URI::Encode qw(uri_encode uri_decode);
my $encoded = uri_encode($data);
my $decoded = uri_decode($encoded);



# DESCRIPTION

This modules provides simple URI (Percent) encoding/decoding

The main purpose of this module (at least for me) was to provide an
easy method to encode strings (mainly URLs) into a format which can be
pasted into a plain text emails, and that those links are 'click-able'
by the person reading that email. This can be accomplished by NOT
encoding the reserved characters.

This module can also be useful when using [HTTP::Tiny](http://search.cpan.org/perldoc?HTTP::Tiny) to ensure the
URLs are properly escaped.

If you are looking for speed and want to encode reserved characters,
use [URI::Escape::XS](http://search.cpan.org/perldoc?URI::Escape::XS)

See [this script](https://github.com/mithun/perl-uri-encode/raw/master/.author/benchmark.pl)
for a comparison on encoding results and performance.

# METHODS

## new()

Creates a new object, no arguments are required

my $encoder = URI::Encode->new(\%options);

The following options can be passed to the constructor

- encode\_reserved

my $encoder = URI::Encode->new({encode_reserved => 0});

If true, ["Reserved Characters"](#Reserved Characters) are also encoded. Defaults to false.

- double\_encode

my $encoder = URI::Encode->new({double_encode => 1});

If false, characters that are already percent-encoded will not be
encoded again. Defaults to true.

my $encoder = URI::Encode->new({double_encode => 0});
print $encoder->encode('http://perl.com/foo%20bar'); # prints http://perl.com/foo%20bar

## `encode($url, \%options)`

This method encodes the URL provided. The `$url` provided is first
converted into UTF-8 before percent encoding. Options set in the
constructor, or defaults, can be overrided by passing them as the
(optional) second argument. Options passed must be a hashref.

$uri->encode("http://perl.com/foo bar");
$uri->encode( "http://perl.com/foo bar", { encode_reserved => 1 } );

## `decode($url)`

This method decodes a 'percent' encoded URL. If you had encoded the URL
using this module (or any other method), chances are that the URL was
converted to UTF-8 before 'percent' encoding. Be sure to check the
format and convert back if required.

$uri->decode("http%3A%2F%2Fperl.com%2Ffoo%20bar");

# EXPORTED FUNCTIONS

The following functions are exported upon request. This provides a
non-OOP interface

- `uri_encode($url, \%options)`
- `uri_decode($url)`

# CHARACTER CLASSES

## Reserved Characters

The following characters are considered as reserved ([RFC 3986](http://tools.ietf.org/html/rfc3986)). They will be encoded only if
requested.

! * ' ( ) ; : @ & = + $ , / ? # [ ]

## Unreserved Characters

The following characters are considered as Unreserved. They will not be
encoded

a-z
A-Z
0-9
- _ . ~

# DEPENDENCIES

[Encode](http://search.cpan.org/perldoc?Encode)

# ACKNOWLEDGEMENTS

Gisle Aas for [URI::Escape](http://search.cpan.org/perldoc?URI::Escape)

David Nicol for [Tie::UrlEncoder](http://search.cpan.org/perldoc?Tie::UrlEncoder)

# SEE ALSO

[RFC 3986](http://tools.ietf.org/html/rfc3986)

[URI::Escape](http://search.cpan.org/perldoc?URI::Escape)

[URI::Escape::XS](http://search.cpan.org/perldoc?URI::Escape::XS)

[URI::Escape::JavaScript](http://search.cpan.org/perldoc?URI::Escape::JavaScript)

[Tie::UrlEncoder](http://search.cpan.org/perldoc?Tie::UrlEncoder)

# BUGS AND LIMITATIONS

Please report any bugs or feature requests to
`bug-uri-encode@rt.cpan.org`, or through the web interface at
[http://rt.cpan.org/Public/Dist/Display.html?Name=URI-Encode](http://rt.cpan.org/Public/Dist/Display.html?Name=URI-Encode)

# AUTHOR

Mithun Ayachit `mithun@cpan.org`

# LICENSE AND COPYRIGHT

Copyright (c) 2012, Mithun Ayachit. All rights reserved.

This module is free software; you can redistribute it and/or modify it
under the same terms as Perl itself. See [perlartistic](http://search.cpan.org/perldoc?perlartistic).
URI-Encode-0.09/t/000075500000000000000000000000001211526675400135465ustar00rootroot00000000000000URI-Encode-0.09/t/00-load.t000064400000000000000000000004771211526675400150770ustar00rootroot00000000000000#!perl

####################
# LOAD CORE MODULES
####################
use strict;
use warnings FATAL => 'all';
use Test::More;

# Autoflush ON
local $| = 1;

# Test _use_
use_ok('URI::Encode') || BAIL_OUT('Failed to load URI::Encode');
diag("Testing URI::Encode $URI::Encode::VERSION");

# Done
done_testing();
exit 0;
URI-Encode-0.09/t/01-basic.t000064400000000000000000000042761211526675400152430ustar00rootroot00000000000000#!perl

####################
# LOAD CORE MODULES
####################
use strict;
use warnings FATAL => 'all';
use Encode qw();
use Test::More;

BEGIN { use_ok( "URI::Encode", qw(uri_encode uri_decode) ); }

# Define URI's
my $url
= "http://mithun.aц©achit.com/my pages.html?name=m!thun&Yours=w%hat?#";
my $encoded
= "http://mithun.a%C3%83%C2%BFachit.com/my%20pages.html?name=m!thun&Yours=w%25hat?#";
my $encoded_reserved
= "http%3A%2F%2Fmithun.a%C3%83%C2%BFachit.com%2Fmy%20pages.html%3Fname%3Dm%21thun%26Yours%3Dw%25hat%3F%23";

# Test Init
my $uri = new_ok("URI::Encode");
can_ok( $uri, qw(encode decode) );

# Test OOP
is( $uri->encode($url), $encoded, 'OOP: Unreserved encoding' );
is(
$uri->encode(
$url, {
encode_reserved => 1,
}
),
$encoded_reserved,
'OOP: Reserved Encoding with HASH options'
);
is( $uri->encode( $url, 1 ),
$encoded_reserved, 'OOP: Reserved Encoding with scalar option' );
is(
$uri->encode(
$encoded_reserved, {
double_encode => 0,
}
),
$encoded_reserved,
'OOP: Double encoding OFF'
);
is(
$uri->encode(
'This is a %20 test', {
double_encode => 1,
}
),
'This%20is%20a%20%2520%20test',
'OOP: Double encoding ON'
);
is( Encode::decode( 'utf-8-strict', $uri->decode($encoded) ),
$url, 'OOP: Decoding' );

## Test Methods
can_ok( "URI::Encode", qw(uri_encode uri_decode) );
is( uri_encode($url), $encoded, 'Function: Unreserved encoding' );
is( uri_encode( $url, 1 ),
$encoded_reserved, 'Function: Reserved encoding with scalar option' );
is(
uri_encode(
$url, {
encode_reserved => 1,
}
),
$encoded_reserved,
'Function: Reserved encoding with named option'
);
is(
uri_encode(
$encoded_reserved, {
double_encode => 0,
}
),
$encoded_reserved,
'Function: Double encoding OFF'
);
is( Encode::decode( 'utf-8-strict', uri_decode($encoded) ),
$url, 'Function: Decoding' );

## Test Lowercase & Uppercase decode
is( $uri->decode('foo%2bbar'), 'foo+bar', 'Lower cased decoding' );
is( $uri->decode('foo%2Bbar'), 'foo+bar', 'Upper cased decoding' );

## Done
done_testing();
exit 0;
 
дизайн и разработка: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
текущий майнтейнер: Michael Shigorin