sic, branch HEAD simple irc client 058547e707e961e0cb7f8af4877f1b92f4c6d888 2021-05-06T10:18:21Z 2021-05-06T10:20:30Z util: trim() fix for UB on pointer arithmetic Hiltjo Posthuma hiltjo@codemadness.org commit 058547e707e961e0cb7f8af4877f1b92f4c6d888 parent 68c1c4e5110ed6a30cd3da0ae0c2ab0753e02cbb Author: Hiltjo Posthuma <hiltjo@codemadness.org> Date: Thu, 6 May 2021 12:18:21 +0200 util: trim() fix for UB on pointer arithmetic Follow-up fix on commit df4c0611366bf361fa263fbc57009cbe68456855 " While it is true reversing the condition solves a single-byte read at one before s, there is a second instance of UB. Having a pointer to one before an object is in of itself UB in C, it's on the side of language lawyering, but it's UB. I add here a quote from a C standard draft: > When an expression that has integer type is added to or subtracted > from a pointer, the result has the type of the pointer operand. > If both the pointer operand and the result point to elements of the > same array object, or one past the last element of the array object, > the evaluation shall not produce an overflow; otherwise, the > behavior is undefined. Taken from: http://www.iso-9899.info/n1570.html#6.5.6p8 " Thanks Guilherme Janczak <guilherme.janczak@yandex.com> 68c1c4e5110ed6a30cd3da0ae0c2ab0753e02cbb 2021-05-05T23:42:38Z 2021-05-05T23:47:08Z README: fix a minor typo and make a small rewording Hiltjo Posthuma hiltjo@codemadness.org commit 68c1c4e5110ed6a30cd3da0ae0c2ab0753e02cbb parent f2c5daa9fe8ee9da89b9596c2b316ba7f9bd64a7 Author: Hiltjo Posthuma <hiltjo@codemadness.org> Date: Thu, 6 May 2021 01:42:38 +0200 README: fix a minor typo and make a small rewording f2c5daa9fe8ee9da89b9596c2b316ba7f9bd64a7 2021-05-05T23:39:46Z 2021-05-05T23:45:51Z Makefile improvements Hiltjo Posthuma hiltjo@codemadness.org commit f2c5daa9fe8ee9da89b9596c2b316ba7f9bd64a7 parent 81533f966ec31049c6159eac482bb821cb1e54ef Author: Hiltjo Posthuma <hiltjo@codemadness.org> Date: Thu, 6 May 2021 01:39:46 +0200 Makefile improvements - Respect system/port flags by default. - Be verbose and do not hide output. This makes it easier to debug a build. - Remove the "options" target. - Remove config.mk: just edit the Makefile or override flags if needed. - dist: no need to clean before packaging files. - dist: pipe directly to gzip without an intermediate tarball file. - Define and add a POSIX marker to the Makefile. 81533f966ec31049c6159eac482bb821cb1e54ef 2021-05-05T23:16:13Z 2021-05-05T23:16:13Z util: dial: no need for a static struct hints Hiltjo Posthuma hiltjo@codemadness.org commit 81533f966ec31049c6159eac482bb821cb1e54ef parent b188c784329baf8479f30f06c61c12226d797115 Author: Hiltjo Posthuma <hiltjo@codemadness.org> Date: Thu, 6 May 2021 01:16:13 +0200 util: dial: no need for a static struct hints b188c784329baf8479f30f06c61c12226d797115 2021-05-05T23:14:21Z 2021-05-05T23:14:21Z util: fix a shadowed variable name `srv` Hiltjo Posthuma hiltjo@codemadness.org commit b188c784329baf8479f30f06c61c12226d797115 parent d9bda20849c464eff0adb56414da1840abc6ef6a Author: Hiltjo Posthuma <hiltjo@codemadness.org> Date: Thu, 6 May 2021 01:14:21 +0200 util: fix a shadowed variable name `srv` d9bda20849c464eff0adb56414da1840abc6ef6a 2021-05-05T23:09:21Z 2021-05-05T23:09:21Z fix undefined behaviour of using isspace ctype function Hiltjo Posthuma hiltjo@codemadness.org commit d9bda20849c464eff0adb56414da1840abc6ef6a parent df4c0611366bf361fa263fbc57009cbe68456855 Author: Hiltjo Posthuma <hiltjo@codemadness.org> Date: Thu, 6 May 2021 01:09:21 +0200 fix undefined behaviour of using isspace ctype function cast all ctype(3) functions argument to (unsigned char) to avoid UB POSIX says: "The c argument is an int, the value of which the application shall ensure is a character representable as an unsigned char or equal to the value of the macro EOF. If the argument has any other value, the behavior is undefined." Many libc cast implicitly the value, but NetBSD for example does not, which is probably the correct thing to interpret it. df4c0611366bf361fa263fbc57009cbe68456855 2021-05-05T23:04:35Z 2021-05-05T23:04:35Z fix an out-of-bounds read if the input is "" Hiltjo Posthuma hiltjo@codemadness.org commit df4c0611366bf361fa263fbc57009cbe68456855 parent ec293427a0cc2ef7f561a60347ce940d567efb72 Author: Hiltjo Posthuma <hiltjo@codemadness.org> Date: Thu, 6 May 2021 01:04:35 +0200 fix an out-of-bounds read if the input is "" Notified by Guilherme Janczak <guilherme.janczak@yandex.com>, thanks! ec293427a0cc2ef7f561a60347ce940d567efb72 2020-10-11T12:51:35Z 2020-10-11T12:51:35Z fix include: include sys/select.h for select(2) and FD_(ZERO|SET) Hiltjo Posthuma hiltjo@codemadness.org commit ec293427a0cc2ef7f561a60347ce940d567efb72 parent 9bb34de449c8f22d869a6f3794107ed25d37c7c1 Author: Hiltjo Posthuma <hiltjo@codemadness.org> Date: Sun, 11 Oct 2020 14:51:35 +0200 fix include: include sys/select.h for select(2) and FD_(ZERO|SET) Reported by nonterminal on IRC, thanks! 9bb34de449c8f22d869a6f3794107ed25d37c7c1 2017-03-18T18:24:55Z 2017-03-18T18:24:55Z added Joerg Jung's pledge patch Anselm R Garbe garbeam@gmail.com commit 9bb34de449c8f22d869a6f3794107ed25d37c7c1 parent 7f0141bbe92dc6c3423ff39d21e8ec5c18b58ec1 Author: Anselm R Garbe <garbeam@gmail.com> Date: Sat, 18 Mar 2017 19:24:55 +0100 added Joerg Jung's pledge patch 7f0141bbe92dc6c3423ff39d21e8ec5c18b58ec1 2014-12-22T10:34:35Z 2014-12-22T10:34:35Z applied Troels unbuffer stdin patch, thanks Anselm R Garbe garbeam@gmail.com commit 7f0141bbe92dc6c3423ff39d21e8ec5c18b58ec1 parent 6ae3c37e30f024d27e5b759f58a96c0bac0c5254 Author: Anselm R Garbe <garbeam@gmail.com> Date: Mon, 22 Dec 2014 11:34:35 +0100 applied Troels unbuffer stdin patch, thanks 6ae3c37e30f024d27e5b759f58a96c0bac0c5254 2014-11-19T13:28:49Z 2014-11-19T13:28:49Z fix dist target, thanks Dimitris! Anselm R Garbe garbeam@gmail.com commit 6ae3c37e30f024d27e5b759f58a96c0bac0c5254 parent 6d4fd01fc10ab1196f6bdd52b39e4fd7214b56da Author: Anselm R Garbe <garbeam@gmail.com> Date: Wed, 19 Nov 2014 14:28:49 +0100 fix dist target, thanks Dimitris! 6d4fd01fc10ab1196f6bdd52b39e4fd7214b56da 2014-11-14T15:07:17Z 2014-11-14T15:07:17Z missed to remove old .hgtags Anselm R Garbe garbeam@gmail.com commit 6d4fd01fc10ab1196f6bdd52b39e4fd7214b56da parent 6703fe45923e62fdad4ebdcc25c7df7dddbe1db8 Author: Anselm R Garbe <garbeam@gmail.com> Date: Fri, 14 Nov 2014 16:07:17 +0100 missed to remove old .hgtags 6703fe45923e62fdad4ebdcc25c7df7dddbe1db8 2014-11-14T15:06:28Z 2014-11-14T15:06:28Z applied 3 additional patches by Dimitris Anselm R Garbe garbeam@gmail.com commit 6703fe45923e62fdad4ebdcc25c7df7dddbe1db8 parent 5eaa0fff0d2d5c4b3f875add16894d53a7da9c45 Author: Anselm R Garbe <garbeam@gmail.com> Date: Fri, 14 Nov 2014 16:06:28 +0100 applied 3 additional patches by Dimitris 5eaa0fff0d2d5c4b3f875add16894d53a7da9c45 2014-11-12T10:18:50Z 2014-11-12T10:18:50Z applied Eric's follow up patch Anselm R Garbe garbeam@gmail.com commit 5eaa0fff0d2d5c4b3f875add16894d53a7da9c45 parent f87d3f5bef896bc066d46170b6e124d2a2239fba Author: Anselm R Garbe <garbeam@gmail.com> Date: Wed, 12 Nov 2014 11:18:50 +0100 applied Eric's follow up patch f87d3f5bef896bc066d46170b6e124d2a2239fba 2014-11-02T08:23:48Z 2014-11-02T08:23:48Z applied Eric's config.def.h patch Anselm R Garbe garbeam@gmail.com commit f87d3f5bef896bc066d46170b6e124d2a2239fba parent 7cfa52d6eb11bd1c14e626806cce56c3faeadf26 Author: Anselm R Garbe <garbeam@gmail.com> Date: Sun, 2 Nov 2014 09:23:48 +0100 applied Eric's config.def.h patch 7cfa52d6eb11bd1c14e626806cce56c3faeadf26 2013-08-02T20:45:08Z 2013-08-02T20:45:08Z version bump Anselm R Garbe anselm@garbe.us commit 7cfa52d6eb11bd1c14e626806cce56c3faeadf26 parent 16c1c2df60735bf2ea3e9f5f1c6a3a1e0dd9f7f3 Author: Anselm R Garbe <anselm@garbe.us> Date: Fri, 2 Aug 2013 22:45:08 +0200 version bump 16c1c2df60735bf2ea3e9f5f1c6a3a1e0dd9f7f3 2013-08-02T20:20:48Z 2013-08-02T20:20:48Z fixed a silly bug, reported by several people, including Mark Edgar Anselm R Garbe anselm@garbe.us commit 16c1c2df60735bf2ea3e9f5f1c6a3a1e0dd9f7f3 parent fe525b32095b1575ddccda34658881262d4c9a1b Author: Anselm R Garbe <anselm@garbe.us> Date: Fri, 2 Aug 2013 22:20:48 +0200 fixed a silly bug, reported by several people, including Mark Edgar fe525b32095b1575ddccda34658881262d4c9a1b 2013-05-05T15:42:52Z 2013-05-05T15:42:52Z prepared a new release Anselm R Garbe anselm@garbe.us commit fe525b32095b1575ddccda34658881262d4c9a1b parent a28f8b49c83f20586f67722ef745e96470f1ffeb Author: Anselm R Garbe <anselm@garbe.us> Date: Sun, 5 May 2013 17:42:52 +0200 prepared a new release a28f8b49c83f20586f67722ef745e96470f1ffeb 2012-04-19T23:15:32Z 2012-04-19T23:15:32Z a few corrections to manpage Connor Lane Smith cls@lubutu.com commit a28f8b49c83f20586f67722ef745e96470f1ffeb parent bade9ccb6cc6e1e4969644ca8d96ad9c32de23f4 Author: Connor Lane Smith <cls@lubutu.com> Date: Fri, 20 Apr 2012 00:15:32 +0100 a few corrections to manpage bade9ccb6cc6e1e4969644ca8d96ad9c32de23f4 2012-02-05T15:47:38Z 2012-02-05T15:47:38Z reversed the -u switch anselm@garbe.us unknown commit bade9ccb6cc6e1e4969644ca8d96ad9c32de23f4 parent 2831ca36c3b6f8987e6cd188db44e451b4661862 Author: anselm@garbe.us <unknown> Date: Sun, 5 Feb 2012 16:47:38 +0100 reversed the -u switch 2831ca36c3b6f8987e6cd188db44e451b4661862 2012-01-22T17:27:17Z 2012-01-22T17:27:17Z applied Quentin Carbonneaux's user patch garbeam@gmail.com unknown commit 2831ca36c3b6f8987e6cd188db44e451b4661862 parent 3b5d848cd40c3ae8d7ac351f0c023217afa25e9e Author: garbeam@gmail.com <unknown> Date: Sun, 22 Jan 2012 18:27:17 +0100 applied Quentin Carbonneaux's user patch 3b5d848cd40c3ae8d7ac351f0c023217afa25e9e 2011-04-08T12:51:16Z 2011-04-08T12:51:16Z applied Jeroen's manpage patch, thanks! Anselm R Garbe anselm@garbe.us commit 3b5d848cd40c3ae8d7ac351f0c023217afa25e9e parent efb5435694d27b897ffb97f3bf4984488893bf80 Author: Anselm R Garbe <anselm@garbe.us> Date: Fri, 8 Apr 2011 12:51:16 +0000 applied Jeroen's manpage patch, thanks! efb5435694d27b897ffb97f3bf4984488893bf80 2011-03-06T07:37:21Z 2011-03-06T07:37:21Z applied Dimitris patches, thanks Anselm R Garbe anselm@garbe.us commit efb5435694d27b897ffb97f3bf4984488893bf80 parent fdaf2adbc98db2979e68fbb653620a974c338d0a Author: Anselm R Garbe <anselm@garbe.us> Date: Sun, 6 Mar 2011 07:37:21 +0000 applied Dimitris patches, thanks fdaf2adbc98db2979e68fbb653620a974c338d0a 2010-08-06T08:52:12Z 2010-08-06T08:52:12Z fixed issue reported by serge on irc, util.c was excluded in dist target anselm@garbe.us unknown commit fdaf2adbc98db2979e68fbb653620a974c338d0a parent a4ba8e3b08cff1046e87c59ad688b8f7f6c42a41 Author: anselm@garbe.us <unknown> Date: Fri, 6 Aug 2010 09:52:12 +0100 fixed issue reported by serge on irc, util.c was excluded in dist target a4ba8e3b08cff1046e87c59ad688b8f7f6c42a41 2010-05-25T16:03:25Z 2010-05-25T16:03:25Z Added tag 1.1 for changeset d6140e3685b8 Kris Maglione maglione.k@gmail.com commit a4ba8e3b08cff1046e87c59ad688b8f7f6c42a41 parent 6af1b812ae862a64e0c92060b993b591a72d741e Author: Kris Maglione <maglione.k@gmail.com> Date: Tue, 25 May 2010 12:03:25 -0400 Added tag 1.1 for changeset d6140e3685b8 6af1b812ae862a64e0c92060b993b591a72d741e 2010-05-14T17:01:20Z 2010-05-14T17:01:20Z cleanup Anselm R Garbe anselm@garbe.us commit 6af1b812ae862a64e0c92060b993b591a72d741e parent 75d42255f22a40935ced8b2e4c134996f8efebe2 Author: Anselm R Garbe <anselm@garbe.us> Date: Fri, 14 May 2010 18:01:20 +0100 cleanup 75d42255f22a40935ced8b2e4c134996f8efebe2 2010-04-17T10:12:54Z 2010-04-17T10:12:54Z applied anonymous cleanup patch, thanks anonymous! Anselm R Garbe anselm@garbe.us commit 75d42255f22a40935ced8b2e4c134996f8efebe2 parent dad75aa6ba9f9b50b5f6c656929092aad0963462 Author: Anselm R Garbe <anselm@garbe.us> Date: Sat, 17 Apr 2010 11:12:54 +0100 applied anonymous cleanup patch, thanks anonymous! dad75aa6ba9f9b50b5f6c656929092aad0963462 2010-03-23T18:00:37Z 2010-03-23T18:00:37Z removed debug line Anselm R Garbe anselm@garbe.us commit dad75aa6ba9f9b50b5f6c656929092aad0963462 parent d78d10d1a17e24c3b9ee0a9892c84035a95c413d Author: Anselm R Garbe <anselm@garbe.us> Date: Tue, 23 Mar 2010 18:00:37 +0000 removed debug line d78d10d1a17e24c3b9ee0a9892c84035a95c413d 2010-03-22T13:29:33Z 2010-03-22T13:29:33Z bugfix anselm@garbe.us unknown commit d78d10d1a17e24c3b9ee0a9892c84035a95c413d parent 1a4256ef71ddba6c3cbb28861e0321184860653f Author: anselm@garbe.us <unknown> Date: Mon, 22 Mar 2010 13:29:33 +0000 bugfix 1a4256ef71ddba6c3cbb28861e0321184860653f 2009-11-28T12:16:35Z 2009-11-28T12:16:35Z merged kris' changes into mainstream sic Anselm R Garbe anselm@garbe.us commit 1a4256ef71ddba6c3cbb28861e0321184860653f parent 9c7027fcbf86f3082bf0609a7784cc6f6cfa87c7 Author: Anselm R Garbe <anselm@garbe.us> Date: Sat, 28 Nov 2009 12:16:35 +0000 merged kris' changes into mainstream sic 9c7027fcbf86f3082bf0609a7784cc6f6cfa87c7 2009-10-30T09:34:59Z 2009-10-30T09:34:59Z applied clamiax' patch for null messages Anselm R Garbe garbeam@gmail.com commit 9c7027fcbf86f3082bf0609a7784cc6f6cfa87c7 parent 7f1961d4c6c5e326fcb588785f1935e4176a2d01 Author: Anselm R Garbe <garbeam@gmail.com> Date: Fri, 30 Oct 2009 09:34:59 +0000 applied clamiax' patch for null messages 7f1961d4c6c5e326fcb588785f1935e4176a2d01 2009-09-23T16:52:13Z 2009-09-23T16:52:13Z Update sic/util.c to match sic.c tip. Kris Maglione jg@suckless.org commit 7f1961d4c6c5e326fcb588785f1935e4176a2d01 parent 2b853804113a01672790aed67cb372d35554b61e Author: Kris Maglione <jg@suckless.org> Date: Wed, 23 Sep 2009 12:52:13 -0400 Update sic/util.c to match sic.c tip. 2b853804113a01672790aed67cb372d35554b61e 2009-09-23T15:26:48Z 2009-09-23T15:26:48Z Update kris/util.c strlcpy Kris Maglione jg@suckless.org commit 2b853804113a01672790aed67cb372d35554b61e parent 14e430ac5b398e0c47f1d80f3c4f4b6386f545c2 Author: Kris Maglione <jg@suckless.org> Date: Wed, 23 Sep 2009 11:26:48 -0400 Update kris/util.c strlcpy 14e430ac5b398e0c47f1d80f3c4f4b6386f545c2 2009-09-23T13:32:20Z 2009-09-23T13:32:20Z added kris' sic.c and util.c temporarily, will need some time to see what will and won't be integrated into mainstream sic.c Anselm R Garbe garbeam@gmail.com commit 14e430ac5b398e0c47f1d80f3c4f4b6386f545c2 parent 261dc71e58261c801e2be4db413e30b066ecf68f Author: Anselm R Garbe <garbeam@gmail.com> Date: Wed, 23 Sep 2009 14:32:20 +0100 added kris' sic.c and util.c temporarily, will need some time to see what will and won't be integrated into mainstream sic.c 261dc71e58261c801e2be4db413e30b066ecf68f 2009-09-23T13:21:03Z 2009-09-23T13:21:03Z applied portions of Mark Edgars patch Anselm R Garbe garbeam@gmail.com commit 261dc71e58261c801e2be4db413e30b066ecf68f parent 4a4f924fee3f3779e5856eabaed7672ca8d92a77 Author: Anselm R Garbe <garbeam@gmail.com> Date: Wed, 23 Sep 2009 14:21:03 +0100 applied portions of Mark Edgars patch 4a4f924fee3f3779e5856eabaed7672ca8d92a77 2009-08-07T07:37:09Z 2009-08-07T07:37:09Z applied Martin Kopta's splint patch Anselm R Garbe garbeam@gmail.com commit 4a4f924fee3f3779e5856eabaed7672ca8d92a77 parent b3ed5f414fab000e509ae23094befddca2aa6137 Author: Anselm R Garbe <garbeam@gmail.com> Date: Fri, 7 Aug 2009 08:37:09 +0100 applied Martin Kopta's splint patch b3ed5f414fab000e509ae23094befddca2aa6137 2009-02-21T19:14:13Z 2009-02-21T19:14:13Z thanks to Matthias-Christian Ott for this hint Anselm R Garbe garbeam@gmail.com commit b3ed5f414fab000e509ae23094befddca2aa6137 parent ca6ba9a64a1332bf2bb4fac4b08030812dc3ff07 Author: Anselm R Garbe <garbeam@gmail.com> Date: Sat, 21 Feb 2009 19:14:13 +0000 thanks to Matthias-Christian Ott for this hint ca6ba9a64a1332bf2bb4fac4b08030812dc3ff07 2009-02-14T11:53:47Z 2009-02-14T11:53:47Z applied Jeroen Schot's patch a@null unknown commit ca6ba9a64a1332bf2bb4fac4b08030812dc3ff07 parent f3827eec2a299cb0a556f9db12206e97d0f6e390 Author: a@null <unknown> Date: Sat, 14 Feb 2009 11:53:47 +0000 applied Jeroen Schot's patch f3827eec2a299cb0a556f9db12206e97d0f6e390 2009-02-14T11:42:45Z 2009-02-14T11:42:45Z applied Matthias-Christian Ott's remark about trailing newlines a@null unknown commit f3827eec2a299cb0a556f9db12206e97d0f6e390 parent 8b2eeee541044627d2f3ccb0ad9275d92cb1e5fd Author: a@null <unknown> Date: Sat, 14 Feb 2009 11:42:45 +0000 applied Matthias-Christian Ott's remark about trailing newlines 8b2eeee541044627d2f3ccb0ad9275d92cb1e5fd 2008-07-29T18:22:08Z 2008-07-29T18:22:08Z Added tag 1.0 for changeset b8794f3ed15e Anselm R Garbe garbeam@gmail.com commit 8b2eeee541044627d2f3ccb0ad9275d92cb1e5fd parent 2a372e2df178fc6912a004591e5049ebadcf4afc Author: Anselm R Garbe <garbeam@gmail.com> Date: Tue, 29 Jul 2008 19:22:08 +0100 Added tag 1.0 for changeset b8794f3ed15e 2a372e2df178fc6912a004591e5049ebadcf4afc 2008-07-29T18:18:03Z 2008-07-29T18:18:03Z made Makefile consistent Anselm R Garbe garbeam@gmail.com commit 2a372e2df178fc6912a004591e5049ebadcf4afc parent 888ab2272511712707dc4f43f80f1264b784d555 Author: Anselm R Garbe <garbeam@gmail.com> Date: Tue, 29 Jul 2008 19:18:03 +0100 made Makefile consistent 888ab2272511712707dc4f43f80f1264b784d555 2008-07-29T18:11:07Z 2008-07-29T18:11:07Z updated LICENSE Anselm R Garbe garbeam@gmail.com commit 888ab2272511712707dc4f43f80f1264b784d555 parent 8a58b25cb7f239efa2f3df7c8aa088030f12aeda Author: Anselm R Garbe <garbeam@gmail.com> Date: Tue, 29 Jul 2008 19:11:07 +0100 updated LICENSE 8a58b25cb7f239efa2f3df7c8aa088030f12aeda 2008-07-06T12:29:19Z 2008-07-06T12:29:19Z updated sic anselm@aab unknown commit 8a58b25cb7f239efa2f3df7c8aa088030f12aeda parent 589cce35c508fad53a7948472a33897fda0facdc Author: anselm@aab <unknown> Date: Sun, 6 Jul 2008 13:29:19 +0100 updated sic 589cce35c508fad53a7948472a33897fda0facdc 2008-07-02T20:29:57Z 2008-07-02T20:29:57Z minor update Anselm R Garbe garbeam@gmail.com commit 589cce35c508fad53a7948472a33897fda0facdc parent 5463bed7ed159472862f8e3dfd92d50195b03ee8 Author: Anselm R Garbe <garbeam@gmail.com> Date: Wed, 2 Jul 2008 21:29:57 +0100 minor update 5463bed7ed159472862f8e3dfd92d50195b03ee8 2007-04-13T09:50:51Z 2007-04-13T09:50:51Z updating copyright notice in sic as well Anselm R. Garbe arg@suckless.org commit 5463bed7ed159472862f8e3dfd92d50195b03ee8 parent aa40ba1f3d3ce43264d6d4138c27ac4eaf410407 Author: Anselm R. Garbe <arg@suckless.org> Date: Fri, 13 Apr 2007 11:50:51 +0200 updating copyright notice in sic as well aa40ba1f3d3ce43264d6d4138c27ac4eaf410407 2007-02-21T10:00:12Z 2007-02-21T10:00:12Z applied a fix inspired by recent wmii commit Anselm R. Garbe arg@suckless.org commit aa40ba1f3d3ce43264d6d4138c27ac4eaf410407 parent ef99e720ffec7570261170b4858253249b91f6f9 Author: Anselm R. Garbe <arg@suckless.org> Date: Wed, 21 Feb 2007 11:00:12 +0100 applied a fix inspired by recent wmii commit ef99e720ffec7570261170b4858253249b91f6f9 2007-02-14T09:05:41Z 2007-02-14T09:05:41Z removed LD as well, this is misleading Anselm R. Garbe arg@suckless.org commit ef99e720ffec7570261170b4858253249b91f6f9 parent f9f6f8a19c035803b04d857807895b91d44c9e84 Author: Anselm R. Garbe <arg@suckless.org> Date: Wed, 14 Feb 2007 10:05:41 +0100 removed LD as well, this is misleading f9f6f8a19c035803b04d857807895b91d44c9e84 2007-02-13T16:02:42Z 2007-02-13T16:02:42Z Added tag 0.9 for changeset 96eb1bfede5b Anselm R. Garbe arg@suckless.org commit f9f6f8a19c035803b04d857807895b91d44c9e84 parent 82946e102dd8ca48b8a8df710c20bef94c649af0 Author: Anselm R. Garbe <arg@suckless.org> Date: Tue, 13 Feb 2007 17:02:42 +0100 Added tag 0.9 for changeset 96eb1bfede5b 82946e102dd8ca48b8a8df710c20bef94c649af0 2007-02-13T15:14:52Z 2007-02-13T15:14:52Z setting the topic must not be supported, its a trivial IRC command (*and rarely used btw*) Anselm R. Garbe arg@suckless.org commit 82946e102dd8ca48b8a8df710c20bef94c649af0 parent 7ef7529687d3e15aee3fe7fb6e6dceb3027ffd92 Author: Anselm R. Garbe <arg@suckless.org> Date: Tue, 13 Feb 2007 16:14:52 +0100 setting the topic must not be supported, its a trivial IRC command (*and rarely used btw*) 7ef7529687d3e15aee3fe7fb6e6dceb3027ffd92 2007-02-13T15:06:28Z 2007-02-13T15:06:28Z I believe I have fixed the issue, why sic didn't handled PINGs correctly arg@suckless.org unknown commit 7ef7529687d3e15aee3fe7fb6e6dceb3027ffd92 parent bcda402396cb7691e60a2be01c5ba067f9fb27ee Author: arg@suckless.org <unknown> Date: Tue, 13 Feb 2007 16:06:28 +0100 I believe I have fixed the issue, why sic didn't handled PINGs correctly bcda402396cb7691e60a2be01c5ba067f9fb27ee 2007-02-09T16:07:29Z 2007-02-09T16:07:29Z fixed sic man page Anselm R. Garbe arg@suckless.org commit bcda402396cb7691e60a2be01c5ba067f9fb27ee parent 1160be7ffa49eaa0f15b549c5da005d80fe4c126 Author: Anselm R. Garbe <arg@suckless.org> Date: Fri, 9 Feb 2007 17:07:29 +0100 fixed sic man page 1160be7ffa49eaa0f15b549c5da005d80fe4c126 2007-02-09T15:16:06Z 2007-02-09T15:16:06Z removed fullname, added support for tracking NICK changes Anselm R. Garbe arg@suckless.org commit 1160be7ffa49eaa0f15b549c5da005d80fe4c126 parent 75f0af7c42c1ccdf5bb87975c4ed6f52cd937f94 Author: Anselm R. Garbe <arg@suckless.org> Date: Fri, 9 Feb 2007 16:16:06 +0100 removed fullname, added support for tracking NICK changes 75f0af7c42c1ccdf5bb87975c4ed6f52cd937f94 2007-02-09T15:04:49Z 2007-02-09T15:04:49Z added eprint() Anselm R. Garbe arg@suckless.org commit 75f0af7c42c1ccdf5bb87975c4ed6f52cd937f94 parent 81238e16fe3b79913730fb314cf9e590869b15ce Author: Anselm R. Garbe <arg@suckless.org> Date: Fri, 9 Feb 2007 16:04:49 +0100 added eprint() 81238e16fe3b79913730fb314cf9e590869b15ce 2007-02-09T14:40:58Z 2007-02-09T14:40:58Z consistency patch Anselm R. Garbe arg@suckless.org commit 81238e16fe3b79913730fb314cf9e590869b15ce parent 60fc462aa931748914c9c221f73505413933d4cc Author: Anselm R. Garbe <arg@suckless.org> Date: Fri, 9 Feb 2007 15:40:58 +0100 consistency patch 60fc462aa931748914c9c221f73505413933d4cc 2007-02-09T14:18:08Z 2007-02-09T14:18:08Z changing the special command operator Anselm R. Garbe arg@suckless.org commit 60fc462aa931748914c9c221f73505413933d4cc parent 9b093ac5c6e68935d7b941678159ed1e3218daa8 Author: Anselm R. Garbe <arg@suckless.org> Date: Fri, 9 Feb 2007 15:18:08 +0100 changing the special command operator 9b093ac5c6e68935d7b941678159ed1e3218daa8 2007-02-09T14:04:57Z 2007-02-09T14:04:57Z removed debug output Anselm R. Garbe arg@suckless.org commit 9b093ac5c6e68935d7b941678159ed1e3218daa8 parent 264f8e9422850a8e7a5bda01d1ca04e17f553164 Author: Anselm R. Garbe <arg@suckless.org> Date: Fri, 9 Feb 2007 15:04:57 +0100 removed debug output 264f8e9422850a8e7a5bda01d1ca04e17f553164 2007-02-09T14:02:56Z 2007-02-09T14:02:56Z changed output Anselm R. Garbe arg@suckless.org commit 264f8e9422850a8e7a5bda01d1ca04e17f553164 parent fe1e3560bedafa1d923bf34abb8f72aef2acb75f Author: Anselm R. Garbe <arg@suckless.org> Date: Fri, 9 Feb 2007 15:02:56 +0100 changed output fe1e3560bedafa1d923bf34abb8f72aef2acb75f 2007-02-09T13:42:40Z 2007-02-09T13:42:40Z small fix Anselm R. Garbe arg@suckless.org commit fe1e3560bedafa1d923bf34abb8f72aef2acb75f parent 1edd94af86c032d4a83e5e2778526e567c1c4715 Author: Anselm R. Garbe <arg@suckless.org> Date: Fri, 9 Feb 2007 14:42:40 +0100 small fix 1edd94af86c032d4a83e5e2778526e567c1c4715 2007-02-09T13:40:11Z 2007-02-09T13:40:11Z some changes Anselm R. Garbe arg@suckless.org commit 1edd94af86c032d4a83e5e2778526e567c1c4715 parent a3abf3b3ef581c415e4a29845453e49258faaada Author: Anselm R. Garbe <arg@suckless.org> Date: Fri, 9 Feb 2007 14:40:11 +0100 some changes a3abf3b3ef581c415e4a29845453e49258faaada 2007-02-08T19:42:29Z 2007-02-08T19:42:29Z Don't use sic's hg tip, it is broken atm... Anselm R. Garbe arg@suckless.org commit a3abf3b3ef581c415e4a29845453e49258faaada parent e3cbbe71c2694cac4c724d6b8b569836f6fa98ea Author: Anselm R. Garbe <arg@suckless.org> Date: Thu, 8 Feb 2007 20:42:29 +0100 Don't use sic's hg tip, it is broken atm... e3cbbe71c2694cac4c724d6b8b569836f6fa98ea 2007-02-08T14:32:51Z 2007-02-08T14:32:51Z adding debug support Anselm R. Garbe arg@suckless.org commit e3cbbe71c2694cac4c724d6b8b569836f6fa98ea parent 93842a5fe06992cb0738db02fe20f67d83f1849b Author: Anselm R. Garbe <arg@suckless.org> Date: Thu, 8 Feb 2007 15:32:51 +0100 adding debug support 93842a5fe06992cb0738db02fe20f67d83f1849b 2007-02-08T14:10:47Z 2007-02-08T14:10:47Z fixed part message Anselm R. Garbe arg@suckless.org commit 93842a5fe06992cb0738db02fe20f67d83f1849b parent 1f1228547cbfa796a84d8e461fff09ac8f50752d Author: Anselm R. Garbe <arg@suckless.org> Date: Thu, 8 Feb 2007 15:10:47 +0100 fixed part message 1f1228547cbfa796a84d8e461fff09ac8f50752d 2007-02-08T14:10:10Z 2007-02-08T14:10:10Z small fix Anselm R. Garbe arg@suckless.org commit 1f1228547cbfa796a84d8e461fff09ac8f50752d parent ea71b6e88e385304013567869de7dc626194eb90 Author: Anselm R. Garbe <arg@suckless.org> Date: Thu, 8 Feb 2007 15:10:10 +0100 small fix ea71b6e88e385304013567869de7dc626194eb90 2007-02-08T14:03:42Z 2007-02-08T14:03:42Z small fix, don't write message to server if channel is not given Anselm R. Garbe arg@suckless.org commit ea71b6e88e385304013567869de7dc626194eb90 parent cb68ce9e2c8406bd19fad4376dd024b623946d66 Author: Anselm R. Garbe <arg@suckless.org> Date: Thu, 8 Feb 2007 15:03:42 +0100 small fix, don't write message to server if channel is not given cb68ce9e2c8406bd19fad4376dd024b623946d66 2007-02-08T13:51:04Z 2007-02-08T13:51:04Z some more simplifications Anselm R. Garbe arg@suckless.org commit cb68ce9e2c8406bd19fad4376dd024b623946d66 parent 5569a14e8edbc4e8e219b28658c7194201ed0417 Author: Anselm R. Garbe <arg@suckless.org> Date: Thu, 8 Feb 2007 14:51:04 +0100 some more simplifications 5569a14e8edbc4e8e219b28658c7194201ed0417 2007-02-08T13:27:39Z 2007-02-08T13:27:39Z testing some simplifications Anselm R. Garbe arg@suckless.org commit 5569a14e8edbc4e8e219b28658c7194201ed0417 parent 2e945e48fb0af513654a3a5dab429c0f1eb13c66 Author: Anselm R. Garbe <arg@suckless.org> Date: Thu, 8 Feb 2007 14:27:39 +0100 testing some simplifications 2e945e48fb0af513654a3a5dab429c0f1eb13c66 2007-02-06T15:42:17Z 2007-02-06T15:42:17Z small changes, bigger simplifications are on its way Anselm R. Garbe arg@suckless.org commit 2e945e48fb0af513654a3a5dab429c0f1eb13c66 parent a63ccb46009bcc69c5b536d4588fb2e54ca4d8e7 Author: Anselm R. Garbe <arg@suckless.org> Date: Tue, 6 Feb 2007 16:42:17 +0100 small changes, bigger simplifications are on its way a63ccb46009bcc69c5b536d4588fb2e54ca4d8e7 2007-02-01T07:22:31Z 2007-02-01T07:22:31Z Added tag 0.8 for changeset 07fb3efaa2e9 Anselm R. Garbe arg@suckless.org commit a63ccb46009bcc69c5b536d4588fb2e54ca4d8e7 parent 0a903a0c79d47885d6ecdb492988a6372665f1cb Author: Anselm R. Garbe <arg@suckless.org> Date: Thu, 1 Feb 2007 08:22:31 +0100 Added tag 0.8 for changeset 07fb3efaa2e9 0a903a0c79d47885d6ecdb492988a6372665f1cb 2007-01-31T10:01:34Z 2007-01-31T10:01:34Z using Tcmd successors more carefully Anselm R. Garbe arg@suckless.org commit 0a903a0c79d47885d6ecdb492988a6372665f1cb parent 8edb0e23f4491a14a24883125a3a87b5392b56d1 Author: Anselm R. Garbe <arg@suckless.org> Date: Wed, 31 Jan 2007 11:01:34 +0100 using Tcmd successors more carefully 8edb0e23f4491a14a24883125a3a87b5392b56d1 2007-01-11T10:44:41Z 2007-01-11T10:44:41Z Added tag 0.7 for changeset 643a6e8b8634 Anselm R. Garbe arg@suckless.org commit 8edb0e23f4491a14a24883125a3a87b5392b56d1 parent 44e0417e14c2f0a59c8688cdaf6b7d485ff7bdea Author: Anselm R. Garbe <arg@suckless.org> Date: Thu, 11 Jan 2007 11:44:41 +0100 Added tag 0.7 for changeset 643a6e8b8634 44e0417e14c2f0a59c8688cdaf6b7d485ff7bdea 2007-01-11T10:35:02Z 2007-01-11T10:35:02Z applied some segfault patches of Adrien Krunch Kunysz (thanks to Adrien!) Anselm R. Garbe arg@suckless.org commit 44e0417e14c2f0a59c8688cdaf6b7d485ff7bdea parent 148029905b9d0a06333cb43834eb819385561ab5 Author: Anselm R. Garbe <arg@suckless.org> Date: Thu, 11 Jan 2007 11:35:02 +0100 applied some segfault patches of Adrien Krunch Kunysz (thanks to Adrien!) 148029905b9d0a06333cb43834eb819385561ab5 2006-12-14T15:52:12Z 2006-12-14T15:52:12Z V7 arg@mig29 unknown commit 148029905b9d0a06333cb43834eb819385561ab5 parent f8d2e7f2366f5f08f2fcbcc635f385e6a15aa25d Author: arg@mig29 <unknown> Date: Thu, 14 Dec 2006 16:52:12 +0100 V7 f8d2e7f2366f5f08f2fcbcc635f385e6a15aa25d 2006-11-26T14:53:33Z 2006-11-26T14:53:33Z fixed sizeof stuff arg@mig29 unknown commit f8d2e7f2366f5f08f2fcbcc635f385e6a15aa25d parent dc15c0d639693a25ec13bcd7b7f47a3b12266780 Author: arg@mig29 <unknown> Date: Sun, 26 Nov 2006 15:53:33 +0100 fixed sizeof stuff dc15c0d639693a25ec13bcd7b7f47a3b12266780 2006-11-09T16:38:01Z 2006-11-09T16:38:01Z Added tag 0.6 for changeset d7923d9e717c1c6f1ed3b17ec90bfdd7e7bfcca0 arg@mig29 unknown commit dc15c0d639693a25ec13bcd7b7f47a3b12266780 parent 73e181ce5bf93c857b843396efff154b02730f2d Author: arg@mig29 <unknown> Date: Thu, 9 Nov 2006 17:38:01 +0100 Added tag 0.6 for changeset d7923d9e717c1c6f1ed3b17ec90bfdd7e7bfcca0 73e181ce5bf93c857b843396efff154b02730f2d 2006-11-09T16:37:57Z 2006-11-09T16:37:57Z fixed a small grammar typo arg@mig29 unknown commit 73e181ce5bf93c857b843396efff154b02730f2d parent 9197fee8a9045b9555ffe12387524b2fc4a16805 Author: arg@mig29 <unknown> Date: Thu, 9 Nov 2006 17:37:57 +0100 fixed a small grammar typo 9197fee8a9045b9555ffe12387524b2fc4a16805 2006-11-03T13:32:05Z 2006-11-03T13:32:05Z new time info arg@mig29 unknown commit 9197fee8a9045b9555ffe12387524b2fc4a16805 parent 45ff5ccf31f27d61473e4811379c0d5319a25b20 Author: arg@mig29 <unknown> Date: Fri, 3 Nov 2006 14:32:05 +0100 new time info 45ff5ccf31f27d61473e4811379c0d5319a25b20 2006-10-26T10:16:42Z 2006-10-26T10:16:42Z Added tag 0.5 for changeset 70d49a37b35695f2f771bddaf309f05ea60af8bc arg@mig29 unknown commit 45ff5ccf31f27d61473e4811379c0d5319a25b20 parent fe306465d022f6565adf74924fa7367c949558f0 Author: arg@mig29 <unknown> Date: Thu, 26 Oct 2006 12:16:42 +0200 Added tag 0.5 for changeset 70d49a37b35695f2f771bddaf309f05ea60af8bc fe306465d022f6565adf74924fa7367c949558f0 2006-10-23T08:56:06Z 2006-10-23T08:56:06Z same problem in sic as in dmenu Anselm R. Garbe arg@suckless.org commit fe306465d022f6565adf74924fa7367c949558f0 parent 1f3f048ab768bc22f743c6b66b4a1039767eddd4 Author: Anselm R. Garbe <arg@suckless.org> Date: Mon, 23 Oct 2006 10:56:06 +0200 same problem in sic as in dmenu 1f3f048ab768bc22f743c6b66b4a1039767eddd4 2006-10-13T09:10:41Z 2006-10-13T09:10:41Z Added tag 0.4 for changeset a3549fb4c72ff0edb816c8c29be7ff289db5b003 Anselm R. Garbe arg@10kloc.org commit 1f3f048ab768bc22f743c6b66b4a1039767eddd4 parent 3160fd2bedd1ff19a72a25113d6b48bad30cdfff Author: Anselm R. Garbe <arg@10kloc.org> Date: Fri, 13 Oct 2006 11:10:41 +0200 Added tag 0.4 for changeset a3549fb4c72ff0edb816c8c29be7ff289db5b003 3160fd2bedd1ff19a72a25113d6b48bad30cdfff 2006-10-12T06:03:37Z 2006-10-12T06:03:37Z hotfix Anselm R. Garbe arg@10kloc.org commit 3160fd2bedd1ff19a72a25113d6b48bad30cdfff parent 560111d4ba0603fa8bfd2784980de421f97dd287 Author: Anselm R. Garbe <arg@10kloc.org> Date: Thu, 12 Oct 2006 08:03:37 +0200 hotfix 560111d4ba0603fa8bfd2784980de421f97dd287 2006-10-11T16:23:03Z 2006-10-11T16:23:03Z hotfix Anselm R. Garbe arg@10kloc.org commit 560111d4ba0603fa8bfd2784980de421f97dd287 parent 48fc6f1b10cd15aad621c8c0216864edf94f4300 Author: Anselm R. Garbe <arg@10kloc.org> Date: Wed, 11 Oct 2006 18:23:03 +0200 hotfix 48fc6f1b10cd15aad621c8c0216864edf94f4300 2006-10-09T16:01:26Z 2006-10-09T16:01:26Z removed useless crap Anselm R. Garbe arg@10kloc.org commit 48fc6f1b10cd15aad621c8c0216864edf94f4300 parent 4120182a4988a630aabf37355c3f59fb0ea785c2 Author: Anselm R. Garbe <arg@10kloc.org> Date: Mon, 9 Oct 2006 18:01:26 +0200 removed useless crap 4120182a4988a630aabf37355c3f59fb0ea785c2 2006-10-09T05:28:43Z 2006-10-09T05:28:43Z changed version Anselm R. Garbe arg@10kloc.org commit 4120182a4988a630aabf37355c3f59fb0ea785c2 parent 516c1cafaf1bf0165117caf47e987071c126d51c Author: Anselm R. Garbe <arg@10kloc.org> Date: Mon, 9 Oct 2006 07:28:43 +0200 changed version 516c1cafaf1bf0165117caf47e987071c126d51c 2006-10-09T05:26:24Z 2006-10-09T05:26:24Z fixed arg processing Anselm R. Garbe arg@10kloc.org commit 516c1cafaf1bf0165117caf47e987071c126d51c parent 3a24553892e2c680ebbf9ef2c4883691590a5fe5 Author: Anselm R. Garbe <arg@10kloc.org> Date: Mon, 9 Oct 2006 07:26:24 +0200 fixed arg processing 3a24553892e2c680ebbf9ef2c4883691590a5fe5 2006-10-09T05:20:07Z 2006-10-09T05:20:07Z code polishing, removed useless crap Anselm R. Garbe arg@10kloc.org commit 3a24553892e2c680ebbf9ef2c4883691590a5fe5 parent 83e05870ce5487d0621cdc948cd69234ca0ce9b1 Author: Anselm R. Garbe <arg@10kloc.org> Date: Mon, 9 Oct 2006 07:20:07 +0200 code polishing, removed useless crap 83e05870ce5487d0621cdc948cd69234ca0ce9b1 2006-09-26T15:52:37Z 2006-09-26T15:52:37Z small change to man page arg@zarathustra unknown commit 83e05870ce5487d0621cdc948cd69234ca0ce9b1 parent 089bad0eb0b823996c573764f7fe0bcb90ac5beb Author: arg@zarathustra <unknown> Date: Tue, 26 Sep 2006 17:52:37 +0200 small change to man page 089bad0eb0b823996c573764f7fe0bcb90ac5beb 2006-09-26T12:32:24Z 2006-09-26T12:32:24Z updated README arg@mmvi unknown commit 089bad0eb0b823996c573764f7fe0bcb90ac5beb parent 1ad63946224df48eb5832ec97cd5baac58f2d484 Author: arg@mmvi <unknown> Date: Tue, 26 Sep 2006 14:32:24 +0200 updated README 1ad63946224df48eb5832ec97cd5baac58f2d484 2006-09-26T12:27:34Z 2006-09-26T12:27:34Z Added tag 0.3 for changeset d77f00af559258679a0fad5d264685d663e6975a arg@mmvi unknown commit 1ad63946224df48eb5832ec97cd5baac58f2d484 parent 78e0c4f9ee1b689aff5b33c9aac1b86bf93ce6b3 Author: arg@mmvi <unknown> Date: Tue, 26 Sep 2006 14:27:34 +0200 Added tag 0.3 for changeset d77f00af559258679a0fad5d264685d663e6975a 78e0c4f9ee1b689aff5b33c9aac1b86bf93ce6b3 2006-09-26T12:27:31Z 2006-09-26T12:27:31Z new tag arg@mmvi unknown commit 78e0c4f9ee1b689aff5b33c9aac1b86bf93ce6b3 parent b3412f0a14d081f013d582f78e4d86a70ae82c27 Author: arg@mmvi <unknown> Date: Tue, 26 Sep 2006 14:27:31 +0200 new tag b3412f0a14d081f013d582f78e4d86a70ae82c27 2006-09-26T12:24:26Z 2006-09-26T12:24:26Z new stuff arg@wmii.de unknown commit b3412f0a14d081f013d582f78e4d86a70ae82c27 parent 1230561e3d0ff9de0ff1556a8bddafcb38e5017e Author: arg@wmii.de <unknown> Date: Tue, 26 Sep 2006 14:24:26 +0200 new stuff 1230561e3d0ff9de0ff1556a8bddafcb38e5017e 2006-09-26T12:14:48Z 2006-09-26T12:14:48Z Added tag 0.3 for changeset dc05747ec127039afaa350094add73d151d17b72 arg@mmvi unknown commit 1230561e3d0ff9de0ff1556a8bddafcb38e5017e parent b8950627a7289541be837438989db4409268b41e Author: arg@mmvi <unknown> Date: Tue, 26 Sep 2006 14:14:48 +0200 Added tag 0.3 for changeset dc05747ec127039afaa350094add73d151d17b72 b8950627a7289541be837438989db4409268b41e 2006-09-20T09:18:27Z 2006-09-20T09:18:27Z hotfix arg@wmii.de unknown commit b8950627a7289541be837438989db4409268b41e parent 5d19f0415e5e9412183d3e3468296e7bf193f071 Author: arg@wmii.de <unknown> Date: Wed, 20 Sep 2006 11:18:27 +0200 hotfix 5d19f0415e5e9412183d3e3468296e7bf193f071 2006-09-19T14:54:52Z 2006-09-19T14:54:52Z simplified sic arg@mmvi unknown commit 5d19f0415e5e9412183d3e3468296e7bf193f071 parent 2c257c70bc2529aafcc1116b4247ba214d70ff00 Author: arg@mmvi <unknown> Date: Tue, 19 Sep 2006 16:54:52 +0200 simplified sic 2c257c70bc2529aafcc1116b4247ba214d70ff00 2006-09-05T07:47:15Z 2006-09-05T07:47:15Z fixed several annoyances Anselm R. Garbe arg@10kloc.org commit 2c257c70bc2529aafcc1116b4247ba214d70ff00 parent fb185a5e18042d811990dcd5855b62e88d81a9d7 Author: Anselm R. Garbe <arg@10kloc.org> Date: Tue, 5 Sep 2006 09:47:15 +0200 fixed several annoyances fb185a5e18042d811990dcd5855b62e88d81a9d7 2006-09-05T05:32:24Z 2006-09-05T05:32:24Z removed html crap Anselm R. Garbe arg@10kloc.org commit fb185a5e18042d811990dcd5855b62e88d81a9d7 parent c9668b78f2c5f2a844afbebc46f2fb368fcac315 Author: Anselm R. Garbe <arg@10kloc.org> Date: Tue, 5 Sep 2006 07:32:24 +0200 removed html crap c9668b78f2c5f2a844afbebc46f2fb368fcac315 2006-09-05T05:31:46Z 2006-09-05T05:31:46Z preparing new sic version Anselm R. Garbe arg@10kloc.org commit c9668b78f2c5f2a844afbebc46f2fb368fcac315 parent c2fcf48e6d334234859c5e015ec6cc816bca451b Author: Anselm R. Garbe <arg@10kloc.org> Date: Tue, 5 Sep 2006 07:31:46 +0200 preparing new sic version c2fcf48e6d334234859c5e015ec6cc816bca451b 2006-09-04T06:54:14Z 2006-09-04T06:54:14Z applied Adriens patch Anselm R. Garbe arg@10kloc.org commit c2fcf48e6d334234859c5e015ec6cc816bca451b parent ee77b8efaef863413e87c2484021b0b1199b1eff Author: Anselm R. Garbe <arg@10kloc.org> Date: Mon, 4 Sep 2006 08:54:14 +0200 applied Adriens patch ee77b8efaef863413e87c2484021b0b1199b1eff 2006-07-21T19:12:33Z 2006-07-21T19:12:33Z Added tag 0.2 for changeset 56350a01f27753cfbdbb3dbc25f2a53dd4c2ac45 arg@10ksloc.org unknown commit ee77b8efaef863413e87c2484021b0b1199b1eff parent e9f9154ab78f612b21e325d37180d36452b52266 Author: arg@10ksloc.org <unknown> Date: Fri, 21 Jul 2006 21:12:33 +0200 Added tag 0.2 for changeset 56350a01f27753cfbdbb3dbc25f2a53dd4c2ac45 e9f9154ab78f612b21e325d37180d36452b52266 2006-07-21T19:12:29Z 2006-07-21T19:12:29Z made sic 0.2 arg@10ksloc.org unknown commit e9f9154ab78f612b21e325d37180d36452b52266 parent 9d87b90d50b8901d7a6bfe4b06b633a30fb9797f Author: arg@10ksloc.org <unknown> Date: Fri, 21 Jul 2006 21:12:29 +0200 made sic 0.2 9d87b90d50b8901d7a6bfe4b06b633a30fb9797f 2006-07-21T13:46:05Z 2006-07-21T13:46:05Z fixed fullname handling in login arg@10ksloc.org unknown commit 9d87b90d50b8901d7a6bfe4b06b633a30fb9797f parent 6255ad68d67f6409ba8ee3e794f1ccdfad7ed101 Author: arg@10ksloc.org <unknown> Date: Fri, 21 Jul 2006 15:46:05 +0200 fixed fullname handling in login