Parcourir la source

app_mono: added section ids

Daniel-Constantin Mierla il y a 8 ans
Parent
commit
9229cb397e
1 fichiers modifiés avec 11 ajouts et 11 suppressions
  1. 11 11
      src/modules/app_mono/doc/app_mono_admin.xml

+ 11 - 11
src/modules/app_mono/doc/app_mono_admin.xml

@@ -11,20 +11,20 @@
 <!-- Module User's Guide -->
 <!-- Module User's Guide -->
 
 
 <chapter>
 <chapter>
-    
+
     <title>&adminguide;</title>
     <title>&adminguide;</title>
-    
+
     <section>
     <section>
 	<title>Overview</title>
 	<title>Overview</title>
 	<para>
 	<para>
-		This module allows the execution of assemblies of managed code, among 
+		This module allows the execution of assemblies of managed code, among
 		the most popular of which is C# (.NET).
 		the most popular of which is C# (.NET).
 		It uses the Mono project (http://www.mono-project.com/) to embed the managed
 		It uses the Mono project (http://www.mono-project.com/) to embed the managed
 		code interpreter inside the SIP server, providing fast execution.
 		code interpreter inside the SIP server, providing fast execution.
 	</para>
 	</para>
 	<para>
 	<para>
 		Besides C#, other languages can be used to build managed assemblies,
 		Besides C#, other languages can be used to build managed assemblies,
-		such as: Java, Python, VisualBasic.NET, JavaScript. For more details on 
+		such as: Java, Python, VisualBasic.NET, JavaScript. For more details on
 		what kind of languages can be used to build managed
 		what kind of languages can be used to build managed
 		assemblies, see: http://www.mono-project.com/Languages
 		assemblies, see: http://www.mono-project.com/Languages
 	</para>
 	</para>
@@ -36,7 +36,7 @@
 	<para>
 	<para>
 		There are two ways to execute managed code assemblies: load the code at
 		There are two ways to execute managed code assemblies: load the code at
 		startup and only execute at runtime, or load and execute at runtime. Only
 		startup and only execute at runtime, or load and execute at runtime. Only
-		one mode at a time may be used.  The mode is determined by the 'load' 
+		one mode at a time may be used.  The mode is determined by the 'load'
 		parameter and the function used to execute the code.
 		parameter and the function used to execute the code.
 	</para>
 	</para>
     </section>
     </section>
@@ -72,7 +72,7 @@
     </section>
     </section>
     <section>
     <section>
 	<title>Parameters</title>
 	<title>Parameters</title>
-	<section>
+	<section id="app_mono.p.load">
 	    <title><varname>load</varname> (string)</title>
 	    <title><varname>load</varname> (string)</title>
 	    <para>
 	    <para>
 			Set the path to the Mono assembly to be loaded at startup.  You
 			Set the path to the Mono assembly to be loaded at startup.  You
@@ -93,10 +93,10 @@ modparam("app_mono", "load", "/usr/local/etc/kamailio/mono/myscript.exe")
 	    </example>
 	    </example>
 	</section>
 	</section>
 	</section>
 	</section>
-	
+
     <section>
     <section>
 	<title>Functions</title>
 	<title>Functions</title>
- 	<section>
+	<section id="app_mono.f.mono_exec">
 	    <title>
 	    <title>
 		<function moreinfo="none">mono_exec(path [, param])</function>
 		<function moreinfo="none">mono_exec(path [, param])</function>
 	    </title>
 	    </title>
@@ -119,8 +119,8 @@ mono_exec("/usr/local/etc/kamailio/mono/myscript.exe");
 </programlisting>
 </programlisting>
 	    </example>
 	    </example>
 	</section>
 	</section>
-	
-	<section>
+
+	<section id="app_mono.mono_run">
 	    <title>
 	    <title>
 		<function moreinfo="none">mono_run([param])</function>
 		<function moreinfo="none">mono_run([param])</function>
 	    </title>
 	    </title>
@@ -147,7 +147,7 @@ if(!mono_run("myparam"))
 	    </example>
 	    </example>
 	</section>
 	</section>
 	</section>
 	</section>
-	
+
     <section>
     <section>
 	<title>Usage</title>
 	<title>Usage</title>
 	<para>
 	<para>