From 48e0a4cdeb0ba1411e6abafc9234e06ab175c460 Mon Sep 17 00:00:00 2001 From: OpenSIPS Date: Sun, 3 Mar 2024 00:48:40 +0200 Subject: [PATCH] Rebuild documentation --- modules/aaa_diameter/README | 198 +++++++++++++++++---- modules/aaa_diameter/doc/contributors.xml | 18 +- modules/cachedb_local/README | 39 ++-- modules/cachedb_local/doc/contributors.xml | 36 ++-- modules/db_postgres/README | 43 +++-- modules/db_postgres/doc/contributors.xml | 30 ++-- modules/dbops/README | 51 +----- modules/dbops/doc/contributors.xml | 131 +------------- modules/dispatcher/README | 10 +- modules/dispatcher/doc/contributors.xml | 22 +-- modules/drouting/README | 61 +++---- modules/drouting/doc/contributors.xml | 38 ++-- modules/osp/README | 16 +- modules/osp/doc/contributors.xml | 10 +- modules/perl/README | 24 +-- modules/perl/doc/contributors.xml | 28 +-- modules/proto_hep/README | 6 +- modules/proto_hep/doc/contributors.xml | 16 +- modules/sql_cacher/README | 34 ++-- modules/sql_cacher/doc/contributors.xml | 56 +++--- 20 files changed, 422 insertions(+), 445 deletions(-) diff --git a/modules/aaa_diameter/README b/modules/aaa_diameter/README index 8726de2fc9d..614cca7f8ea 100644 --- a/modules/aaa_diameter/README +++ b/modules/aaa_diameter/README @@ -6,29 +6,37 @@ AAA_DIAMETER MODULE 1. Admin Guide 1.1. Overview - 1.2. Dependencies + 1.2. Diameter Client + 1.3. Diameter Server + 1.4. Dependencies - 1.2.1. OpenSIPS Modules - 1.2.2. External Libraries or Applications + 1.4.1. OpenSIPS Modules + 1.4.2. External Libraries or Applications - 1.3. Exported Parameters + 1.5. Exported Parameters - 1.3.1. fd_log_level (integer) - 1.3.2. realm (string) - 1.3.3. peer_identity (string) - 1.3.4. aaa_url (string) - 1.3.5. answer_timeout (integer) + 1.5.1. fd_log_level (integer) + 1.5.2. realm (string) + 1.5.3. peer_identity (string) + 1.5.4. aaa_url (string) + 1.5.5. answer_timeout (integer) - 1.4. Exported Functions + 1.6. Exported Functions - 1.4.1. dm_send_request(app_id, cmd_code, avps_json, + 1.6.1. dm_send_request(app_id, cmd_code, avps_json, [rpl_avps_pv]) - 1.5. Exported Asyncronous Functions + 1.6.2. dm_send_answer(avps_json, [is_error]) - 1.5.1. dm_send_request(app_id, cmd_code, avps_json, + 1.7. Exported Asyncronous Functions + + 1.7.1. dm_send_request(app_id, cmd_code, avps_json, [rpl_avps_pv]) + 1.8. Exported Events + + 1.8.1. E_DM_REQUEST + 2. Contributors 2.1. By Commit Statistics @@ -55,27 +63,63 @@ AAA_DIAMETER MODULE 1.6. Setting the answer_timeout parameter 1.7. dictionary.opensips extended syntax 1.8. dm_send_request usage - 1.9. dm_send_request asynchronous usage + 1.9. dm_send_answer() usage + 1.10. dm_send_request asynchronous usage Chapter 1. Admin Guide 1.1. Overview - This module provides a Diameter implementation for the core AAA - API interface. + This module provides an RFC 6733 Diameter peer implementation, + being able to act as either Diameter client or server, or both. Any module that wishes to use it has to do the following: * include aaa.h * make a bind call with a proper Diameter-specific URL, e.g. "diameter:freeDiameter-client.conf" -1.2. Dependencies +1.2. Diameter Client + + The module implements the core AAA OpenSIPS interface, thus + offering an alternative client implementation to the aaa_radius + module which can be useful, for example, when performing + billing and accounting for the live SIP calls. + + In addition to the RADIUS client's auth and accounting + features, the Diameter client includes support for sending + arbitrary Diameter requests, further opening up the scope of + applications which can be achieved through OpenSIPS scripting. + Such Diameter requests can be sent using the dm_send_request() + function. + +1.3. Diameter Server + + Starting with OpenSIPS 3.5, the Diameter module includes + server-side support as well. + + First, the event_route module must be loaded in order to be + able to process E_DM_REQUEST events in the OpenSIPS + configuration file. These events will contain all necessary + information on the incoming Diameter request. + + Finally, once the request information is processed and the + answer AVPs are prepared, script writers should use the + dm_send_answer() function in order to reply with a Diameter + answer message. + + Recommendation: When possible, always load the dict_sip.fdx + freeDiameter extension module inside your freeDiameter.conf + configuration file, as it contains hundreds of well-known AVP + definitions which may be good to have when inter-operating with + other Diameter peer implementations. -1.2.1. OpenSIPS Modules +1.4. Dependencies + +1.4.1. OpenSIPS Modules None. -1.2.2. External Libraries or Applications +1.4.2. External Libraries or Applications All Diameter message building and parsing, as well as the peer state machine and Diameter-related network communication are @@ -87,9 +131,9 @@ Chapter 1. Admin Guide * libfdcore v1.2.1 or higher * libfdproto v1.2.1 or higher -1.3. Exported Parameters +1.5. Exported Parameters -1.3.1. fd_log_level (integer) +1.5.1. fd_log_level (integer) This parameter measures the quietness of the logging done by the freeDiameter library. Possible values: @@ -108,7 +152,7 @@ Chapter 1. Admin Guide modparam("aaa_diameter", "fd_log_level", 0) -1.3.2. realm (string) +1.5.2. realm (string) The unique realm to be used by all participating Diameter peers. @@ -120,7 +164,7 @@ modparam("aaa_diameter", "fd_log_level", 0) modparam("aaa_diameter", "realm", "opensips.org") -1.3.3. peer_identity (string) +1.5.3. peer_identity (string) The identity (realm subdomain) of the Diameter server peer, to which the OpenSIPS Diameter client peer will connect. @@ -132,7 +176,7 @@ modparam("aaa_diameter", "realm", "opensips.org") modparam("aaa_diameter", "peer_identity", "server") -1.3.4. aaa_url (string) +1.5.4. aaa_url (string) URL of the diameter client: the configuration file, with an optional extra-avps-file, where the Diameter client is @@ -152,19 +196,21 @@ modparam("aaa_diameter", "aaa_url", "diameter:freeDiameter-client.conf;e xtra-avps-file:dictionary.opensips") -1.3.5. answer_timeout (integer) +1.5.5. answer_timeout (integer) Time, in milliseconds, after which a dm_send_request() function call with no received reply will time out and return a -2 code. + Default value is 2000 ms. + Example 1.6. Setting the answer_timeout parameter modparam("aaa_diameter", "answer_timeout", 5000) -1.4. Exported Functions +1.6. Exported Functions -1.4.1. dm_send_request(app_id, cmd_code, avps_json, [rpl_avps_pv]) +1.6.1. dm_send_request(app_id, cmd_code, avps_json, [rpl_avps_pv]) Perform a blocking Diameter request over to the interconnected peer and return the Result-Code AVP value from the reply. @@ -178,7 +224,7 @@ modparam("aaa_diameter", "answer_timeout", 5000) dictionary.opensips Diameter configuration file beforehand. body of the HTTP response. * avps_json (string) - A JSON Array containing the AVPs to - include in the message payload. + include in the message. * rpl_avps_pv (var, optional) - output variable which will hold all AVP names from the Diameter Answer along with their values, packed as a JSON Array string. The "json" @@ -286,16 +332,68 @@ xlog("rc: $var(rc), AVPs: $var(rpl_avps)\n"); $json(avps) := $var(rpl_avps); -1.5. Exported Asyncronous Functions +1.6.2. dm_send_answer(avps_json, [is_error]) + + Send back a Diameter answer message to the interconnected peer + in a non-blocking fashion, in response to its request. -1.5.1. dm_send_request(app_id, cmd_code, avps_json, [rpl_avps_pv]) + The following fields will be automatically copied over from the + Diameter request when building the answer message: + * Application ID + * Command Code + * Session-Id AVP, if any + * Transaction-Id AVP, if any (only applies when Session-Id is + not present) + + Parameters + * avps_json (string) - A JSON Array containing the AVPs to + include in the answer message (example below). + * is_error (boolean, default: false) - Set to true in order + to set the 'E' (error) bit in the answer message. + + Return Codes + * 1 - Success + * -1 - Internal Error + + This function can only be used from an EVENT_ROUTE. + + Example 1.9. dm_send_answer() usage + +event_route [E_DM_REQUEST] { + xlog("Req: $param(sess_id) / $param(app_id) / $param(cmd_code)\n"); + xlog("AVPs: $param(avps_json)\n"); + + $json(avps) := $param(avps_json); + + /* ... process the data (AVPs) ... */ + + /* ... and reply back with more AVPs! */ + $var(ans_avps) = "[ + { \"Vendor-Specific-Application-Id\": [{ + \"Vendor-Id\": 0 + }] }, + + { \"Result-Code\": 2001 }, + { \"Auth-Session-State\": 0 }, + { \"Origin-Host\": \"opensips.diameter.test\" }, + { \"Origin-Realm\": \"diameter.test\" } + ]"; + + if (!dm_send_answer($var(ans_avps))) + xlog("ERROR - failed to send Diameter answer\n"); +} + + +1.7. Exported Asyncronous Functions + +1.7.1. dm_send_request(app_id, cmd_code, avps_json, [rpl_avps_pv]) Similar to dm_send_request() but performs an asynchronous Diameter request. Uses the same parameters and return codes as dm_send_request(). - Example 1.9. dm_send_request asynchronous usage + Example 1.10. dm_send_request asynchronous usage # Building an sending an My-Custom-Request (92001) for the # My Diameter Application (42) @@ -327,6 +425,34 @@ route[dm_reply] { } +1.8. Exported Events + +1.8.1. E_DM_REQUEST + + This event is raised whenever the aaa_diameter module is loaded + and OpenSIPS receives a Diameter request on the configured + Diameter listening interface. + + Parameters: + * app_id (integer) - the Diameter Application Identifier + * cmd_code (integer) - the Diameter Command Code + * sess_id (string) - the value of either the Session-Id AVP, + Transaction-Id AVP or a NULL value if neither of these + transaction-identifying AVPs is present in the Diameter + request. + * avps_json (string) - a JSON Array containing the AVPs of + the request. Use the json module's $json variable to easily + parse and work with it. + + Note that this event is currently designed to be mainly + consumed by an event_route, since that is the only way to gain + access to the dm_send_answer() function in order to build + custom answer messages. On the other hand, if the application + does not mind the answer being always a 3001 + (DIAMETER_COMMAND_UNSUPPORTED) error, this event can be + successfully consumed through any other EVI-compatible delivery + channel ☺️ + Chapter 2. Contributors 2.1. By Commit Statistics @@ -334,7 +460,7 @@ Chapter 2. Contributors Table 2.1. Top contributors by DevScore^(1), authored commits^(2) and lines added/removed^(3) Name DevScore Commits Lines ++ Lines -- - 1. Liviu Chircu (@liviuchircu) 90 25 5921 958 + 1. Liviu Chircu (@liviuchircu) 109 35 6827 1089 2. Razvan Crainea (@razvancrainea) 21 11 910 109 3. Maksym Sobolyev (@sobomax) 3 1 5 5 @@ -358,8 +484,8 @@ Chapter 2. Contributors Table 2.2. Most recently active contributors^(1) to this module Name Commit Activity - 1. Razvan Crainea (@razvancrainea) May 2023 - Dec 2023 - 2. Liviu Chircu (@liviuchircu) May 2021 - Dec 2023 + 1. Liviu Chircu (@liviuchircu) May 2021 - Feb 2024 + 2. Razvan Crainea (@razvancrainea) May 2023 - Dec 2023 3. Maksym Sobolyev (@sobomax) Feb 2023 - Feb 2023 (1) including any documentation-related commits, excluding @@ -369,8 +495,8 @@ Chapter 3. Documentation 3.1. Contributors - Last edited by: Razvan Crainea (@razvancrainea), Liviu Chircu - (@liviuchircu). + Last edited by: Liviu Chircu (@liviuchircu), Razvan Crainea + (@razvancrainea). Documentation Copyrights: diff --git a/modules/aaa_diameter/doc/contributors.xml b/modules/aaa_diameter/doc/contributors.xml index 14b99e40ea3..faf00bf536c 100644 --- a/modules/aaa_diameter/doc/contributors.xml +++ b/modules/aaa_diameter/doc/contributors.xml @@ -21,10 +21,10 @@ 1. Liviu Chircu (@liviuchircu) - 90 - 25 - 5921 - 958 + 109 + 35 + 6827 + 1089 2. @@ -72,13 +72,13 @@ 1. - Razvan Crainea (@razvancrainea) - May 2023 - Dec 2023 + Liviu Chircu (@liviuchircu) + May 2021 - Feb 2024 2. - Liviu Chircu (@liviuchircu) - May 2021 - Dec 2023 + Razvan Crainea (@razvancrainea) + May 2023 - Dec 2023 3. @@ -99,7 +99,7 @@ Documentation
Contributors - Last edited by: Razvan Crainea (@razvancrainea), Liviu Chircu (@liviuchircu). + Last edited by: Liviu Chircu (@liviuchircu), Razvan Crainea (@razvancrainea).
diff --git a/modules/cachedb_local/README b/modules/cachedb_local/README index be3bc4390a3..08887a627d2 100644 --- a/modules/cachedb_local/README +++ b/modules/cachedb_local/README @@ -335,7 +335,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 Paiu (@vladpaiu) 32 10 1155 693 + 1. Vlad Paiu (@vladpaiu) 34 11 1335 693 2. Vlad Patrascu (@rvlad-patrascu) 25 16 509 226 3. Liviu Chircu (@liviuchircu) 22 16 127 191 4. Bogdan-Andrei Iancu (@bogdan-iancu) 16 14 46 50 @@ -370,20 +370,19 @@ Chapter 3. Contributors Table 3.2. Most recently active contributors^(1) to this module Name Commit Activity - 1. Maksym Sobolyev (@sobomax) Jan 2021 - Feb 2023 - 2. Vlad Patrascu (@rvlad-patrascu) Jan 2017 - Oct 2022 - 3. Liviu Chircu (@liviuchircu) Mar 2014 - Aug 2022 - 4. Zero King (@l2dy) Mar 2020 - Mar 2020 - 5. Peter Lemenkov (@lemenkov) Jun 2018 - Feb 2020 - 6. Razvan Crainea (@razvancrainea) Aug 2015 - Sep 2019 - 7. Bogdan-Andrei Iancu (@bogdan-iancu) Jan 2009 - Apr 2019 - 8. Fabian Gast (@fgast) Dec 2018 - Dec 2018 - 9. Ionut Ionita (@ionutrazvanionita) Jan 2017 - Jan 2017 - 10. Julián Moreno Patiño Feb 2016 - Feb 2016 - - All remaining contributors: Dusan Klinec (@ph4r05), Ryan - Bullock (@rrb3942), Vlad Paiu (@vladpaiu), Andrei Dragus, Anca - Vamanu. + 1. Vlad Paiu (@vladpaiu) Oct 2011 - Feb 2024 + 2. Maksym Sobolyev (@sobomax) Jan 2021 - Feb 2023 + 3. Vlad Patrascu (@rvlad-patrascu) Jan 2017 - Oct 2022 + 4. Liviu Chircu (@liviuchircu) Mar 2014 - Aug 2022 + 5. Zero King (@l2dy) Mar 2020 - Mar 2020 + 6. Peter Lemenkov (@lemenkov) Jun 2018 - Feb 2020 + 7. Razvan Crainea (@razvancrainea) Aug 2015 - Sep 2019 + 8. Bogdan-Andrei Iancu (@bogdan-iancu) Jan 2009 - Apr 2019 + 9. Fabian Gast (@fgast) Dec 2018 - Dec 2018 + 10. Ionut Ionita (@ionutrazvanionita) Jan 2017 - Jan 2017 + + All remaining contributors: Julián Moreno Patiño, Dusan Klinec + (@ph4r05), Ryan Bullock (@rrb3942), Andrei Dragus, Anca Vamanu. (1) including any documentation-related commits, excluding merge commits @@ -392,11 +391,11 @@ Chapter 4. Documentation 4.1. Contributors - Last edited by: Liviu Chircu (@liviuchircu), Vlad Patrascu - (@rvlad-patrascu), Zero King (@l2dy), Bogdan-Andrei Iancu - (@bogdan-iancu), Fabian Gast (@fgast), Peter Lemenkov - (@lemenkov), Ionut Ionita (@ionutrazvanionita), Vlad Paiu - (@vladpaiu), Andrei Dragus, Anca Vamanu. + Last edited by: Vlad Paiu (@vladpaiu), Liviu Chircu + (@liviuchircu), Vlad Patrascu (@rvlad-patrascu), Zero King + (@l2dy), Bogdan-Andrei Iancu (@bogdan-iancu), Fabian Gast + (@fgast), Peter Lemenkov (@lemenkov), Ionut Ionita + (@ionutrazvanionita), Andrei Dragus, Anca Vamanu. Documentation Copyrights: diff --git a/modules/cachedb_local/doc/contributors.xml b/modules/cachedb_local/doc/contributors.xml index 2d1785eb624..b46e5499e68 100644 --- a/modules/cachedb_local/doc/contributors.xml +++ b/modules/cachedb_local/doc/contributors.xml @@ -21,9 +21,9 @@ 1. Vlad Paiu (@vladpaiu) - 32 - 10 - 1155 + 34 + 11 + 1335 693 @@ -128,58 +128,58 @@ 1. + Vlad Paiu (@vladpaiu) + Oct 2011 - Feb 2024 + + + 2. Maksym Sobolyev (@sobomax) Jan 2021 - Feb 2023 - 2. + 3. Vlad Patrascu (@rvlad-patrascu) Jan 2017 - Oct 2022 - 3. + 4. Liviu Chircu (@liviuchircu) Mar 2014 - Aug 2022 - 4. + 5. Zero King (@l2dy) Mar 2020 - Mar 2020 - 5. + 6. Peter Lemenkov (@lemenkov) Jun 2018 - Feb 2020 - 6. + 7. Razvan Crainea (@razvancrainea) Aug 2015 - Sep 2019 - 7. + 8. Bogdan-Andrei Iancu (@bogdan-iancu) Jan 2009 - Apr 2019 - 8. + 9. Fabian Gast (@fgast) Dec 2018 - Dec 2018 - 9. + 10. Ionut Ionita (@ionutrazvanionita) Jan 2017 - Jan 2017 - - 10. - Julián Moreno Patiño - Feb 2016 - Feb 2016 - -All remaining contributors: Dusan Klinec (@ph4r05), Ryan Bullock (@rrb3942), Vlad Paiu (@vladpaiu), Andrei Dragus, Anca Vamanu. +All remaining contributors: Julián Moreno Patiño, Dusan Klinec (@ph4r05), Ryan Bullock (@rrb3942), Andrei Dragus, Anca Vamanu. (1) including any documentation-related commits, excluding merge commits @@ -190,7 +190,7 @@ Documentation
Contributors - Last edited by: Liviu Chircu (@liviuchircu), Vlad Patrascu (@rvlad-patrascu), Zero King (@l2dy), Bogdan-Andrei Iancu (@bogdan-iancu), Fabian Gast (@fgast), Peter Lemenkov (@lemenkov), Ionut Ionita (@ionutrazvanionita), Vlad Paiu (@vladpaiu), Andrei Dragus, Anca Vamanu. + Last edited by: Vlad Paiu (@vladpaiu), Liviu Chircu (@liviuchircu), Vlad Patrascu (@rvlad-patrascu), Zero King (@l2dy), Bogdan-Andrei Iancu (@bogdan-iancu), Fabian Gast (@fgast), Peter Lemenkov (@lemenkov), Ionut Ionita (@ionutrazvanionita), Andrei Dragus, Anca Vamanu.
diff --git a/modules/db_postgres/README b/modules/db_postgres/README index 3aaf1cb2753..11c31536826 100644 --- a/modules/db_postgres/README +++ b/modules/db_postgres/README @@ -113,6 +113,18 @@ modparam("db_postgres", "timeout", 2) 1.3.4. use_tls (integer) + Parameter to control the way the SSL support is used when + connecting to the Postgres server, as follows: + * use_tls=0 (default) - the SSL support is disabled and there + is no attempt to use it; + * use_tls=1 with "tls_domain" present in the DB URL - the SSL + support is enabled, either "require", either "verify-ca", + depending on the certificate settings; + * use_tls=1 with no "tls_domain" present in the DB URL - the + SSL support is enabled in best effort mode (or "prefer"); + if supported by the server, it will be used, otherwise it + will fall back to non-SSL. + Warning: the tls_openssl module cannot be used when setting this parameter. Use the tls_wolfssl module instead if a TLS/SSL Library is required. @@ -169,7 +181,7 @@ Chapter 2. Contributors commits^(2) and lines added/removed^(3) Name DevScore Commits Lines ++ Lines -- 1. Henning Westerholt (@henningw) 67 29 554 1963 - 2. Bogdan-Andrei Iancu (@bogdan-iancu) 59 44 1048 347 + 2. Bogdan-Andrei Iancu (@bogdan-iancu) 60 45 1088 349 3. Norman Brandinger (@NormB) 53 4 1449 2247 4. Greg Fausak 41 3 4472 2 5. Daniel-Constantin Mierla (@miconda) 27 20 350 203 @@ -207,13 +219,13 @@ Chapter 2. Contributors Table 2.2. Most recently active contributors^(1) to this module Name Commit Activity - 1. Maksym Sobolyev (@sobomax) Apr 2004 - Feb 2023 - 2. Vlad Patrascu (@rvlad-patrascu) May 2017 - Oct 2021 - 3. Norman Brandinger (@NormB) Aug 2006 - Oct 2021 - 4. Razvan Crainea (@razvancrainea) Oct 2011 - Sep 2019 - 5. Dan Pascu (@danpascu) May 2019 - May 2019 - 6. Liviu Chircu (@liviuchircu) Sep 2012 - May 2019 - 7. Bogdan-Andrei Iancu (@bogdan-iancu) Jul 2005 - Apr 2019 + 1. Bogdan-Andrei Iancu (@bogdan-iancu) Jul 2005 - Feb 2024 + 2. Maksym Sobolyev (@sobomax) Apr 2004 - Feb 2023 + 3. Vlad Patrascu (@rvlad-patrascu) May 2017 - Oct 2021 + 4. Norman Brandinger (@NormB) Aug 2006 - Oct 2021 + 5. Razvan Crainea (@razvancrainea) Oct 2011 - Sep 2019 + 6. Dan Pascu (@danpascu) May 2019 - May 2019 + 7. Liviu Chircu (@liviuchircu) Sep 2012 - May 2019 8. Ryan Bullock (@rrb3942) Mar 2019 - Mar 2019 9. Vlad Paiu (@vladpaiu) Jan 2011 - Feb 2019 10. Peter Lemenkov (@lemenkov) Jun 2018 - Jun 2018 @@ -233,14 +245,13 @@ Chapter 3. Documentation 3.1. Contributors - Last edited by: Vlad Patrascu (@rvlad-patrascu), Norman - Brandinger (@NormB), Liviu Chircu (@liviuchircu), Razvan - Crainea (@razvancrainea), Peter Lemenkov (@lemenkov), Aron - Podrigal, Eseanu Marius Cristian (@eseanucristian), - Bogdan-Andrei Iancu (@bogdan-iancu), Vlad Paiu (@vladpaiu), - Daniel-Constantin Mierla (@miconda), Konstantin Bokarius, Edson - Gellert Schubert, Henning Westerholt (@henningw), Jan Janak - (@janakj). + Last edited by: Bogdan-Andrei Iancu (@bogdan-iancu), Vlad + Patrascu (@rvlad-patrascu), Norman Brandinger (@NormB), Liviu + Chircu (@liviuchircu), Razvan Crainea (@razvancrainea), Peter + Lemenkov (@lemenkov), Aron Podrigal, Eseanu Marius Cristian + (@eseanucristian), Vlad Paiu (@vladpaiu), Daniel-Constantin + Mierla (@miconda), Konstantin Bokarius, Edson Gellert Schubert, + Henning Westerholt (@henningw), Jan Janak (@janakj). Documentation Copyrights: diff --git a/modules/db_postgres/doc/contributors.xml b/modules/db_postgres/doc/contributors.xml index c7f6088f25b..702295bef75 100644 --- a/modules/db_postgres/doc/contributors.xml +++ b/modules/db_postgres/doc/contributors.xml @@ -29,10 +29,10 @@ 2. Bogdan-Andrei Iancu (@bogdan-iancu) - 59 - 44 - 1048 - 347 + 60 + 45 + 1088 + 349 3. @@ -128,39 +128,39 @@ 1. + Bogdan-Andrei Iancu (@bogdan-iancu) + Jul 2005 - Feb 2024 + + + 2. Maksym Sobolyev (@sobomax) Apr 2004 - Feb 2023 - 2. + 3. Vlad Patrascu (@rvlad-patrascu) May 2017 - Oct 2021 - 3. + 4. Norman Brandinger (@NormB) Aug 2006 - Oct 2021 - 4. + 5. Razvan Crainea (@razvancrainea) Oct 2011 - Sep 2019 - 5. + 6. Dan Pascu (@danpascu) May 2019 - May 2019 - 6. + 7. Liviu Chircu (@liviuchircu) Sep 2012 - May 2019 - - 7. - Bogdan-Andrei Iancu (@bogdan-iancu) - Jul 2005 - Apr 2019 - 8. Ryan Bullock (@rrb3942) @@ -190,7 +190,7 @@ Documentation
Contributors - Last edited by: Vlad Patrascu (@rvlad-patrascu), Norman Brandinger (@NormB), Liviu Chircu (@liviuchircu), Razvan Crainea (@razvancrainea), Peter Lemenkov (@lemenkov), Aron Podrigal, Eseanu Marius Cristian (@eseanucristian), Bogdan-Andrei Iancu (@bogdan-iancu), Vlad Paiu (@vladpaiu), Daniel-Constantin Mierla (@miconda), Konstantin Bokarius, Edson Gellert Schubert, Henning Westerholt (@henningw), Jan Janak (@janakj). + Last edited by: Bogdan-Andrei Iancu (@bogdan-iancu), Vlad Patrascu (@rvlad-patrascu), Norman Brandinger (@NormB), Liviu Chircu (@liviuchircu), Razvan Crainea (@razvancrainea), Peter Lemenkov (@lemenkov), Aron Podrigal, Eseanu Marius Cristian (@eseanucristian), Vlad Paiu (@vladpaiu), Daniel-Constantin Mierla (@miconda), Konstantin Bokarius, Edson Gellert Schubert, Henning Westerholt (@henningw), Jan Janak (@janakj).
diff --git a/modules/dbops/README b/modules/dbops/README index 7b04572850f..45737a6cacc 100644 --- a/modules/dbops/README +++ b/modules/dbops/README @@ -477,24 +477,7 @@ Chapter 2. Contributors Table 2.1. Top contributors by DevScore^(1), authored commits^(2) and lines added/removed^(3) Name DevScore Commits Lines ++ Lines -- - 1. Bogdan-Andrei Iancu (@bogdan-iancu) 115 57 690 3160 - 2. Daniel-Constantin Mierla (@miconda) 104 44 2927 2158 - 3. Liviu Chircu (@liviuchircu) 53 27 1112 944 - 4. Elena-Ramona Modroiu 51 11 4040 390 - 5. Razvan Crainea (@razvancrainea) 21 14 149 246 - 6. Elena-Ramona Modroiu 18 5 1051 192 - 7. Henning Westerholt (@henningw) 12 8 112 133 - 8. Vlad Paiu (@vladpaiu) 9 7 39 2 - 9. Ionut Ionita (@ionutrazvanionita) 8 5 180 12 - 10. Kobi Eshun (@ekobi) 7 1 300 146 - - All remaining contributors: Andrei Pelinescu-Onciul, Anca - Vamanu, Maksym Sobolyev (@sobomax), Norman Brandinger (@NormB), - Vlad Patrascu (@rvlad-patrascu), Klaus Darilion, John Burke - (@john08burke), Andrey Vorobiev, Olle E. Johansson, Kennard - White, Julián Moreno Patiño, Konstantin Bokarius, Walter Doekes - (@wdoekes), Andreas Granig, Peter Lemenkov (@lemenkov), Sergio - Gutierrez, Edson Gellert Schubert, Ovidiu Sas (@ovidiusas). + 1. Bogdan-Andrei Iancu (@bogdan-iancu) 33 3 3495 18 (1) DevScore = author_commits + author_lines_added / (project_lines_added / project_commits) + author_lines_deleted @@ -515,26 +498,8 @@ Chapter 2. Contributors 2.2. By Commit Activity Table 2.2. Most recently active contributors^(1) to this module - Name Commit Activity - 1. Bogdan-Andrei Iancu (@bogdan-iancu) Jun 2005 - Feb 2024 - 2. Vlad Paiu (@vladpaiu) Jun 2011 - Jul 2023 - 3. Razvan Crainea (@razvancrainea) Jun 2011 - Mar 2023 - 4. Maksym Sobolyev (@sobomax) Oct 2022 - Feb 2023 - 5. John Burke (@john08burke) Jun 2022 - Jun 2022 - 6. Liviu Chircu (@liviuchircu) Mar 2013 - Mar 2020 - 7. Vlad Patrascu (@rvlad-patrascu) May 2017 - Jul 2019 - 8. Peter Lemenkov (@lemenkov) Jun 2018 - Jun 2018 - 9. Andrey Vorobiev Apr 2016 - Apr 2016 - 10. Julián Moreno Patiño Feb 2016 - Feb 2016 - - All remaining contributors: Ionut Ionita (@ionutrazvanionita), - Ovidiu Sas (@ovidiusas), Walter Doekes (@wdoekes), Anca Vamanu, - Kennard White, Norman Brandinger (@NormB), Sergio Gutierrez, - Kobi Eshun (@ekobi), Henning Westerholt (@henningw), Olle E. - Johansson, Daniel-Constantin Mierla (@miconda), Konstantin - Bokarius, Edson Gellert Schubert, Elena-Ramona Modroiu, Klaus - Darilion, Andreas Granig, Andrei Pelinescu-Onciul, Elena-Ramona - Modroiu. + Name Commit Activity + 1. Bogdan-Andrei Iancu (@bogdan-iancu) Feb 2024 - Mar 2024 (1) including any documentation-related commits, excluding merge commits @@ -543,15 +508,7 @@ Chapter 3. Documentation 3.1. Contributors - Last edited by: Bogdan-Andrei Iancu (@bogdan-iancu), Razvan - Crainea (@razvancrainea), John Burke (@john08burke), Liviu - Chircu (@liviuchircu), Peter Lemenkov (@lemenkov), Ionut Ionita - (@ionutrazvanionita), Vlad Paiu (@vladpaiu), Anca Vamanu, - Norman Brandinger (@NormB), Kobi Eshun (@ekobi), Henning - Westerholt (@henningw), Daniel-Constantin Mierla (@miconda), - Konstantin Bokarius, Edson Gellert Schubert, Elena-Ramona - Modroiu, Klaus Darilion, Andrei Pelinescu-Onciul, Elena-Ramona - Modroiu. + Last edited by: Bogdan-Andrei Iancu (@bogdan-iancu). Documentation Copyrights: diff --git a/modules/dbops/doc/contributors.xml b/modules/dbops/doc/contributors.xml index 6b0376dcf41..d9ed441cdbf 100644 --- a/modules/dbops/doc/contributors.xml +++ b/modules/dbops/doc/contributors.xml @@ -21,87 +21,15 @@ 1. Bogdan-Andrei Iancu (@bogdan-iancu) - 115 - 57 - 690 - 3160 - - - 2. - Daniel-Constantin Mierla (@miconda) - 104 - 44 - 2927 - 2158 - - - 3. - Liviu Chircu (@liviuchircu) - 53 - 27 - 1112 - 944 - - - 4. - Elena-Ramona Modroiu - 51 - 11 - 4040 - 390 - - - 5. - Razvan Crainea (@razvancrainea) - 21 - 14 - 149 - 246 - - - 6. - Elena-Ramona Modroiu + 33 + 3 + 3495 18 - 5 - 1051 - 192 - - - 7. - Henning Westerholt (@henningw) - 12 - 8 - 112 - 133 - - - 8. - Vlad Paiu (@vladpaiu) - 9 - 7 - 39 - 2 - - - 9. - Ionut Ionita (@ionutrazvanionita) - 8 - 5 - 180 - 12 - - - 10. - Kobi Eshun (@ekobi) - 7 - 1 - 300 - 146 -All remaining contributors: Andrei Pelinescu-Onciul, Anca Vamanu, Maksym Sobolyev (@sobomax), Norman Brandinger (@NormB), Vlad Patrascu (@rvlad-patrascu), Klaus Darilion, John Burke (@john08burke), Andrey Vorobiev, Olle E. Johansson, Kennard White, Julián Moreno Patiño, Konstantin Bokarius, Walter Doekes (@wdoekes), Andreas Granig, Peter Lemenkov (@lemenkov), Sergio Gutierrez, Edson Gellert Schubert, Ovidiu Sas (@ovidiusas). + (1) DevScore = author_commits + author_lines_added / (project_lines_added / project_commits) + author_lines_deleted / (project_lines_deleted / project_commits) @@ -129,57 +57,12 @@ 1. Bogdan-Andrei Iancu (@bogdan-iancu) - Jun 2005 - Feb 2024 - - - 2. - Vlad Paiu (@vladpaiu) - Jun 2011 - Jul 2023 - - - 3. - Razvan Crainea (@razvancrainea) - Jun 2011 - Mar 2023 - - - 4. - Maksym Sobolyev (@sobomax) - Oct 2022 - Feb 2023 - - - 5. - John Burke (@john08burke) - Jun 2022 - Jun 2022 - - - 6. - Liviu Chircu (@liviuchircu) - Mar 2013 - Mar 2020 - - - 7. - Vlad Patrascu (@rvlad-patrascu) - May 2017 - Jul 2019 - - - 8. - Peter Lemenkov (@lemenkov) - Jun 2018 - Jun 2018 - - - 9. - Andrey Vorobiev - Apr 2016 - Apr 2016 - - - 10. - Julián Moreno Patiño - Feb 2016 - Feb 2016 + Feb 2024 - Mar 2024 -All remaining contributors: Ionut Ionita (@ionutrazvanionita), Ovidiu Sas (@ovidiusas), Walter Doekes (@wdoekes), Anca Vamanu, Kennard White, Norman Brandinger (@NormB), Sergio Gutierrez, Kobi Eshun (@ekobi), Henning Westerholt (@henningw), Olle E. Johansson, Daniel-Constantin Mierla (@miconda), Konstantin Bokarius, Edson Gellert Schubert, Elena-Ramona Modroiu, Klaus Darilion, Andreas Granig, Andrei Pelinescu-Onciul, Elena-Ramona Modroiu. + (1) including any documentation-related commits, excluding merge commits @@ -190,7 +73,7 @@ Documentation
Contributors - Last edited by: Bogdan-Andrei Iancu (@bogdan-iancu), Razvan Crainea (@razvancrainea), John Burke (@john08burke), Liviu Chircu (@liviuchircu), Peter Lemenkov (@lemenkov), Ionut Ionita (@ionutrazvanionita), Vlad Paiu (@vladpaiu), Anca Vamanu, Norman Brandinger (@NormB), Kobi Eshun (@ekobi), Henning Westerholt (@henningw), Daniel-Constantin Mierla (@miconda), Konstantin Bokarius, Edson Gellert Schubert, Elena-Ramona Modroiu, Klaus Darilion, Andrei Pelinescu-Onciul, Elena-Ramona Modroiu. + Last edited by: Bogdan-Andrei Iancu (@bogdan-iancu).
diff --git a/modules/dispatcher/README b/modules/dispatcher/README index 4c1fda2884c..5a2ddd22adf 100644 --- a/modules/dispatcher/README +++ b/modules/dispatcher/README @@ -1507,7 +1507,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. Bogdan-Andrei Iancu (@bogdan-iancu) 169 107 3322 2023 + 1. Bogdan-Andrei Iancu (@bogdan-iancu) 170 108 3331 2025 2. Liviu Chircu (@liviuchircu) 106 68 1664 1429 3. Daniel-Constantin Mierla (@miconda) 81 39 3372 844 4. Andrei Datcu (@andrei-datcu) 47 15 2153 846 @@ -1549,10 +1549,10 @@ Chapter 3. Contributors Table 3.2. Most recently active contributors^(1) to this module Name Commit Activity - 1. Vlad Paiu (@vladpaiu) Mar 2012 - Dec 2023 - 2. Maksym Sobolyev (@sobomax) Feb 2023 - Nov 2023 - 3. Razvan Crainea (@razvancrainea) May 2011 - Nov 2023 - 4. Bogdan-Andrei Iancu (@bogdan-iancu) Oct 2005 - Oct 2023 + 1. Bogdan-Andrei Iancu (@bogdan-iancu) Oct 2005 - Feb 2024 + 2. Vlad Paiu (@vladpaiu) Mar 2012 - Dec 2023 + 3. Maksym Sobolyev (@sobomax) Feb 2023 - Nov 2023 + 4. Razvan Crainea (@razvancrainea) May 2011 - Nov 2023 5. wangdd Apr 2023 - May 2023 6. Liviu Chircu (@liviuchircu) Aug 2012 - Aug 2022 7. Vlad Patrascu (@rvlad-patrascu) May 2017 - Jul 2022 diff --git a/modules/dispatcher/doc/contributors.xml b/modules/dispatcher/doc/contributors.xml index a3036adf0ed..de90c0318e6 100644 --- a/modules/dispatcher/doc/contributors.xml +++ b/modules/dispatcher/doc/contributors.xml @@ -21,10 +21,10 @@ 1. Bogdan-Andrei Iancu (@bogdan-iancu) - 169 - 107 - 3322 - 2023 + 170 + 108 + 3331 + 2025 2. @@ -128,24 +128,24 @@ 1. + Bogdan-Andrei Iancu (@bogdan-iancu) + Oct 2005 - Feb 2024 + + + 2. Vlad Paiu (@vladpaiu) Mar 2012 - Dec 2023 - 2. + 3. Maksym Sobolyev (@sobomax) Feb 2023 - Nov 2023 - 3. + 4. Razvan Crainea (@razvancrainea) May 2011 - Nov 2023 - - 4. - Bogdan-Andrei Iancu (@bogdan-iancu) - Oct 2005 - Oct 2023 - 5. wangdd diff --git a/modules/drouting/README b/modules/drouting/README index 871a4cea557..87b9a4b2087 100644 --- a/modules/drouting/README +++ b/modules/drouting/README @@ -59,7 +59,7 @@ Dynamic Routing Module 1.3.36. extra_prefix_chars (str) 1.3.37. extra_id_chars (str) 1.3.38. rule_tables_query (str) - 1.3.39. generate_data_md5 (int) + 1.3.39. generate_data_checksum (int) 1.4. Exported Functions @@ -169,7 +169,7 @@ Dynamic Routing Module 1.36. Set extra_prefix_chars parameter 1.37. Set extra_id_chars parameter 1.38. Set the rule_tables_query parameter - 1.39. Set the generate_data_md5 parameter + 1.39. Set the generate_data_checksum parameter 1.40. do_routing usage 1.41. route_to_carrier usage 1.42. route_to_gw usage @@ -1074,15 +1074,15 @@ modparam("drouting", "rule_tables_query", " SELECT 'dr_rules_a' UNION SELECT 'dr_rules_b'") ... -1.3.39. generate_data_md5 (int) +1.3.39. generate_data_checksum (int) - If enabled, it will generate MD5 hashes for drouting data, - attach that to the reload_status MI command output and to the - reload generated status reports + If enabled, it will generate a checksum ( MD5 ) for drouting + loaded data, attach that to the reload_status MI command output + and to the reload generated status reports - Example 1.39. Set the generate_data_md5 parameter + Example 1.39. Set the generate_data_checksum parameter ... -modparam("drouting", "generate_data_md5", 1) +modparam("drouting", "generate_data_checksum", 1) ... 1.4. Exported Functions @@ -1899,7 +1899,7 @@ Chapter 3. Contributors 3. Razvan Crainea (@razvancrainea) 100 53 1171 2226 4. Mihai Tiganus (@tallicamike) 71 20 4301 910 5. Vlad Patrascu (@rvlad-patrascu) 41 20 1100 735 - 6. Vlad Paiu (@vladpaiu) 23 20 244 47 + 6. Vlad Paiu (@vladpaiu) 28 22 421 65 7. Andrei Datcu (@andrei-datcu) 20 12 551 134 8. Ovidiu Sas (@ovidiusas) 15 11 132 70 9. Ionut Ionita (@ionutrazvanionita) 15 9 370 108 @@ -1933,20 +1933,20 @@ Chapter 3. Contributors Table 3.2. Most recently active contributors^(1) to this module Name Commit Activity - 1. Liviu Chircu (@liviuchircu) Nov 2012 - Dec 2023 - 2. Maksym Sobolyev (@sobomax) Oct 2020 - Nov 2023 - 3. Razvan Crainea (@razvancrainea) Sep 2010 - Oct 2023 - 4. Bogdan-Andrei Iancu (@bogdan-iancu) Oct 2008 - May 2023 - 5. wangdd May 2023 - May 2023 - 6. MayamaTakeshi Apr 2023 - Apr 2023 - 7. nexbridge Feb 2023 - Mar 2023 - 8. Vlad Patrascu (@rvlad-patrascu) Mar 2017 - Jul 2022 - 9. Nick Altmann (@nikbyte) Mar 2013 - May 2021 - 10. Walter Doekes (@wdoekes) May 2014 - Apr 2021 - - All remaining contributors: Aron Podrigal (@ar45), Vlad Paiu - (@vladpaiu), Alexey Vasilyev (@vasilevalex), Peter Lemenkov - (@lemenkov), Ovidiu Sas (@ovidiusas), Jeremy Martinez + 1. Vlad Paiu (@vladpaiu) Aug 2011 - Feb 2024 + 2. Liviu Chircu (@liviuchircu) Nov 2012 - Dec 2023 + 3. Maksym Sobolyev (@sobomax) Oct 2020 - Nov 2023 + 4. Razvan Crainea (@razvancrainea) Sep 2010 - Oct 2023 + 5. Bogdan-Andrei Iancu (@bogdan-iancu) Oct 2008 - May 2023 + 6. wangdd May 2023 - May 2023 + 7. MayamaTakeshi Apr 2023 - Apr 2023 + 8. nexbridge Feb 2023 - Mar 2023 + 9. Vlad Patrascu (@rvlad-patrascu) Mar 2017 - Jul 2022 + 10. Nick Altmann (@nikbyte) Mar 2013 - May 2021 + + All remaining contributors: Walter Doekes (@wdoekes), Aron + Podrigal (@ar45), Alexey Vasilyev (@vasilevalex), Peter + Lemenkov (@lemenkov), Ovidiu Sas (@ovidiusas), Jeremy Martinez (@JeremyMartinez51), Le Roy Christophe, Ionut Ionita (@ionutrazvanionita), Ozzyboshi, Julián Moreno Patiño, Dusan Klinec (@ph4r05), Mihai Tiganus (@tallicamike), Andrei Datcu @@ -1960,13 +1960,14 @@ Chapter 4. Documentation 4.1. Contributors - Last edited by: Razvan Crainea (@razvancrainea), wangdd, Liviu - Chircu (@liviuchircu), Vlad Patrascu (@rvlad-patrascu), - Bogdan-Andrei Iancu (@bogdan-iancu), Nick Altmann (@nikbyte), - Alexey Vasilyev (@vasilevalex), Peter Lemenkov (@lemenkov), - Ionut Ionita (@ionutrazvanionita), Vlad Paiu (@vladpaiu), Mihai - Tiganus (@tallicamike), Andrei Datcu (@andrei-datcu), Matt - Lehner, Anca Vamanu, Andrei Dragus, Sergio Gutierrez. + Last edited by: Vlad Paiu (@vladpaiu), Razvan Crainea + (@razvancrainea), wangdd, Liviu Chircu (@liviuchircu), Vlad + Patrascu (@rvlad-patrascu), Bogdan-Andrei Iancu + (@bogdan-iancu), Nick Altmann (@nikbyte), Alexey Vasilyev + (@vasilevalex), Peter Lemenkov (@lemenkov), Ionut Ionita + (@ionutrazvanionita), Mihai Tiganus (@tallicamike), Andrei + Datcu (@andrei-datcu), Matt Lehner, Anca Vamanu, Andrei Dragus, + Sergio Gutierrez. Documentation Copyrights: diff --git a/modules/drouting/doc/contributors.xml b/modules/drouting/doc/contributors.xml index 16b0fde4a54..ca101f2e34f 100644 --- a/modules/drouting/doc/contributors.xml +++ b/modules/drouting/doc/contributors.xml @@ -61,10 +61,10 @@ 6. Vlad Paiu (@vladpaiu) - 23 - 20 - 244 - 47 + 28 + 22 + 421 + 65 7. @@ -128,58 +128,58 @@ 1. + Vlad Paiu (@vladpaiu) + Aug 2011 - Feb 2024 + + + 2. Liviu Chircu (@liviuchircu) Nov 2012 - Dec 2023 - 2. + 3. Maksym Sobolyev (@sobomax) Oct 2020 - Nov 2023 - 3. + 4. Razvan Crainea (@razvancrainea) Sep 2010 - Oct 2023 - 4. + 5. Bogdan-Andrei Iancu (@bogdan-iancu) Oct 2008 - May 2023 - 5. + 6. wangdd May 2023 - May 2023 - 6. + 7. MayamaTakeshi Apr 2023 - Apr 2023 - 7. + 8. nexbridge Feb 2023 - Mar 2023 - 8. + 9. Vlad Patrascu (@rvlad-patrascu) Mar 2017 - Jul 2022 - 9. + 10. Nick Altmann (@nikbyte) Mar 2013 - May 2021 - - 10. - Walter Doekes (@wdoekes) - May 2014 - Apr 2021 - -All remaining contributors: Aron Podrigal (@ar45), Vlad Paiu (@vladpaiu), Alexey Vasilyev (@vasilevalex), Peter Lemenkov (@lemenkov), Ovidiu Sas (@ovidiusas), Jeremy Martinez (@JeremyMartinez51), Le Roy Christophe, Ionut Ionita (@ionutrazvanionita), Ozzyboshi, Julián Moreno Patiño, Dusan Klinec (@ph4r05), Mihai Tiganus (@tallicamike), Andrei Datcu (@andrei-datcu), Matt Lehner, Anca Vamanu, Andrei Dragus, Sergio Gutierrez. +All remaining contributors: Walter Doekes (@wdoekes), Aron Podrigal (@ar45), Alexey Vasilyev (@vasilevalex), Peter Lemenkov (@lemenkov), Ovidiu Sas (@ovidiusas), Jeremy Martinez (@JeremyMartinez51), Le Roy Christophe, Ionut Ionita (@ionutrazvanionita), Ozzyboshi, Julián Moreno Patiño, Dusan Klinec (@ph4r05), Mihai Tiganus (@tallicamike), Andrei Datcu (@andrei-datcu), Matt Lehner, Anca Vamanu, Andrei Dragus, Sergio Gutierrez. (1) including any documentation-related commits, excluding merge commits @@ -190,7 +190,7 @@ Documentation
Contributors - Last edited by: Razvan Crainea (@razvancrainea), wangdd, Liviu Chircu (@liviuchircu), Vlad Patrascu (@rvlad-patrascu), Bogdan-Andrei Iancu (@bogdan-iancu), Nick Altmann (@nikbyte), Alexey Vasilyev (@vasilevalex), Peter Lemenkov (@lemenkov), Ionut Ionita (@ionutrazvanionita), Vlad Paiu (@vladpaiu), Mihai Tiganus (@tallicamike), Andrei Datcu (@andrei-datcu), Matt Lehner, Anca Vamanu, Andrei Dragus, Sergio Gutierrez. + Last edited by: Vlad Paiu (@vladpaiu), Razvan Crainea (@razvancrainea), wangdd, Liviu Chircu (@liviuchircu), Vlad Patrascu (@rvlad-patrascu), Bogdan-Andrei Iancu (@bogdan-iancu), Nick Altmann (@nikbyte), Alexey Vasilyev (@vasilevalex), Peter Lemenkov (@lemenkov), Ionut Ionita (@ionutrazvanionita), Mihai Tiganus (@tallicamike), Andrei Datcu (@andrei-datcu), Matt Lehner, Anca Vamanu, Andrei Dragus, Sergio Gutierrez.
diff --git a/modules/osp/README b/modules/osp/README index dbebad95987..b374aff96a7 100644 --- a/modules/osp/README +++ b/modules/osp/README @@ -160,7 +160,7 @@ Chapter 1. Admin Guide The OSP module depends on the following modules which must be loaded before the OSP module. * auth -- Authentication Framework module - * avpops -- AVP operation module + * dbops -- DB operation module * maxfwd -- Max-Forward processor module * mi_fifo -- FIFO support for Management Interface * options -- OPTIONS server replier module @@ -972,7 +972,7 @@ Chapter 3. Contributors Name DevScore Commits Lines ++ Lines -- 1. Di-Shi Sun (@di-shi) 274 101 10368 5372 2. Dmitry Isakbayev 42 5 4120 159 - 3. Bogdan-Andrei Iancu (@bogdan-iancu) 34 28 221 213 + 3. Bogdan-Andrei Iancu (@bogdan-iancu) 35 29 222 214 4. Di-Shi Sun 18 2 1006 386 5. Liviu Chircu (@liviuchircu) 17 13 117 126 6. Daniel-Constantin Mierla (@miconda) 15 13 81 48 @@ -1033,12 +1033,12 @@ Chapter 4. Documentation 4.1. Contributors - Last edited by: Zero King (@l2dy), Vlad Patrascu - (@rvlad-patrascu), Di-Shi Sun, Liviu Chircu (@liviuchircu), - Peter Lemenkov (@lemenkov), Di-Shi Sun (@di-shi), Bogdan-Andrei - Iancu (@bogdan-iancu), Razvan Crainea (@razvancrainea), - Daniel-Constantin Mierla (@miconda), Konstantin Bokarius, Edson - Gellert Schubert, Dmitry Isakbayev. + Last edited by: Bogdan-Andrei Iancu (@bogdan-iancu), Zero King + (@l2dy), Vlad Patrascu (@rvlad-patrascu), Di-Shi Sun, Liviu + Chircu (@liviuchircu), Peter Lemenkov (@lemenkov), Di-Shi Sun + (@di-shi), Razvan Crainea (@razvancrainea), Daniel-Constantin + Mierla (@miconda), Konstantin Bokarius, Edson Gellert Schubert, + Dmitry Isakbayev. Documentation Copyrights: diff --git a/modules/osp/doc/contributors.xml b/modules/osp/doc/contributors.xml index 64c3bbbafdc..ad0c613d079 100644 --- a/modules/osp/doc/contributors.xml +++ b/modules/osp/doc/contributors.xml @@ -37,10 +37,10 @@ 3. Bogdan-Andrei Iancu (@bogdan-iancu) - 34 - 28 - 221 - 213 + 35 + 29 + 222 + 214 4. @@ -190,7 +190,7 @@ Documentation
Contributors - Last edited by: Zero King (@l2dy), Vlad Patrascu (@rvlad-patrascu), Di-Shi Sun, Liviu Chircu (@liviuchircu), Peter Lemenkov (@lemenkov), Di-Shi Sun (@di-shi), Bogdan-Andrei Iancu (@bogdan-iancu), Razvan Crainea (@razvancrainea), Daniel-Constantin Mierla (@miconda), Konstantin Bokarius, Edson Gellert Schubert, Dmitry Isakbayev. + Last edited by: Bogdan-Andrei Iancu (@bogdan-iancu), Zero King (@l2dy), Vlad Patrascu (@rvlad-patrascu), Di-Shi Sun, Liviu Chircu (@liviuchircu), Peter Lemenkov (@lemenkov), Di-Shi Sun (@di-shi), Razvan Crainea (@razvancrainea), Daniel-Constantin Mierla (@miconda), Konstantin Bokarius, Edson Gellert Schubert, Dmitry Isakbayev.
diff --git a/modules/perl/README b/modules/perl/README index 8b418a1eabc..fc0f955cd13 100644 --- a/modules/perl/README +++ b/modules/perl/README @@ -1315,7 +1315,7 @@ Chapter 3. Perl samples You might notice that there is no particular function for setting pseudo variables; you may use the exported functions - from the avpops module, though. + from the dbops module, though. Chapter 4. Frequently Asked Questions @@ -1377,7 +1377,7 @@ Chapter 5. Contributors commits^(2) and lines added/removed^(3) Name DevScore Commits Lines ++ Lines -- 1. Bastian Friedrich 113 38 8597 284 - 2. Bogdan-Andrei Iancu (@bogdan-iancu) 47 29 702 682 + 2. Bogdan-Andrei Iancu (@bogdan-iancu) 48 30 703 683 3. Razvan Crainea (@razvancrainea) 23 21 99 60 4. Liviu Chircu (@liviuchircu) 20 17 62 73 5. Vlad Patrascu (@rvlad-patrascu) 20 10 264 408 @@ -1412,12 +1412,12 @@ Chapter 5. Contributors Table 5.2. Most recently active contributors^(1) to this module Name Commit Activity - 1. Maksym Sobolyev (@sobomax) Oct 2022 - Feb 2023 - 2. Liviu Chircu (@liviuchircu) Mar 2014 - Jul 2022 - 3. Vlad Patrascu (@rvlad-patrascu) May 2017 - Jan 2020 - 4. Fabian Gast (@fgast) Jan 2020 - Jan 2020 - 5. Razvan Crainea (@razvancrainea) Jun 2011 - Sep 2019 - 6. Bogdan-Andrei Iancu (@bogdan-iancu) Dec 2006 - Jun 2019 + 1. Bogdan-Andrei Iancu (@bogdan-iancu) Dec 2006 - Feb 2024 + 2. Maksym Sobolyev (@sobomax) Oct 2022 - Feb 2023 + 3. Liviu Chircu (@liviuchircu) Mar 2014 - Jul 2022 + 4. Vlad Patrascu (@rvlad-patrascu) May 2017 - Jan 2020 + 5. Fabian Gast (@fgast) Jan 2020 - Jan 2020 + 6. Razvan Crainea (@razvancrainea) Jun 2011 - Sep 2019 7. Peter Lemenkov (@lemenkov) Jun 2018 - Jun 2018 8. Julián Moreno Patiño Feb 2016 - Feb 2016 9. Ionut Ionita (@ionutrazvanionita) Oct 2015 - Oct 2015 @@ -1435,10 +1435,10 @@ Chapter 6. Documentation 6.1. Contributors - Last edited by: Vlad Patrascu (@rvlad-patrascu), Bogdan-Andrei - Iancu (@bogdan-iancu), Razvan Crainea (@razvancrainea), Peter - Lemenkov (@lemenkov), Liviu Chircu (@liviuchircu), Ovidiu Sas - (@ovidiusas), Klaus Darilion, Daniel-Constantin Mierla + Last edited by: Bogdan-Andrei Iancu (@bogdan-iancu), Vlad + Patrascu (@rvlad-patrascu), Razvan Crainea (@razvancrainea), + Peter Lemenkov (@lemenkov), Liviu Chircu (@liviuchircu), Ovidiu + Sas (@ovidiusas), Klaus Darilion, Daniel-Constantin Mierla (@miconda), Konstantin Bokarius, Edson Gellert Schubert, Bastian Friedrich. diff --git a/modules/perl/doc/contributors.xml b/modules/perl/doc/contributors.xml index d4ba9341c17..57d970b196e 100644 --- a/modules/perl/doc/contributors.xml +++ b/modules/perl/doc/contributors.xml @@ -29,10 +29,10 @@ 2. Bogdan-Andrei Iancu (@bogdan-iancu) - 47 - 29 - 702 - 682 + 48 + 30 + 703 + 683 3. @@ -128,34 +128,34 @@ 1. + Bogdan-Andrei Iancu (@bogdan-iancu) + Dec 2006 - Feb 2024 + + + 2. Maksym Sobolyev (@sobomax) Oct 2022 - Feb 2023 - 2. + 3. Liviu Chircu (@liviuchircu) Mar 2014 - Jul 2022 - 3. + 4. Vlad Patrascu (@rvlad-patrascu) May 2017 - Jan 2020 - 4. + 5. Fabian Gast (@fgast) Jan 2020 - Jan 2020 - 5. + 6. Razvan Crainea (@razvancrainea) Jun 2011 - Sep 2019 - - 6. - Bogdan-Andrei Iancu (@bogdan-iancu) - Dec 2006 - Jun 2019 - 7. Peter Lemenkov (@lemenkov) @@ -190,7 +190,7 @@ Documentation
Contributors - Last edited by: Vlad Patrascu (@rvlad-patrascu), Bogdan-Andrei Iancu (@bogdan-iancu), Razvan Crainea (@razvancrainea), Peter Lemenkov (@lemenkov), Liviu Chircu (@liviuchircu), Ovidiu Sas (@ovidiusas), Klaus Darilion, Daniel-Constantin Mierla (@miconda), Konstantin Bokarius, Edson Gellert Schubert, Bastian Friedrich. + Last edited by: Bogdan-Andrei Iancu (@bogdan-iancu), Vlad Patrascu (@rvlad-patrascu), Razvan Crainea (@razvancrainea), Peter Lemenkov (@lemenkov), Liviu Chircu (@liviuchircu), Ovidiu Sas (@ovidiusas), Klaus Darilion, Daniel-Constantin Mierla (@miconda), Konstantin Bokarius, Edson Gellert Schubert, Bastian Friedrich.
diff --git a/modules/proto_hep/README b/modules/proto_hep/README index 48a39ec96a7..ede4b5325cf 100644 --- a/modules/proto_hep/README +++ b/modules/proto_hep/README @@ -351,7 +351,7 @@ Chapter 3. Contributors commits^(2) and lines added/removed^(3) Name DevScore Commits Lines ++ Lines -- 1. Ionut Ionita (@ionutrazvanionita) 149 66 8047 998 - 2. Razvan Crainea (@razvancrainea) 37 28 84 487 + 2. Razvan Crainea (@razvancrainea) 38 29 85 488 3. Bogdan-Andrei Iancu (@bogdan-iancu) 26 19 384 170 4. Liviu Chircu (@liviuchircu) 18 15 81 92 5. Bence Szigeti 9 2 405 180 @@ -383,8 +383,8 @@ Chapter 3. Contributors Table 3.2. Most recently active contributors^(1) to this module Name Commit Activity - 1. Maksym Sobolyev (@sobomax) Feb 2023 - Nov 2023 - 2. Razvan Crainea (@razvancrainea) Nov 2015 - Oct 2023 + 1. Razvan Crainea (@razvancrainea) Nov 2015 - Feb 2024 + 2. Maksym Sobolyev (@sobomax) Feb 2023 - Nov 2023 3. Bence Szigeti Jul 2023 - Aug 2023 4. Liviu Chircu (@liviuchircu) Mar 2016 - Oct 2022 5. Nick Altmann (@nikbyte) May 2021 - May 2021 diff --git a/modules/proto_hep/doc/contributors.xml b/modules/proto_hep/doc/contributors.xml index aa413d28089..7d93b89e4b8 100644 --- a/modules/proto_hep/doc/contributors.xml +++ b/modules/proto_hep/doc/contributors.xml @@ -29,10 +29,10 @@ 2. Razvan Crainea (@razvancrainea) - 37 - 28 - 84 - 487 + 38 + 29 + 85 + 488 3. @@ -128,13 +128,13 @@ 1. - Maksym Sobolyev (@sobomax) - Feb 2023 - Nov 2023 + Razvan Crainea (@razvancrainea) + Nov 2015 - Feb 2024 2. - Razvan Crainea (@razvancrainea) - Nov 2015 - Oct 2023 + Maksym Sobolyev (@sobomax) + Feb 2023 - Nov 2023 3. diff --git a/modules/sql_cacher/README b/modules/sql_cacher/README index e129d014460..b3409ed623a 100644 --- a/modules/sql_cacher/README +++ b/modules/sql_cacher/README @@ -368,12 +368,12 @@ Chapter 2. Contributors 1. Vlad Patrascu (@rvlad-patrascu) 93 44 3640 1114 2. Liviu Chircu (@liviuchircu) 22 18 166 115 3. Razvan Crainea (@razvancrainea) 15 13 25 14 - 4. Bogdan-Andrei Iancu (@bogdan-iancu) 9 7 120 27 + 4. Bogdan-Andrei Iancu (@bogdan-iancu) 11 8 123 29 5. Maksym Sobolyev (@sobomax) 7 5 8 9 - 6. Bence Szigeti 4 2 3 2 - 7. Ionel Cerghit (@ionel-cerghit) 4 1 50 92 - 8. Dan Pascu (@danpascu) 3 1 1 1 - 9. Ovidiu Sas (@ovidiusas) 3 1 1 1 + 6. Ovidiu Sas (@ovidiusas) 4 2 14 7 + 7. Bence Szigeti 4 2 3 2 + 8. Ionel Cerghit (@ionel-cerghit) 4 1 50 92 + 9. Dan Pascu (@danpascu) 3 1 1 1 10. Peter Lemenkov (@lemenkov) 3 1 1 1 All remaining contributors: Walter Doekes (@wdoekes), Gang @@ -399,18 +399,18 @@ Chapter 2. Contributors Table 2.2. Most recently active contributors^(1) to this module Name Commit Activity - 1. Bogdan-Andrei Iancu (@bogdan-iancu) May 2017 - Jan 2024 - 2. Bence Szigeti Jan 2024 - Jan 2024 - 3. Maksym Sobolyev (@sobomax) Oct 2020 - Nov 2023 - 4. Vlad Patrascu (@rvlad-patrascu) Aug 2015 - Jul 2022 - 5. Gang Zhuo Nov 2021 - Nov 2021 - 6. Walter Doekes (@wdoekes) Apr 2021 - Apr 2021 - 7. Razvan Crainea (@razvancrainea) Feb 2016 - Jan 2021 - 8. Liviu Chircu (@liviuchircu) Mar 2016 - Sep 2019 - 9. Dan Pascu (@danpascu) May 2019 - May 2019 - 10. Peter Lemenkov (@lemenkov) Jun 2018 - Jun 2018 - - All remaining contributors: Ovidiu Sas (@ovidiusas), Ionel + 1. Bogdan-Andrei Iancu (@bogdan-iancu) May 2017 - Feb 2024 + 2. Ovidiu Sas (@ovidiusas) Mar 2017 - Feb 2024 + 3. Bence Szigeti Jan 2024 - Jan 2024 + 4. Maksym Sobolyev (@sobomax) Oct 2020 - Nov 2023 + 5. Vlad Patrascu (@rvlad-patrascu) Aug 2015 - Jul 2022 + 6. Gang Zhuo Nov 2021 - Nov 2021 + 7. Walter Doekes (@wdoekes) Apr 2021 - Apr 2021 + 8. Razvan Crainea (@razvancrainea) Feb 2016 - Jan 2021 + 9. Liviu Chircu (@liviuchircu) Mar 2016 - Sep 2019 + 10. Dan Pascu (@danpascu) May 2019 - May 2019 + + All remaining contributors: Peter Lemenkov (@lemenkov), Ionel Cerghit (@ionel-cerghit). (1) including any documentation-related commits, excluding diff --git a/modules/sql_cacher/doc/contributors.xml b/modules/sql_cacher/doc/contributors.xml index 197b271dd83..68280abc6db 100644 --- a/modules/sql_cacher/doc/contributors.xml +++ b/modules/sql_cacher/doc/contributors.xml @@ -45,10 +45,10 @@ 4. Bogdan-Andrei Iancu (@bogdan-iancu) - 9 - 7 - 120 - 27 + 11 + 8 + 123 + 29 5. @@ -60,6 +60,14 @@ 6. + Ovidiu Sas (@ovidiusas) + 4 + 2 + 14 + 7 + + + 7. Bence Szigeti 4 2 @@ -67,24 +75,16 @@ 2 - 7. + 8. Ionel Cerghit (@ionel-cerghit) 4 1 50 92 - - 8. - Dan Pascu (@danpascu) - 3 - 1 - 1 - 1 - 9. - Ovidiu Sas (@ovidiusas) + Dan Pascu (@danpascu) 3 1 1 @@ -129,57 +129,57 @@ 1. Bogdan-Andrei Iancu (@bogdan-iancu) - May 2017 - Jan 2024 + May 2017 - Feb 2024 2. + Ovidiu Sas (@ovidiusas) + Mar 2017 - Feb 2024 + + + 3. Bence Szigeti Jan 2024 - Jan 2024 - 3. + 4. Maksym Sobolyev (@sobomax) Oct 2020 - Nov 2023 - 4. + 5. Vlad Patrascu (@rvlad-patrascu) Aug 2015 - Jul 2022 - 5. + 6. Gang Zhuo Nov 2021 - Nov 2021 - 6. + 7. Walter Doekes (@wdoekes) Apr 2021 - Apr 2021 - 7. + 8. Razvan Crainea (@razvancrainea) Feb 2016 - Jan 2021 - 8. + 9. Liviu Chircu (@liviuchircu) Mar 2016 - Sep 2019 - 9. + 10. Dan Pascu (@danpascu) May 2019 - May 2019 - - 10. - Peter Lemenkov (@lemenkov) - Jun 2018 - Jun 2018 - -All remaining contributors: Ovidiu Sas (@ovidiusas), Ionel Cerghit (@ionel-cerghit). +All remaining contributors: Peter Lemenkov (@lemenkov), Ionel Cerghit (@ionel-cerghit). (1) including any documentation-related commits, excluding merge commits