[asterisk-commits] eliel: trunk r199411 - /trunk/res/res_phoneprov.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Sat Jun 6 17:45:46 CDT 2009
Author: eliel
Date: Sat Jun 6 17:45:42 2009
New Revision: 199411
URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=199411
Log:
Move function PP_EACH_USER and PP_EACH_EXTENSION documentation to XML.
Move function PP_EACH_USER and PP_EACH_EXTENSION documentation to the new
AstXML form.
(issue #15245)
Reported by: eliel
Patches:
res_phoneprov_static_conversion.txt uploaded by lmadsen (license 10)
(with PP_EACH_USER add by me)
Modified:
trunk/res/res_phoneprov.c
Modified: trunk/res/res_phoneprov.c
URL: http://svn.asterisk.org/svn-view/asterisk/trunk/res/res_phoneprov.c?view=diff&rev=199411&r1=199410&r2=199411
==============================================================================
--- trunk/res/res_phoneprov.c (original)
+++ trunk/res/res_phoneprov.c Sat Jun 6 17:45:42 2009
@@ -65,6 +65,37 @@
#define VAR_BUF_SIZE 4096
+/*** DOCUMENTATION
+ <function name="PP_EACH_EXTENSION" language="en_US">
+ <synopsis>
+ Execute specified template for each extension.
+ </synopsis>
+ <syntax>
+ <parameter name="mac" required="true" />
+ <parameter name="template" required="true" />
+ </syntax>
+ <description>
+ <para>Output the specified template for each extension associated with the specified MAC address.</para>
+ </description>
+ </function>
+ <function name="PP_EACH_USER" language="en_US">
+ <synopsis>
+ Generate a string for each phoneprov user.
+ </synopsis>
+ <syntax>
+ <parameter name="string" required="true" />
+ <parameter name="exclude_mac" required="true" />
+ </syntax>
+ <description>
+ <para>Pass in a string, with phoneprov variables you want substituted in the format of
+ %{VARNAME}, and you will get the string rendered for each user in phoneprov
+ excluding ones with MAC address <replaceable>exclude_mac</replaceable>. Probably not
+ useful outside of res_phoneprov.</para>
+ <para>Example: ${PP_EACH_USER(<item><fn>%{DISPLAY_NAME}</fn></item>|${MAC})</para>
+ </description>
+ </function>
+ ***/
+
/*! \brief for use in lookup_iface */
static struct in_addr __ourip = { .s_addr = 0x00000000, };
@@ -1109,14 +1140,6 @@
static struct ast_custom_function pp_each_user_function = {
.name = "PP_EACH_USER",
- .synopsis = "Generate a string for each phoneprov user",
- .syntax = "PP_EACH_USER(<string>|<exclude_mac>)",
- .desc =
- "Pass in a string, with phoneprov variables you want substituted in the format of\n"
- "%{VARNAME}, and you will get the string rendered for each user in phoneprov\n"
- "excluding ones with MAC address <exclude_mac>. Probably not useful outside of\n"
- "res_phoneprov.\n"
- "\nExample: ${PP_EACH_USER(<item><fn>%{DISPLAY_NAME}</fn></item>|${MAC})",
.read = pp_each_user_read,
.read2 = pp_each_user_read2,
};
@@ -1195,11 +1218,6 @@
static struct ast_custom_function pp_each_extension_function = {
.name = "PP_EACH_EXTENSION",
- .synopsis = "Execute specified template for each extension",
- .syntax = "PP_EACH_EXTENSION(<mac>|<template>)",
- .desc =
- "Output the specified template for each extension associated with the specified\n"
- "MAC address.",
.read = pp_each_extension_read,
.read2 = pp_each_extension_read2,
};
More information about the asterisk-commits
mailing list