[svn-commits] file: trunk r47626 - in /trunk: ./ funcs/func_uri.c

svn-commits at lists.digium.com svn-commits at lists.digium.com
Tue Nov 14 14:34:00 MST 2006


Author: file
Date: Tue Nov 14 15:33:59 2006
New Revision: 47626

URL: http://svn.digium.com/view/asterisk?view=rev&rev=47626
Log:
Merged revisions 47625 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r47625 | file | 2006-11-14 16:30:44 -0500 (Tue, 14 Nov 2006) | 2 lines

Small documentation clarification for URIENCODE. (issue #8294 reported by salaud)

........

Modified:
    trunk/   (props changed)
    trunk/funcs/func_uri.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Modified: trunk/funcs/func_uri.c
URL: http://svn.digium.com/view/asterisk/trunk/funcs/func_uri.c?view=diff&rev=47626&r1=47625&r2=47626
==============================================================================
--- trunk/funcs/func_uri.c (original)
+++ trunk/funcs/func_uri.c Tue Nov 14 15:33:59 2006
@@ -74,14 +74,14 @@
 
 static struct ast_custom_function urldecode_function = {
 	.name = "URIDECODE",
-	.synopsis = "Decodes an URI-encoded string.",
+	.synopsis = "Decodes a URI-encoded string according to RFC 2396.",
 	.syntax = "URIDECODE(<data>)",
 	.read = uridecode,
 };
 
 static struct ast_custom_function urlencode_function = {
 	.name = "URIENCODE",
-	.synopsis = "Encodes a string to URI-safe encoding.",
+	.synopsis = "Encodes a string to URI-safe encoding according to RFC 2396.",
 	.syntax = "URIENCODE(<data>)",
 	.read = uriencode,
 };



More information about the svn-commits mailing list