Skip to content

Commit 71bd96e

Browse files
Rebuild documentation
1 parent 9c382cb commit 71bd96e

6 files changed

Lines changed: 62 additions & 33 deletions

File tree

modules/b2b_logic/README

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1274,7 +1274,7 @@ Chapter 3. Contributors
12741274
commits^(2) and lines added/removed^(3)
12751275
Name DevScore Commits Lines ++ Lines --
12761276
1. Vlad Patrascu (@rvlad-patrascu) 239 57 8167 6793
1277-
2. Razvan Crainea (@razvancrainea) 43 26 1209 310
1277+
2. Razvan Crainea (@razvancrainea) 44 27 1210 311
12781278
3. Bogdan-Andrei Iancu (@bogdan-iancu) 15 11 152 76
12791279
4. Nick Altmann (@nikbyte) 14 10 346 36
12801280
5. Carsten Bock 12 5 679 23
@@ -1307,8 +1307,8 @@ Chapter 3. Contributors
13071307

13081308
Table 3.2. Most recently active contributors^(1) to this module
13091309
Name Commit Activity
1310-
1. Bogdan-Andrei Iancu (@bogdan-iancu) Apr 2021 - May 2025
1311-
2. Razvan Crainea (@razvancrainea) Jan 2021 - Jan 2025
1310+
1. Razvan Crainea (@razvancrainea) Jan 2021 - Jun 2025
1311+
2. Bogdan-Andrei Iancu (@bogdan-iancu) Apr 2021 - May 2025
13121312
3. Alexandra Titoc Sep 2024 - Sep 2024
13131313
4. Norman Brandinger (@NormB) May 2024 - Jun 2024
13141314
5. Liviu Chircu (@liviuchircu) Nov 2020 - Feb 2024

modules/b2b_logic/doc/contributors.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@
2929
<row>
3030
<entry>2. </entry>
3131
<entry>Razvan Crainea (<ulink url="https://github.com/razvancrainea">@razvancrainea</ulink>)</entry>
32-
<entry align="center">43</entry>
33-
<entry align="center">26</entry>
34-
<entry align="center">1209</entry>
35-
<entry align="center">310</entry>
32+
<entry align="center">44</entry>
33+
<entry align="center">27</entry>
34+
<entry align="center">1210</entry>
35+
<entry align="center">311</entry>
3636
</row>
3737
<row>
3838
<entry>3. </entry>
@@ -128,13 +128,13 @@
128128
<tbody>
129129
<row>
130130
<entry>1. </entry>
131-
<entry>Bogdan-Andrei Iancu (<ulink url="https://github.com/bogdan-iancu">@bogdan-iancu</ulink>)</entry>
132-
<entry align="center">Apr 2021 - May 2025</entry>
131+
<entry>Razvan Crainea (<ulink url="https://github.com/razvancrainea">@razvancrainea</ulink>)</entry>
132+
<entry align="center">Jan 2021 - Jun 2025</entry>
133133
</row>
134134
<row>
135135
<entry>2. </entry>
136-
<entry>Razvan Crainea (<ulink url="https://github.com/razvancrainea">@razvancrainea</ulink>)</entry>
137-
<entry align="center">Jan 2021 - Jan 2025</entry>
136+
<entry>Bogdan-Andrei Iancu (<ulink url="https://github.com/bogdan-iancu">@bogdan-iancu</ulink>)</entry>
137+
<entry align="center">Apr 2021 - May 2025</entry>
138138
</row>
139139
<row>
140140
<entry>3. </entry>

modules/domain/README

Lines changed: 24 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ domain Module
1414
1.3.3. domain_table (string)
1515
1.3.4. domain_col (string)
1616
1.3.5. attrs_col (string)
17+
1.3.6. subdomain_col (int)
1718

1819
1.4. Exported Functions
1920

@@ -57,9 +58,10 @@ domain Module
5758
1.3. Setting domain_table parameter
5859
1.4. Setting domain_col parameter
5960
1.5. Setting attrs_col parameter
60-
1.6. is_from_local usage
61-
1.7. is_uri_host_local usage
62-
1.8. is_domain_local usage
61+
1.6. Setting subdomain_col parameter
62+
1.7. is_from_local usage
63+
1.8. is_uri_host_local usage
64+
1.9. is_domain_local usage
6365

6466
Chapter 1. Admin Guide
6567

@@ -139,6 +141,17 @@ modparam("domain", "domain_col", "domain_name")
139141
Example 1.5. Setting attrs_col parameter
140142
modparam("domain", "attrs_col", "attributes")
141143

144+
1.3.6. subdomain_col (int)
145+
146+
Name of the "accept_subdomain" column in the domain table. A
147+
positive value for the column means the domain accepts
148+
subdomains. A 0 value means it does not.
149+
150+
Default value is “accept_subdomain”.
151+
152+
Example 1.6. Setting subdomain_col parameter
153+
modparam("domain", "subdomain_col", "has_subdomain")
154+
142155
1.4. Exported Functions
143156

144157
1.4.1. is_from_local([attrs_var])
@@ -151,7 +164,7 @@ modparam("domain", "attrs_col", "attributes")
151164

152165
This function can be used from REQUEST_ROUTE.
153166

154-
Example 1.6. is_from_local usage
167+
Example 1.7. is_from_local usage
155168
...
156169
if (is_from_local()) {
157170
...
@@ -177,7 +190,7 @@ if (is_from_local($var(attrs))) {
177190
This function can be used from REQUEST_ROUTE, FAILURE_ROUTE,
178191
BRANCH_ROUTE.
179192

180-
Example 1.7. is_uri_host_local usage
193+
Example 1.8. is_uri_host_local usage
181194
...
182195
if (is_uri_host_local()) {
183196
...
@@ -209,7 +222,7 @@ if (is_uri_host_local($var(attrs))) {
209222
This function can be used from REQUEST_ROUTE, FAILURE_ROUTE,
210223
BRANCH_ROUTE.
211224

212-
Example 1.8. is_domain_local usage
225+
Example 1.9. is_domain_local usage
213226
...
214227
if (is_domain_local($rd)) {
215228
...
@@ -286,7 +299,7 @@ Chapter 3. Contributors
286299
Table 3.1. Top contributors by DevScore^(1), authored
287300
commits^(2) and lines added/removed^(3)
288301
Name DevScore Commits Lines ++ Lines --
289-
1. Bogdan-Andrei Iancu (@bogdan-iancu) 56 42 427 559
302+
1. Bogdan-Andrei Iancu (@bogdan-iancu) 57 43 444 559
290303
2. Jan Janak (@janakj) 32 21 999 113
291304
3. Juha Heinanen (@juha-h) 30 20 700 233
292305
4. Razvan Crainea (@razvancrainea) 22 15 290 226
@@ -324,7 +337,7 @@ Chapter 3. Contributors
324337

325338
Table 3.2. Most recently active contributors^(1) to this module
326339
Name Commit Activity
327-
1. Bogdan-Andrei Iancu (@bogdan-iancu) Oct 2005 - May 2025
340+
1. Bogdan-Andrei Iancu (@bogdan-iancu) Oct 2005 - Jun 2025
328341
2. Razvan Crainea (@razvancrainea) Jun 2011 - May 2025
329342
3. Liviu Chircu (@liviuchircu) Mar 2014 - May 2025
330343
4. David Trihy May 2025 - May 2025
@@ -349,9 +362,9 @@ Chapter 4. Documentation
349362

350363
4.1. Contributors
351364

352-
Last edited by: Vlad Patrascu (@rvlad-patrascu), Razvan Crainea
353-
(@razvancrainea), Peter Lemenkov (@lemenkov), Liviu Chircu
354-
(@liviuchircu), Bogdan-Andrei Iancu (@bogdan-iancu),
365+
Last edited by: Bogdan-Andrei Iancu (@bogdan-iancu), Vlad
366+
Patrascu (@rvlad-patrascu), Razvan Crainea (@razvancrainea),
367+
Peter Lemenkov (@lemenkov), Liviu Chircu (@liviuchircu),
355368
Daniel-Constantin Mierla (@miconda), Konstantin Bokarius, Edson
356369
Gellert Schubert, Juha Heinanen (@juha-h), Elena-Ramona
357370
Modroiu, Dan Pascu (@danpascu), Klaus Darilion, Jan Janak

modules/domain/doc/contributors.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
<row>
2222
<entry>1. </entry>
2323
<entry>Bogdan-Andrei Iancu (<ulink url="https://github.com/bogdan-iancu">@bogdan-iancu</ulink>)</entry>
24-
<entry align="center">56</entry>
25-
<entry align="center">42</entry>
26-
<entry align="center">427</entry>
24+
<entry align="center">57</entry>
25+
<entry align="center">43</entry>
26+
<entry align="center">444</entry>
2727
<entry align="center">559</entry>
2828
</row>
2929
<row>
@@ -129,7 +129,7 @@
129129
<row>
130130
<entry>1. </entry>
131131
<entry>Bogdan-Andrei Iancu (<ulink url="https://github.com/bogdan-iancu">@bogdan-iancu</ulink>)</entry>
132-
<entry align="center">Oct 2005 - May 2025</entry>
132+
<entry align="center">Oct 2005 - Jun 2025</entry>
133133
</row>
134134
<row>
135135
<entry>2. </entry>
@@ -190,7 +190,7 @@
190190
<title>Documentation</title>
191191
<section id="documentation_contributors" xreflabel="documentation_contributors">
192192
<title>Contributors</title>
193-
<para><emphasis role='bold'>Last edited by:</emphasis> Vlad Patrascu (<ulink url="https://github.com/rvlad-patrascu">@rvlad-patrascu</ulink>), Razvan Crainea (<ulink url="https://github.com/razvancrainea">@razvancrainea</ulink>), Peter Lemenkov (<ulink url="https://github.com/lemenkov">@lemenkov</ulink>), Liviu Chircu (<ulink url="https://github.com/liviuchircu">@liviuchircu</ulink>), Bogdan-Andrei Iancu (<ulink url="https://github.com/bogdan-iancu">@bogdan-iancu</ulink>), Daniel-Constantin Mierla (<ulink url="https://github.com/miconda">@miconda</ulink>), Konstantin Bokarius, Edson Gellert Schubert, Juha Heinanen (<ulink url="https://github.com/juha-h">@juha-h</ulink>), Elena-Ramona Modroiu, Dan Pascu (<ulink url="https://github.com/danpascu">@danpascu</ulink>), Klaus Darilion, Jan Janak (<ulink url="https://github.com/janakj">@janakj</ulink>).</para>
193+
<para><emphasis role='bold'>Last edited by:</emphasis> 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>), Razvan Crainea (<ulink url="https://github.com/razvancrainea">@razvancrainea</ulink>), Peter Lemenkov (<ulink url="https://github.com/lemenkov">@lemenkov</ulink>), Liviu Chircu (<ulink url="https://github.com/liviuchircu">@liviuchircu</ulink>), Daniel-Constantin Mierla (<ulink url="https://github.com/miconda">@miconda</ulink>), Konstantin Bokarius, Edson Gellert Schubert, Juha Heinanen (<ulink url="https://github.com/juha-h">@juha-h</ulink>), Elena-Ramona Modroiu, Dan Pascu (<ulink url="https://github.com/danpascu">@danpascu</ulink>), Klaus Darilion, Jan Janak (<ulink url="https://github.com/janakj">@janakj</ulink>).</para>
194194
</section>
195195

196196
</chapter>

modules/sockets_mgm/README

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -281,8 +281,9 @@ Chapter 2. Contributors
281281

282282
Table 2.1. Top contributors by DevScore^(1), authored
283283
commits^(2) and lines added/removed^(3)
284-
Name DevScore Commits Lines ++ Lines --
285-
1. Razvan Crainea (@razvancrainea) 33 4 2207 572
284+
Name DevScore Commits Lines ++ Lines --
285+
1. Razvan Crainea (@razvancrainea) 33 4 2207 572
286+
2. Bogdan-Andrei Iancu (@bogdan-iancu) 3 1 1 1
286287

287288
(1) DevScore = author_commits + author_lines_added /
288289
(project_lines_added / project_commits) + author_lines_deleted
@@ -303,8 +304,9 @@ Chapter 2. Contributors
303304
2.2. By Commit Activity
304305

305306
Table 2.2. Most recently active contributors^(1) to this module
306-
Name Commit Activity
307-
1. Razvan Crainea (@razvancrainea) Mar 2025 - May 2025
307+
Name Commit Activity
308+
1. Bogdan-Andrei Iancu (@bogdan-iancu) Jun 2025 - Jun 2025
309+
2. Razvan Crainea (@razvancrainea) Mar 2025 - May 2025
308310

309311
(1) including any documentation-related commits, excluding
310312
merge commits
@@ -313,7 +315,8 @@ Chapter 3. Documentation
313315

314316
3.1. Contributors
315317

316-
Last edited by: Razvan Crainea (@razvancrainea).
318+
Last edited by: Bogdan-Andrei Iancu (@bogdan-iancu), Razvan
319+
Crainea (@razvancrainea).
317320

318321
Documentation Copyrights:
319322

modules/sockets_mgm/doc/contributors.xml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,14 @@
2626
<entry align="center">2207</entry>
2727
<entry align="center">572</entry>
2828
</row>
29+
<row>
30+
<entry>2. </entry>
31+
<entry>Bogdan-Andrei Iancu (<ulink url="https://github.com/bogdan-iancu">@bogdan-iancu</ulink>)</entry>
32+
<entry align="center">3</entry>
33+
<entry align="center">1</entry>
34+
<entry align="center">1</entry>
35+
<entry align="center">1</entry>
36+
</row>
2937
</tbody>
3038
</tgroup>
3139
</table>
@@ -56,6 +64,11 @@
5664
<tbody>
5765
<row>
5866
<entry>1. </entry>
67+
<entry>Bogdan-Andrei Iancu (<ulink url="https://github.com/bogdan-iancu">@bogdan-iancu</ulink>)</entry>
68+
<entry align="center">Jun 2025 - Jun 2025</entry>
69+
</row>
70+
<row>
71+
<entry>2. </entry>
5972
<entry>Razvan Crainea (<ulink url="https://github.com/razvancrainea">@razvancrainea</ulink>)</entry>
6073
<entry align="center">Mar 2025 - May 2025</entry>
6174
</row>
@@ -73,7 +86,7 @@
7386
<title>Documentation</title>
7487
<section id="documentation_contributors" xreflabel="documentation_contributors">
7588
<title>Contributors</title>
76-
<para><emphasis role='bold'>Last edited by:</emphasis> Razvan Crainea (<ulink url="https://github.com/razvancrainea">@razvancrainea</ulink>).</para>
89+
<para><emphasis role='bold'>Last edited by:</emphasis> Bogdan-Andrei Iancu (<ulink url="https://github.com/bogdan-iancu">@bogdan-iancu</ulink>), Razvan Crainea (<ulink url="https://github.com/razvancrainea">@razvancrainea</ulink>).</para>
7790
</section>
7891

7992
</chapter>

0 commit comments

Comments
 (0)