sic, branch HEADsimple irc client
058547e707e961e0cb7f8af4877f1b92f4c6d8882021-05-06T10:18:21Z2021-05-06T10:20:30Zutil: trim() fix for UB on pointer arithmeticHiltjo Posthumahiltjo@codemadness.orgcommit 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>
68c1c4e5110ed6a30cd3da0ae0c2ab0753e02cbb2021-05-05T23:42:38Z2021-05-05T23:47:08ZREADME: fix a minor typo and make a small rewordingHiltjo Posthumahiltjo@codemadness.orgcommit 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
f2c5daa9fe8ee9da89b9596c2b316ba7f9bd64a72021-05-05T23:39:46Z2021-05-05T23:45:51ZMakefile improvementsHiltjo Posthumahiltjo@codemadness.orgcommit 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.
81533f966ec31049c6159eac482bb821cb1e54ef2021-05-05T23:16:13Z2021-05-05T23:16:13Zutil: dial: no need for a static struct hintsHiltjo Posthumahiltjo@codemadness.orgcommit 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
b188c784329baf8479f30f06c61c12226d7971152021-05-05T23:14:21Z2021-05-05T23:14:21Zutil: fix a shadowed variable name `srv`Hiltjo Posthumahiltjo@codemadness.orgcommit 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`
d9bda20849c464eff0adb56414da1840abc6ef6a2021-05-05T23:09:21Z2021-05-05T23:09:21Zfix undefined behaviour of using isspace ctype functionHiltjo Posthumahiltjo@codemadness.orgcommit 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.
df4c0611366bf361fa263fbc57009cbe684568552021-05-05T23:04:35Z2021-05-05T23:04:35Zfix an out-of-bounds read if the input is ""Hiltjo Posthumahiltjo@codemadness.orgcommit 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!
ec293427a0cc2ef7f561a60347ce940d567efb722020-10-11T12:51:35Z2020-10-11T12:51:35Zfix include: include sys/select.h for select(2) and FD_(ZERO|SET)Hiltjo Posthumahiltjo@codemadness.orgcommit 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!
9bb34de449c8f22d869a6f3794107ed25d37c7c12017-03-18T18:24:55Z2017-03-18T18:24:55Zadded Joerg Jung's pledge patchAnselm R Garbegarbeam@gmail.comcommit 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
7f0141bbe92dc6c3423ff39d21e8ec5c18b58ec12014-12-22T10:34:35Z2014-12-22T10:34:35Zapplied Troels unbuffer stdin patch, thanksAnselm R Garbegarbeam@gmail.comcommit 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
6ae3c37e30f024d27e5b759f58a96c0bac0c52542014-11-19T13:28:49Z2014-11-19T13:28:49Zfix dist target, thanks Dimitris!Anselm R Garbegarbeam@gmail.comcommit 6ae3c37e30f024d27e5b759f58a96c0bac0c5254
parent 6d4fd01fc10ab1196f6bdd52b39e4fd7214b56da
Author: Anselm R Garbe <garbeam@gmail.com>
Date: Wed, 19 Nov 2014 14:28:49 +0100
fix dist target, thanks Dimitris!
6d4fd01fc10ab1196f6bdd52b39e4fd7214b56da2014-11-14T15:07:17Z2014-11-14T15:07:17Zmissed to remove old .hgtagsAnselm R Garbegarbeam@gmail.comcommit 6d4fd01fc10ab1196f6bdd52b39e4fd7214b56da
parent 6703fe45923e62fdad4ebdcc25c7df7dddbe1db8
Author: Anselm R Garbe <garbeam@gmail.com>
Date: Fri, 14 Nov 2014 16:07:17 +0100
missed to remove old .hgtags
6703fe45923e62fdad4ebdcc25c7df7dddbe1db82014-11-14T15:06:28Z2014-11-14T15:06:28Zapplied 3 additional patches by DimitrisAnselm R Garbegarbeam@gmail.comcommit 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
5eaa0fff0d2d5c4b3f875add16894d53a7da9c452014-11-12T10:18:50Z2014-11-12T10:18:50Zapplied Eric's follow up patchAnselm R Garbegarbeam@gmail.comcommit 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
f87d3f5bef896bc066d46170b6e124d2a2239fba2014-11-02T08:23:48Z2014-11-02T08:23:48Zapplied Eric's config.def.h patchAnselm R Garbegarbeam@gmail.comcommit 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
7cfa52d6eb11bd1c14e626806cce56c3faeadf262013-08-02T20:45:08Z2013-08-02T20:45:08Zversion bumpAnselm R Garbeanselm@garbe.uscommit 7cfa52d6eb11bd1c14e626806cce56c3faeadf26
parent 16c1c2df60735bf2ea3e9f5f1c6a3a1e0dd9f7f3
Author: Anselm R Garbe <anselm@garbe.us>
Date: Fri, 2 Aug 2013 22:45:08 +0200
version bump
16c1c2df60735bf2ea3e9f5f1c6a3a1e0dd9f7f32013-08-02T20:20:48Z2013-08-02T20:20:48Zfixed a silly bug, reported by several people, including Mark EdgarAnselm R Garbeanselm@garbe.uscommit 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
fe525b32095b1575ddccda34658881262d4c9a1b2013-05-05T15:42:52Z2013-05-05T15:42:52Zprepared a new releaseAnselm R Garbeanselm@garbe.uscommit fe525b32095b1575ddccda34658881262d4c9a1b
parent a28f8b49c83f20586f67722ef745e96470f1ffeb
Author: Anselm R Garbe <anselm@garbe.us>
Date: Sun, 5 May 2013 17:42:52 +0200
prepared a new release
a28f8b49c83f20586f67722ef745e96470f1ffeb2012-04-19T23:15:32Z2012-04-19T23:15:32Za few corrections to manpageConnor Lane Smithcls@lubutu.comcommit a28f8b49c83f20586f67722ef745e96470f1ffeb
parent bade9ccb6cc6e1e4969644ca8d96ad9c32de23f4
Author: Connor Lane Smith <cls@lubutu.com>
Date: Fri, 20 Apr 2012 00:15:32 +0100
a few corrections to manpage
bade9ccb6cc6e1e4969644ca8d96ad9c32de23f42012-02-05T15:47:38Z2012-02-05T15:47:38Zreversed the -u switchanselm@garbe.usunknowncommit bade9ccb6cc6e1e4969644ca8d96ad9c32de23f4
parent 2831ca36c3b6f8987e6cd188db44e451b4661862
Author: anselm@garbe.us <unknown>
Date: Sun, 5 Feb 2012 16:47:38 +0100
reversed the -u switch
2831ca36c3b6f8987e6cd188db44e451b46618622012-01-22T17:27:17Z2012-01-22T17:27:17Zapplied Quentin Carbonneaux's user patchgarbeam@gmail.comunknowncommit 2831ca36c3b6f8987e6cd188db44e451b4661862
parent 3b5d848cd40c3ae8d7ac351f0c023217afa25e9e
Author: garbeam@gmail.com <unknown>
Date: Sun, 22 Jan 2012 18:27:17 +0100
applied Quentin Carbonneaux's user patch
3b5d848cd40c3ae8d7ac351f0c023217afa25e9e2011-04-08T12:51:16Z2011-04-08T12:51:16Zapplied Jeroen's manpage patch, thanks!Anselm R Garbeanselm@garbe.uscommit 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!
efb5435694d27b897ffb97f3bf4984488893bf802011-03-06T07:37:21Z2011-03-06T07:37:21Zapplied Dimitris patches, thanksAnselm R Garbeanselm@garbe.uscommit efb5435694d27b897ffb97f3bf4984488893bf80
parent fdaf2adbc98db2979e68fbb653620a974c338d0a
Author: Anselm R Garbe <anselm@garbe.us>
Date: Sun, 6 Mar 2011 07:37:21 +0000
applied Dimitris patches, thanks
fdaf2adbc98db2979e68fbb653620a974c338d0a2010-08-06T08:52:12Z2010-08-06T08:52:12Zfixed issue reported by serge on irc, util.c was excluded in dist targetanselm@garbe.usunknowncommit 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
a4ba8e3b08cff1046e87c59ad688b8f7f6c42a412010-05-25T16:03:25Z2010-05-25T16:03:25ZAdded tag 1.1 for changeset d6140e3685b8Kris Maglionemaglione.k@gmail.comcommit 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
6af1b812ae862a64e0c92060b993b591a72d741e2010-05-14T17:01:20Z2010-05-14T17:01:20ZcleanupAnselm R Garbeanselm@garbe.uscommit 6af1b812ae862a64e0c92060b993b591a72d741e
parent 75d42255f22a40935ced8b2e4c134996f8efebe2
Author: Anselm R Garbe <anselm@garbe.us>
Date: Fri, 14 May 2010 18:01:20 +0100
cleanup
75d42255f22a40935ced8b2e4c134996f8efebe22010-04-17T10:12:54Z2010-04-17T10:12:54Zapplied anonymous cleanup patch, thanks anonymous!Anselm R Garbeanselm@garbe.uscommit 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!
dad75aa6ba9f9b50b5f6c656929092aad09634622010-03-23T18:00:37Z2010-03-23T18:00:37Zremoved debug lineAnselm R Garbeanselm@garbe.uscommit dad75aa6ba9f9b50b5f6c656929092aad0963462
parent d78d10d1a17e24c3b9ee0a9892c84035a95c413d
Author: Anselm R Garbe <anselm@garbe.us>
Date: Tue, 23 Mar 2010 18:00:37 +0000
removed debug line
d78d10d1a17e24c3b9ee0a9892c84035a95c413d2010-03-22T13:29:33Z2010-03-22T13:29:33Zbugfixanselm@garbe.usunknowncommit d78d10d1a17e24c3b9ee0a9892c84035a95c413d
parent 1a4256ef71ddba6c3cbb28861e0321184860653f
Author: anselm@garbe.us <unknown>
Date: Mon, 22 Mar 2010 13:29:33 +0000
bugfix
1a4256ef71ddba6c3cbb28861e0321184860653f2009-11-28T12:16:35Z2009-11-28T12:16:35Zmerged kris' changes into mainstream sicAnselm R Garbeanselm@garbe.uscommit 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
9c7027fcbf86f3082bf0609a7784cc6f6cfa87c72009-10-30T09:34:59Z2009-10-30T09:34:59Zapplied clamiax' patch for null messagesAnselm R Garbegarbeam@gmail.comcommit 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
7f1961d4c6c5e326fcb588785f1935e4176a2d012009-09-23T16:52:13Z2009-09-23T16:52:13ZUpdate sic/util.c to match sic.c tip.Kris Maglionejg@suckless.orgcommit 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.
2b853804113a01672790aed67cb372d35554b61e2009-09-23T15:26:48Z2009-09-23T15:26:48ZUpdate kris/util.c strlcpyKris Maglionejg@suckless.orgcommit 2b853804113a01672790aed67cb372d35554b61e
parent 14e430ac5b398e0c47f1d80f3c4f4b6386f545c2
Author: Kris Maglione <jg@suckless.org>
Date: Wed, 23 Sep 2009 11:26:48 -0400
Update kris/util.c strlcpy
14e430ac5b398e0c47f1d80f3c4f4b6386f545c22009-09-23T13:32:20Z2009-09-23T13:32:20Zadded kris' sic.c and util.c temporarily, will need some time to see what will and won't be integrated into mainstream sic.cAnselm R Garbegarbeam@gmail.comcommit 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
261dc71e58261c801e2be4db413e30b066ecf68f2009-09-23T13:21:03Z2009-09-23T13:21:03Zapplied portions of Mark Edgars patchAnselm R Garbegarbeam@gmail.comcommit 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
4a4f924fee3f3779e5856eabaed7672ca8d92a772009-08-07T07:37:09Z2009-08-07T07:37:09Zapplied Martin Kopta's splint patchAnselm R Garbegarbeam@gmail.comcommit 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
b3ed5f414fab000e509ae23094befddca2aa61372009-02-21T19:14:13Z2009-02-21T19:14:13Zthanks to Matthias-Christian Ott for this hintAnselm R Garbegarbeam@gmail.comcommit 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
ca6ba9a64a1332bf2bb4fac4b08030812dc3ff072009-02-14T11:53:47Z2009-02-14T11:53:47Zapplied Jeroen Schot's patcha@nullunknowncommit ca6ba9a64a1332bf2bb4fac4b08030812dc3ff07
parent f3827eec2a299cb0a556f9db12206e97d0f6e390
Author: a@null <unknown>
Date: Sat, 14 Feb 2009 11:53:47 +0000
applied Jeroen Schot's patch
f3827eec2a299cb0a556f9db12206e97d0f6e3902009-02-14T11:42:45Z2009-02-14T11:42:45Zapplied Matthias-Christian Ott's remark about trailing newlinesa@nullunknowncommit 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
8b2eeee541044627d2f3ccb0ad9275d92cb1e5fd2008-07-29T18:22:08Z2008-07-29T18:22:08ZAdded tag 1.0 for changeset b8794f3ed15eAnselm R Garbegarbeam@gmail.comcommit 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
2a372e2df178fc6912a004591e5049ebadcf4afc2008-07-29T18:18:03Z2008-07-29T18:18:03Zmade Makefile consistentAnselm R Garbegarbeam@gmail.comcommit 2a372e2df178fc6912a004591e5049ebadcf4afc
parent 888ab2272511712707dc4f43f80f1264b784d555
Author: Anselm R Garbe <garbeam@gmail.com>
Date: Tue, 29 Jul 2008 19:18:03 +0100
made Makefile consistent
888ab2272511712707dc4f43f80f1264b784d5552008-07-29T18:11:07Z2008-07-29T18:11:07Zupdated LICENSEAnselm R Garbegarbeam@gmail.comcommit 888ab2272511712707dc4f43f80f1264b784d555
parent 8a58b25cb7f239efa2f3df7c8aa088030f12aeda
Author: Anselm R Garbe <garbeam@gmail.com>
Date: Tue, 29 Jul 2008 19:11:07 +0100
updated LICENSE
8a58b25cb7f239efa2f3df7c8aa088030f12aeda2008-07-06T12:29:19Z2008-07-06T12:29:19Zupdated sicanselm@aabunknowncommit 8a58b25cb7f239efa2f3df7c8aa088030f12aeda
parent 589cce35c508fad53a7948472a33897fda0facdc
Author: anselm@aab <unknown>
Date: Sun, 6 Jul 2008 13:29:19 +0100
updated sic
589cce35c508fad53a7948472a33897fda0facdc2008-07-02T20:29:57Z2008-07-02T20:29:57Zminor updateAnselm R Garbegarbeam@gmail.comcommit 589cce35c508fad53a7948472a33897fda0facdc
parent 5463bed7ed159472862f8e3dfd92d50195b03ee8
Author: Anselm R Garbe <garbeam@gmail.com>
Date: Wed, 2 Jul 2008 21:29:57 +0100
minor update
5463bed7ed159472862f8e3dfd92d50195b03ee82007-04-13T09:50:51Z2007-04-13T09:50:51Zupdating copyright notice in sic as wellAnselm R. Garbearg@suckless.orgcommit 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
aa40ba1f3d3ce43264d6d4138c27ac4eaf4104072007-02-21T10:00:12Z2007-02-21T10:00:12Zapplied a fix inspired by recent wmii commitAnselm R. Garbearg@suckless.orgcommit 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
ef99e720ffec7570261170b4858253249b91f6f92007-02-14T09:05:41Z2007-02-14T09:05:41Zremoved LD as well, this is misleadingAnselm R. Garbearg@suckless.orgcommit 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
f9f6f8a19c035803b04d857807895b91d44c9e842007-02-13T16:02:42Z2007-02-13T16:02:42ZAdded tag 0.9 for changeset 96eb1bfede5bAnselm R. Garbearg@suckless.orgcommit 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
82946e102dd8ca48b8a8df710c20bef94c649af02007-02-13T15:14:52Z2007-02-13T15:14:52Zsetting the topic must not be supported, its a trivial IRC command (*and rarely used btw*)Anselm R. Garbearg@suckless.orgcommit 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*)
7ef7529687d3e15aee3fe7fb6e6dceb3027ffd922007-02-13T15:06:28Z2007-02-13T15:06:28ZI believe I have fixed the issue, why sic didn't handled PINGs correctlyarg@suckless.orgunknowncommit 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
bcda402396cb7691e60a2be01c5ba067f9fb27ee2007-02-09T16:07:29Z2007-02-09T16:07:29Zfixed sic man pageAnselm R. Garbearg@suckless.orgcommit bcda402396cb7691e60a2be01c5ba067f9fb27ee
parent 1160be7ffa49eaa0f15b549c5da005d80fe4c126
Author: Anselm R. Garbe <arg@suckless.org>
Date: Fri, 9 Feb 2007 17:07:29 +0100
fixed sic man page
1160be7ffa49eaa0f15b549c5da005d80fe4c1262007-02-09T15:16:06Z2007-02-09T15:16:06Zremoved fullname, added support for tracking NICK changesAnselm R. Garbearg@suckless.orgcommit 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
75f0af7c42c1ccdf5bb87975c4ed6f52cd937f942007-02-09T15:04:49Z2007-02-09T15:04:49Zadded eprint()Anselm R. Garbearg@suckless.orgcommit 75f0af7c42c1ccdf5bb87975c4ed6f52cd937f94
parent 81238e16fe3b79913730fb314cf9e590869b15ce
Author: Anselm R. Garbe <arg@suckless.org>
Date: Fri, 9 Feb 2007 16:04:49 +0100
added eprint()
81238e16fe3b79913730fb314cf9e590869b15ce2007-02-09T14:40:58Z2007-02-09T14:40:58Zconsistency patchAnselm R. Garbearg@suckless.orgcommit 81238e16fe3b79913730fb314cf9e590869b15ce
parent 60fc462aa931748914c9c221f73505413933d4cc
Author: Anselm R. Garbe <arg@suckless.org>
Date: Fri, 9 Feb 2007 15:40:58 +0100
consistency patch
60fc462aa931748914c9c221f73505413933d4cc2007-02-09T14:18:08Z2007-02-09T14:18:08Zchanging the special command operatorAnselm R. Garbearg@suckless.orgcommit 60fc462aa931748914c9c221f73505413933d4cc
parent 9b093ac5c6e68935d7b941678159ed1e3218daa8
Author: Anselm R. Garbe <arg@suckless.org>
Date: Fri, 9 Feb 2007 15:18:08 +0100
changing the special command operator
9b093ac5c6e68935d7b941678159ed1e3218daa82007-02-09T14:04:57Z2007-02-09T14:04:57Zremoved debug outputAnselm R. Garbearg@suckless.orgcommit 9b093ac5c6e68935d7b941678159ed1e3218daa8
parent 264f8e9422850a8e7a5bda01d1ca04e17f553164
Author: Anselm R. Garbe <arg@suckless.org>
Date: Fri, 9 Feb 2007 15:04:57 +0100
removed debug output
264f8e9422850a8e7a5bda01d1ca04e17f5531642007-02-09T14:02:56Z2007-02-09T14:02:56Zchanged outputAnselm R. Garbearg@suckless.orgcommit 264f8e9422850a8e7a5bda01d1ca04e17f553164
parent fe1e3560bedafa1d923bf34abb8f72aef2acb75f
Author: Anselm R. Garbe <arg@suckless.org>
Date: Fri, 9 Feb 2007 15:02:56 +0100
changed output
fe1e3560bedafa1d923bf34abb8f72aef2acb75f2007-02-09T13:42:40Z2007-02-09T13:42:40Zsmall fixAnselm R. Garbearg@suckless.orgcommit fe1e3560bedafa1d923bf34abb8f72aef2acb75f
parent 1edd94af86c032d4a83e5e2778526e567c1c4715
Author: Anselm R. Garbe <arg@suckless.org>
Date: Fri, 9 Feb 2007 14:42:40 +0100
small fix
1edd94af86c032d4a83e5e2778526e567c1c47152007-02-09T13:40:11Z2007-02-09T13:40:11Zsome changesAnselm R. Garbearg@suckless.orgcommit 1edd94af86c032d4a83e5e2778526e567c1c4715
parent a3abf3b3ef581c415e4a29845453e49258faaada
Author: Anselm R. Garbe <arg@suckless.org>
Date: Fri, 9 Feb 2007 14:40:11 +0100
some changes
a3abf3b3ef581c415e4a29845453e49258faaada2007-02-08T19:42:29Z2007-02-08T19:42:29ZDon't use sic's hg tip, it is broken atm...Anselm R. Garbearg@suckless.orgcommit 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...
e3cbbe71c2694cac4c724d6b8b569836f6fa98ea2007-02-08T14:32:51Z2007-02-08T14:32:51Zadding debug supportAnselm R. Garbearg@suckless.orgcommit e3cbbe71c2694cac4c724d6b8b569836f6fa98ea
parent 93842a5fe06992cb0738db02fe20f67d83f1849b
Author: Anselm R. Garbe <arg@suckless.org>
Date: Thu, 8 Feb 2007 15:32:51 +0100
adding debug support
93842a5fe06992cb0738db02fe20f67d83f1849b2007-02-08T14:10:47Z2007-02-08T14:10:47Zfixed part messageAnselm R. Garbearg@suckless.orgcommit 93842a5fe06992cb0738db02fe20f67d83f1849b
parent 1f1228547cbfa796a84d8e461fff09ac8f50752d
Author: Anselm R. Garbe <arg@suckless.org>
Date: Thu, 8 Feb 2007 15:10:47 +0100
fixed part message
1f1228547cbfa796a84d8e461fff09ac8f50752d2007-02-08T14:10:10Z2007-02-08T14:10:10Zsmall fixAnselm R. Garbearg@suckless.orgcommit 1f1228547cbfa796a84d8e461fff09ac8f50752d
parent ea71b6e88e385304013567869de7dc626194eb90
Author: Anselm R. Garbe <arg@suckless.org>
Date: Thu, 8 Feb 2007 15:10:10 +0100
small fix
ea71b6e88e385304013567869de7dc626194eb902007-02-08T14:03:42Z2007-02-08T14:03:42Zsmall fix, don't write message to server if channel is not givenAnselm R. Garbearg@suckless.orgcommit 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
cb68ce9e2c8406bd19fad4376dd024b623946d662007-02-08T13:51:04Z2007-02-08T13:51:04Zsome more simplificationsAnselm R. Garbearg@suckless.orgcommit cb68ce9e2c8406bd19fad4376dd024b623946d66
parent 5569a14e8edbc4e8e219b28658c7194201ed0417
Author: Anselm R. Garbe <arg@suckless.org>
Date: Thu, 8 Feb 2007 14:51:04 +0100
some more simplifications
5569a14e8edbc4e8e219b28658c7194201ed04172007-02-08T13:27:39Z2007-02-08T13:27:39Ztesting some simplificationsAnselm R. Garbearg@suckless.orgcommit 5569a14e8edbc4e8e219b28658c7194201ed0417
parent 2e945e48fb0af513654a3a5dab429c0f1eb13c66
Author: Anselm R. Garbe <arg@suckless.org>
Date: Thu, 8 Feb 2007 14:27:39 +0100
testing some simplifications
2e945e48fb0af513654a3a5dab429c0f1eb13c662007-02-06T15:42:17Z2007-02-06T15:42:17Zsmall changes, bigger simplifications are on its wayAnselm R. Garbearg@suckless.orgcommit 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
a63ccb46009bcc69c5b536d4588fb2e54ca4d8e72007-02-01T07:22:31Z2007-02-01T07:22:31ZAdded tag 0.8 for changeset 07fb3efaa2e9Anselm R. Garbearg@suckless.orgcommit 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
0a903a0c79d47885d6ecdb492988a6372665f1cb2007-01-31T10:01:34Z2007-01-31T10:01:34Zusing Tcmd successors more carefullyAnselm R. Garbearg@suckless.orgcommit 0a903a0c79d47885d6ecdb492988a6372665f1cb
parent 8edb0e23f4491a14a24883125a3a87b5392b56d1
Author: Anselm R. Garbe <arg@suckless.org>
Date: Wed, 31 Jan 2007 11:01:34 +0100
using Tcmd successors more carefully
8edb0e23f4491a14a24883125a3a87b5392b56d12007-01-11T10:44:41Z2007-01-11T10:44:41ZAdded tag 0.7 for changeset 643a6e8b8634Anselm R. Garbearg@suckless.orgcommit 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
44e0417e14c2f0a59c8688cdaf6b7d485ff7bdea2007-01-11T10:35:02Z2007-01-11T10:35:02Zapplied some segfault patches of Adrien Krunch Kunysz (thanks to Adrien!)Anselm R. Garbearg@suckless.orgcommit 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!)
148029905b9d0a06333cb43834eb819385561ab52006-12-14T15:52:12Z2006-12-14T15:52:12ZV7arg@mig29unknowncommit 148029905b9d0a06333cb43834eb819385561ab5
parent f8d2e7f2366f5f08f2fcbcc635f385e6a15aa25d
Author: arg@mig29 <unknown>
Date: Thu, 14 Dec 2006 16:52:12 +0100
V7
f8d2e7f2366f5f08f2fcbcc635f385e6a15aa25d2006-11-26T14:53:33Z2006-11-26T14:53:33Zfixed sizeof stuffarg@mig29unknowncommit f8d2e7f2366f5f08f2fcbcc635f385e6a15aa25d
parent dc15c0d639693a25ec13bcd7b7f47a3b12266780
Author: arg@mig29 <unknown>
Date: Sun, 26 Nov 2006 15:53:33 +0100
fixed sizeof stuff
dc15c0d639693a25ec13bcd7b7f47a3b122667802006-11-09T16:38:01Z2006-11-09T16:38:01ZAdded tag 0.6 for changeset d7923d9e717c1c6f1ed3b17ec90bfdd7e7bfcca0arg@mig29unknowncommit dc15c0d639693a25ec13bcd7b7f47a3b12266780
parent 73e181ce5bf93c857b843396efff154b02730f2d
Author: arg@mig29 <unknown>
Date: Thu, 9 Nov 2006 17:38:01 +0100
Added tag 0.6 for changeset d7923d9e717c1c6f1ed3b17ec90bfdd7e7bfcca0
73e181ce5bf93c857b843396efff154b02730f2d2006-11-09T16:37:57Z2006-11-09T16:37:57Zfixed a small grammar typoarg@mig29unknowncommit 73e181ce5bf93c857b843396efff154b02730f2d
parent 9197fee8a9045b9555ffe12387524b2fc4a16805
Author: arg@mig29 <unknown>
Date: Thu, 9 Nov 2006 17:37:57 +0100
fixed a small grammar typo
9197fee8a9045b9555ffe12387524b2fc4a168052006-11-03T13:32:05Z2006-11-03T13:32:05Znew time infoarg@mig29unknowncommit 9197fee8a9045b9555ffe12387524b2fc4a16805
parent 45ff5ccf31f27d61473e4811379c0d5319a25b20
Author: arg@mig29 <unknown>
Date: Fri, 3 Nov 2006 14:32:05 +0100
new time info
45ff5ccf31f27d61473e4811379c0d5319a25b202006-10-26T10:16:42Z2006-10-26T10:16:42ZAdded tag 0.5 for changeset 70d49a37b35695f2f771bddaf309f05ea60af8bcarg@mig29unknowncommit 45ff5ccf31f27d61473e4811379c0d5319a25b20
parent fe306465d022f6565adf74924fa7367c949558f0
Author: arg@mig29 <unknown>
Date: Thu, 26 Oct 2006 12:16:42 +0200
Added tag 0.5 for changeset 70d49a37b35695f2f771bddaf309f05ea60af8bc
fe306465d022f6565adf74924fa7367c949558f02006-10-23T08:56:06Z2006-10-23T08:56:06Zsame problem in sic as in dmenuAnselm R. Garbearg@suckless.orgcommit 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
1f3f048ab768bc22f743c6b66b4a1039767eddd42006-10-13T09:10:41Z2006-10-13T09:10:41ZAdded tag 0.4 for changeset a3549fb4c72ff0edb816c8c29be7ff289db5b003Anselm R. Garbearg@10kloc.orgcommit 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
3160fd2bedd1ff19a72a25113d6b48bad30cdfff2006-10-12T06:03:37Z2006-10-12T06:03:37ZhotfixAnselm R. Garbearg@10kloc.orgcommit 3160fd2bedd1ff19a72a25113d6b48bad30cdfff
parent 560111d4ba0603fa8bfd2784980de421f97dd287
Author: Anselm R. Garbe <arg@10kloc.org>
Date: Thu, 12 Oct 2006 08:03:37 +0200
hotfix
560111d4ba0603fa8bfd2784980de421f97dd2872006-10-11T16:23:03Z2006-10-11T16:23:03ZhotfixAnselm R. Garbearg@10kloc.orgcommit 560111d4ba0603fa8bfd2784980de421f97dd287
parent 48fc6f1b10cd15aad621c8c0216864edf94f4300
Author: Anselm R. Garbe <arg@10kloc.org>
Date: Wed, 11 Oct 2006 18:23:03 +0200
hotfix
48fc6f1b10cd15aad621c8c0216864edf94f43002006-10-09T16:01:26Z2006-10-09T16:01:26Zremoved useless crapAnselm R. Garbearg@10kloc.orgcommit 48fc6f1b10cd15aad621c8c0216864edf94f4300
parent 4120182a4988a630aabf37355c3f59fb0ea785c2
Author: Anselm R. Garbe <arg@10kloc.org>
Date: Mon, 9 Oct 2006 18:01:26 +0200
removed useless crap
4120182a4988a630aabf37355c3f59fb0ea785c22006-10-09T05:28:43Z2006-10-09T05:28:43Zchanged versionAnselm R. Garbearg@10kloc.orgcommit 4120182a4988a630aabf37355c3f59fb0ea785c2
parent 516c1cafaf1bf0165117caf47e987071c126d51c
Author: Anselm R. Garbe <arg@10kloc.org>
Date: Mon, 9 Oct 2006 07:28:43 +0200
changed version
516c1cafaf1bf0165117caf47e987071c126d51c2006-10-09T05:26:24Z2006-10-09T05:26:24Zfixed arg processingAnselm R. Garbearg@10kloc.orgcommit 516c1cafaf1bf0165117caf47e987071c126d51c
parent 3a24553892e2c680ebbf9ef2c4883691590a5fe5
Author: Anselm R. Garbe <arg@10kloc.org>
Date: Mon, 9 Oct 2006 07:26:24 +0200
fixed arg processing
3a24553892e2c680ebbf9ef2c4883691590a5fe52006-10-09T05:20:07Z2006-10-09T05:20:07Zcode polishing, removed useless crapAnselm R. Garbearg@10kloc.orgcommit 3a24553892e2c680ebbf9ef2c4883691590a5fe5
parent 83e05870ce5487d0621cdc948cd69234ca0ce9b1
Author: Anselm R. Garbe <arg@10kloc.org>
Date: Mon, 9 Oct 2006 07:20:07 +0200
code polishing, removed useless crap
83e05870ce5487d0621cdc948cd69234ca0ce9b12006-09-26T15:52:37Z2006-09-26T15:52:37Zsmall change to man pagearg@zarathustraunknowncommit 83e05870ce5487d0621cdc948cd69234ca0ce9b1
parent 089bad0eb0b823996c573764f7fe0bcb90ac5beb
Author: arg@zarathustra <unknown>
Date: Tue, 26 Sep 2006 17:52:37 +0200
small change to man page
089bad0eb0b823996c573764f7fe0bcb90ac5beb2006-09-26T12:32:24Z2006-09-26T12:32:24Zupdated READMEarg@mmviunknowncommit 089bad0eb0b823996c573764f7fe0bcb90ac5beb
parent 1ad63946224df48eb5832ec97cd5baac58f2d484
Author: arg@mmvi <unknown>
Date: Tue, 26 Sep 2006 14:32:24 +0200
updated README
1ad63946224df48eb5832ec97cd5baac58f2d4842006-09-26T12:27:34Z2006-09-26T12:27:34ZAdded tag 0.3 for changeset d77f00af559258679a0fad5d264685d663e6975aarg@mmviunknowncommit 1ad63946224df48eb5832ec97cd5baac58f2d484
parent 78e0c4f9ee1b689aff5b33c9aac1b86bf93ce6b3
Author: arg@mmvi <unknown>
Date: Tue, 26 Sep 2006 14:27:34 +0200
Added tag 0.3 for changeset d77f00af559258679a0fad5d264685d663e6975a
78e0c4f9ee1b689aff5b33c9aac1b86bf93ce6b32006-09-26T12:27:31Z2006-09-26T12:27:31Znew tagarg@mmviunknowncommit 78e0c4f9ee1b689aff5b33c9aac1b86bf93ce6b3
parent b3412f0a14d081f013d582f78e4d86a70ae82c27
Author: arg@mmvi <unknown>
Date: Tue, 26 Sep 2006 14:27:31 +0200
new tag
b3412f0a14d081f013d582f78e4d86a70ae82c272006-09-26T12:24:26Z2006-09-26T12:24:26Znew stuffarg@wmii.deunknowncommit b3412f0a14d081f013d582f78e4d86a70ae82c27
parent 1230561e3d0ff9de0ff1556a8bddafcb38e5017e
Author: arg@wmii.de <unknown>
Date: Tue, 26 Sep 2006 14:24:26 +0200
new stuff
1230561e3d0ff9de0ff1556a8bddafcb38e5017e2006-09-26T12:14:48Z2006-09-26T12:14:48ZAdded tag 0.3 for changeset dc05747ec127039afaa350094add73d151d17b72arg@mmviunknowncommit 1230561e3d0ff9de0ff1556a8bddafcb38e5017e
parent b8950627a7289541be837438989db4409268b41e
Author: arg@mmvi <unknown>
Date: Tue, 26 Sep 2006 14:14:48 +0200
Added tag 0.3 for changeset dc05747ec127039afaa350094add73d151d17b72
b8950627a7289541be837438989db4409268b41e2006-09-20T09:18:27Z2006-09-20T09:18:27Zhotfixarg@wmii.deunknowncommit b8950627a7289541be837438989db4409268b41e
parent 5d19f0415e5e9412183d3e3468296e7bf193f071
Author: arg@wmii.de <unknown>
Date: Wed, 20 Sep 2006 11:18:27 +0200
hotfix
5d19f0415e5e9412183d3e3468296e7bf193f0712006-09-19T14:54:52Z2006-09-19T14:54:52Zsimplified sicarg@mmviunknowncommit 5d19f0415e5e9412183d3e3468296e7bf193f071
parent 2c257c70bc2529aafcc1116b4247ba214d70ff00
Author: arg@mmvi <unknown>
Date: Tue, 19 Sep 2006 16:54:52 +0200
simplified sic
2c257c70bc2529aafcc1116b4247ba214d70ff002006-09-05T07:47:15Z2006-09-05T07:47:15Zfixed several annoyancesAnselm R. Garbearg@10kloc.orgcommit 2c257c70bc2529aafcc1116b4247ba214d70ff00
parent fb185a5e18042d811990dcd5855b62e88d81a9d7
Author: Anselm R. Garbe <arg@10kloc.org>
Date: Tue, 5 Sep 2006 09:47:15 +0200
fixed several annoyances
fb185a5e18042d811990dcd5855b62e88d81a9d72006-09-05T05:32:24Z2006-09-05T05:32:24Zremoved html crapAnselm R. Garbearg@10kloc.orgcommit fb185a5e18042d811990dcd5855b62e88d81a9d7
parent c9668b78f2c5f2a844afbebc46f2fb368fcac315
Author: Anselm R. Garbe <arg@10kloc.org>
Date: Tue, 5 Sep 2006 07:32:24 +0200
removed html crap
c9668b78f2c5f2a844afbebc46f2fb368fcac3152006-09-05T05:31:46Z2006-09-05T05:31:46Zpreparing new sic versionAnselm R. Garbearg@10kloc.orgcommit c9668b78f2c5f2a844afbebc46f2fb368fcac315
parent c2fcf48e6d334234859c5e015ec6cc816bca451b
Author: Anselm R. Garbe <arg@10kloc.org>
Date: Tue, 5 Sep 2006 07:31:46 +0200
preparing new sic version
c2fcf48e6d334234859c5e015ec6cc816bca451b2006-09-04T06:54:14Z2006-09-04T06:54:14Zapplied Adriens patchAnselm R. Garbearg@10kloc.orgcommit c2fcf48e6d334234859c5e015ec6cc816bca451b
parent ee77b8efaef863413e87c2484021b0b1199b1eff
Author: Anselm R. Garbe <arg@10kloc.org>
Date: Mon, 4 Sep 2006 08:54:14 +0200
applied Adriens patch
ee77b8efaef863413e87c2484021b0b1199b1eff2006-07-21T19:12:33Z2006-07-21T19:12:33ZAdded tag 0.2 for changeset 56350a01f27753cfbdbb3dbc25f2a53dd4c2ac45arg@10ksloc.orgunknowncommit ee77b8efaef863413e87c2484021b0b1199b1eff
parent e9f9154ab78f612b21e325d37180d36452b52266
Author: arg@10ksloc.org <unknown>
Date: Fri, 21 Jul 2006 21:12:33 +0200
Added tag 0.2 for changeset 56350a01f27753cfbdbb3dbc25f2a53dd4c2ac45
e9f9154ab78f612b21e325d37180d36452b522662006-07-21T19:12:29Z2006-07-21T19:12:29Zmade sic 0.2arg@10ksloc.orgunknowncommit e9f9154ab78f612b21e325d37180d36452b52266
parent 9d87b90d50b8901d7a6bfe4b06b633a30fb9797f
Author: arg@10ksloc.org <unknown>
Date: Fri, 21 Jul 2006 21:12:29 +0200
made sic 0.2
9d87b90d50b8901d7a6bfe4b06b633a30fb9797f2006-07-21T13:46:05Z2006-07-21T13:46:05Zfixed fullname handling in loginarg@10ksloc.orgunknowncommit 9d87b90d50b8901d7a6bfe4b06b633a30fb9797f
parent 6255ad68d67f6409ba8ee3e794f1ccdfad7ed101
Author: arg@10ksloc.org <unknown>
Date: Fri, 21 Jul 2006 15:46:05 +0200
fixed fullname handling in login