citadel.git
16 years agoAdded a macro to get a threads structure.
Dave West [Fri, 30 Nov 2007 17:51:44 +0000 (17:51 +0000)]
Added a macro to get a threads structure.
Spead up CtdlThreadCheckStop() by requiring the caller pass in its own
thread structure.

16 years agoTo lock or not to lock before signalling a condition?
Dave West [Fri, 30 Nov 2007 17:19:24 +0000 (17:19 +0000)]
To lock or not to lock before signalling a condition?
Some docs imply one should lock.
Some docs say to release all locks before signalling the condition.

16 years agoMinor optimisation to calculation of load averages.
Dave West [Fri, 30 Nov 2007 17:09:13 +0000 (17:09 +0000)]
Minor optimisation to calculation of load averages.

16 years agoAdd a function try_critical_section()
Dave West [Fri, 30 Nov 2007 16:59:08 +0000 (16:59 +0000)]
Add a function try_critical_section()
Just like begin_critical_section but this one returns non zero if the
section is already busy.

16 years agoSignals can't call thread functions so don't do CtdlThreadStopAll in the
Dave West [Fri, 30 Nov 2007 16:55:25 +0000 (16:55 +0000)]
Signals can't call thread functions so don't do CtdlThreadStopAll in the
signal handler.

16 years agoStrip leading and trailing whitespace from instant messages before sending them to...
Art Cancro [Fri, 30 Nov 2007 05:09:00 +0000 (05:09 +0000)]
Strip leading and trailing whitespace from instant messages before sending them to Jabber clients

16 years agoInitial code to output any instant messages which
Art Cancro [Thu, 29 Nov 2007 23:00:44 +0000 (23:00 +0000)]
Initial code to output any instant messages which
have arrived for the user.  The Citadel server's built-in
infrastructure for asynchronous (unsolicited) protocol messages
made this really easy.

16 years agoXMPP presence dump of wholist
Art Cancro [Thu, 29 Nov 2007 16:44:04 +0000 (16:44 +0000)]
XMPP presence dump of wholist

16 years agoSlight change to the way we offer XMPP stream features.
Art Cancro [Thu, 29 Nov 2007 15:52:18 +0000 (15:52 +0000)]
Slight change to the way we offer XMPP stream features.
Before authentication, the only feature we offer is SASL, implying to
the client that the only thing it is allowed to do is log in.  After
a successful SASL authentication, which causes the XMPP stream to be
restarted, the features we offer are sessions and binding, but not
SASL.  This allows clients to initialize in the correct sequence and
guarantees that we will have an email address to use in the JID.

16 years agoid keyword
Art Cancro [Wed, 28 Nov 2007 16:30:01 +0000 (16:30 +0000)]
id keyword

16 years agosvn propset
Art Cancro [Wed, 28 Nov 2007 16:29:04 +0000 (16:29 +0000)]
svn propset

16 years agoDeliver a reply to a Jabber 'roster' query.
Art Cancro [Wed, 28 Nov 2007 16:26:21 +0000 (16:26 +0000)]
Deliver a reply to a Jabber 'roster' query.

16 years agowe have the iq-query-xmlns nonsense all framed up
Art Cancro [Wed, 28 Nov 2007 04:51:40 +0000 (04:51 +0000)]
we have the iq-query-xmlns nonsense all framed up
and ready to deliver some results.  now we just have to populate it
with some data.

16 years agoMinor xml fix to xmpp server
Art Cancro [Wed, 28 Nov 2007 04:10:52 +0000 (04:10 +0000)]
Minor xml fix to xmpp server

16 years agocomments change
Art Cancro [Tue, 27 Nov 2007 22:43:08 +0000 (22:43 +0000)]
comments change

16 years agoWhen restarting the XMPP stream after a successful
Art Cancro [Tue, 27 Nov 2007 22:40:47 +0000 (22:40 +0000)]
When restarting the XMPP stream after a successful
SASL authentication, don't offer SASL as a stream feature
again.  This causes the client to attempt re-authentication
and/or go into an error condition.

16 years agoxmpp sasl hacks
Art Cancro [Tue, 27 Nov 2007 20:14:45 +0000 (20:14 +0000)]
xmpp sasl hacks

16 years agoAdded --with-threadlog. Use this if you want the thread table written to
Dave West [Tue, 27 Nov 2007 20:00:11 +0000 (20:00 +0000)]
Added --with-threadlog. Use this if you want the thread table written to
the log.
Fixed CtdlThreadName(char *name) now renames thread to name if name is
set and always returns old name caller frees old name.
Added a couple of macros to change the thread names in some places for
debugging.

16 years agoAdded SASL PLAIN auth to jabber service.
Art Cancro [Tue, 27 Nov 2007 18:06:25 +0000 (18:06 +0000)]
Added SASL PLAIN auth to jabber service.

16 years agoAdded SASL PLAIN auth to jabber service.
Art Cancro [Tue, 27 Nov 2007 18:03:34 +0000 (18:03 +0000)]
Added SASL PLAIN auth to jabber service.

16 years agoChecked in my initial work on an XMPP (Jabber) service.
Art Cancro [Tue, 27 Nov 2007 17:54:19 +0000 (17:54 +0000)]
Checked in my initial work on an XMPP (Jabber) service.
This does not yet work at all.  Don't even try to use it.
I'm only checking it in so it gets backed up.

16 years agoOoops, A little buglet with SIGPIPE, my fault.
Dave West [Tue, 27 Nov 2007 14:36:30 +0000 (14:36 +0000)]
Ooops, A little buglet with SIGPIPE, my fault.

16 years agoDebug code to show thread table is now back in. Thiss will fill your log
Dave West [Tue, 27 Nov 2007 13:09:40 +0000 (13:09 +0000)]
Debug code to show thread table is now back in. Thiss will fill your log
file.
Added number of threads to INFO command
Changed calc for load averages, now it is a percentage.

16 years agoNow do garbage collection every second.
Dave West [Tue, 27 Nov 2007 01:21:13 +0000 (01:21 +0000)]
Now do garbage collection every second.
Change the way load averages are calculated.
Now calculate a load average for worker threads as well as the entire
system.
Display the load averages in the INFO command system then worker.
Remove all the extra debug info from garbage collector.

16 years agoCreate all worker threads with the name "Worker Thread"
Dave West [Tue, 27 Nov 2007 00:14:04 +0000 (00:14 +0000)]
Create all worker threads with the name "Worker Thread"

16 years agoThreads now have load averages of sorts.
Dave West [Mon, 26 Nov 2007 22:03:59 +0000 (22:03 +0000)]
Threads now have load averages of sorts.
Hopefully this will allow some threads to throttle back at times of high
load (like the indexer).

16 years agoNow we have a thread state for blocked. Only works for the select in the
Dave West [Mon, 26 Nov 2007 20:38:41 +0000 (20:38 +0000)]
Now we have a thread state for blocked. Only works for the select in the
worker thread at the moment.

16 years agoPrevent CtdlThreadCancel on garbage collector.
Dave West [Mon, 26 Nov 2007 19:43:08 +0000 (19:43 +0000)]
Prevent CtdlThreadCancel on garbage collector.

16 years agoNow the garbage collection thread is in the thread list too.
Dave West [Mon, 26 Nov 2007 19:39:52 +0000 (19:39 +0000)]
Now the garbage collection thread is in the thread list too.

16 years agoFixed bug 301. /listsub operations do not require a
Art Cancro [Mon, 26 Nov 2007 04:36:01 +0000 (04:36 +0000)]
Fixed bug 301.  /listsub operations do not require a
security nonce because they do not maintain an ongoing session
with the server.  Also cleaned this screen up visually.

16 years agoFixed the clean up of Contexts when we exit.
Dave West [Mon, 26 Nov 2007 01:20:56 +0000 (01:20 +0000)]
Fixed the clean up of Contexts when we exit.
Do we need to clean up some of the contexts pointers too?
serv_calendar.c now cleans up with a CleanupHook.

16 years agoHere it is, the new thread interface.
Dave West [Sun, 25 Nov 2007 22:15:18 +0000 (22:15 +0000)]
Here it is, the new thread interface.
The code to handle threads is in sysdep.c
This new thread interface has caused a change to the way modules are
initialised. A modules init function is now called twice. First time
threading==0, second time threading==1. threading is a parameter passed
to the init function.
You should not create a thread until your init function has been called
with threading==1. See serv_fulltext.c as an example.
All of the modules init functions have been updated for this change.
The old RegisterThread stuff has gone away.
time_to_die has gone as it was used to tell threads to exit, we now use
CtdlThreadCheckStop() instead which return non zero if the thread should
exit.
The server will exit when all threads have stopped.
CtdlThreadCreate() handles creation of threads in a safe manner.
CtdlThreadSleep() is used to do a sleep in a thread.
CtdlThreadStop() is used to stop a thread.
CtdlThreadStopAll() stops all threads and thus causes the server to
exit.
Threads are cleanup when they die by the main server process (every 10
seconds) which originally did nothing useful.
CtdlThreadGC() will force a garbage collection now.
CtdlThreadGetCount() return the number of threads in the system not just
the number of workers.
CtdlThreadSelf() returns a pointer to this threads thread structure.
CtdlThreadName() returns a strdup'd string that is the threads name, you
need to free this. It also allows you to change a threads name.
CtdlThreadCancel() does the same as pthread_cancel except it also
informs our thread system. Don't use this if you can help it.

There are a lot of debug messages at the moment, they will go away once
stability is proven.

16 years ago* now the deb-version is right. the debs should work now.
Wilfried Göesgens [Thu, 22 Nov 2007 23:43:01 +0000 (23:43 +0000)]
* now the deb-version is right. the debs should work now.

16 years agoChanged the column headers in the user list to
Art Cancro [Wed, 21 Nov 2007 19:13:13 +0000 (19:13 +0000)]
Changed the column headers in the user list to
reflect modern terminology.  Last Call is now Last Visit, Calls is now
Logins, and Posts is now Messages.

16 years agostruct CitContext no longer contains separate module-specific pointers for
Art Cancro [Wed, 21 Nov 2007 04:54:19 +0000 (04:54 +0000)]
struct CitContext no longer contains separate module-specific pointers for
things like IMAP state, SMTP state, POP3 state, managesieve state, etc.
These four modules now use a single 'service_specific_data' pointer, which
is cast to whatever data type the module is using.  This is possible because
only one is used at a time (a session cannot be POP3 and SMTP simultaneously,
for example).  As before, when a module allocates memory and places
a pointer to it in this location, the module's cleanup function
continues to be responsible for freeing it, and as before, it must not
free this pointer under any other circumstances.

Third-party modules which implement new server protocols now have a place
to store session data without modifying the server core.  Just follow one
of the existing server protocol modules as an example.

16 years agoBegun implimentation of a really good thread control interface.
Dave West [Wed, 21 Nov 2007 02:48:48 +0000 (02:48 +0000)]
Begun implimentation of a really good thread control interface.
As it turns out it impliments a lot of what eCrash does to track threads
though I didn't know it at the time. To check it out look in sysdep.c
and search on CtdlThread. That will get you close.
At the moment nothing makes use of this code.
A handy side effect is a thread safe sleep mechanism that will sleep
the current thread untill some other thread sleeps or it times out, needs a
bit more work to make it sleep any thread without waking when another
thread sleeps.
Also fixed a potential memory leak or two in the old thread code.

16 years ago* apache proxies and listsub/ don't play well.
Wilfried Göesgens [Tue, 20 Nov 2007 23:41:38 +0000 (23:41 +0000)]
* apache proxies and listsub/ don't play well.

16 years ago* purge remaining libnetfilter strings
Wilfried Göesgens [Tue, 20 Nov 2007 23:07:29 +0000 (23:07 +0000)]
* purge remaining libnetfilter strings

16 years ago* fix locale compile support.
Wilfried Göesgens [Tue, 20 Nov 2007 22:58:13 +0000 (22:58 +0000)]
* fix locale compile support.

16 years ago* search absolute for the images on the server.
Wilfried Göesgens [Tue, 20 Nov 2007 22:35:30 +0000 (22:35 +0000)]
* search absolute for the images on the server.

16 years agoSource clean up.
Dave West [Tue, 20 Nov 2007 20:03:22 +0000 (20:03 +0000)]
Source clean up.
Moved all hook code into serv_extensions.c and serv_extensions.h since
this is more logical

16 years ago* add a script that tries to migrate the systems /etc/aliases file if existant.
Wilfried Göesgens [Mon, 19 Nov 2007 22:36:39 +0000 (22:36 +0000)]
* add a script that tries to migrate the systems /etc/aliases file if existant.

16 years ago* depend to libcitadel.
Wilfried Göesgens [Mon, 19 Nov 2007 19:56:13 +0000 (19:56 +0000)]
* depend to libcitadel.

16 years ago* depend to libcitadel
Wilfried Göesgens [Mon, 19 Nov 2007 19:52:48 +0000 (19:52 +0000)]
* depend to libcitadel

16 years agoooops... ascmonths[] was in use in imap_tools.c ... fixed
Art Cancro [Mon, 19 Nov 2007 15:52:57 +0000 (15:52 +0000)]
ooops... ascmonths[] was in use in imap_tools.c ... fixed

16 years agoRemoved the 'ascmonths' global declaration from libCitadel.
Art Cancro [Mon, 19 Nov 2007 04:36:04 +0000 (04:36 +0000)]
Removed the 'ascmonths' global declaration from libCitadel.
This should clean up the build on Mac OS.

16 years agoRemoved the 'ascmonths' global declaration from libCitadel.
Art Cancro [Mon, 19 Nov 2007 04:34:42 +0000 (04:34 +0000)]
Removed the 'ascmonths' global declaration from libCitadel.
This should clean up the build on Mac OS.

16 years ago* create .pc file, seems to be a good thing to do.
Wilfried Göesgens [Sun, 18 Nov 2007 23:53:07 +0000 (23:53 +0000)]
* create .pc file, seems to be a good thing to do.
* debian packaging added.

16 years agoAdd 'datarootdir' variable to Makefile.in
Art Cancro [Sun, 18 Nov 2007 05:10:58 +0000 (05:10 +0000)]
Add 'datarootdir' variable to Makefile.in
We don't use it, but it shuts up the autoconf warning.

16 years agoCommented out some lprintf() calls that appear in libcitadel.
Art Cancro [Fri, 16 Nov 2007 17:27:04 +0000 (17:27 +0000)]
Commented out some lprintf() calls that appear in libcitadel.
It is inappropriate to have them here because the caller
may not have an lprintf() function.

16 years ago(no commit message)
Art Cancro [Fri, 16 Nov 2007 17:23:41 +0000 (17:23 +0000)]

16 years agoAdded COPYING and README.txt to libcitadel
Art Cancro [Fri, 16 Nov 2007 17:20:16 +0000 (17:20 +0000)]
Added COPYING and README.txt to libcitadel

16 years agoMove vcard.c into libcitadel.
Art Cancro [Fri, 16 Nov 2007 17:15:22 +0000 (17:15 +0000)]
Move vcard.c into libcitadel.

16 years agoWhen opening the Berkeley DB environment, step
Art Cancro [Fri, 16 Nov 2007 16:09:22 +0000 (16:09 +0000)]
When opening the Berkeley DB environment, step
through three different dbenv->open() attempts.  The first opens the environment
normally.  If that fails with DB_RUNRECOVERY, it is attempted again with the
DB_RECOVER flag set.  If that fails with DB_RUNRECOVERY, it is attempted once
again with DB_RECOVER_FATAL.  If that fails, the program exits.

16 years agoHUGE PATCH. This moves all of mime_parser.c and all
Art Cancro [Fri, 16 Nov 2007 05:52:26 +0000 (05:52 +0000)]
HUGE PATCH.  This moves all of mime_parser.c and all
of tools.c into libcitadel.  It compiles cleanly, and seems to work, but I'm sure
I broke *something* so let's give this lots of testing.

16 years ago* tiny tool for message retrieval, first draft.
Wilfried Göesgens [Thu, 15 Nov 2007 23:27:12 +0000 (23:27 +0000)]
* tiny tool for message retrieval, first draft.

16 years ago* this is 7.24
Wilfried Göesgens [Thu, 15 Nov 2007 23:08:48 +0000 (23:08 +0000)]
* this is 7.24

16 years ago* msgnum is a long. format it like that.
Wilfried Göesgens [Thu, 15 Nov 2007 22:55:33 +0000 (22:55 +0000)]
* msgnum is a long. format it like that.

16 years agoUpdated version number to 7.24
Art Cancro [Thu, 15 Nov 2007 16:19:24 +0000 (16:19 +0000)]
Updated version number to 7.24

16 years agoFixed a bug introduced in r5517 that was causing
Art Cancro [Thu, 15 Nov 2007 16:15:09 +0000 (16:15 +0000)]
Fixed a bug introduced in r5517 that was causing
incoming network messages to simply be thrown away most of
the time.  r5517 replaced a call to /bin/mv with a copy file
loop, but the loop operated in line-by-line text mode.
Network spool contains architecture-independent binary data,
so this was failing.

16 years agoforce_room variable needs to be output using
Art Cancro [Wed, 14 Nov 2007 14:50:51 +0000 (14:50 +0000)]
force_room variable needs to be output using
escputs() not urlescputs() otherwise Bad Things Happen.

16 years agoAdded a 'force_room'
Art Cancro [Wed, 14 Nov 2007 05:24:03 +0000 (05:24 +0000)]
Added a 'force_room'
to the enter message form, to ensure that the room the message
gets posted in is the same room the user started entering it in.

16 years ago* cleanup with variable substitution. cleaner replacing function and string variables.
Wilfried Göesgens [Tue, 13 Nov 2007 22:21:24 +0000 (22:21 +0000)]
* cleanup with variable substitution. cleaner replacing function and string variables.

16 years ago* to much c-coding spoilz bash-sk1lz
Wilfried Göesgens [Tue, 13 Nov 2007 17:43:10 +0000 (17:43 +0000)]
* to much c-coding spoilz bash-sk1lz

16 years agoRemoved '#define CHUNKED_READ' from citadel_ipc.c
Art Cancro [Tue, 13 Nov 2007 17:19:53 +0000 (17:19 +0000)]
Removed '#define CHUNKED_READ' from citadel_ipc.c
It is still broken and should not be defined by default.

16 years agoA little bit of speed up in the wordbreaker for full text indexing.
Dave West [Tue, 13 Nov 2007 02:37:45 +0000 (02:37 +0000)]
A little bit of speed up in the wordbreaker for full text indexing.
Also fixed a small bug that made some of our index tokens bad.
Maybe this will fix some of the text search problems some people are
seeing.
We also need to alter the indexer to index the message headers as well
as the body, at the moment we only index the body.

16 years agoAmended the 'Corrupt message' error with more detail
Art Cancro [Mon, 12 Nov 2007 17:15:59 +0000 (17:15 +0000)]
Amended the 'Corrupt message' error with more detail

16 years ago* buffered read next try; recv might give the solution?
Wilfried Göesgens [Sun, 11 Nov 2007 18:58:39 +0000 (18:58 +0000)]
* buffered read next try; recv might give the solution?

16 years ago* do non-blocking accept()
Wilfried Göesgens [Sun, 11 Nov 2007 16:09:45 +0000 (16:09 +0000)]
* do non-blocking accept()
* shut down on HUP instead of TERM; easier to debug.
* kill & free our running sessions on shutdown

16 years agoAmended the MSGP command to provide a way for the client to
Art Cancro [Sun, 11 Nov 2007 05:35:30 +0000 (05:35 +0000)]
Amended the MSGP command to provide a way for the client to
indicate to the server that it prefers to decode Base64 and quoted-printable
on the client side when reading MIME parts with the MSG4 command.
Resolves bug 289.

16 years ago* moved CtdlDecodeQuotedPrintable() into tools.c
Art Cancro [Sun, 11 Nov 2007 04:46:40 +0000 (04:46 +0000)]
* moved CtdlDecodeQuotedPrintable() into tools.c
  (later we will move most or all of tools.c into libcitadel)
* amended citadel_ipc.c message reading loop.  When using MSG4 (nearly
  always), parse base64 and quoted-printable encodings, and decode them.
  MSG4 does not *yet* send these, instead performing the decoding on
  the server side.  During experimentation I told the server not to
  decode, and this will resolve Bug #289.  All that's left to do is to
  add something to the protocol so that the client can tell the server
  that it wants non-decoded message text.  I'll do that tomorrow.

16 years agoExperimented with 'struct CitContext *CCC = CC;' for performance
Art Cancro [Sun, 11 Nov 2007 04:17:41 +0000 (04:17 +0000)]
Experimented with 'struct CitContext *CCC = CC;' for performance

16 years ago* if -D added, citserver will print out the Directories.
Wilfried Göesgens [Sat, 10 Nov 2007 23:12:19 +0000 (23:12 +0000)]
* if -D added, citserver will print out the Directories.

16 years ago* this might be the try to free a null-pointer.
Wilfried Göesgens [Sat, 10 Nov 2007 23:11:32 +0000 (23:11 +0000)]
* this might be the try to free a null-pointer.

16 years agoWhen populating the address book popup with the contents of
Art Cancro [Sat, 10 Nov 2007 05:32:30 +0000 (05:32 +0000)]
When populating the address book popup with the contents of
an address book room (such as the Global Address Book), save the name of the room
we came from and go back there after fetching the address book.  Fixes bug #227.

16 years agoDon't crash on RSS feed items without descriptions
Art Cancro [Fri, 9 Nov 2007 22:57:45 +0000 (22:57 +0000)]
Don't crash on RSS feed items without descriptions

16 years agoFix bug which appears when multiple feeds in one room
Art Cancro [Fri, 9 Nov 2007 22:50:32 +0000 (22:50 +0000)]
Fix bug which appears when multiple feeds in one room

16 years agoAdded the MIME parser to libcitadel.
Art Cancro [Fri, 9 Nov 2007 20:12:20 +0000 (20:12 +0000)]
Added the MIME parser to libcitadel.

16 years agoAdded 'bootstrap' command. It just calls
Art Cancro [Fri, 9 Nov 2007 20:04:26 +0000 (20:04 +0000)]
Added 'bootstrap' command.  It just calls
autoconf, but let's be consistent.

16 years agoNew build system for libcitadel, with autoconf and libtool
Art Cancro [Fri, 9 Nov 2007 20:03:46 +0000 (20:03 +0000)]
New build system for libcitadel, with autoconf and libtool

16 years agoTesting some gnu type build stuff
Art Cancro [Fri, 9 Nov 2007 19:33:22 +0000 (19:33 +0000)]
Testing some gnu type build stuff

16 years agoadded sample makefile
Art Cancro [Fri, 9 Nov 2007 17:50:29 +0000 (17:50 +0000)]
added sample makefile

16 years agorandom foo
Art Cancro [Fri, 9 Nov 2007 17:20:49 +0000 (17:20 +0000)]
random foo

16 years agoInitial checkin of libcitadel files. Do not use this yet.
Art Cancro [Fri, 9 Nov 2007 17:18:44 +0000 (17:18 +0000)]
Initial checkin of libcitadel files.  Do not use this yet.

16 years ago* set basedir to ctdldir on startup for bin/sbin calculation in non-fssnd
Wilfried Göesgens [Fri, 9 Nov 2007 17:17:07 +0000 (17:17 +0000)]
* set basedir to ctdldir on startup for bin/sbin calculation in non-fssnd

16 years agoFixed the problem dave reported yesterday, where a
Art Cancro [Thu, 8 Nov 2007 23:05:25 +0000 (23:05 +0000)]
Fixed the problem dave reported yesterday, where a
large calendar hung the webcit renderer while displaying.
This turned out to have nothing to do with the size of the
calendar, but with a specific event that had no newline
at the end and caused the 000 terminator to appear at the
end of a line instead of on its own line.  Switched from
MSG0 to MSG4 in webcit to both work around this problem and
save over-the-wire chatter.   Dave's work from last night
plus this commit, resolve bug #284.

16 years ago* ubuntu doesn't have localepurge
Wilfried Göesgens [Thu, 8 Nov 2007 23:04:32 +0000 (23:04 +0000)]
* ubuntu doesn't have localepurge

16 years ago* since we changed the versioning, we need to detect it right.
Wilfried Göesgens [Thu, 8 Nov 2007 22:12:52 +0000 (22:12 +0000)]
* since we changed the versioning, we need to detect it right.

16 years agoThis commit marks the 7.23 releases of both Citadel and WebCit.
Art Cancro [Thu, 8 Nov 2007 21:56:36 +0000 (21:56 +0000)]
This commit marks the 7.23 releases of both Citadel and WebCit.

16 years ago* free the ical struct after using it.
Wilfried Göesgens [Thu, 8 Nov 2007 21:35:29 +0000 (21:35 +0000)]
* free the ical struct after using it.

16 years ago- fix the IE7 bug to display the message buttons
Thierry Pasqualier [Thu, 8 Nov 2007 20:25:28 +0000 (20:25 +0000)]
- fix the IE7 bug to display the message buttons
- centering of the image of login screen

16 years agoAdded the User-Agent: and Accept: headers to our
Art Cancro [Thu, 8 Nov 2007 15:22:01 +0000 (15:22 +0000)]
Added the User-Agent: and Accept: headers to our
HTTP client requests.  Some HTTP servers (such as www.digg.com)
simply disconnect without any response if they are not present.

16 years agoAnd nox ICAL putics works properly.
Dave West [Thu, 8 Nov 2007 00:15:44 +0000 (00:15 +0000)]
And nox ICAL putics works properly.

16 years ago* make the files number a link
Wilfried Göesgens [Wed, 7 Nov 2007 19:33:20 +0000 (19:33 +0000)]
* make the files number a link
* make the string gettextable

16 years ago* missing blank
Wilfried Göesgens [Wed, 7 Nov 2007 18:34:52 +0000 (18:34 +0000)]
* missing blank

16 years ago* if citadel doesn't come down by sendcommand in 10 seconds, send it a TERM, after...
Wilfried Göesgens [Wed, 7 Nov 2007 18:11:45 +0000 (18:11 +0000)]
* if citadel doesn't come down by sendcommand in 10 seconds, send it a TERM, after another 10 seconds be rude and send it KILL

16 years ago- removed an extra </select> on message selector on the top
Thierry Pasqualier [Wed, 7 Nov 2007 15:56:58 +0000 (15:56 +0000)]
- removed an extra </select> on message selector on the top
- removed font bold on messages buttons

16 years agoI correct the errors which are found by Firefox Tiny Validator.
Thierry Pasqualier [Wed, 7 Nov 2007 09:17:25 +0000 (09:17 +0000)]
I correct the errors which are found by Firefox Tiny Validator.
- a div tag in excess at the foot of the all pages (there remains one
  about it)
- a td tag which must be a th tag in the monthly view of the calendar

16 years agoI added the name of the current user running in the title of the page. It
Thierry Pasqualier [Wed, 7 Nov 2007 08:21:45 +0000 (08:21 +0000)]
I added the name of the current user running in the title of the page. It
appears with the name of the site and that of the navigator in the bar
in top of the window.

16 years agoFile counting for directory rooms now checks both QR_DIRECTORY and
Dave West [Tue, 6 Nov 2007 23:09:33 +0000 (23:09 +0000)]
File counting for directory rooms now checks both QR_DIRECTORY and
QR_VISDIR before displaying the count of files.