@@ -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
6466Chapter 1. Admin Guide
6567
@@ -139,6 +141,17 @@ modparam("domain", "domain_col", "domain_name")
139141 Example 1.5. Setting attrs_col parameter
140142modparam("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+
1421551.4. Exported Functions
143156
1441571.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...
156169if (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...
182195if (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...
214227if (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
3503634.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
0 commit comments