[Citadel Development] Re: Citadel commit log: revision 6632

2008-09-27 Thread dothebart
probably uncensored needs to be updatet with that.

[Citadel Development] Citadel commit log: revision 6633

2008-09-27 Thread dothebart
r6633 | dothebart | 2008-09-27 12:18:25 -0400 (Sat, 27 Sep 2008) | 3 lines Changed paths: M /trunk/webcit/html2html.c M /trunk/webcit/messages.c M /trunk/webcit/rss.c M /trunk/webcit/webcit.c M /trunk/webcit

[Citadel Development] Citadel commit log: revision 6634

2008-09-27 Thread dothebart
r6634 | dothebart | 2008-09-27 12:21:35 -0400 (Sat, 27 Sep 2008) | 2 lines Changed paths: M /trunk/webcit/html2html.c * free the StrBuf apropriate.

[Citadel Development] Re: inline images II

2008-09-27 Thread dothebart
Sam, two tiny points... don't free() strbufs directly, this will leak their dynamic buffer libcitadel.h is already included by webcit.h, so its not needed. its nice how strbuf compacts the code, right?

[Citadel Development] Citadel commit log: revision 6635

2008-09-28 Thread dothebart
r6635 | dothebart | 2008-09-28 08:17:30 -0400 (Sun, 28 Sep 2008) | 2 lines Changed paths: A /trunk/webcit/static/t/box_edituser_select.html A /trunk/webcit/static/t/edituser_add.html A /trunk/webcit/static/t

[Citadel Development] Citadel commit log: revision 6636

2008-09-28 Thread dothebart
r6636 | dothebart | 2008-09-28 17:23:10 -0400 (Sun, 28 Sep 2008) | 5 lines Changed paths: M /trunk/webcit/http_datestring.c M /trunk/webcit/notes.c A /trunk/webcit/static/t/userlist_detailview.html M /trunk/webcit

[Citadel Development] Re: Citadel commit log: revision 6628

2008-09-29 Thread dothebart
can you research from which BDB revision this call is available?

[Citadel Development] (no subject)

2008-09-29 Thread dothebart

[Citadel Development] Re: Citadel commit log: revision 6645

2008-10-01 Thread dothebart
did you know that theres web-developer or one of these other cool things arround as js library so you can use it in IE too?

[Citadel Development] Citadel commit log: revision 6646

2008-10-01 Thread dothebart
r6646 | dothebart | 2008-10-01 02:34:08 -0400 (Wed, 01 Oct 2008) | 2 lines Changed paths: M /trunk/webcit/siteconfig.c * SERV:CFG creates its context, it doesn't require it.

[Citadel Development] Citadel commit log: revision 6648

2008-10-01 Thread dothebart
r6648 | dothebart | 2008-10-01 15:48:50 -0400 (Wed, 01 Oct 2008) | 2 lines Changed paths: M /trunk/webcit/crypto.c M /trunk/webcit/webserver.c * sanitize crypto reading

[Citadel Development] Citadel commit log: revision 6649

2008-10-01 Thread dothebart
r6649 | dothebart | 2008-10-01 16:41:22 -0400 (Wed, 01 Oct 2008) | 2 lines Changed paths: M /trunk/webcit/http_datestring.c M /trunk/webcit/static/t/userlist_detailview.html M /trunk/webcit/useredit.c * fix times

[Citadel Development] Citadel commit log: revision 6650

2008-10-01 Thread dothebart
r6650 | dothebart | 2008-10-01 16:49:13 -0400 (Wed, 01 Oct 2008) | 2 lines Changed paths: M /trunk/webcit/useredit.c * just keep the time_t representation of dates

[Citadel Development] Re: RFC - composing inline messages and blog mode

2008-10-01 Thread dothebart
the cheapest trick i think would be to add the mime type in a new token in the option list; if the one active is of major type image/; enable a button 'insert image at cursor' done. though you've got problems in the preview here; cause during editing the messages images have to be displayed, and

[Citadel Development] Re: Peak memory usage

2008-10-02 Thread dothebart
2. and - maybe this will work- hope that memory mapped files aren't locked into ram, and so maybe I could wrangle citadel to allocate memory using mmap instead of brk and that might side-step the no-swap issue. Any advice for me? Sam i'd say if you find a good way to make strbuf use

[Citadel Development] (no subject)

2008-10-02 Thread dothebart
ah, using mkstemp() and some preconfigured path should be appropriate.

[Citadel Development] Citadel commit log: revision 6653

2008-10-03 Thread dothebart
r6653 | dothebart | 2008-10-03 05:50:12 -0400 (Fri, 03 Oct 2008) | 10 lines Changed paths: M /trunk/webcit/webcit.c samjam: adds 2 more url handlers for: * /webcit/postpart/N/name.jpg * /webcit/postpart_download/N

[Citadel Development] Re: Peak memory usage

2008-10-03 Thread dothebart
webcit has the concept of worker threads, much like apache. it increases / decreasess the pool on need. when a request comes in, the context_loop() parses it, and either goes to logon and creates a new wcsessios struct and puts it to the static list. The list is kept in global context, and is

[Citadel Development] (no subject)

2008-10-03 Thread dothebart
sam, I've added your tcpdump tool ot http://www.citadel.org/doku.php/faq:mastering_your_os:net_sniff do you know a smart way to linewrap some of that regexes? we need a bit shorer lines... btw, theres the citadel documentation room which contains the dokuwiki commits.

[Citadel Development] Re: working libical

2008-10-04 Thread dothebart
Sa Okt 04 2008 07:56:44 EDT von [EMAIL PROTECTED] Betreff: working libical checking for icalcomponent_as_ical_string_r in -lical... no Is there a libical should be using? Sam hm, this check searches for the SVN Head revision of libical; i thought IG made this an option so we're safe

[Citadel Development] Re: Peak memory usage

2008-10-04 Thread dothebart
Fr Okt 03 2008 16:14:35 EDT von [EMAIL PROTECTED] Betreff: Re: Peak memory usage Fri Oct 03 2008 05:00:41 EDT from [EMAIL PROTECTED] Subject: Re: Peak memory usage webcit has the concept of worker threads, much like apache. it increases / decreasess the pool on need. when a request

[Citadel Development] Re: Citadel commit log: revision 6661

2008-10-05 Thread dothebart
I'd say here we have to give some kudos to dave too; your cleaned up module interface made this contribution a lot easier.

[Citadel Development] Citadel commit log: revision 6665

2008-10-05 Thread dothebart
r6665 | dothebart | 2008-10-05 11:10:47 -0400 (Sun, 05 Oct 2008) | 4 lines Changed paths: M /trunk/citadel/configure.ac M /trunk/citadel/setup.c * configure zlib too, since libcitadel will link it for strbuf * shuffle

[Citadel Development] Citadel commit log: revision 6666

2008-10-05 Thread dothebart
r | dothebart | 2008-10-05 11:42:29 -0400 (Sun, 05 Oct 2008) | 4 lines Changed paths: M /trunk/libcitadel/bootstrap M /trunk/libcitadel/configure.in M /trunk/libcitadel/lib/libcitadel.h M /trunk/libcitadel/lib

[Citadel Development] Citadel commit log: revision 6667

2008-10-05 Thread dothebart
r6667 | dothebart | 2008-10-05 15:42:49 -0400 (Sun, 05 Oct 2008) | 2 lines Changed paths: M /trunk/webcit/configure.ac M /trunk/webcit/debian/rules * reorder zlib detection

[Citadel Development] (no subject)

2008-10-06 Thread dothebart

[Citadel Development] (no subject)

2008-10-06 Thread dothebart
hm, I think i've messed up zlib compression in webcit. It should have been fixed by the commits this weekends. though i'm doing more stuff, and couldn't test it thoroughly.

[Citadel Development] (no subject)

2008-10-06 Thread dothebart

[Citadel Development] (no subject)

2008-10-07 Thread dothebart
Di Okt 07 2008 09:44:51 EDT von [EMAIL PROTECTED] Mon Oct 06 2008 13:38:35 EDT from IGnatius T [EMAIL PROTECTED] We've got to do something about these blank messages. Any idea what's causing them? Can they be associated with any http requests at the time? My first guess is that

[Citadel Development] (no subject)

2008-10-07 Thread dothebart

[Citadel Development] Citadel commit log: revision 6670

2008-10-07 Thread dothebart
r6670 | dothebart | 2008-10-07 19:35:05 -0400 (Tue, 07 Oct 2008) | 2 lines Changed paths: A /trunk/webcit/static/t/aide_inet_clamav.html A /trunk/webcit/static/t/subject_inet_clamav.html * added Edwards files

[Citadel Development] Re: ClamAV virus scanner integration

2008-10-07 Thread dothebart
thats probably what you'd use a quarantaine folder for. Buf if you do this, you need to have a way to exclude worms from that.

[Citadel Development] (no subject)

2008-10-09 Thread dothebart
I'm now wondering if the new templating engine will allow for creating mobile friendly pages? in general, if matt's mobile detectors identify your useragent as a mobile one, tempates appended an _m.html are prefered over .html. i'm currently working on the message interface, I already

[Citadel Development] (no subject)

2008-10-11 Thread dothebart
hm, yes. in general sanitizing messages so they don't escape their frame is a good thing. on general topic, How'bout re-updating our queasy installs so people can test webcit, 'caus most probably our memory usage behaviours have changed fundamentaly; and we need to get to know whether it goes

[Citadel Development] Citadel commit log: revision 6679

2008-10-11 Thread dothebart
r6679 | dothebart | 2008-10-11 15:56:36 -0400 (Sat, 11 Oct 2008) | 2 lines Changed paths: M /trunk/webcit/static/t/tab_siteconfig_access.html * DTX: I found a bug in the template that you configure the 'Initial Access

[Citadel Development] (no subject)

2008-10-12 Thread dothebart
the biggest mistake in sieve is, that it just knows one active script. This made all script-editing helpers / automatons incompatible to each other by creating snippets they just can read by their comments... The second big mistake is, since allmost anybody is going to write scripts by hand,

[Citadel Development] Re: Citadel commit log: revision 6681

2008-10-14 Thread dothebart
hold on, this is giving conflicts where not needed...

[Citadel Development] Citadel commit log: revision 6685

2008-10-14 Thread dothebart
r6685 | dothebart | 2008-10-14 18:15:45 -0400 (Tue, 14 Oct 2008) | 2 lines Changed paths: M /trunk/libcitadel/lib/libcitadel.h M /trunk/libcitadel/lib/stringbuf.c * StrBufTrim; port of striplt to strbuf; since the rest

[Citadel Development] (no subject)

2008-10-15 Thread dothebart
I think we need to find out a more smart way to tell users they should configure their timezone... another aide post on startup if there is no timezone configured (or UTC?) ring the bell?

[Citadel Development] (no subject)

2008-10-15 Thread dothebart
hm, in spiegel.de there are umlauts in the RSS subjects, which make the headlines with umlauts get cut... The RSS reader needs to check whether it needs to QP encode subjects, and doesn't do that yet, right?

[Citadel Development] (no subject)

2008-10-15 Thread dothebart
samjam, a tiny note.. if you do if clauses, put the cheap conditions to the left, since the computer evaluates it left to right. Stuff like IsEmptyStr() is real cheap, while strcmp isn't.

[Citadel Development] (no subject)

2008-10-16 Thread dothebart
though its similar, it jamms indention, and harder to read I think. and, we're doing C over here for a reason, right? ;-) its one of those things I hate most about C++, that this abstraction stuff is more of hiding whats going on beyound the surface so you realy can't tell anymore whether a

[Citadel Development] Re: Webcit path for Sitewide/Access/HostAuth

2008-10-18 Thread dothebart
Sa Okt 18 2008 10:52:23 EDT von [EMAIL PROTECTED] Betreff: Webcit path for Sitewide/Access/HostAuth Just a little patch that makes the Enable host based authentication mode config option show the right value (its showing the inverted value now). hm, didn't I apply that with r6679 yet? it

[Citadel Development] RE: [PATCH] reading mime parts during compose

2008-10-18 Thread dothebart
Fr Okt 17 2008 13:41:26 EDT von [EMAIL PROTECTED] Betreff: RE: [PATCH] reading mime parts during compose Wouldn't the use of STRBUF break some cross compatibility? - - - good job; just a tiny note, since strbuf is ratehr new, some casts into const char* are there to get a

[Citadel Development] Citadel commit log: revision 6695

2008-10-18 Thread dothebart
r6695 | dothebart | 2008-10-18 14:29:22 -0400 (Sat, 18 Oct 2008) | 2 lines Changed paths: M /trunk/webcit/static/t/tab_siteconfig_access.html * directrix1: Enable host based authentication mode config option show

[Citadel Development] qp encoded attachment makes citserver eat cpu...

2008-10-20 Thread dothebart
Hm, this is real weird. Got a mail by a collegue, and citadel did weird things. He shouldn't send QP encoded binary stuff in the first place, but that shouldn't load my cpu... -rw-r--r-- 1 willi users 2,1M 20. Okt 11:03 ingo_tar_as_QP.txt .. the dump from CTRL+U in tbird... not that huge, ai?

[Citadel Development] (no subject)

2008-10-23 Thread dothebart
Do Okt 23 2008 07:28:52 EDT von [EMAIL PROTECTED] Thu Oct 23 2008 07:04:10 EDT from [EMAIL PROTECTED] In webcit cvs, on the Administrator Add, change, delete user accounts page, the Edit Address Book Entry button goes to the same screen as Edit configuration so it is not simply

[Citadel Development] (no subject)

2008-10-23 Thread dothebart
which doesn't solve the problem...

[Citadel Development] Citadel commit log: revision 6700

2008-10-23 Thread dothebart
r6700 | dothebart | 2008-10-23 17:18:59 -0400 (Thu, 23 Oct 2008) | 2 lines Changed paths: M /trunk/webcit/useredit.c * handle the two other cases of user modificaion.

[Citadel Development] Citadel commit log: revision 6701

2008-10-23 Thread dothebart
r6701 | dothebart | 2008-10-23 17:49:21 -0400 (Thu, 23 Oct 2008) | 2 lines Changed paths: M /trunk/webcit/gettext.c * fix browser LANG header evaluation; strbuf migration wasn't complete.

[Citadel Development] (no subject)

2008-10-26 Thread dothebart
sam, please note that i'm currently altering the messages.c, so the message browser contains no more inline html and uses the templates...

[Citadel Development] (no subject)

2008-10-28 Thread dothebart
I'd say doing OpenID was a good idea: http://www.techcrunch.com/2008/10/27/windows-live-adds-support-for-openid-call s-it-de-facto-login-standard/

[Citadel Development] Citadel commit log: revision 6703

2008-10-30 Thread dothebart
r6703 | dothebart | 2008-10-30 15:23:10 -0400 (Thu, 30 Oct 2008) | 2 lines Changed paths: M /trunk/webcit/inetconf.c * fix pre-conditions; since we load keep the config in the session, we don't need the context

[Citadel Development] Citadel commit log: revision 6708

2008-11-02 Thread dothebart
r6708 | dothebart | 2008-11-02 04:51:11 -0500 (Sun, 02 Nov 2008) | 3 lines Changed paths: M /trunk/webcit/Makefile.in M /trunk/webcit/auth.c M /trunk/webcit/calendar.c M /trunk/webcit/context_loop.c A /trunk

[Citadel Development] Re: Citadel commit log: revision 6708

2008-11-02 Thread dothebart
So Nov 02 2008 04:51:12 EST von dothebart in 00.Sent Items an room_citadel_development@uncensored.citadel.org Betreff: Citadel commit log: revision 6708 r6708 | dothebart | 2008-11-02 04:51:11 -0500 (Sun, 02 Nov

[Citadel Development] Citadel commit log: revision 6709

2008-11-02 Thread dothebart
r6709 | dothebart | 2008-11-02 18:12:59 -0500 (Sun, 02 Nov 2008) | 4 lines Changed paths: M /trunk/libcitadel/lib/hash.c M /trunk/libcitadel/lib/libcitadel.h M /trunk/libcitadel/lib/stringbuf.c * reference free

[Citadel Development] Re: Citadel commit log: revision 6710

2008-11-02 Thread dothebart
ok, plain mails are working again. We know how to handle multiple indents now in contrast to just 1 before.

[Citadel Development] undeliverable room bounces...

2008-11-03 Thread dothebart
since many of you might have become anoyed by bounces of the citadel support rooms if you post in it, i'd like to brainstorm about it, under which circumstances such users could be autoremoved, and who should be notified. Do we still know that we were sent to a mailinglist service abonnement,

[Citadel Development] Citadel commit log: revision 6712

2008-11-03 Thread dothebart
r6712 | dothebart | 2008-11-03 17:14:24 -0500 (Mon, 03 Nov 2008) | 4 lines Changed paths: M /trunk/webcit/decode.c M /trunk/webcit/messages.c M /trunk/webcit/serv_func.c M /trunk/webcit/webcit.h * remove

[Citadel Development] Citadel commit log: revision 6713

2008-11-03 Thread dothebart
r6713 | dothebart | 2008-11-03 18:20:50 -0500 (Mon, 03 Nov 2008) | 2 lines Changed paths: M /trunk/libcitadel/lib/libcitadel.h M /trunk/libcitadel/lib/stringbuf.c * if we decode a RFC 822 Message, output the charset we

[Citadel Development] Citadel commit log: revision 6721

2008-11-05 Thread dothebart
r6721 | dothebart | 2008-11-05 17:07:28 -0500 (Wed, 05 Nov 2008) | 4 lines Changed paths: M /trunk/webcit/html2html.c M /trunk/webcit/messages.c M /trunk/webcit/webserver.c * fix freeing.. well, most of it * fix

[Citadel Development] Re: Citadel commit log: revision 6718

2008-11-05 Thread dothebart
hm, sounds like a job for valgrind... regarding my stuff, its a little more unbroken, mostly still listing attachments are missing.

[Citadel Development] Citadel commit log: revision 6722

2008-11-05 Thread dothebart
r6722 | dothebart | 2008-11-05 18:51:17 -0500 (Wed, 05 Nov 2008) | 3 lines Changed paths: M /trunk/libcitadel/lib/stringbuf.c * detect the QP-coding type 'B' and 'Q' case insensitive * start detecting non-qp encoded

[Citadel Development] Citadel commit log: revision 6723

2008-11-05 Thread dothebart
r6723 | dothebart | 2008-11-05 18:51:50 -0500 (Wed, 05 Nov 2008) | 2 lines Changed paths: M /trunk/webcit/messages.c M /trunk/webcit/webcit.h * put the right pointer into the hash

[Citadel Development] Citadel commit log: revision 6724

2008-11-06 Thread dothebart
r6724 | dothebart | 2008-11-06 14:28:19 -0500 (Thu, 06 Nov 2008) | 2 lines Changed paths: M /trunk/webcit/inetconf.c M /trunk/webcit/messages.c M /trunk/webcit/netconf.c M /trunk/webcit/subst.c M /trunk/webcit

[Citadel Development] Citadel commit log: revision 6725

2008-11-06 Thread dothebart
r6725 | dothebart | 2008-11-06 16:12:25 -0500 (Thu, 06 Nov 2008) | 4 lines Changed paths: M /trunk/webcit/inetconf.c M /trunk/webcit/messages.c M /trunk/webcit/netconf.c M /trunk/webcit/preferences.c M /trunk

[Citadel Development] Re: Citadel commit log: revision 6725

2008-11-06 Thread dothebart
do we have a way to fork the CIA into background? It's locking my commit for quite a while now...

[Citadel Development] Citadel commit log: revision 6726

2008-11-06 Thread dothebart
r6726 | dothebart | 2008-11-06 19:10:48 -0500 (Thu, 06 Nov 2008) | 2 lines Changed paths: M /trunk/webcit/html2html.c * fix pointer magic

[Citadel Development] Citadel commit log: revision 6727

2008-11-07 Thread dothebart
r6727 | dothebart | 2008-11-07 15:57:16 -0500 (Fri, 07 Nov 2008) | 2 lines Changed paths: M /trunk/webcit/messages.c M /trunk/webcit/static/t/view_message.html A /trunk/webcit/static/t/view_message_list_attach.html

[Citadel Development] Citadel commit log: revision 6729

2008-11-08 Thread dothebart
r6729 | dothebart | 2008-11-08 18:17:37 -0500 (Sat, 08 Nov 2008) | 2 lines Changed paths: M /trunk/webcit/calendar.c M /trunk/webcit/messages.c M /trunk/webcit/static/t/view_message.html A /trunk/webcit/static/t

[Citadel Development] Citadel commit log: revision 6732

2008-11-09 Thread dothebart
r6732 | dothebart | 2008-11-09 07:22:05 -0500 (Sun, 09 Nov 2008) | 3 lines Changed paths: M /trunk/libcitadel/lib/stringbuf.c * fix (ab) qp decode test * don't choke on NULL once more

[Citadel Development] Citadel commit log: revision 6731

2008-11-09 Thread dothebart
r6731 | dothebart | 2008-11-09 05:16:12 -0500 (Sun, 09 Nov 2008) | 2 lines Changed paths: M /trunk/webcit/msg_renderers.c * don't choke on empty html messages

[Citadel Development] Re: Citadel commit log: revision 6730

2008-11-09 Thread dothebart
ok, scrolling that over and over started to anoy me badly. vcard stuff is now all moved to vcard_edit, all those tiny callback hooks to translate headers into the struct or put a part of the struct into the templates is moved to msg_renderers.c This has one obstacle: **you need to

[Citadel Development] Citadel commit log: revision 6733

2008-11-09 Thread dothebart
r6733 | dothebart | 2008-11-09 11:41:20 -0500 (Sun, 09 Nov 2008) | 2 lines Changed paths: M /trunk/webcit/wiki.c * correct function call for wiki mode too.

[Citadel Development] Citadel commit log: revision 6734

2008-11-09 Thread dothebart
r6734 | dothebart | 2008-11-09 19:21:19 -0500 (Sun, 09 Nov 2008) | 5 lines Changed paths: M /trunk/webcit/context_loop.c M /trunk/webcit/html2html.c M /trunk/webcit/messages.c M /trunk/webcit/msg_renderers.c M

[Citadel Development] Citadel commit log: revision 6738

2008-11-10 Thread dothebart
r6738 | dothebart | 2008-11-10 19:17:35 -0500 (Mon, 10 Nov 2008) | 2 lines Changed paths: M /trunk/webcit/messages.c M /trunk/webcit/msg_renderers.c M /trunk/webcit/static/t/view_message.html A /trunk/webcit

[Citadel Development] Re: Citadel commit log: revision 6738

2008-11-10 Thread dothebart
hm, it shows submessages now... but it will make a grey frame arround it.. any hints? my html'ish isn't that good :(

[Citadel Development] Citadel commit log: revision 6739

2008-11-11 Thread dothebart
r6739 | dothebart | 2008-11-11 17:17:33 -0500 (Tue, 11 Nov 2008) | 4 lines Changed paths: M /trunk/webcit/context_loop.c M /trunk/webcit/messages.c M /trunk/webcit/msg_renderers.c M /trunk/webcit/static/t

[Citadel Development] Re: Citadel commit log: revision 6739

2008-11-11 Thread dothebart
ok, everything is beautifull now, except that forwarded messages are displayed twice. getting closer.

[Citadel Development] Citadel commit log: revision 6740

2008-11-11 Thread dothebart
r6740 | dothebart | 2008-11-11 18:15:07 -0500 (Tue, 11 Nov 2008) | 3 lines Changed paths: M /trunk/webcit/msg_renderers.c * first trick to avoid double-rendering of mime-subparts

[Citadel Development] Re: Citadel commit log: revision 6739

2008-11-12 Thread dothebart
Mi Nov 12 2008 12:18:07 EST von IGnatius T [EMAIL PROTECTED] Betreff: Re: Citadel commit log: revision 6739 dothebart: I'm noticing that you used the short datetime in the message headers. It should be using the full datetime. hm, I don't think I did that myself in first place

[Citadel Development] (no subject)

2008-11-12 Thread dothebart
matt, could you please give print *Buf ?

[Citadel Development] (no subject)

2008-11-13 Thread dothebart
hm, ok, seems you have hit a bug whith the increase buffer routine. I'll have a closer look at it tonite.

[Citadel Development] (no subject)

2008-11-13 Thread dothebart

[Citadel Development] Citadel commit log: revision 6743

2008-11-13 Thread dothebart
r6743 | dothebart | 2008-11-13 14:22:50 -0500 (Thu, 13 Nov 2008) | 3 lines Changed paths: M /trunk/libcitadel/lib/libcitadel.h M /trunk/libcitadel/lib/stringbuf.c * add lowercase converter function * fix off by one

[Citadel Development] Re: Citadel commit log: revision 6743

2008-11-13 Thread dothebart
matt, that should fix it hopefully. though its not clear where it forgot that one byte...

[Citadel Development] Citadel commit log: revision 6744

2008-11-13 Thread dothebart
r6744 | dothebart | 2008-11-14 02:50:30 -0500 (Fri, 14 Nov 2008) | 2 lines Changed paths: M /trunk/libcitadel/lib/stringbuf.c * another try to fix this off by one

[Citadel Development] Citadel commit log: revision 6745

2008-11-15 Thread dothebart
r6745 | dothebart | 2008-11-15 08:09:57 -0500 (Sat, 15 Nov 2008) | 3 lines Changed paths: M /trunk/webcit/context_loop.c M /trunk/webcit/messages.c M /trunk/webcit/msg_renderers.c M /trunk/webcit/static/t

[Citadel Development] Re: Citadel commit log: revision 6745

2008-11-15 Thread dothebart
now i'm satisfied with message displaying. please report messages that don't display well for you. either copy them over here into the trashcan, attach them as dump from tbird CTRL+U (ah, and don't forget a make clean please)

[Citadel Development] Citadel commit log: revision 6747

2008-11-19 Thread dothebart
r6747 | dothebart | 2008-11-19 17:20:57 -0500 (Wed, 19 Nov 2008) | 9 lines Changed paths: M /trunk/webcit/serv_func.c M /trunk/webcit/static/t/head.m.html M /trunk/webcit/static/t/msgcontrols.m.html M /trunk

[Citadel Development] Re: Citadel commit log: revision 6747

2008-11-19 Thread dothebart
well... start out with some tiny stuff, find s.th. more to improve, struggle over not yet exposed errors in the templating... verbose logging showing more errorrs... fix them... And, i'd like to depricate svput() and friends, since they're not as fast as globaly registered replacers, and

[Citadel Development] Citadel commit log: revision 6749

2008-11-19 Thread dothebart
r6749 | dothebart | 2008-11-19 19:16:01 -0500 (Wed, 19 Nov 2008) | 3 lines Changed paths: M /trunk/webcit/html2html.c M /trunk/webcit/messages.c M /trunk/webcit/msg_renderers.c M /trunk/webcit/static/t

[Citadel Development] Citadel commit log: revision 6752

2008-11-20 Thread dothebart
r6752 | dothebart | 2008-11-20 18:36:39 -0500 (Thu, 20 Nov 2008) | 2 lines Changed paths: M /trunk/libcitadel/lib/libcitadel.h M /trunk/libcitadel/lib/stringbuf.c * make it const baby... not yet done.

[Citadel Development] Re: Citadel commit log: revision 6750

2008-11-20 Thread dothebart
ah, was this related to the partial fetch stuff? no connection to that sieve fix? right?

[Citadel Development] Re: Citadel commit log: revision 6750

2008-11-20 Thread dothebart
0:50 from dothebart Re: Citadel commit log: revision 6750 ah, was this related to the partial fetch stuff? no connection to that sieve fix? right? hm. s.th. seems to be missing in the new editor... why did that go to the lobby?

[Citadel Development] Citadel commit log: revision 6756

2008-11-23 Thread dothebart
r6756 | dothebart | 2008-11-23 13:22:20 -0500 (Sun, 23 Nov 2008) | 5 lines Changed paths: M /trunk/webcit/context_loop.c M /trunk/webcit/preferences.c M /trunk/webcit/static/t/beginbox.html M /trunk/webcit/static

[Citadel Development] Citadel commit log: revision 6757

2008-11-23 Thread dothebart
r6757 | dothebart | 2008-11-23 18:21:18 -0500 (Sun, 23 Nov 2008) | 5 lines Changed paths: M /trunk/webcit/auth.c M /trunk/webcit/graphics.c M /trunk/webcit/inetconf.c M /trunk/webcit/listsub.c M /trunk/webcit

[Citadel Development] Citadel commit log: revision 6757

2008-11-23 Thread dothebart
from now on you can make the choice which of your quadzillion aliases webcit should give you as default value. depending on whether you're positng local or sending a clasic email to the outside Name or handle will be used.

[Citadel Development] Citadel commit log: revision 6757

2008-11-23 Thread dothebart
hm, if one doesn't kill the debugger inbetween, the room to be postet to is the right one ;) should we put the roomname into the query strings in the reply to buttons too? just for stability?

[Citadel Development] Citadel commit log: revision 6758

2008-11-23 Thread dothebart
r6758 | dothebart | 2008-11-23 19:11:49 -0500 (Sun, 23 Nov 2008) | 2 lines Changed paths: M /trunk/webcit/roomops.c M /trunk/webcit/static/t/edit_message.html * escape roomname properly

<    1   2   3   4   5   6   7   8   9   10   >