[Citadel Development] SVN commit log: revision 4860

2007-01-14 Thread Citadel commit log

r4860 | ajc | 2007-01-15 00:00:44 -0500 (Mon, 15 Jan 2007) | 5 lines
Changed paths:
   M /trunk/citadel/acconfig.h
   M /trunk/citadel/configure.ac
   M /trunk/citadel/sysdep.c

Checked in matt's patches for TCP performance on Mac OS:
* Check for OSX/Darwin in configure and define accordingly (HAVE_DARWIN)
* Created stub functions for buffer_output,
unbuffer_output, flush_output in sysdep.c




[Citadel Development] Re: Patch: Nullify tcp buffering on OS X

2007-01-14 Thread IGnatius T Foobar
 >I've found the cause of the slow TCP IPC connections bug on OS X,   
 >namely buffering output on the socket will cause the system to wait   
 >too long to spit out the results.   Changes:   * Check for   
   
 matt: I've applied this patch, but I had to make a change, otherwise it 
broke the build on non-OSX hosts due to the three buffering functions 
being declared twice.  
   
 The change I made was to remove an #endif and and #ifdef and replace them 
with an #elif.  The logic ended up looking like this:  
   
 #ifdef HAVE_TCP_BUFFERING  
/* functions based on TCP_CORK go here */  
 #elif HAVE_DARWIN  
/* no-op stub functions go here */  
 #else   
/* userspace buffering functions go here */  
 #endif  
   
 This is going to need some re-testing on *all* platforms.  
  


[Citadel Development] SVN commit log: revision 4859

2007-01-14 Thread Citadel commit log

r4859 | ajc | 2007-01-14 22:18:50 -0500 (Sun, 14 Jan 2007) | 1 line
Changed paths:
   M /trunk/webcit/roomops.c
   M /trunk/webcit/static/roombanner.html
   M /trunk/webcit/static/webcit.css

applied thierry's banner mod patch



[Citadel Development] (no subject)

2007-01-14 Thread IGnatius T Foobar
 >Il don't undersand, i applied this last patch on the current svn and   
 >it's work   
   
 Ok, I don't know what I was doing wrong, but I tried again and it worked. 
 Strange.  
  


[Citadel Development] Patch: Nullify tcp buffering on OS X

2007-01-14 Thread matt


I've found the cause of the slow TCP IPC connections bug on OS X, namely buffering output on the socket will cause the system to wait too long to spit out the results. 

Changes:  
* Check for OSX/Darwin in configure and define accordingly (HAVE_DARWIN)  
* Created stub functions for buffer_output, unbuffer_output, flush_output in sysdep.c



sysdep.c.diff
Description: Binary data


configure.ac.diff
Description: Binary data


acconfig.h.diff
Description: Binary data


[Citadel Development] (no subject)

2007-01-14 Thread Freakdog
Actually...I've got a question...maybe it's better suited for Citadel 
Support, than here, but:  
   
 In TinyMCE, how can I insert my responses within the quoted part of a 
message, without having it look like my responses are *part* of the quoted 
message?  
  


[Citadel Development] SVN commit log: revision 4858

2007-01-14 Thread Citadel commit log

r4858 | dothebart | 2007-01-14 15:39:01 -0500 (Sun, 14 Jan 2007) | 3 lines
Changed paths:
   M /trunk/webcit/buildpackages

* added sourcedist targets for building tgz's with version numbers.





[Citadel Development] SVN commit log: revision 4857

2007-01-14 Thread Citadel commit log

r4857 | dothebart | 2007-01-14 15:38:30 -0500 (Sun, 14 Jan 2007) | 2 lines
Changed paths:
   M /trunk/citadel/buildpackages

* added sourcedist targets for building tgz's with version numbers.




[Citadel Development] (no subject)

2007-01-14 Thread thierry


sam 13 jan 2007 22:12:24 EST de IGnatius T [EMAIL PROTECTED] thierry: even the new version of your patch is mostly made up of changes that have already been applied (except for the room banner update, of course).  I want to apply your changes, but you have to post patches against the current svn.  Please update your tree to the latest svn, then apply your changes and post the diffs.  Il don't undersand, i applied this last patch on the current svn and it's work[EMAIL PROTECTED]:~/Desktop/logiciels/Citadel$ cd webcit/[EMAIL PROTECTED]:~/Desktop/logiciels/Citadel/webcit$ svn updateÀ la révision 4856.[EMAIL PROTECTED]:~/Desktop/logiciels/Citadel/webcit$ patch -p1  < ../patchThierry03withBannerModifs.diff patching file roomops.cpatching file static/roombanner.htmlpatching file static/webcit.css