citadel.git
12 years agoFix StrHtmlEcmaEscAppend() more edge cases in utf8 handling
Wilfried Goesgens [Thu, 18 Aug 2011 17:53:18 +0000 (17:53 +0000)]
Fix StrHtmlEcmaEscAppend() more edge cases in utf8 handling

 - Ctdl_GetUtf8SequenceLength(): return 0 for broken, 1 for non-utf8 sequences
 - StrHtmlEcmaEscAppend(): another attempt to fix json appending:
  - use switch instead of Rumpelstilskin if sequence
  - use HKEY for our static sequences
  - don't check for buffer expansion again while utf8-handling; we have 11 bytes reserved, utf8 will at most become 6 bytes
  - Simply handle ASCII chars in the utf8 loop
  - since aptr is moved implicitely, we mustn't move it for the last byte
  - add missing handling for some escapers
  - let unicode escapers pass

12 years agoDon't add brackets <> to the reply to; it should be ok without.
Wilfried Goesgens [Thu, 18 Aug 2011 10:30:35 +0000 (10:30 +0000)]
Don't add brackets <> to the reply to; it should be ok without.

12 years agoparse reply-to header into its permanent database field
Wilfried Goesgens [Thu, 18 Aug 2011 10:27:54 +0000 (10:27 +0000)]
parse reply-to header into its permanent database field

it seems as if some mailers (Open exchange for example) add Reply-To headers; if we don't parse it when receiving it,
our list service adds another header; thus parse it into the database of headers.

12 years ago fix QP encoding
Wilfried Goesgens [Thu, 18 Aug 2011 09:53:01 +0000 (09:53 +0000)]
fix QP encoding

     - once we decided to QP encode we also need to encode = (forgotten in last commit)

12 years agofix QP encoding
Wilfried Goesgens [Thu, 18 Aug 2011 09:14:48 +0000 (09:14 +0000)]
fix QP encoding

 - once we decided to QP encode we also need to encode =[]

12 years agoMerge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel
Wilfried Goesgens [Wed, 17 Aug 2011 10:13:28 +0000 (10:13 +0000)]
Merge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel

12 years agoFix envelope-to header.
Wilfried Goesgens [Wed, 17 Aug 2011 10:12:21 +0000 (10:12 +0000)]
Fix envelope-to header.

  - don't output leading whitespace
  - don't output it at all if there is just whitespace inside.

12 years agoFixed a bug in the 'only replies are allowed in this room' logic in ENT0 command.
Art Cancro [Tue, 16 Aug 2011 19:55:15 +0000 (15:55 -0400)]
Fixed a bug in the 'only replies are allowed in this room' logic in ENT0 command.

12 years agoBegan working on access control changes for blog rooms.
Art Cancro [Tue, 16 Aug 2011 04:03:58 +0000 (00:03 -0400)]
Began working on access control changes for blog rooms.

12 years agoImproved coding style of the complex conditionals in CtdlRoomAccess()
Art Cancro [Tue, 16 Aug 2011 03:49:35 +0000 (23:49 -0400)]
Improved coding style of the complex conditionals in CtdlRoomAccess()

12 years agonetwork_spool_msg() handle QP
Wilfried Goesgens [Fri, 12 Aug 2011 15:51:14 +0000 (15:51 +0000)]
network_spool_msg() handle QP

while appending the [roomname] to the mailsubject, we have to
  - de-qp the original subject
  - search for the roomname
  - possibly prepend '[roomame] '
  - and re-qp everything.
that way we solve...
  - multiple [roomname] additions in case of QP encoded subjects
  - non RFC-Conformant behaviour in case of roomnames with umlauts.

12 years agodisplay_enter(): handle QP encodings
Wilfried Goesgens [Fri, 12 Aug 2011 15:49:45 +0000 (15:49 +0000)]
display_enter(): handle QP encodings

 - while loading several headers from the server we need to de-QP, else we will find gibberish in our...
  - Subject
  - recipients

12 years agofix all the tiny conditional problems our new checker told us about.
Wilfried Goesgens [Thu, 4 Aug 2011 21:09:56 +0000 (21:09 +0000)]
fix all the tiny conditional problems our new checker told us about.

12 years agouse the regular template error logging for our new endconditional checker, so we...
Wilfried Goesgens [Thu, 4 Aug 2011 20:52:11 +0000 (20:52 +0000)]
use the regular template error logging for our new endconditional checker, so we get our clean regular and detailed error messages.

12 years agoadd .silent and some echo logic to our makefiles; thanks to sECuRE for the hints.
Wilfried Goesgens [Thu, 4 Aug 2011 20:08:30 +0000 (20:08 +0000)]
add .silent and some echo logic to our makefiles; thanks to sECuRE for the hints.

12 years agoafter reading a template sanity check conditionals whether they're paired
Wilfried Goesgens [Mon, 1 Aug 2011 23:10:00 +0000 (23:10 +0000)]
after reading a template sanity check conditionals whether they're paired

12 years agomove the rest of the places to use AppendImportantMessage() or GetServerStatusMsg()
Wilfried Goesgens [Sun, 31 Jul 2011 22:40:06 +0000 (22:40 +0000)]
move the rest of the places to use AppendImportantMessage() or GetServerStatusMsg()

12 years agoups. zero based so an off by one.
Wilfried Goesgens [Sun, 31 Jul 2011 16:49:56 +0000 (16:49 +0000)]
ups. zero based so an off by one.

12 years agoMerge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel
Wilfried Goesgens [Sat, 30 Jul 2011 17:59:49 +0000 (17:59 +0000)]
Merge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel

12 years agoFix our problems with strings like this: "abc'def" in template token strings.
Wilfried Goesgens [Sat, 30 Jul 2011 17:58:48 +0000 (17:58 +0000)]
Fix our problems with strings like this: "abc'def" in template token strings.

12 years agoPermalinks for messages in BBS rooms
Art Cancro [Sat, 30 Jul 2011 16:27:10 +0000 (12:27 -0400)]
Permalinks for messages in BBS rooms

12 years agocheck template token name for invalid chars; that way we find ')' etc.
Wilfried Goesgens [Sat, 30 Jul 2011 16:23:32 +0000 (16:23 +0000)]
check template token name for invalid chars; that way we find ')' etc.

12 years agobuybuy plaintext important message.
Wilfried Goesgens [Thu, 28 Jul 2011 23:16:12 +0000 (23:16 +0000)]
buybuy plaintext important message.

12 years agoIn BBS view, include an anchor tag on each message
Art Cancro [Thu, 28 Jul 2011 17:05:06 +0000 (13:05 -0400)]
In BBS view, include an anchor tag on each message

12 years agoRemoved the Base64 encoding in RSS feed links. There was a bug in the other implemen...
Art Cancro [Thu, 28 Jul 2011 16:45:04 +0000 (12:45 -0400)]
Removed the Base64 encoding in RSS feed links.  There was a bug in the other implementation and it was easier to just do it this way.  It's all StrBuf now, which Willi will like :)

12 years agomore documentation work..
Wilfried Goesgens [Thu, 28 Jul 2011 12:32:42 +0000 (12:32 +0000)]
more documentation work..

12 years agowork on documentation.
Wilfried Goesgens [Thu, 28 Jul 2011 12:29:29 +0000 (12:29 +0000)]
work on documentation.

12 years agoMerge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel
Wilfried Goesgens [Thu, 28 Jul 2011 12:15:36 +0000 (12:15 +0000)]
Merge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel

12 years agoenhance GetServerStatus to GetServerStatusMsg; supply migration define
Wilfried Goesgens [Thu, 28 Jul 2011 12:13:42 +0000 (12:13 +0000)]
enhance GetServerStatus to GetServerStatusMsg; supply migration define

GetServerStatusMsg() can now directly add the server reply text after the status code into WC->ImportantMsg.

12 years agoWorked around issue where gotoroom() is called with WC->CurRoom.name and the contents...
Art Cancro [Wed, 27 Jul 2011 20:35:02 +0000 (16:35 -0400)]
Worked around issue where gotoroom() is called with WC->CurRoom.name and the contents of this pointer then become invalid due to room change

12 years agoMerge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel
the_mgt [Wed, 27 Jul 2011 10:17:47 +0000 (12:17 +0200)]
Merge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel

12 years agoFinetuned the IE dropshadow
the_mgt [Wed, 27 Jul 2011 10:17:20 +0000 (12:17 +0200)]
Finetuned the IE dropshadow

12 years agotemplate moving the messages select target.
Wilfried Goesgens [Mon, 25 Jul 2011 20:56:35 +0000 (20:56 +0000)]
template moving the messages select target.

12 years agoswitch to templated sieve editor; disable old.
Wilfried Goesgens [Mon, 25 Jul 2011 19:41:24 +0000 (19:41 +0000)]
switch to templated sieve editor; disable old.

12 years agoIndented, added some "" and the altern class, sieve rules should now display proper...
the_mgt [Mon, 25 Jul 2011 11:40:10 +0000 (13:40 +0200)]
Indented, added some "" and the altern class, sieve rules should now display proper backgrounds
There seems to be one </div> tag too many

12 years agoUse MS own fullblownshadowing engine to create dropshadows, looks better now.
the_mgt [Mon, 25 Jul 2011 11:02:35 +0000 (13:02 +0200)]
Use MS own fullblownshadowing engine to create dropshadows, looks better now.
Maybe directions and thickness need finetuning.

12 years agoMerged the Simplified Chinese (zh_CN) translation submitted by elliott callaway ...
Art Cancro [Mon, 25 Jul 2011 01:08:03 +0000 (21:08 -0400)]
Merged the Simplified Chinese (zh_CN) translation submitted by elliott callaway <flingkatu@gmail.com>

12 years agoMerge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel
Wilfried Goesgens [Sun, 24 Jul 2011 21:11:19 +0000 (21:11 +0000)]
Merge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel

12 years agofix bunches of tiny typos; do_template?template=sieve_list produces similar results...
Wilfried Goesgens [Sun, 24 Jul 2011 21:09:35 +0000 (21:09 +0000)]
fix bunches of tiny typos; do_template?template=sieve_list produces similar results to the non templated system.

12 years agonarrow old and new sieve rules editor
Wilfried Goesgens [Sun, 24 Jul 2011 21:08:26 +0000 (21:08 +0000)]
narrow old and new sieve rules editor

  - add some \n's to the old editor for easier diff
  - pad our list of sieve rules with empty ones, so we work like the old one.

12 years agoThe monitoring page plays really stupid games with the session. Eliminate all.
Art Cancro [Sun, 24 Jul 2011 18:30:21 +0000 (14:30 -0400)]
The monitoring page plays really stupid games with the session.  Eliminate all.

12 years agositemap now uses its own private roomlist function. I know this is probably suboptim...
root [Sun, 24 Jul 2011 18:14:32 +0000 (14:14 -0400)]
sitemap now uses its own private roomlist function.  I know this is probably suboptimal but I'm desperate to find a fix here.

12 years agositemap now uses GetRoomListHash() which is what I should have used in the first...
Art Cancro [Sun, 24 Jul 2011 17:52:01 +0000 (13:52 -0400)]
sitemap now uses GetRoomListHash() which is what I should have used in the first place

12 years agoImplement selecting of sieve rule target room in dropdown.
Wilfried Goesgens [Sun, 24 Jul 2011 15:56:42 +0000 (15:56 +0000)]
Implement selecting of sieve rule target room in dropdown.

12 years agoMerge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel
Wilfried Goesgens [Sun, 24 Jul 2011 15:54:24 +0000 (15:54 +0000)]
Merge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel

12 years agoupsi, that const was missing.
Wilfried Goesgens [Sun, 24 Jul 2011 15:10:43 +0000 (15:10 +0000)]
upsi, that const was missing.

12 years agoIE <9 styling with seperate stylesheet
the_mgt [Sun, 24 Jul 2011 13:59:50 +0000 (15:59 +0200)]
IE <9 styling with seperate stylesheet
Added conditional for IE less than version 9, removed the nonworking stuff from general stylesheets and moved them to ie_lte8.css
Also forced IE8 to use IE8 rendering instead of "legacy" mode.

12 years agoFix lots of warnings all over the place, make inbound buffers of FMOUT const.
Wilfried Goesgens [Sun, 24 Jul 2011 13:43:32 +0000 (13:43 +0000)]
Fix lots of warnings all over the place, make inbound buffers of FMOUT const.

12 years agoStrBufSipLine(): make input params const; fix several warnings about unused code.
Wilfried Goesgens [Sun, 24 Jul 2011 13:35:59 +0000 (13:35 +0000)]
StrBufSipLine(): make input params const; fix several warnings about unused code.

12 years agocleanup webcit.h; utils.c, remove unneeded stuff
Wilfried Goesgens [Sat, 23 Jul 2011 22:16:32 +0000 (22:16 +0000)]
cleanup webcit.h; utils.c, remove unneeded stuff

12 years agosieve editor: continue templating, add 'one' iterator for the default template
Wilfried Goesgens [Sat, 23 Jul 2011 20:21:45 +0000 (20:21 +0000)]
sieve editor: continue templating, add 'one' iterator for the default template

12 years agostart fixing sieve editor templates
Wilfried Goesgens [Sat, 23 Jul 2011 20:18:38 +0000 (20:18 +0000)]
start fixing sieve editor templates

  - use the right number of vars for const
  - fix names with reality in C

12 years agoTinkered with the memory pointers in sitemap.c to try to hopefully fix the random...
Art Cancro [Sat, 23 Jul 2011 02:25:58 +0000 (22:25 -0400)]
Tinkered with the memory pointers in sitemap.c to try to hopefully fix the random crashes we have been having.

12 years agofix summary view
Wilfried Goesgens [Thu, 21 Jul 2011 20:39:36 +0000 (20:39 +0000)]
fix summary view

  - add neccessary stuff to header/trailer to make the page complete
  - add URL-handlers for the summary page sections for the refreshing
  - fix tokens and circumvent our singlequote bug once more.

12 years agoSERV:ADMIN doesn't need any parameters, it just has one optional one (escaping)
Wilfried Goesgens [Thu, 21 Jul 2011 20:38:53 +0000 (20:38 +0000)]
SERV:ADMIN doesn't need any parameters, it just has one optional one (escaping)

12 years agoAvoid re-using sessions that are already bound to an executing thread. This will...
Art Cancro [Wed, 20 Jul 2011 16:59:42 +0000 (12:59 -0400)]
Avoid re-using sessions that are already bound to an executing thread.  This will hopefully rightsize both the threadpool and the unbound session pool.

12 years agotemporary logging for debug
Art Cancro [Wed, 20 Jul 2011 15:53:20 +0000 (11:53 -0400)]
temporary logging for debug

12 years agofix pointer indirection to get the right escaper.
Wilfried Goesgens [Tue, 19 Jul 2011 21:45:32 +0000 (21:45 +0000)]
fix pointer indirection to get the right escaper.

12 years agoDBG_QR[2] now a configurable loggable
Art Cancro [Mon, 18 Jul 2011 20:45:06 +0000 (16:45 -0400)]
DBG_QR[2] now a configurable loggable

12 years agoWrap all calls to pthread_mutex_lock() and pthread_mutex_unlock() within CtdlLogResult()
Art Cancro [Mon, 18 Jul 2011 20:21:29 +0000 (16:21 -0400)]
Wrap all calls to pthread_mutex_lock() and pthread_mutex_unlock() within CtdlLogResult()

12 years agoConvenience function CtdlLogResult()
Art Cancro [Mon, 18 Jul 2011 20:19:45 +0000 (16:19 -0400)]
Convenience function CtdlLogResult()

12 years agoMerge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel
Wilfried Goesgens [Mon, 18 Jul 2011 00:06:58 +0000 (00:06 +0000)]
Merge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel

12 years agotemplatize uploading dialog for room/... graphics.
Wilfried Goesgens [Mon, 18 Jul 2011 00:06:17 +0000 (00:06 +0000)]
templatize uploading dialog for room/... graphics.

12 years agofix templating errors in display of a single user profile
Wilfried Goesgens [Sun, 17 Jul 2011 23:35:30 +0000 (23:35 +0000)]
fix templating errors in display of a single user profile

12 years agowe have to wrap do_template into some functions, else it won't work. fix the display...
Wilfried Goesgens [Sun, 17 Jul 2011 23:33:21 +0000 (23:33 +0000)]
we have to wrap do_template into some functions, else it won't work. fix the display of the user.

12 years agofix evaluating of userlist bios...
Wilfried Goesgens [Sun, 17 Jul 2011 23:10:44 +0000 (23:10 +0000)]
fix evaluating of userlist bios...

12 years agoLBIO: output LISTING_FOLLOWS; skip the . and .. directory entries.
Wilfried Goesgens [Sun, 17 Jul 2011 23:09:53 +0000 (23:09 +0000)]
LBIO: output LISTING_FOLLOWS; skip the . and .. directory entries.

12 years ago"Fixed" issues in IE by removing PIE.htc behaviour from critical places
the_mgt [Sat, 16 Jul 2011 13:24:01 +0000 (15:24 +0200)]
"Fixed" issues in IE by removing PIE.htc behaviour from critical places
1. iconbar hover effect lagged awfully behind
2. messages and boxes began to fall apart when an element styled by PIE.htc was scrolled out of the #content div
This might be a bug in PIE.htc, need to check and report upstream, if so.

We are now back to edged uglyness without pretty box shadows, but usability has to be dominant until we find a proper fix
NOTE: border-radius.htc does not work on iconbar buttons, it totally messes them up!

12 years agoMerge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel
the_mgt [Sat, 16 Jul 2011 13:17:52 +0000 (15:17 +0200)]
Merge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel

12 years agoAttempting to fix a segfault generated in Removecontext()
Art Cancro [Fri, 15 Jul 2011 18:46:41 +0000 (14:46 -0400)]
Attempting to fix a segfault generated in Removecontext()

12 years agotemplatize userlist
Wilfried Goesgens [Fri, 15 Jul 2011 15:08:36 +0000 (15:08 +0000)]
templatize userlist

  - move the little remaining stuff & needed functionality into useredit.c
  - hash users by UID, faster, plus also uniq, and more clever to search from LBIO.
  - utilize the new '1' parameter to LBIO so we can quickly locate users
  - modify the users found in LBIO to mark them having a bio
  - templatize userlist & user detailview.

12 years agoadd new outputtoken 'F', which does FMOUT with the escaper.
Wilfried Goesgens [Fri, 15 Jul 2011 15:07:36 +0000 (15:07 +0000)]
add new outputtoken 'F', which does FMOUT with the escaper.

12 years agooops, forgot to add this file.
Wilfried Goesgens [Fri, 15 Jul 2011 15:07:07 +0000 (15:07 +0000)]
oops, forgot to add this file.

12 years agoLBIO: add parameter
Wilfried Goesgens [Fri, 15 Jul 2011 15:01:54 +0000 (15:01 +0000)]
LBIO: add parameter

  - if the user provided '1' just the UIDs are listed instead of the actual user name.
  - we now use dirent and friends instead of outputting the output of the unix ls command *cough*

12 years agomove beginbox & endbox to box_* so we can tidy up our static/t/ directory a little...
Wilfried Goesgens [Fri, 15 Jul 2011 12:54:38 +0000 (12:54 +0000)]
move beginbox & endbox to box_* so we can tidy up our static/t/ directory a little more.

12 years agofixed some hickups in summary templating
Wilfried Goesgens [Fri, 15 Jul 2011 12:54:15 +0000 (12:54 +0000)]
fixed some hickups in summary templating

12 years agomove blog templates into their own directory
Wilfried Goesgens [Fri, 15 Jul 2011 12:12:44 +0000 (12:12 +0000)]
move blog templates into their own directory

12 years agomove json message rendering templates into its own directory
Wilfried Goesgens [Fri, 15 Jul 2011 12:07:30 +0000 (12:07 +0000)]
move json message rendering templates into its own directory

12 years agomove dav stuff into its own directory.
Wilfried Goesgens [Fri, 15 Jul 2011 12:05:34 +0000 (12:05 +0000)]
move dav stuff into its own directory.

12 years agotemplatize the summary (half baked)
Wilfried Goesgens [Fri, 15 Jul 2011 11:48:37 +0000 (11:48 +0000)]
templatize the summary (half baked)

12 years agotemplatize (partialy) the summary page.
Wilfried Goesgens [Fri, 15 Jul 2011 11:47:15 +0000 (11:47 +0000)]
templatize (partialy) the summary page.

12 years agoWhen the maximum number of client connections has been exceeded, turn away SMTP clien...
Art Cancro [Thu, 14 Jul 2011 16:09:55 +0000 (12:09 -0400)]
When the maximum number of client connections has been exceeded, turn away SMTP clients with a 451 response instead of a 500.

12 years agoAdded myself to README
the_mgt [Thu, 14 Jul 2011 16:01:39 +0000 (18:01 +0200)]
Added myself to README

12 years agoAdded the Cc's to ReplyAll
Art Cancro [Wed, 13 Jul 2011 22:26:44 +0000 (18:26 -0400)]
Added the Cc's to ReplyAll

12 years agoExtracting the 'To:' header from the replying_to message now works.
Art Cancro [Wed, 13 Jul 2011 21:29:42 +0000 (17:29 -0400)]
Extracting the 'To:' header from the replying_to message now works.

12 years agoExtracting the 'To:' header from the replying_to message now works.
Art Cancro [Wed, 13 Jul 2011 21:27:28 +0000 (17:27 -0400)]
Extracting the 'To:' header from the replying_to message now works.

12 years agoClarified some of the error messages in citmail.c
Art Cancro [Wed, 13 Jul 2011 17:30:01 +0000 (13:30 -0400)]
Clarified some of the error messages in citmail.c

12 years agoInitial implementation of the 'replying_to=' method for extracting Subject and Refere...
Art Cancro [Tue, 12 Jul 2011 04:34:54 +0000 (00:34 -0400)]
Initial implementation of the 'replying_to=' method for extracting Subject and References from Citadel using the msgnum being replied to instead of passing them back and forth through the browser.  Fully in place for public rooms Reply and ReplyQuoted.  Mail messages are next.

12 years agoAllow reuse of WebCit sessions currently resident in memory by unbinding unless the...
Art Cancro [Mon, 11 Jul 2011 18:46:40 +0000 (14:46 -0400)]
Allow reuse of WebCit sessions currently resident in memory by unbinding unless the session is logged in or explicitly provided a session cookie.  This prevents cookieless web spiders from flooding the session table.

12 years agoRemoved a comment documenting the behavior of a bug which we have since fixed.
Art Cancro [Mon, 11 Jul 2011 17:39:44 +0000 (13:39 -0400)]
Removed a comment documenting the behavior of a bug which we have since fixed.

12 years agoRemoved Msg->reply_to because it held data for an older version of the code, we no...
Art Cancro [Mon, 11 Jul 2011 03:02:47 +0000 (23:02 -0400)]
Removed Msg->reply_to because it held data for an older version of the code, we no longer do it this way

12 years agoAdded another empty box to the login screen. This creates enough room to fit the...
Art Cancro [Sat, 9 Jul 2011 22:03:51 +0000 (18:03 -0400)]
Added another empty box to the login screen.  This creates enough room to fit the username/password dialog without a scrollbar.

12 years agoFix broken links to static/expand.gif and static/collapse.gif remaining in wclib.js
Art Cancro [Sat, 9 Jul 2011 22:00:50 +0000 (18:00 -0400)]
Fix broken links to static/expand.gif and static/collapse.gif remaining in wclib.js

12 years agoAllow 'knrooms' in wiki rooms so welcome pages can show the room list in a link
Art Cancro [Sat, 9 Jul 2011 00:58:45 +0000 (20:58 -0400)]
Allow 'knrooms' in wiki rooms so welcome pages can show the room list in a link

12 years agoIf all messages are new during a 'read new messages' operation, assume that this...
Art Cancro [Fri, 8 Jul 2011 23:29:40 +0000 (19:29 -0400)]
If all messages are new during a 'read new messages' operation, assume that this is the user's first visit to the room and start reading on the most recent page instead of showing them ancient history.

12 years agoThis time, I really fixed the alignment in mbox view! Last time, I did fix something...
the_mgt [Fri, 8 Jul 2011 08:13:44 +0000 (10:13 +0200)]
This time, I really fixed the alignment in mbox view! Last time, I did fix something else.
Again, credits go to Matthew McBride (matt/mcbridematt) for the patch!

12 years agoMerge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel
the_mgt [Fri, 8 Jul 2011 07:41:13 +0000 (09:41 +0200)]
Merge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel

12 years agoremoved the green border i had only for testing purposes
the_mgt [Fri, 8 Jul 2011 07:40:53 +0000 (09:40 +0200)]
removed the green border i had only for testing purposes

12 years agoFor sites in guest mode, redirect to the landing page after we're logged out.
Art Cancro [Thu, 7 Jul 2011 22:41:21 +0000 (18:41 -0400)]
For sites in guest mode, redirect to the landing page after we're logged out.

12 years agoRemoved box shadow and round borders from blockquotes in tinymce (while editing)
the_mgt [Thu, 7 Jul 2011 11:09:05 +0000 (13:09 +0200)]
Removed box shadow and round borders from blockquotes in tinymce (while editing)