You can subscribe to this list here.
2005 |
Jan
|
Feb
(32) |
Mar
(56) |
Apr
(92) |
May
(39) |
Jun
(226) |
Jul
(98) |
Aug
(66) |
Sep
|
Oct
(153) |
Nov
(43) |
Dec
(42) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(97) |
Feb
(141) |
Mar
(147) |
Apr
(80) |
May
(51) |
Jun
(93) |
Jul
(88) |
Aug
(50) |
Sep
(179) |
Oct
(48) |
Nov
(82) |
Dec
(71) |
2007 |
Jan
(42) |
Feb
(46) |
Mar
(123) |
Apr
(21) |
May
(139) |
Jun
(59) |
Jul
(34) |
Aug
(57) |
Sep
(47) |
Oct
(137) |
Nov
(49) |
Dec
(12) |
2008 |
Jan
(10) |
Feb
(8) |
Mar
(63) |
Apr
(17) |
May
(34) |
Jun
(38) |
Jul
(16) |
Aug
(62) |
Sep
(9) |
Oct
(121) |
Nov
(38) |
Dec
(4) |
2009 |
Jan
|
Feb
(11) |
Mar
(9) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
(4) |
Apr
(10) |
May
(1) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
(1) |
Feb
(1) |
Mar
(3) |
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
(3) |
Sep
(2) |
Oct
(1) |
Nov
|
Dec
(12) |
2012 |
Jan
(26) |
Feb
(1) |
Mar
(15) |
Apr
(1) |
May
(1) |
Jun
(7) |
Jul
(2) |
Aug
|
Sep
(1) |
Oct
(52) |
Nov
(8) |
Dec
(25) |
2013 |
Jan
(35) |
Feb
(14) |
Mar
(10) |
Apr
(10) |
May
(29) |
Jun
(16) |
Jul
(5) |
Aug
(8) |
Sep
(8) |
Oct
(6) |
Nov
(1) |
Dec
(3) |
2014 |
Jan
(16) |
Feb
(13) |
Mar
(5) |
Apr
(9) |
May
(21) |
Jun
(6) |
Jul
(5) |
Aug
(2) |
Sep
(59) |
Oct
(115) |
Nov
(122) |
Dec
(45) |
2015 |
Jan
(31) |
Feb
(32) |
Mar
(19) |
Apr
(25) |
May
(3) |
Jun
(4) |
Jul
(18) |
Aug
(3) |
Sep
(23) |
Oct
(11) |
Nov
(17) |
Dec
(12) |
2016 |
Jan
(20) |
Feb
(27) |
Mar
(20) |
Apr
(40) |
May
(35) |
Jun
(48) |
Jul
(44) |
Aug
(51) |
Sep
(18) |
Oct
(42) |
Nov
(39) |
Dec
(29) |
2017 |
Jan
(37) |
Feb
(34) |
Mar
(20) |
Apr
(37) |
May
(10) |
Jun
(2) |
Jul
(14) |
Aug
(15) |
Sep
(25) |
Oct
(29) |
Nov
(15) |
Dec
(29) |
2018 |
Jan
(5) |
Feb
(15) |
Mar
(6) |
Apr
(20) |
May
(39) |
Jun
(39) |
Jul
(17) |
Aug
(20) |
Sep
(10) |
Oct
(17) |
Nov
(20) |
Dec
(8) |
2019 |
Jan
(28) |
Feb
(21) |
Mar
(13) |
Apr
(44) |
May
(44) |
Jun
(28) |
Jul
(51) |
Aug
(30) |
Sep
(7) |
Oct
(20) |
Nov
(8) |
Dec
(21) |
2020 |
Jan
(27) |
Feb
(5) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Bitbucket <com...@bi...> - 2018-12-17 18:22:10
|
1 new commit in naviserver: https://bitbucket.org/naviserver/naviserver/commits/40d39eb81888/ Changeset: 40d39eb81888 User: gustafn Date: 2018-12-17 18:21:29+00:00 Summary: align code and documentation Affected #: 1 file Repository URL: https://bitbucket.org/naviserver/naviserver/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2018-12-17 12:04:31
|
4 new commits in naviserver: https://bitbucket.org/naviserver/naviserver/commits/673070e6befb/ Changeset: 673070e6befb User: gustafn Date: 2018-12-16 16:28:31+00:00 Summary: reduce dead assignments Affected #: 3 files https://bitbucket.org/naviserver/naviserver/commits/ed4e9f0e6193/ Changeset: ed4e9f0e6193 User: gustafn Date: 2018-12-17 11:25:39+00:00 Summary: provide macro NS_TCL_PRE85 to detect, when NaviServer is compiled with a Tcl prior to 8.5 Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/56a190e8aa0d/ Changeset: 56a190e8aa0d User: gustafn Date: 2018-12-17 11:58:54+00:00 Summary: fix typo Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/ca073bdd03fc/ Changeset: ca073bdd03fc User: gustafn Date: 2018-12-17 12:03:58+00:00 Summary: new API call: ns_db currenthandles Return information about handles currently allocated to the thread performing this call. The result contains a dict with the pools, from which handles were allocated, the names of the handles and their "active" state (a handle is active between a "ns_db select" and the last "ns_db getrow" statement). If no handles are allocated by this thread, empty is returned. For example, a possible result is "main {nsdb0 1} subquery {nsdb1 0}" indicating that the current thread has allocated handles from pool "main" and "subquery", but the handle from pool "main" (i.e. "nsdb0") is currently active (during a select). Affected #: 5 files Repository URL: https://bitbucket.org/naviserver/naviserver/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2018-12-07 13:03:16
|
5 new commits in naviserver: https://bitbucket.org/naviserver/naviserver/commits/f25c8c4d0957/ Changeset: f25c8c4d0957 User: gustafn Date: 2018-12-04 13:36:58+00:00 Summary: improve indentation Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/5492d65fb164/ Changeset: 5492d65fb164 User: gustafn Date: 2018-12-07 10:57:42+00:00 Summary: improve sample service file Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/cfaf00632071/ Changeset: cfaf00632071 User: gustafn Date: 2018-12-07 10:58:41+00:00 Summary: distinguish consistently between subcommand and argument Affected #: 11 files https://bitbucket.org/naviserver/naviserver/commits/cc05adb0ad18/ Changeset: cc05adb0ad18 User: gustafn Date: 2018-12-07 10:59:06+00:00 Summary: remove outdated comment Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/f08088f80be4/ Changeset: f08088f80be4 User: gustafn Date: 2018-12-07 13:02:41+00:00 Summary: turn off Nagle algorithm (parameter nodelay) per default Affected #: 4 files Repository URL: https://bitbucket.org/naviserver/naviserver/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2018-12-07 09:24:47
|
2 new commits in nsstats: https://bitbucket.org/naviserver/nsstats/commits/79e2aad00801/ Changeset: 79e2aad00801 User: gustafn Date: 2018-12-07 09:09:17+00:00 Summary: whitespace changes Affected #: 1 file https://bitbucket.org/naviserver/nsstats/commits/190959931566/ Changeset: 190959931566 User: gustafn Date: 2018-12-07 09:24:15+00:00 Summary: add nowarap to first column of configparams Affected #: 1 file Repository URL: https://bitbucket.org/naviserver/nsstats/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2018-12-06 19:38:55
|
2 new commits in nsloopctl: https://bitbucket.org/naviserver/nsloopctl/commits/28678f64e383/ Changeset: 28678f64e383 User: gustafn Date: 2018-12-06 19:36:13+00:00 Summary: modenize code: let it compile with recent versions of Tcl and NaviServer Affected #: 1 file https://bitbucket.org/naviserver/nsloopctl/commits/6807409b5a1a/ Changeset: 6807409b5a1a User: gustafn Date: 2018-12-06 19:37:14+00:00 Summary: tespace change Affected #: 1 file Repository URL: https://bitbucket.org/naviserver/nsloopctl/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2018-11-20 14:48:01
|
2 new commits in naviserver: https://bitbucket.org/naviserver/naviserver/commits/2c924aec1dba/ Changeset: 2c924aec1dba User: gustafn Date: 2018-11-20 14:32:21+00:00 Summary: whitespace changes Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/49c314f2b1e9/ Changeset: 49c314f2b1e9 User: gustafn Date: 2018-11-20 14:47:34+00:00 Summary: fix compilation issue for versions of OpenSSL before 1.0.2 Affected #: 2 files Repository URL: https://bitbucket.org/naviserver/naviserver/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2018-11-16 11:32:00
|
2 new commits in naviserver: https://bitbucket.org/naviserver/naviserver/commits/5e816ffc4995/ Changeset: 5e816ffc4995 User: gustafn Date: 2018-11-16 11:29:23+00:00 Summary: reduce variable scope Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/77dcbaf94331/ Changeset: 77dcbaf94331 User: gustafn Date: 2018-11-16 11:30:53+00:00 Summary: align implementation with documentation (if wait operation has no timeout, use timeout of queue operation) Affected #: 1 file Repository URL: https://bitbucket.org/naviserver/naviserver/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2018-11-15 10:48:42
|
1 new commit in naviserver: https://bitbucket.org/naviserver/naviserver/commits/02783d730ade/ Changeset: 02783d730ade User: gustafn Date: 2018-11-15 10:46:21+00:00 Summary: align documentation with implementaton; use itemized list for describing entries in the result lists. Affected #: 1 file Repository URL: https://bitbucket.org/naviserver/naviserver/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2018-11-15 10:48:30
|
1 new commit in nsstats: https://bitbucket.org/naviserver/nsstats/commits/98317721ee6a/ Changeset: 98317721ee6a User: gustafn Date: 2018-11-15 10:48:00+00:00 Summary: add running jobs to the "process" page, which shows now jobs from all categories Affected #: 1 file Repository URL: https://bitbucket.org/naviserver/nsstats/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2018-11-14 12:15:29
|
1 new commit in nsstats: https://bitbucket.org/naviserver/nsstats/commits/0f7ea0bffdd2/ Changeset: 0f7ea0bffdd2 User: gustafn Date: 2018-11-14 12:14:19+00:00 Summary: add running scheduled procedures to the "process" page, keeping information about most currently active jobs Affected #: 1 file Repository URL: https://bitbucket.org/naviserver/nsstats/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2018-11-14 11:50:07
|
2 new commits in naviserver: https://bitbucket.org/naviserver/naviserver/commits/1b62ca953a46/ Changeset: 1b62ca953a46 User: gustafn Date: 2018-11-14 10:00:19+00:00 Summary: deactivate SSLv3 by default, adjust comments to values from source code Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/06232350e9d1/ Changeset: 06232350e9d1 User: gustafn Date: 2018-11-14 11:49:31+00:00 Summary: reduce variable scope Affected #: 1 file Repository URL: https://bitbucket.org/naviserver/naviserver/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2018-11-08 10:52:20
|
2 new commits in naviserver: https://bitbucket.org/naviserver/naviserver/commits/6ec8190671af/ Changeset: 6ec8190671af User: gustafn Date: 2018-11-08 10:46:54+00:00 Summary: improved debug messages, tested with boundary cases (i.e. upload files being a multiple of CHUNK-SIZE) Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/8d71ceca6d0d/ Changeset: 8d71ceca6d0d User: gustafn Date: 2018-11-08 10:49:28+00:00 Summary: remove unneeded variable Affected #: 1 file Repository URL: https://bitbucket.org/naviserver/naviserver/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2018-11-07 12:26:09
|
5 new commits in naviserver: https://bitbucket.org/naviserver/naviserver/commits/7a395a738364/ Changeset: 7a395a738364 User: gustafn Date: 2018-11-06 08:00:05+00:00 Summary: make otherwise unused macro more local Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/1ea4aa46c054/ Changeset: 1ea4aa46c054 User: gustafn Date: 2018-11-06 08:00:34+00:00 Summary: remove unused macro Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/9ecb7463012b/ Changeset: 9ecb7463012b User: gustafn Date: 2018-11-06 08:01:15+00:00 Summary: help parse performing static analysis Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/30f5063d0ea3/ Changeset: 30f5063d0ea3 User: gustafn Date: 2018-11-06 08:01:32+00:00 Summary: add const declaration Affected #: 2 files https://bitbucket.org/naviserver/naviserver/commits/80ed01e123a0/ Changeset: 80ed01e123a0 User: gustafn Date: 2018-11-07 12:25:02+00:00 Summary: ns_http: fix potential problem with partial writes on HTTP requests with large bodies (e.g. POST of larger files) Affected #: 1 file Repository URL: https://bitbucket.org/naviserver/naviserver/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2018-11-04 17:20:34
|
1 new commit in naviserver: https://bitbucket.org/naviserver/naviserver/commits/8253a660e393/ Changeset: 8253a660e393 User: gustafn Date: 2018-11-04 17:19:55+00:00 Summary: Added tag naviserver-4.99.17 for changeset 12b3f7e266d3 Affected #: 1 file Repository URL: https://bitbucket.org/naviserver/naviserver/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2018-11-04 17:10:58
|
1 new commit in naviserver: https://bitbucket.org/naviserver/naviserver/commits/12b3f7e266d3/ Changeset: 12b3f7e266d3 User: gustafn Date: 2018-11-04 17:10:31+00:00 Summary: provide compatibility for Tcl 8.5 in http.test Affected #: 1 file Repository URL: https://bitbucket.org/naviserver/naviserver/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2018-11-04 13:29:13
|
11 new commits in naviserver: https://bitbucket.org/naviserver/naviserver/commits/3f242c081973/ Changeset: 3f242c081973 User: gustafn Date: 2018-11-04 07:50:46+00:00 Summary: improve spelling Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/626ae8a133af/ Changeset: 626ae8a133af User: gustafn Date: 2018-11-04 07:51:39+00:00 Summary: aligen name of arguments in prototype with function definition Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/2f0f827cc7c8/ Changeset: 2f0f827cc7c8 User: gustafn Date: 2018-11-04 07:52:10+00:00 Summary: whitespace change (fix indentation) Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/e615fe495828/ Changeset: e615fe495828 User: gustafn Date: 2018-11-04 07:52:36+00:00 Summary: improve comment Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/f2f01284d055/ Changeset: f2f01284d055 User: gustafn Date: 2018-11-04 07:53:30+00:00 Summary: avoid shadowing of outer symbols Affected #: 5 files https://bitbucket.org/naviserver/naviserver/commits/c111fbfabf7f/ Changeset: c111fbfabf7f User: gustafn Date: 2018-11-04 10:14:11+00:00 Summary: updated news files, esp. with changes in sample configure files Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/7587066dd72c/ Changeset: 7587066dd72c User: gustafn Date: 2018-11-04 12:04:03+00:00 Summary: add sample for initcmds to nsd-config.tcl Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/ff64865acdee/ Changeset: ff64865acdee User: gustafn Date: 2018-11-04 12:04:56+00:00 Summary: bump version number to 4.99.17 Affected #: 2 files https://bitbucket.org/naviserver/naviserver/commits/ea4260736cf3/ Changeset: ea4260736cf3 User: gustafn Date: 2018-11-04 13:25:53+00:00 Summary: add support for images in documentation files Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/b3be80fa271f/ Changeset: b3be80fa271f User: gustafn Date: 2018-11-04 13:26:59+00:00 Summary: add image visualizing blueprints to documentation Affected #: 2 files https://bitbucket.org/naviserver/naviserver/commits/146d22afd7cc/ Changeset: 146d22afd7cc User: gustafn Date: 2018-11-04 13:28:35+00:00 Summary: update diff-stats Affected #: 1 file Repository URL: https://bitbucket.org/naviserver/naviserver/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2018-11-03 18:54:59
|
3 new commits in naviserver: https://bitbucket.org/naviserver/naviserver/commits/4a6157fdf3f5/ Changeset: 4a6157fdf3f5 User: gustafn Date: 2018-11-03 18:40:54+00:00 Summary: add changes of NaviServer modules to NEWS file Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/0a37cda6eb9a/ Changeset: 0a37cda6eb9a User: gustafn Date: 2018-11-03 18:42:19+00:00 Summary: update change statistics Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/61cd1a66a08c/ Changeset: 61cd1a66a08c User: gustafn Date: 2018-11-03 18:53:16+00:00 Summary: remove comma before that Affected #: 6 files Repository URL: https://bitbucket.org/naviserver/naviserver/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2018-11-03 18:14:11
|
1 new commit in nsdbi: https://bitbucket.org/naviserver/nsdbi/commits/468f29e7c3cf/ Changeset: 468f29e7c3cf User: gustafn Date: 2018-11-03 18:13:38+00:00 Summary: improve spelling Affected #: 1 file Repository URL: https://bitbucket.org/naviserver/nsdbi/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2018-11-03 18:12:39
|
1 new commit in nsstats: https://bitbucket.org/naviserver/nsstats/commits/9329fc26c1bb/ Changeset: 9329fc26c1bb User: gustafn Date: 2018-11-03 18:11:51+00:00 Summary: bump version number to 1.7 Affected #: 1 file Repository URL: https://bitbucket.org/naviserver/nsstats/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2018-11-03 18:12:01
|
1 new commit in nsstats: https://bitbucket.org/naviserver/nsstats/commits/e38dad9a84df/ Changeset: e38dad9a84df User: gustafn Date: 2018-11-03 17:53:29+00:00 Summary: make labeling more consistent Affected #: 1 file Repository URL: https://bitbucket.org/naviserver/nsstats/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2018-11-03 17:51:03
|
1 new commit in nsphp: https://bitbucket.org/naviserver/nsphp/commits/d94039d0279e/ Changeset: d94039d0279e User: gustafn Date: 2018-11-03 17:50:05+00:00 Summary: updated README Affected #: 1 file Repository URL: https://bitbucket.org/naviserver/nsphp/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2018-11-03 17:21:45
|
3 new commits in naviserver: https://bitbucket.org/naviserver/naviserver/commits/2b1a5dcf2777/ Changeset: 2b1a5dcf2777 User: gustafn Date: 2018-11-03 17:01:47+00:00 Summary: remove test with identical outer condition Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/ef859838f8f4/ Changeset: ef859838f8f4 User: gustafn Date: 2018-11-03 17:20:32+00:00 Summary: make function CallDoneCallback() static and comment function Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/a84fc9fbaa47/ Changeset: a84fc9fbaa47 User: gustafn Date: 2018-11-03 17:21:14+00:00 Summary: remove code smells Affected #: 2 files Repository URL: https://bitbucket.org/naviserver/naviserver/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2018-11-03 16:57:41
|
2 new commits in naviserver: https://bitbucket.org/naviserver/naviserver/commits/72801bdfc11d/ Changeset: 72801bdfc11d User: gustafn Date: 2018-11-03 16:54:38+00:00 Summary: reduce implict conversions Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/6cb299c00ce1/ Changeset: 6cb299c00ce1 User: gustafn Date: 2018-11-03 16:56:31+00:00 Summary: fixes for Raspberry PI: use proper print macros for printing size_t and ssize_t Affected #: 10 files Repository URL: https://bitbucket.org/naviserver/naviserver/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2018-11-03 08:18:29
|
1 new commit in naviserver: https://bitbucket.org/naviserver/naviserver/commits/e3aa5717a39c/ Changeset: e3aa5717a39c User: gustafn Date: 2018-11-03 08:17:53+00:00 Summary: fix editing bug (many thanks to Oleg for pointing this out) extend regression test for ns_crypto Affected #: 2 files Repository URL: https://bitbucket.org/naviserver/naviserver/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2018-11-01 19:38:04
|
12 new commits in naviserver: https://bitbucket.org/naviserver/naviserver/commits/d086d298df83/ Changeset: d086d298df83 User: gustafn Date: 2018-11-01 16:43:06+00:00 Summary: fix print string when no SO_REUSEPORT is available Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/33705ae7f261/ Changeset: 33705ae7f261 User: gustafn Date: 2018-11-01 17:04:12+00:00 Summary: improved NEWS, bumped version to 4.99.17b2 Affected #: 4 files https://bitbucket.org/naviserver/naviserver/commits/6a3689188ab6/ Changeset: 6a3689188ab6 User: gustafn Date: 2018-11-01 18:01:20+00:00 Summary: avoid potential name clashes with predefined macros Affected #: 2 files https://bitbucket.org/naviserver/naviserver/commits/504672e0700e/ Changeset: 504672e0700e User: gustafn Date: 2018-11-01 18:22:30+00:00 Summary: reduce code duplication Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/34b9ffbf58a6/ Changeset: 34b9ffbf58a6 User: gustafn Date: 2018-11-01 18:23:01+00:00 Summary: silence static checker Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/7521188de801/ Changeset: 7521188de801 User: gustafn Date: 2018-11-01 18:23:41+00:00 Summary: avoid potential name clashes with predefined "min" or "max" Affected #: 6 files https://bitbucket.org/naviserver/naviserver/commits/e1bfff9c2dac/ Changeset: e1bfff9c2dac User: gustafn Date: 2018-11-01 18:33:13+00:00 Summary: use always NULL instead of 0 for SERVICE_STATUS_HANDLE Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/e9740a685770/ Changeset: e9740a685770 User: gustafn Date: 2018-11-01 18:39:46+00:00 Summary: align variable name with prototype Affected #: 2 files https://bitbucket.org/naviserver/naviserver/commits/f916b6e50178/ Changeset: f916b6e50178 User: gustafn Date: 2018-11-01 18:51:31+00:00 Summary: silence static checker Affected #: 1 file https://bitbucket.org/naviserver/naviserver/commits/70ff7214b7db/ Changeset: 70ff7214b7db User: gustafn Date: 2018-11-01 19:25:49+00:00 Summary: whitespace changes (remove tabs and trailing spaces) Affected #: 88 files https://bitbucket.org/naviserver/naviserver/commits/23997702be58/ Changeset: 23997702be58 User: gustafn Date: 2018-11-01 19:26:51+00:00 Summary: withspace changes Affected #: 2 files https://bitbucket.org/naviserver/naviserver/commits/83f7940bf4da/ Changeset: 83f7940bf4da User: gustafn Date: 2018-11-01 19:28:11+00:00 Summary: update change statistics Affected #: 1 file Repository URL: https://bitbucket.org/naviserver/naviserver/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |