diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-08 18:56:58 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-08 18:56:58 +0000 |
commit | f05bbc4047b4e519eb0edbaf2fce2004f4838d1a (patch) | |
tree | de226ce5a9d015aefd62d1b704bb24f8d232801f /pod/perlfaq9.pod | |
parent | fdd579e2dc5d0da16b7e86246a01f0d838120df7 (diff) | |
download | perl-f05bbc4047b4e519eb0edbaf2fce2004f4838d1a.tar.gz |
FAQ sync. (Ignoring the few URL differences for now.)
p4raw-id: //depot/perl@15813
Diffstat (limited to 'pod/perlfaq9.pod')
-rw-r--r-- | pod/perlfaq9.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlfaq9.pod b/pod/perlfaq9.pod index 947c769f8e..e643c33981 100644 --- a/pod/perlfaq9.pod +++ b/pod/perlfaq9.pod @@ -1,6 +1,6 @@ =head1 NAME -perlfaq9 - Networking ($Revision: 1.7 $, $Date: 2002/01/28 04:17:27 $) +perlfaq9 - Networking ($Revision: 1.9 $, $Date: 2002/04/07 18:46:13 $) =head1 DESCRIPTION @@ -253,7 +253,7 @@ Basically, the following substitutions do it: s/([^\w()'*~!.-])/sprintf '%%%02x', ord $1/eg; # encode - s/%([A-Fa-f\d]{2})/chr hex $1/eg; # decode + s/%([A-Fa-f\d]{2})/chr hex $1/eg; # decode However, you should only apply them to individual URI components, not the entire URI, otherwise you'll lose information and generally mess |