[svn-commits] file: branch 1.4 r47625 - /branches/1.4/funcs/func_uri.c

svn-commits at lists.digium.com svn-commits at lists.digium.com
Tue Nov 14 14:30:45 MST 2006


Author: file
Date: Tue Nov 14 15:30:44 2006
New Revision: 47625

URL: http://svn.digium.com/view/asterisk?view=rev&rev=47625
Log:
Small documentation clarification for URIENCODE. (issue #8294 reported by salaud)

Modified:
    branches/1.4/funcs/func_uri.c

Modified: branches/1.4/funcs/func_uri.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/funcs/func_uri.c?view=diff&rev=47625&r1=47624&r2=47625
==============================================================================
--- branches/1.4/funcs/func_uri.c (original)
+++ branches/1.4/funcs/func_uri.c Tue Nov 14 15:30:44 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