Skip to content

Commit

Permalink
Rebuild documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
opensips-github committed Jun 10, 2023
1 parent 5828bd3 commit 8fca491
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 72 deletions.
4 changes: 2 additions & 2 deletions modules/b2b_logic/README
Original file line number Diff line number Diff line change
Expand Up @@ -1231,7 +1231,7 @@ Chapter 3. Contributors
Table 3.1. Top contributors by DevScore^(1), authored
commits^(2) and lines added/removed^(3)
Name DevScore Commits Lines ++ Lines --
1. Vlad Patrascu (@rvlad-patrascu) 107 36 3502 2561
1. Vlad Patrascu (@rvlad-patrascu) 111 37 3602 2644
2. Razvan Crainea (@razvancrainea) 19 10 593 224
3. Nick Altmann (@nikbyte) 13 9 278 29
4. Carsten Bock 12 5 679 23
Expand Down Expand Up @@ -1262,7 +1262,7 @@ Chapter 3. Contributors

Table 3.2. Most recently active contributors^(1) to this module
Name Commit Activity
1. Vlad Patrascu (@rvlad-patrascu) Nov 2020 - Apr 2023
1. Vlad Patrascu (@rvlad-patrascu) Nov 2020 - Jun 2023
2. truong.hua Jan 2023 - Feb 2023
3. Liviu Chircu (@liviuchircu) Nov 2020 - Nov 2022
4. Razvan Crainea (@razvancrainea) Jan 2021 - Oct 2022
Expand Down
10 changes: 5 additions & 5 deletions modules/b2b_logic/doc/contributors.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
<row>
<entry>1. </entry>
<entry>Vlad Patrascu (<ulink url="https://github.com/rvlad-patrascu">@rvlad-patrascu</ulink>)</entry>
<entry align="center">107</entry>
<entry align="center">36</entry>
<entry align="center">3502</entry>
<entry align="center">2561</entry>
<entry align="center">111</entry>
<entry align="center">37</entry>
<entry align="center">3602</entry>
<entry align="center">2644</entry>
</row>
<row>
<entry>2. </entry>
Expand Down Expand Up @@ -129,7 +129,7 @@
<row>
<entry>1. </entry>
<entry>Vlad Patrascu (<ulink url="https://github.com/rvlad-patrascu">@rvlad-patrascu</ulink>)</entry>
<entry align="center">Nov 2020 - Apr 2023</entry>
<entry align="center">Nov 2020 - Jun 2023</entry>
</row>
<row>
<entry>2. </entry>
Expand Down
79 changes: 40 additions & 39 deletions modules/sipmsgops/README
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ Chapter 1. Admin Guide
* txt (string) - SIP header field, value and CRLF marker.

This function can be used from REQUEST_ROUTE, FAILURE_ROUTE,
BRANCH_ROUTE, ERROR_ROUTE.
BRANCH_ROUTE and ERROR_ROUTE.

Example 1.1. append_to_reply usage
...
Expand All @@ -175,7 +175,7 @@ append_to_reply("Foo: $rm at $Ts\r\n");
changes you do there are per-branch.

This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE,
FAILURE_ROUTE, BRANCH_ROUTE.
FAILURE_ROUTE, BRANCH_ROUTE and LOCAL_ROUTE.

Example 1.2. append_hf usage
...
Expand All @@ -192,7 +192,7 @@ append_hf("From-username: $fU\r\n", "Call-ID");
* txt (string) - Header field to be inserted.

This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE,
FAILURE_ROUTE, BRANCH_ROUTE.
FAILURE_ROUTE, BRANCH_ROUTE and LOCAL_ROUTE.

Example 1.3. insert_hf usage
...
Expand All @@ -210,7 +210,7 @@ insert_hf("To-username: $tU\r\n");
is inserted.

This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE,
FAILURE_ROUTE, BRANCH_ROUTE.
FAILURE_ROUTE, BRANCH_ROUTE and LOCAL_ROUTE.

Example 1.4. insert_hf usage
...
Expand All @@ -226,7 +226,7 @@ insert_hf("To-username: $tU\r\n", "Call-ID");
* prefix - string (usually at least header field name).
* suffix - string (usually at least line terminator).

This function can be used from REQUEST_ROUTE, FAILURE_ROUTE,
This function can be used from REQUEST_ROUTE, FAILURE_ROUTE and
BRANCH_ROUTE.

Example 1.5. append_urihf usage
Expand All @@ -248,7 +248,7 @@ Note
form).

This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE,
FAILURE_ROUTE, BRANCH_ROUTE.
FAILURE_ROUTE, BRANCH_ROUTE and LOCAL_ROUTE.

Example 1.6. is_present_hf usage
...
Expand All @@ -272,7 +272,7 @@ if (is_present_hf("From")) log(1, "From HF Present");
Return true if a header was successfully appended.

This function can be used from REQUEST_ROUTE, FAILURE_ROUTE,
BRANCH_ROUTE.
BRANCH_ROUTE and LOCAL_ROUTE.

Example 1.7. append_time usage
...
Expand Down Expand Up @@ -302,7 +302,7 @@ append_time();
* name (string) - SIP method name

This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE,
FAILURE_ROUTE, and BRANCH_ROUTE.
FAILURE_ROUTE, BRANCH_ROUTE and LOCAL_ROUTE.

Example 1.8. is_method usage
...
Expand All @@ -326,7 +326,7 @@ if(is_method("OPTION|UPDATE"))
* hname (string) - header name to be removed.

This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE,
FAILURE_ROUTE and BRANCH_ROUTE.
FAILURE_ROUTE, BRANCH_ROUTE and LOCAL_ROUTE.

Example 1.9. remove_hf usage
...
Expand All @@ -347,7 +347,7 @@ if(remove_hf("User-Agent"))
* hname_expr (string) - regular expression.

This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE,
FAILURE_ROUTE and BRANCH_ROUTE.
FAILURE_ROUTE, BRANCH_ROUTE and LOCAL_ROUTE.

Example 1.10. remove_hf_re usage
...
Expand All @@ -365,7 +365,7 @@ remove_hf_re("^X-g.+[0-9]");
* hname_pattern (string) - glob pattern

This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE,
FAILURE_ROUTE and BRANCH_ROUTE.
FAILURE_ROUTE, BRANCH_ROUTE and LOCAL_ROUTE.

Example 1.11. remove_hf_glob usage
...
Expand Down Expand Up @@ -463,7 +463,8 @@ ruri_tel2sip();
Meaning of the parameters is as follows:
* uri (string) - a SIP URI

This function can be used from REQUEST_ROUTE and FAILURE_ROUTE.
This function can be used from REQUEST_ROUTE, FAILURE_ROUTE and
LOCAL_ROUTE.

Example 1.17. is_uri_user_e164 usage
...
Expand All @@ -483,7 +484,7 @@ if (is_uri_user_e164($avp(uri)) {
true if at least one body part is found (with any MIME).

This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE,
FAILURE_ROUTE and BRANCH_ROUTE.
FAILURE_ROUTE, BRANCH_ROUTE and LOCAL_ROUTE.

Example 1.18. has_body_part usage
...
Expand All @@ -503,7 +504,7 @@ if(has_body_part("application/sdp"))
detected

This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE,
FAILURE_ROUTE and BRANCH_ROUTE.
FAILURE_ROUTE, BRANCH_ROUTE and LOCAL_ROUTE.

Example 1.19. is_audio_on_hold usage
...
Expand All @@ -530,7 +531,7 @@ if(is_audio_on_hold())
xhtml#sip-parameters-8 for possible privacy type values.

This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE,
FAILURE_ROUTE and BRANCH_ROUTE.
FAILURE_ROUTE, BRANCH_ROUTE and LOCAL_ROUTE.

Example 1.20. is_privacy usage
...
Expand Down Expand Up @@ -1084,8 +1085,8 @@ Chapter 2. Contributors
Name DevScore Commits Lines ++ Lines --
1. Bogdan-Andrei Iancu (@bogdan-iancu) 67 37 2112 689
2. Liviu Chircu (@liviuchircu) 59 27 809 1510
3. Razvan Crainea (@razvancrainea) 47 20 2949 87
4. Vlad Paiu (@vladpaiu) 9 4 281 68
3. Razvan Crainea (@razvancrainea) 48 21 2968 105
4. Vlad Paiu (@vladpaiu) 10 5 317 95
5. Mihai Tiganus (@tallicamike) 6 3 155 28
6. Vlad Patrascu (@rvlad-patrascu) 4 2 49 13
7. Ovidiu Sas (@ovidiusas) 4 2 22 1
Expand Down Expand Up @@ -1119,22 +1120,22 @@ Chapter 2. Contributors

Table 2.2. Most recently active contributors^(1) to this module
Name Commit Activity
1. Liviu Chircu (@liviuchircu) Nov 2012 - Oct 2022
2. Bogdan-Andrei Iancu (@bogdan-iancu) Feb 2012 - Mar 2022
3. Razvan Crainea (@razvancrainea) Feb 2012 - Aug 2021
4. Maksym Sobolyev (@sobomax) Mar 2021 - Mar 2021
5. Dan Pascu (@danpascu) May 2019 - May 2019
6. Vlad Patrascu (@rvlad-patrascu) May 2017 - Apr 2019
7. Alexey Vasilyev (@vasilevalex) Jan 2019 - Jan 2019
8. Fabian Gast (@fgast) Nov 2018 - Nov 2018
9. Peter Lemenkov (@lemenkov) Jan 2013 - Jun 2018
10. Ovidiu Sas (@ovidiusas) Feb 2018 - Feb 2018

All remaining contributors: Jarrod Baumann (@jarrodb), Julián
Moreno Patiño, Ionut Ionita (@ionutrazvanionita), Ezequiel
Lovelle (@lovelle), Vlad Paiu (@vladpaiu), Mihai Tiganus
(@tallicamike), Boris Ratner, Nick Altmann (@nikbyte), Walter
Doekes (@wdoekes).
1. Razvan Crainea (@razvancrainea) Feb 2012 - Jun 2023
2. Vlad Paiu (@vladpaiu) Feb 2012 - May 2023
3. Liviu Chircu (@liviuchircu) Nov 2012 - Oct 2022
4. Bogdan-Andrei Iancu (@bogdan-iancu) Feb 2012 - Mar 2022
5. Maksym Sobolyev (@sobomax) Mar 2021 - Mar 2021
6. Dan Pascu (@danpascu) May 2019 - May 2019
7. Vlad Patrascu (@rvlad-patrascu) May 2017 - Apr 2019
8. Alexey Vasilyev (@vasilevalex) Jan 2019 - Jan 2019
9. Fabian Gast (@fgast) Nov 2018 - Nov 2018
10. Peter Lemenkov (@lemenkov) Jan 2013 - Jun 2018

All remaining contributors: Ovidiu Sas (@ovidiusas), Jarrod
Baumann (@jarrodb), Julián Moreno Patiño, Ionut Ionita
(@ionutrazvanionita), Ezequiel Lovelle (@lovelle), Mihai
Tiganus (@tallicamike), Boris Ratner, Nick Altmann (@nikbyte),
Walter Doekes (@wdoekes).

(1) including any documentation-related commits, excluding
merge commits
Expand All @@ -1143,12 +1144,12 @@ Chapter 3. Documentation

3.1. Contributors

Last edited by: Liviu Chircu (@liviuchircu), Bogdan-Andrei
Iancu (@bogdan-iancu), Vlad Patrascu (@rvlad-patrascu), Fabian
Gast (@fgast), Peter Lemenkov (@lemenkov), Ovidiu Sas
(@ovidiusas), Julián Moreno Patiño, Razvan Crainea
(@razvancrainea), Mihai Tiganus (@tallicamike), Vlad Paiu
(@vladpaiu), Boris Ratner, Nick Altmann (@nikbyte).
Last edited by: Razvan Crainea (@razvancrainea), Liviu Chircu
(@liviuchircu), Bogdan-Andrei Iancu (@bogdan-iancu), Vlad
Patrascu (@rvlad-patrascu), Fabian Gast (@fgast), Peter
Lemenkov (@lemenkov), Ovidiu Sas (@ovidiusas), Julián Moreno
Patiño, Mihai Tiganus (@tallicamike), Vlad Paiu (@vladpaiu),
Boris Ratner, Nick Altmann (@nikbyte).

Documentation Copyrights:

Expand Down
52 changes: 26 additions & 26 deletions modules/sipmsgops/doc/contributors.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,18 +37,18 @@
<row>
<entry>3. </entry>
<entry>Razvan Crainea (<ulink url="https://github.com/razvancrainea">@razvancrainea</ulink>)</entry>
<entry align="center">47</entry>
<entry align="center">20</entry>
<entry align="center">2949</entry>
<entry align="center">87</entry>
<entry align="center">48</entry>
<entry align="center">21</entry>
<entry align="center">2968</entry>
<entry align="center">105</entry>
</row>
<row>
<entry>4. </entry>
<entry>Vlad Paiu (<ulink url="https://github.com/vladpaiu">@vladpaiu</ulink>)</entry>
<entry align="center">9</entry>
<entry align="center">4</entry>
<entry align="center">281</entry>
<entry align="center">68</entry>
<entry align="center">10</entry>
<entry align="center">5</entry>
<entry align="center">317</entry>
<entry align="center">95</entry>
</row>
<row>
<entry>5. </entry>
Expand Down Expand Up @@ -128,58 +128,58 @@
<tbody>
<row>
<entry>1. </entry>
<entry>Liviu Chircu (<ulink url="https://github.com/liviuchircu">@liviuchircu</ulink>)</entry>
<entry align="center">Nov 2012 - Oct 2022</entry>
<entry>Razvan Crainea (<ulink url="https://github.com/razvancrainea">@razvancrainea</ulink>)</entry>
<entry align="center">Feb 2012 - Jun 2023</entry>
</row>
<row>
<entry>2. </entry>
<entry>Bogdan-Andrei Iancu (<ulink url="https://github.com/bogdan-iancu">@bogdan-iancu</ulink>)</entry>
<entry align="center">Feb 2012 - Mar 2022</entry>
<entry>Vlad Paiu (<ulink url="https://github.com/vladpaiu">@vladpaiu</ulink>)</entry>
<entry align="center">Feb 2012 - May 2023</entry>
</row>
<row>
<entry>3. </entry>
<entry>Razvan Crainea (<ulink url="https://github.com/razvancrainea">@razvancrainea</ulink>)</entry>
<entry align="center">Feb 2012 - Aug 2021</entry>
<entry>Liviu Chircu (<ulink url="https://github.com/liviuchircu">@liviuchircu</ulink>)</entry>
<entry align="center">Nov 2012 - Oct 2022</entry>
</row>
<row>
<entry>4. </entry>
<entry>Bogdan-Andrei Iancu (<ulink url="https://github.com/bogdan-iancu">@bogdan-iancu</ulink>)</entry>
<entry align="center">Feb 2012 - Mar 2022</entry>
</row>
<row>
<entry>5. </entry>
<entry>Maksym Sobolyev (<ulink url="https://github.com/sobomax">@sobomax</ulink>)</entry>
<entry align="center">Mar 2021 - Mar 2021</entry>
</row>
<row>
<entry>5. </entry>
<entry>6. </entry>
<entry>Dan Pascu (<ulink url="https://github.com/danpascu">@danpascu</ulink>)</entry>
<entry align="center">May 2019 - May 2019</entry>
</row>
<row>
<entry>6. </entry>
<entry>7. </entry>
<entry>Vlad Patrascu (<ulink url="https://github.com/rvlad-patrascu">@rvlad-patrascu</ulink>)</entry>
<entry align="center">May 2017 - Apr 2019</entry>
</row>
<row>
<entry>7. </entry>
<entry>8. </entry>
<entry>Alexey Vasilyev (<ulink url="https://github.com/vasilevalex">@vasilevalex</ulink>)</entry>
<entry align="center">Jan 2019 - Jan 2019</entry>
</row>
<row>
<entry>8. </entry>
<entry>9. </entry>
<entry>Fabian Gast (<ulink url="https://github.com/fgast">@fgast</ulink>)</entry>
<entry align="center">Nov 2018 - Nov 2018</entry>
</row>
<row>
<entry>9. </entry>
<entry>10. </entry>
<entry>Peter Lemenkov (<ulink url="https://github.com/lemenkov">@lemenkov</ulink>)</entry>
<entry align="center">Jan 2013 - Jun 2018</entry>
</row>
<row>
<entry>10. </entry>
<entry>Ovidiu Sas (<ulink url="https://github.com/ovidiusas">@ovidiusas</ulink>)</entry>
<entry align="center">Feb 2018 - Feb 2018</entry>
</row>
</tbody>
</tgroup>
</table>
<para><emphasis role='bold'>All remaining contributors</emphasis>: Jarrod Baumann (<ulink url="https://github.com/jarrodb">@jarrodb</ulink>), Julián Moreno Patiño, Ionut Ionita (<ulink url="https://github.com/ionutrazvanionita">@ionutrazvanionita</ulink>), Ezequiel Lovelle (<ulink url="https://github.com/lovelle">@lovelle</ulink>), Vlad Paiu (<ulink url="https://github.com/vladpaiu">@vladpaiu</ulink>), Mihai Tiganus (<ulink url="https://github.com/tallicamike">@tallicamike</ulink>), Boris Ratner, Nick Altmann (<ulink url="https://github.com/nikbyte">@nikbyte</ulink>), Walter Doekes (<ulink url="https://github.com/wdoekes">@wdoekes</ulink>).</para>
<para><emphasis role='bold'>All remaining contributors</emphasis>: Ovidiu Sas (<ulink url="https://github.com/ovidiusas">@ovidiusas</ulink>), Jarrod Baumann (<ulink url="https://github.com/jarrodb">@jarrodb</ulink>), Julián Moreno Patiño, Ionut Ionita (<ulink url="https://github.com/ionutrazvanionita">@ionutrazvanionita</ulink>), Ezequiel Lovelle (<ulink url="https://github.com/lovelle">@lovelle</ulink>), Mihai Tiganus (<ulink url="https://github.com/tallicamike">@tallicamike</ulink>), Boris Ratner, Nick Altmann (<ulink url="https://github.com/nikbyte">@nikbyte</ulink>), Walter Doekes (<ulink url="https://github.com/wdoekes">@wdoekes</ulink>).</para>
<para>
<emphasis>(1) including any documentation-related commits, excluding merge commits</emphasis>
</para>
Expand All @@ -190,7 +190,7 @@
<title>Documentation</title>
<section id="documentation_contributors" xreflabel="documentation_contributors">
<title>Contributors</title>
<para><emphasis role='bold'>Last edited by:</emphasis> Liviu Chircu (<ulink url="https://github.com/liviuchircu">@liviuchircu</ulink>), Bogdan-Andrei Iancu (<ulink url="https://github.com/bogdan-iancu">@bogdan-iancu</ulink>), Vlad Patrascu (<ulink url="https://github.com/rvlad-patrascu">@rvlad-patrascu</ulink>), Fabian Gast (<ulink url="https://github.com/fgast">@fgast</ulink>), Peter Lemenkov (<ulink url="https://github.com/lemenkov">@lemenkov</ulink>), Ovidiu Sas (<ulink url="https://github.com/ovidiusas">@ovidiusas</ulink>), Julián Moreno Patiño, Razvan Crainea (<ulink url="https://github.com/razvancrainea">@razvancrainea</ulink>), Mihai Tiganus (<ulink url="https://github.com/tallicamike">@tallicamike</ulink>), Vlad Paiu (<ulink url="https://github.com/vladpaiu">@vladpaiu</ulink>), Boris Ratner, Nick Altmann (<ulink url="https://github.com/nikbyte">@nikbyte</ulink>).</para>
<para><emphasis role='bold'>Last edited by:</emphasis> Razvan Crainea (<ulink url="https://github.com/razvancrainea">@razvancrainea</ulink>), Liviu Chircu (<ulink url="https://github.com/liviuchircu">@liviuchircu</ulink>), Bogdan-Andrei Iancu (<ulink url="https://github.com/bogdan-iancu">@bogdan-iancu</ulink>), Vlad Patrascu (<ulink url="https://github.com/rvlad-patrascu">@rvlad-patrascu</ulink>), Fabian Gast (<ulink url="https://github.com/fgast">@fgast</ulink>), Peter Lemenkov (<ulink url="https://github.com/lemenkov">@lemenkov</ulink>), Ovidiu Sas (<ulink url="https://github.com/ovidiusas">@ovidiusas</ulink>), Julián Moreno Patiño, Mihai Tiganus (<ulink url="https://github.com/tallicamike">@tallicamike</ulink>), Vlad Paiu (<ulink url="https://github.com/vladpaiu">@vladpaiu</ulink>), Boris Ratner, Nick Altmann (<ulink url="https://github.com/nikbyte">@nikbyte</ulink>).</para>
</section>

</chapter>

0 comments on commit 8fca491

Please sign in to comment.