Module: kamailio
Branch: master
Commit: 99c284df880e1bb3c98e4aad2e2e968c745195a6
URL:
https://github.com/kamailio/kamailio/commit/99c284df880e1bb3c98e4aad2e2e968…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2017-02-10T12:02:47+01:00
aap_python: note about use of pvs in docs
---
Modified: src/modules/app_python/doc/app_python_admin.xml
---
Diff:
https://github.com/kamailio/kamailio/commit/99c284df880e1bb3c98e4aad2e2e968…
Patch:
https://github.com/kamailio/kamailio/commit/99c284df880e1bb3c98e4aad2e2e968…
---
diff --git a/src/modules/app_python/doc/app_python_admin.xml
b/src/modules/app_python/doc/app_python_admin.xml
index 4d4d4db..dc06758 100644
--- a/src/modules/app_python/doc/app_python_admin.xml
+++ b/src/modules/app_python/doc/app_python_admin.xml
@@ -11,9 +11,9 @@
<!-- Module User's Guide -->
<chapter>
-
+
<title>&adminguide;</title>
-
+
<section>
<title>Overview</title>
<para>
@@ -122,7 +122,7 @@ modparam("app_python", "child_init_method",
"my_child_init")
</section>
</section>
-
+
<section>
<title>Functions</title>
<section>
@@ -134,18 +134,22 @@ modparam("app_python", "child_init_method",
"my_child_init")
Optionally can be provided a second string with parameters to be passed
to the Python function.
</para>
+ <para>
+ Both parameters can contain pseudo-variables.
+ </para>
<example>
<title><function>python_exec</function> usage</title>
<programlisting format="linespecific">
...
python_exec("my_python_function");
python_exec("my_python_function", "my_params");
+python_exec("my_python_function", "$rU");
...
</programlisting>
</example>
</section>
-
+
</section>
-
+
</chapter>