Change 15732 by ams@lustre on 2002/04/04 17:08:13

           Subject: [PATCH 5.7.3 DOCS]
           From: [EMAIL PROTECTED]
           Date: 4 Apr 2002 15:59:39 -0000
           Message-Id: <[EMAIL PROTECTED]>

Affected files ...

..... //depot/perl/pod/perlfaq9.pod#38 edit

Differences ...

==== //depot/perl/pod/perlfaq9.pod#38 (text) ====
Index: perl/pod/perlfaq9.pod
--- perl/pod/perlfaq9.pod.~1~   Thu Apr  4 10:15:05 2002
+++ perl/pod/perlfaq9.pod       Thu Apr  4 10:15:05 2002
@@ -251,9 +251,9 @@
 The best source of detailed information on URI encoding is RFC 2396.
 Basically, the following substitutions do it:
 
-    s/([^\w()'*~!.-])/sprintf '%%%02x', $1/eg;   # encode
+    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
End of Patch.

Reply via email to