From: Art Cancro Date: Wed, 16 Feb 2005 05:40:31 +0000 (+0000) Subject: * More display fixes X-Git-Tag: v7.86~5046 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=8b94dd04efc369fdcb278fdaaad3b855904f3ad2 * More display fixes --- diff --git a/webcit/ChangeLog b/webcit/ChangeLog index 95b15ab6f..a726751bb 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -1,4 +1,7 @@ $Log$ +Revision 602.2 2005/02/16 05:40:31 ajc +* More display fixes + Revision 602.1 2005/02/16 05:22:22 ajc * inetconf.c: fixed memory management problem that was causing all the inetconf to get discarded during edit on IBM POWER5 @@ -2362,3 +2365,4 @@ Sun Dec 6 19:50:55 EST 1998 Art Cancro 1998-12-03 Nathan Bryant * webserver.c: warning fix + diff --git a/webcit/graphics.c b/webcit/graphics.c index 3f09ef837..5243e0114 100644 --- a/webcit/graphics.c +++ b/webcit/graphics.c @@ -38,8 +38,15 @@ void display_graphics_upload(char *description, char *check_cmd, char *uplurl) } output_headers(1, 1, 0, 0, 0, 0, 0); - svprintf("BOXTITLE", WCS_STRING, "Set/change your photo"); - do_template("beginbox"); + output_headers(1, 1, 2, 0, 0, 0, 0); + wprintf("
\n" + "
" + "Set/change your photo" + "
\n" + "
\n
\n" + ); + + wprintf("
\n"); wprintf("
\n"); @@ -64,7 +71,7 @@ void display_graphics_upload(char *description, char *check_cmd, char *uplurl) wprintf("\n"); wprintf("\n"); wprintf("
\n"); - do_template("endbox"); + wprintf("
\n"); wDumpContent(1); } diff --git a/webcit/messages.c b/webcit/messages.c index 4e6d28f99..4bb7057f0 100644 --- a/webcit/messages.c +++ b/webcit/messages.c @@ -1139,8 +1139,8 @@ void readloop(char *oper) "METHOD=\"POST\" ACTION=\"/do_stuff_to_msgs\">\n"); if (is_summary) { wprintf( - "\n" + "
\n" "" "" "" @@ -1217,7 +1217,7 @@ void readloop(char *oper) } if (is_summary) { - wprintf("
SubjectSender
\n"); + wprintf("\n"); } /* Bump these because although we're thinking in zero base, the user @@ -1231,7 +1231,7 @@ void readloop(char *oper) if ((!is_tasks) && (!is_calendar) && (!is_addressbook) && (!is_notes) && (!is_singlecard)) { wprintf("
" - "
" + "\n" "
" "Reading #%d of %d messages.", lowest_displayed, nummsgs); @@ -1693,10 +1693,10 @@ void confirm_move_msg(void) output_headers(1, 1, 1, 0, 0, 0, 0); - wprintf("
"); - wprintf("Confirm move of message\n"); - wprintf("
\n"); + wprintf("
"); + wprintf("Confirm move of message\n"); + wprintf("
\n"); wprintf("
"); diff --git a/webcit/userlist.c b/webcit/userlist.c index 217c58bb7..a0ddc8e22 100644 --- a/webcit/userlist.c +++ b/webcit/userlist.c @@ -54,7 +54,15 @@ void userlist(void) strcpy(bptr->name, buf); bio = bptr; } - output_headers(1, 1, 0, 0, 0, 0, 0); + output_headers(1, 1, 2, 0, 0, 0, 0); + wprintf("
\n" + "
" + "User list for "); + escputs(serv_info.serv_humannode); + wprintf("" + "
\n" + "
\n
\n" + ); serv_puts("LIST"); serv_gets(buf); @@ -63,12 +71,7 @@ void userlist(void) goto DONE; } - svprintf("BOXTITLE", WCS_STRING, "User list for %s", - serv_info.serv_humannode); - - do_template("beginbox"); - wprintf("
"); - wprintf(""); + wprintf("
"); wprintf("\n"); @@ -107,9 +110,7 @@ void userlist(void) extract_long(buf, 4), extract_long(buf, 5)); } - wprintf("
\n"); wprintf("
User NameNumberAccess LevelLast LoginTotal LoginsTotal Posts
"); - wprintf("
\n"); - do_template("endbox"); + wprintf("
\n"); DONE: wDumpContent(1); }