citadel.git
13 years agofix buffer overrun while converting charsets
Wilfried Goesgens [Wed, 10 Nov 2010 19:22:16 +0000 (20:22 +0100)]
fix buffer overrun while converting charsets

* DecodeSegment() didn't check whether one of the temporary buffers would be able to bear the transcoding results

13 years agomsgbuttons are now back to being ordinary links.
Art Cancro [Wed, 10 Nov 2010 05:04:45 +0000 (00:04 -0500)]
msgbuttons are now back to being ordinary links.
They're smaller this way, and they also don't misbehave
under Internet Exploder.

13 years agoUpdate translations to Launchpad R13
Wilfried Goesgens [Tue, 9 Nov 2010 21:59:46 +0000 (22:59 +0100)]
Update translations to Launchpad R13

13 years agocheck whether the sorting algorithm specified via BSTRs is intended for us before...
Wilfried Goesgens [Tue, 9 Nov 2010 00:29:50 +0000 (01:29 +0100)]
check whether the sorting algorithm specified via BSTRs is intended for us before using its groupchange detector.

13 years agoadd script to generate gcov/lcov output.
root [Mon, 8 Nov 2010 22:31:13 +0000 (23:31 +0100)]
add script to generate gcov/lcov output.

13 years agofix some incompletely transformed reply strings; thanks gcov & imaptest
Wilfried Goesgens [Mon, 8 Nov 2010 20:44:29 +0000 (21:44 +0100)]
fix some incompletely transformed reply strings; thanks gcov & imaptest

13 years agomore gcov files to ignore...
Wilfried Goesgens [Mon, 8 Nov 2010 20:43:19 +0000 (21:43 +0100)]
more gcov files to ignore...

13 years agoadd a way to configure code coverage
Wilfried Goesgens [Mon, 8 Nov 2010 20:40:53 +0000 (21:40 +0100)]
add a way to configure code coverage

13 years agoIgnore data files left behind by gcov
Wilfried Goesgens [Mon, 8 Nov 2010 20:38:31 +0000 (21:38 +0100)]
Ignore data files left behind by gcov

13 years agoRewrite IMAP-Module to buffer its output
Wilfried Goesgens [Sun, 7 Nov 2010 20:29:18 +0000 (21:29 +0100)]
Rewrite IMAP-Module to buffer its output

 - move defines from imap_tools.h into serv_imap.h
 - switch includes in sequence
 - we now have IMAP->Reply, which we write into, until IUnbuffer sends it to the client
 - IReply & IReplyPrintf do now send 'Params[0].Key BAD xxxxxx\r\n' to the client; this makes the code more compact.
 - IA* append stuff to the outbuffer that we want to send.
 - replace rumpelstilskin handler lookup by hashlist and central register calls.
 - replace if's in the sequence separating the handlers by their required pre-conditions by flags on the register call.

this should
 - (hopefully) fix some troubles with evolutions imap, which wouldn't like to read enough chunks until the line ends
 - speed up stuff like header fetching in huge lists, since we reduce the number of context switches here.

13 years agohave flexible timouts while reading lines in our client mode connections
Wilfried Goesgens [Sat, 6 Nov 2010 12:51:41 +0000 (13:51 +0100)]
have flexible timouts while reading lines in our client mode connections

since some mailserver take a little longer to finish reading mails we need to wait after we send our '.\r\n'; its 90 seconds now, all other parts will wait 5s, quit will wait 1 second.

13 years agoNonblocking sockets need to select while writing
Wilfried Goesgens [Sat, 6 Nov 2010 11:18:23 +0000 (12:18 +0100)]
Nonblocking sockets need to select while writing

 we changed the SMTP outbound connections to be nonblocking so we could abort on not reacting SMTP-Servers.
 thus we need to select before writing, else the connection will fail.

13 years agohandle errors during netedit:
Wilfried Goesgens [Thu, 4 Nov 2010 23:17:09 +0000 (00:17 +0100)]
handle errors during netedit:

 - put server errors into the ImportantMessage
 - use StrBuf
 - use GetServerStatus

13 years agoNew macro for putting a Citserver reply into important message: SRV_STATUS_MSG
Wilfried Goesgens [Thu, 4 Nov 2010 23:14:38 +0000 (00:14 +0100)]
New macro for putting a Citserver reply into important message: SRV_STATUS_MSG

Use it like that:
StrBuf_ServGetln(Line);
if  (GetServerStatus(Line, NULL) != 1) {
AppendImportantMessage(SRV_STATUS_MSG(Line));

13 years agoif we tell the client we're in error state, return.
Wilfried Goesgens [Thu, 4 Nov 2010 23:12:50 +0000 (00:12 +0100)]
if we tell the client we're in error state, return.

if SNET would fail to open the temporary file, it would tell the client 'error' and continue to read -> hang
we now abort after reporting the error.

13 years agodon't fetch a RSS before the network frequency is elapsed
Wilfried Goesgens [Thu, 4 Nov 2010 21:33:33 +0000 (22:33 +0100)]
don't fetch a RSS before the network frequency is elapsed

 currently the RSS-Thread is run over and over; we shouldn't stress our partrers to much, so we let the network poll frequency elaps before we try to poll the rss feed again.

13 years agofix crash in SSL BLOB-Reading
Wilfried Goesgens [Thu, 4 Nov 2010 19:28:27 +0000 (20:28 +0100)]
fix crash in SSL BLOB-Reading

 - when diciding whether the read buffer contains more than the blob reader wants we had a wrong equation.

13 years agomove old tokenizer over to the managesieve server; its only used there.
Wilfried Goesgens [Wed, 3 Nov 2010 20:47:55 +0000 (21:47 +0100)]
move old tokenizer over to the managesieve server; its only used there.

 - remove old_imap_tokenizer from imap_tools.h
 - move old_imap_tokenizer to modules/managesieve/serv_managesieve.c
 - move imap_tools.h to modules/imap; since its not needed globaly anymore.

13 years agoUps, its el_GR not el_EL
Wilfried Goesgens [Mon, 1 Nov 2010 23:03:41 +0000 (00:03 +0100)]
Ups, its el_GR not el_EL

13 years agoDo a more precise match to find out our UID
Wilfried Goesgens [Mon, 1 Nov 2010 22:38:07 +0000 (23:38 +0100)]
Do a more precise match to find out our UID

13 years agofix compilation
Wilfried Goesgens [Mon, 1 Nov 2010 22:24:54 +0000 (23:24 +0100)]
fix compilation

 - Makefile had a wrong include
 - msgfmt would abort on missing linebreaks

13 years agoCosmetic cleanup of previous two commits
Art Cancro [Mon, 1 Nov 2010 18:19:14 +0000 (14:19 -0400)]
Cosmetic cleanup of previous two commits

13 years agoFixed the viewdefs code to handle the fact that enum 9 is now
Art Cancro [Mon, 1 Nov 2010 18:10:07 +0000 (14:10 -0400)]
Fixed the viewdefs code to handle the fact that enum 9 is now
drafts and 10 is blogs.  This fixes the select-o-matic thing.

13 years agoviewdefs is now boolean
Art Cancro [Mon, 1 Nov 2010 17:23:03 +0000 (13:23 -0400)]
viewdefs is now boolean

13 years agoBlanks.
Wilfried Goesgens [Mon, 1 Nov 2010 10:48:23 +0000 (11:48 +0100)]
Blanks.

13 years agoBlanks are beautyfull.
Wilfried Goesgens [Mon, 1 Nov 2010 10:46:37 +0000 (11:46 +0100)]
Blanks are beautyfull.

13 years agoAdd more url-shorteners that showed up in my way.
Wilfried Goesgens [Mon, 1 Nov 2010 10:07:19 +0000 (11:07 +0100)]
Add more url-shorteners that showed up in my way.

13 years agoUpdate translation to Launchpad r7
Wilfried Goesgens [Mon, 1 Nov 2010 09:45:42 +0000 (10:45 +0100)]
Update translation to Launchpad r7

13 years agoFinalize fixing of netconfig loosing incident
Wilfried Goesgens [Mon, 1 Nov 2010 09:24:51 +0000 (10:24 +0100)]
Finalize fixing of netconfig loosing incident

 * need to set & check errno that tells us whether our tempfile was fresh created or already there
 * remove tmpfile on error
 * don't use fopen() because we can't specify the flags we need for that
 * ftruncate() the tempfile at the right place

13 years agoPrevent writing empty network configs Part II
Wilfried Goesgens [Sat, 30 Oct 2010 17:54:01 +0000 (19:54 +0200)]
Prevent writing empty network configs Part II
 * writenfree_spoolcontrol_file ()
   - serialise into a StrBuf
   - write that to a tempfile in the netconfig directory
   - if we fail, abort & log error
   - if we succed use rename () to replace the original config file.

13 years agoadd string representations of the RoomNetCfg as RoomNetCfgStr[maxRoomNetCfg]
Wilfried Goesgens [Sat, 30 Oct 2010 17:17:55 +0000 (19:17 +0200)]
add string representations of the RoomNetCfg as RoomNetCfgStr[maxRoomNetCfg]

13 years ago* cmd_snet: make shure the target FS has enough space for the new config
Wilfried Goesgens [Sat, 30 Oct 2010 16:44:15 +0000 (18:44 +0200)]
* cmd_snet: make shure the target FS has enough space for the new config

 - Create our own filename insteaf of using mk*tmp*; CC->cs_pid should be uniq.; we use  O_CREAT|O_EXCL so we're shure its ours or fails.
 - Create that filename in the same directory as the filal config filename; by that we can be shure its in the same filesystem, and if thats full, we will fail
 - Stat the original file for sise (if not there assume 80) and write twice as much into that file so we're next to shure the content from the client will fit in
 - the citadel protocol is a little st00pit here, we don't know the size in advance, and we can't return an error _after_ accepting the file
 - instead of moving the content of the tempfile into the final file, we use rename() which is supposed to be atomic.

13 years agoassoc_file_name(): return length of string
Wilfried Goesgens [Sat, 30 Oct 2010 16:43:20 +0000 (18:43 +0200)]
assoc_file_name(): return length of string

13 years agoTranslation update to Launchpad #6
Wilfried Goesgens [Sat, 30 Oct 2010 13:19:56 +0000 (15:19 +0200)]
Translation update to Launchpad #6

 - add Greek
 - add Svenska
 - sort locale list

13 years agoMoved the TinyMCE toolbar to the top of the editor window.
Art Cancro [Wed, 27 Oct 2010 19:03:06 +0000 (15:03 -0400)]
Moved the TinyMCE toolbar to the top of the editor window.

13 years agoAdded a little bit of clever JavaScript to make the TinyMCE window occupy
Art Cancro [Wed, 27 Oct 2010 18:53:46 +0000 (14:53 -0400)]
Added a little bit of clever JavaScript to make the TinyMCE window occupy
the full height of the browser window.

13 years agoUpgrade TinyMCE
Art Cancro [Wed, 27 Oct 2010 16:54:58 +0000 (12:54 -0400)]
Upgrade TinyMCE

13 years agoDon't output a space between imap namespaces
Art Cancro [Tue, 26 Oct 2010 22:51:36 +0000 (18:51 -0400)]
Don't output a space between imap namespaces
(patch suggested by samjam to fix javamail errors)

13 years agoMerge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel
Art Cancro [Tue, 26 Oct 2010 22:50:55 +0000 (18:50 -0400)]
Merge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel

13 years ago* blanks.
Wilfried Goesgens [Tue, 26 Oct 2010 22:51:19 +0000 (00:51 +0200)]
* blanks.

13 years ago* blanx
Wilfried Goesgens [Tue, 26 Oct 2010 22:47:20 +0000 (00:47 +0200)]
* blanx

13 years ago* blank.
Wilfried Goesgens [Tue, 26 Oct 2010 22:43:08 +0000 (00:43 +0200)]
* blank.

13 years agoblanx?
Wilfried Goesgens [Tue, 26 Oct 2010 22:41:41 +0000 (00:41 +0200)]
blanx?

13 years agoblahangkx
Wilfried Goesgens [Tue, 26 Oct 2010 22:39:53 +0000 (00:39 +0200)]
blahangkx

13 years ago* bllannnks.
Wilfried Goesgens [Tue, 26 Oct 2010 22:31:42 +0000 (00:31 +0200)]
* bllannnks.

13 years ago* Blanks!
Wilfried Goesgens [Tue, 26 Oct 2010 22:30:57 +0000 (00:30 +0200)]
* Blanks!

13 years ago* blanks???
Wilfried Goesgens [Tue, 26 Oct 2010 22:29:07 +0000 (00:29 +0200)]
* blanks???

13 years ago* blaahaaank
Wilfried Goesgens [Tue, 26 Oct 2010 22:13:49 +0000 (00:13 +0200)]
* blaahaaank

13 years ago* o noes blanks?
Wilfried Goesgens [Tue, 26 Oct 2010 22:07:08 +0000 (00:07 +0200)]
* o noes blanks?

13 years agooh, well, maybe a blank anyways here?
Wilfried Goesgens [Tue, 26 Oct 2010 22:03:57 +0000 (00:03 +0200)]
oh, well, maybe a blank anyways here?

13 years agoMerge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel
Art Cancro [Tue, 26 Oct 2010 21:40:48 +0000 (17:40 -0400)]
Merge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel

13 years ago* oh noes, thas blank wasn't that nice after all.
Wilfried Goesgens [Tue, 26 Oct 2010 21:25:26 +0000 (23:25 +0200)]
* oh noes, thas blank wasn't that nice after all.

13 years agoblanks? blanks anyone? they're nice.
Wilfried Goesgens [Tue, 26 Oct 2010 21:14:29 +0000 (23:14 +0200)]
blanks? blanks anyone? they're nice.

13 years ago* make it const, not written anyways
Wilfried Goesgens [Tue, 26 Oct 2010 21:06:20 +0000 (23:06 +0200)]
* make it const, not written anyways

13 years ago* sock_getln (): CtdlSockGetLine() gives us lines without \r\n, no need to look for...
Wilfried Goesgens [Tue, 26 Oct 2010 19:34:32 +0000 (21:34 +0200)]
* sock_getln (): CtdlSockGetLine() gives us lines without \r\n, no need to look for them again
* sock_getln_err (): add integer pointer returning the actual return state in case of error
* ml_sock_gets (): use sock_getln_err () so we can abort on impropper replies
* smtp_try (): make socket nonblocking, so we can abort on error
 -> we will wait 5 seconds for the remote site to send us the SMTP-State else we will abort the connection on failure.

13 years agoMerge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel
Art Cancro [Tue, 26 Oct 2010 04:20:30 +0000 (00:20 -0400)]
Merge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel

13 years agoNumerous style changes to the 'edit message' dialog. The save,
Art Cancro [Tue, 26 Oct 2010 04:17:37 +0000 (00:17 -0400)]
Numerous style changes to the 'edit message' dialog.  The save,
cancel, and address book buttons now occupy the navbar instead of
a bunch of controls that shouldn't have been there anyway.  I
also fixed a javascript bug that was making the addressbook popup
silently fail in the background if we were in a room that didn't
require message recipients.
The attachment dialog now sits above the message body pane, but
this will soon get migrated into the navbar as well (maybe another
popup).
Finally, the background of the message entry div now more or less
occupies the entire space available to it; this still needs more
tuning in order to make the editor occupy the correct amount of
space in the pane.

13 years ago* ParseMessageListHeaders_Detail(): don't overuse StrLength, we can know its result...
Wilfried Goesgens [Mon, 25 Oct 2010 21:01:08 +0000 (23:01 +0200)]
* ParseMessageListHeaders_Detail(): don't overuse StrLength, we can know its result from other calls, etc.

13 years ago* we already checked for '=' before, remove.
Wilfried Goesgens [Mon, 25 Oct 2010 20:00:43 +0000 (22:00 +0200)]
* we already checked for '=' before, remove.

13 years ago* use a lookup table to convert hex to char (like we already do vice versa) to be...
Wilfried Goesgens [Mon, 25 Oct 2010 19:48:53 +0000 (21:48 +0200)]
* use a lookup table to convert hex to char (like we already do vice versa) to be faster.
* don't use strcmp in CtdlDecodeQuotedPrintable

13 years agoMerge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel
Art Cancro [Mon, 25 Oct 2010 19:47:33 +0000 (15:47 -0400)]
Merge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel

13 years ago* ctype.h required for isdigit() and friends
Wilfried Goesgens [Mon, 25 Oct 2010 18:55:07 +0000 (20:55 +0200)]
* ctype.h required for isdigit() and friends

13 years ago* make the hash algorithm long, as hash now does
Wilfried Goesgens [Mon, 25 Oct 2010 18:54:25 +0000 (20:54 +0200)]
* make the hash algorithm long, as hash now does

13 years ago* don't free stacked pointers
Wilfried Goesgens [Mon, 25 Oct 2010 18:53:33 +0000 (20:53 +0200)]
* don't free stacked pointers

13 years agoMerge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel
Art Cancro [Mon, 25 Oct 2010 16:57:47 +0000 (12:57 -0400)]
Merge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel

13 years agoThe enter-message dialog is now contained by a div called '.entmsg'
Art Cancro [Mon, 25 Oct 2010 16:57:05 +0000 (12:57 -0400)]
The enter-message dialog is now contained by a div called '.entmsg'
instead of '.message' ... duplicated the existing styles for now.

13 years ago* add a way to pass the workbuffers into the RFC-822 decoder, so we don't need to...
Wilfried Goesgens [Mon, 25 Oct 2010 16:54:16 +0000 (18:54 +0200)]
* add a way to pass the workbuffers into the RFC-822 decoder, so we don't need to realloc it over and over
* add two temporary buffers to the WC Struct for that purpose
* add session logic to free them, and alloc them on need

13 years ago"Subject:" and "Subject (optional):" were in the wrong places.
Art Cancro [Mon, 25 Oct 2010 16:14:16 +0000 (12:14 -0400)]
"Subject:" and "Subject (optional):" were in the wrong places.
Swapped them to the correct places.

13 years agoCSS3 gradient fill in the banner background ftw!
Art Cancro [Mon, 25 Oct 2010 15:55:23 +0000 (11:55 -0400)]
CSS3 gradient fill in the banner background ftw!

13 years agoBlog rendering continued...
Art Cancro [Mon, 25 Oct 2010 15:47:47 +0000 (11:47 -0400)]
Blog rendering continued...

13 years ago* Use new MSet-Matcher to retrieve seen state (10% of what we do in big mboxes)
Wilfried Goesgens [Mon, 25 Oct 2010 14:58:01 +0000 (16:58 +0200)]
* Use new MSet-Matcher to retrieve seen state (10% of what we do in big mboxes)

13 years ago* need to revalidate start in any case to be exact.
Wilfried Goesgens [Mon, 25 Oct 2010 14:49:04 +0000 (16:49 +0200)]
* need to revalidate start in any case to be exact.

13 years ago* add a permutation to the hashlist one can store msets in
Wilfried Goesgens [Mon, 25 Oct 2010 14:10:25 +0000 (16:10 +0200)]
* add a permutation to the hashlist one can store msets in
 -> parse once, poll often quick.

13 years ago* bzr R2
Wilfried Goesgens [Mon, 25 Oct 2010 09:48:15 +0000 (11:48 +0200)]
* bzr R2

13 years ago* fix format string as launchpad told us.
Wilfried Goesgens [Sun, 24 Oct 2010 19:44:25 +0000 (21:44 +0200)]
* fix format string as launchpad told us.

13 years ago* fix quotation problem reported by launchpad (ups)
Wilfried Goesgens [Sun, 24 Oct 2010 17:40:18 +0000 (19:40 +0200)]
* fix quotation problem reported by launchpad (ups)

13 years ago* similarize to what launchpad has
Wilfried Goesgens [Sun, 24 Oct 2010 12:02:17 +0000 (14:02 +0200)]
* similarize to what launchpad has
* resolve some fuzzies by adding \n's

13 years ago* add the blanks etc. as launchpad corrected it
Wilfried Goesgens [Sun, 24 Oct 2010 11:17:44 +0000 (13:17 +0200)]
* add the blanks etc. as launchpad corrected it
* fix some strings marked as fuzzy because of the original was edited by applying these edits here too
* don't remove the fuzzy strings as launchpad sugests

13 years agoReplaced some of the 'autoconverted - document me' strings
Art Cancro [Sun, 24 Oct 2010 03:20:49 +0000 (23:20 -0400)]
Replaced some of the 'autoconverted - document me' strings

13 years ago* if we're shutting down instantly close our server file descriptions
Wilfried Goesgens [Fri, 22 Oct 2010 19:08:00 +0000 (21:08 +0200)]
* if we're shutting down instantly close our server file descriptions
* if we had problems shutting down because of client threads still blocked, close all sessions fd's so they come to an end.

13 years ago* start work on integrating dynamic vcard parsing and templates
Wilfried Goesgens [Fri, 22 Oct 2010 13:13:43 +0000 (15:13 +0200)]
* start work on integrating dynamic vcard parsing and templates

13 years ago* move around pots so launchpad likes us
Wilfried Goesgens [Thu, 21 Oct 2010 17:40:19 +0000 (19:40 +0200)]
* move around pots so launchpad likes us

13 years ago* add translations from launchpad
Wilfried Goesgens [Thu, 21 Oct 2010 17:16:39 +0000 (19:16 +0200)]
* add translations from launchpad

13 years agoMerge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel
Wilfried Goesgens [Thu, 21 Oct 2010 17:05:35 +0000 (19:05 +0200)]
Merge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel

13 years ago* move locations around as needed to do automatic syncing with launchpad.
Wilfried Goesgens [Thu, 21 Oct 2010 17:04:46 +0000 (19:04 +0200)]
* move locations around as needed to do automatic syncing with launchpad.

13 years ago* rename estonian translation as sugested by launchpad
Wilfried Goesgens [Thu, 21 Oct 2010 16:44:27 +0000 (18:44 +0200)]
* rename estonian translation as sugested by launchpad

13 years agoTemporary text renderer for blog view, displays posts and the comment count
Art Cancro [Tue, 19 Oct 2010 21:42:33 +0000 (17:42 -0400)]
Temporary text renderer for blog view, displays posts and the comment count

13 years agoAdded some comments to the code to jog my memory when I start to
Art Cancro [Tue, 19 Oct 2010 03:47:53 +0000 (23:47 -0400)]
Added some comments to the code to jog my memory when I start to
write the renderer.

13 years agoReworked the internal data model for the blog view.
Art Cancro [Tue, 19 Oct 2010 03:31:27 +0000 (23:31 -0400)]
Reworked the internal data model for the blog view.
It now uses a hash table for performance.

13 years ago* add VCard-Context
Wilfried Goesgens [Thu, 14 Oct 2010 21:12:00 +0000 (23:12 +0200)]
* add VCard-Context
* fix memleaks in parser.

13 years agoMerge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel
Art Cancro [Wed, 13 Oct 2010 22:35:36 +0000 (18:35 -0400)]
Merge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel

13 years agoAdded a FIXME
Art Cancro [Wed, 13 Oct 2010 22:35:29 +0000 (18:35 -0400)]
Added a FIXME

13 years ago* vCtdlLogPrintf(): combine the server data plus the application format string into...
Wilfried Goesgens [Wed, 13 Oct 2010 19:51:27 +0000 (21:51 +0200)]
* vCtdlLogPrintf(): combine the server data plus the application format string into a new format string we then process with va_args.
 -> still no strbuf needed
 -> no problems with race conditions causing clashes between several lines

13 years ago* Rewrote vCtdlLogPrintf() to NOT use any buffers at all, only v*printf() type functi...
Art Cancro [Fri, 23 Jul 2010 20:23:18 +0000 (20:23 +0000)]
* Rewrote vCtdlLogPrintf() to NOT use any buffers at all, only v*printf() type functions.  We do this by writing the log data and metadata in separate calls.  In practice, this will cause them to appear on the same line even when other threads are concurrently writing because we are using buffered I/O.  Unfortunately, this does NOT fix the server crash that occurs when saving instant message transcripts to disk.  It points us in the right direction, though.

13 years ago* list of shorter url services.
Wilfried Goesgens [Wed, 13 Oct 2010 19:57:49 +0000 (21:57 +0200)]
* list of shorter url services.

13 years ago* add thread debugging to thread disabling for client flags
Wilfried Goesgens [Wed, 13 Oct 2010 19:54:22 +0000 (21:54 +0200)]
* add thread debugging to thread disabling for client flags

13 years ago* vCtdlLogPrintf(): combine the server data plus the application format string into...
Wilfried Goesgens [Wed, 13 Oct 2010 19:51:27 +0000 (21:51 +0200)]
* vCtdlLogPrintf(): combine the server data plus the application format string into a new format string we then process with va_args.
 -> still no strbuf needed
 -> no problems with race conditions causing clashes between several lines

13 years agonumber of comments
Art Cancro [Wed, 13 Oct 2010 16:21:15 +0000 (12:21 -0400)]
number of comments

13 years agoblog renderer
Art Cancro [Wed, 13 Oct 2010 15:01:20 +0000 (11:01 -0400)]
blog renderer

13 years agoOk, *this* is the way we want it structured internally.
Art Cancro [Tue, 12 Oct 2010 21:43:52 +0000 (17:43 -0400)]
Ok, *this* is the way we want it structured internally.
Now it's time to refactor it to O(N) instead of O(n log n)