- Fedora 25, 26
- RHEL 6, 7
- OpenSUSE Leap, Tumbleweed
#### Pre-Submission Checklist
- [ ] Commit message has the format required by CONTRIBUTING guide
- [x] Commits are split per component (core, individual modules, libs, utils, ...)
- [x] Each component has a single commit (if not, squash them into one commit)
- [ x No commits to README files for modules (changes must be done to docbook files
in `doc/` subfolder, the README file is autogenerated)
#### Type Of Change
- [ ] Small bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds new functionality)
- [ ] Breaking change (fix or feature that would change existing functionality)
#### Checklist:
- [ ] PR should be backported to stable branches
- [x] Tested changes locally
- [ ] Related to issue #XXXX (replace XXXX with an open issue number)
#### Description
Purpose of PR - trac packaging in one SPEC file for all RPM based dists.
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/1244
-- Commit Summary --
* pkg/kamailio/obs: Created links for dists:
-- File Changes --
A pkg/kamailio/fedora/25 (1)
A pkg/kamailio/fedora/26 (1)
M pkg/kamailio/obs/kamailio.spec (9)
A pkg/kamailio/opensuse/1315 (1)
A pkg/kamailio/opensuse/1330 (1)
A pkg/kamailio/rhel/6 (1)
A pkg/kamailio/rhel/7 (1)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/1244.patchhttps://github.com/kamailio/kamailio/pull/1244.diff
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/1244
Module: kamailio
Branch: master
Commit: 9229cb397e3afebd5e25e67713e4df9b6d622192
URL: https://github.com/kamailio/kamailio/commit/9229cb397e3afebd5e25e67713e4df9…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2017-10-01T08:22:16+02:00
app_mono: added section ids
---
Modified: src/modules/app_mono/doc/app_mono_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/9229cb397e3afebd5e25e67713e4df9…
Patch: https://github.com/kamailio/kamailio/commit/9229cb397e3afebd5e25e67713e4df9…
---
diff --git a/src/modules/app_mono/doc/app_mono_admin.xml b/src/modules/app_mono/doc/app_mono_admin.xml
index d5a06da0a5..aae3589cfe 100644
--- a/src/modules/app_mono/doc/app_mono_admin.xml
+++ b/src/modules/app_mono/doc/app_mono_admin.xml
@@ -11,20 +11,20 @@
<!-- Module User's Guide -->
<chapter>
-
+
<title>&adminguide;</title>
-
+
<section>
<title>Overview</title>
<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).
It uses the Mono project (http://www.mono-project.com/) to embed the managed
code interpreter inside the SIP server, providing fast execution.
</para>
<para>
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
assemblies, see: http://www.mono-project.com/Languages
</para>
@@ -36,7 +36,7 @@
<para>
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
- 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.
</para>
</section>
@@ -72,7 +72,7 @@
</section>
<section>
<title>Parameters</title>
- <section>
+ <section id="app_mono.p.load">
<title><varname>load</varname> (string)</title>
<para>
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>
</section>
</section>
-
+
<section>
<title>Functions</title>
- <section>
+ <section id="app_mono.f.mono_exec">
<title>
<function moreinfo="none">mono_exec(path [, param])</function>
</title>
@@ -119,8 +119,8 @@ mono_exec("/usr/local/etc/kamailio/mono/myscript.exe");
</programlisting>
</example>
</section>
-
- <section>
+
+ <section id="app_mono.mono_run">
<title>
<function moreinfo="none">mono_run([param])</function>
</title>
@@ -147,7 +147,7 @@ if(!mono_run("myparam"))
</example>
</section>
</section>
-
+
<section>
<title>Usage</title>
<para>