From 8fb8b62ce85b9ded1610fd3008208811bc58cf50 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Fri, 13 Jan 2006 05:02:27 +0000 Subject: [PATCH] Removed the split bbview because it's b0rken in IE --- webcit/ChangeLog | 3 +++ webcit/messages.c | 16 ++++++++-------- webcit/static/webcit.css | 40 ---------------------------------------- webcit/webcit.c | 5 ++--- 4 files changed, 13 insertions(+), 51 deletions(-) diff --git a/webcit/ChangeLog b/webcit/ChangeLog index 712a9c0ae..88703deb8 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -1,5 +1,8 @@ $Id$ +Fri Jan 13 00:01:58 EST 2006 ajc +* Removed the split bbview because it's b0rken in IE + Thu Jan 12 00:40:28 EST 2006 ajc * Changes to instant messenger to work around IE bugs diff --git a/webcit/messages.c b/webcit/messages.c index 6b9a51a7c..0139a9610 100644 --- a/webcit/messages.c +++ b/webcit/messages.c @@ -2146,15 +2146,14 @@ void readloop(char *oper) qsort(displayed_msgs, num_displayed, sizeof(long), longcmp_r); } - if (is_bbview) { - wprintf("
"); - } + /* if we do a split bbview in the future, begin messages div here */ + for (a=0; a\n"); - } + + /* if we do a split bbview in the future, end messages div here */ + free(displayed_msgs); displayed_msgs = NULL; } @@ -2188,7 +2187,7 @@ void readloop(char *oper) * messages, then display the selector bar */ if (is_bbview) { - wprintf("
"); + /* begin bbview scroller */ wprintf("
"); wprintf(_("Reading #"), lowest_displayed, highest_displayed); @@ -2261,7 +2260,8 @@ void readloop(char *oper) oper ); - wprintf("
\n"); + wprintf("\n"); + /* end bbview scroller */ } } diff --git a/webcit/static/webcit.css b/webcit/static/webcit.css index 0f3731d8f..58f6e50b5 100644 --- a/webcit/static/webcit.css +++ b/webcit/static/webcit.css @@ -170,46 +170,6 @@ body { } -#bbview_scroller { - position:fixed; - display:block; - top: 15%; - left: 15%; - width: 85%; - height: 80%; - overflow: auto; -} - -* html #bbview_scroller { - position:absolute; - display:block; - top: 15%; - left: 15%; - width: 85%; - height: 80%; - overflow: auto; -} - -#bbview_selector { - position:fixed; - display:block; - top: 95%; - left: 15%; - width: 85%; - height: 5%; - overflow: none; -} - -* html #bbview_selector { - position:absolute; - display:block; - top: 95%; - left: 15%; - width: 85%; - height: 5%; - overflow: none; -} - #fix_scrollbar_bug { margin-right:1px; /* Gecko and other non-broken browsers */ width: expression('97%'); /* Only IE6 understands 'expression' - fixes weird scrollbarbug */ diff --git a/webcit/webcit.c b/webcit/webcit.c index 81f3281a7..127808b09 100644 --- a/webcit/webcit.c +++ b/webcit/webcit.c @@ -406,9 +406,8 @@ void output_headers( int do_httpheaders, /* 1 = output HTTP headers if ( (WC->logged_in) && (!unset_cookies) ) { wprintf("
"); do_selected_iconbar(); - - /* check for instant messages (these display in a new window) */ - page_popup(); + /* check for instant messages (these display in a new window) + page_popup(); */ wprintf("
"); } -- 2.39.2