From: Art Cancro Date: Sat, 15 Jan 2005 05:26:27 +0000 (+0000) Subject: * Message entry window is now somewhat full screen. X-Git-Tag: v7.86~5138 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=02d2889345aeae7880389908ade8dda34b166169;p=citadel.git * Message entry window is now somewhat full screen. --- diff --git a/webcit/ChangeLog b/webcit/ChangeLog index 56e5cfd15..b977e7748 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -1,4 +1,7 @@ $Log$ +Revision 528.10 2005/01/15 05:26:27 ajc +* Message entry window is now somewhat full screen. + Revision 528.9 2005/01/14 21:03:17 ajc * A few logging hacks @@ -2182,4 +2185,3 @@ Sun Dec 6 19:50:55 EST 1998 Art Cancro 1998-12-03 Nathan Bryant * webserver.c: warning fix - diff --git a/webcit/messages.c b/webcit/messages.c index d847609f9..7dd0598e9 100644 --- a/webcit/messages.c +++ b/webcit/messages.c @@ -1576,38 +1576,34 @@ void display_enter(void) stresc(&buf[strlen(buf)], WC->wc_roomname, 1, 1); /* begin message entry screen */ - wprintf("
\n"); + wprintf("
\n"); - wprintf("
\n"); - wprintf("%s
\n", buf); /* header bar */ - - wprintf("
\n"); - wprintf("\n", + wprintf("\n", bstr("recp")); - wprintf("\n", + wprintf("\n", now); - wprintf("\n"); - wprintf(""); - wprintf("
"); - wprintf("\""); + wprintf("%s
\n", buf); /* header bar */ + wprintf("\""); /* "onLoad=\"document.enterform.msgtext.focus();\" " */ - wprintf("Subject (optional):" - "Subject (optional):" + "" + wprintf("\" size=40 maxlength=70>" " " ); - wprintf("
"); - wprintf("" + wprintf("" " " - "
\n"); - wprintf("
\n"); + "\n"); + + /* begin richedit box */ + wprintf("
\n"); wprintf("\n" @@ -1623,20 +1619,12 @@ void display_enter(void) " \n"); - -/* - * Before we had the richedit widget, we did it this way... - * - wprintf("
\n"); - */ + wprintf("
\n"); /* end richedit box */ /* Here comes the "do attachments" section on the bottom */ - wprintf("
\n"); + wprintf("
\n"); /* Enumerate any attachments which are already in place... */ for (att = WC->first_attachment; att != NULL; att = att->next) { @@ -1655,7 +1643,8 @@ void display_enter(void) wprintf("
\n"); /* end attachments section */ - wprintf("
\n"); + wprintf("\n"); + wprintf("
\n"); DONE: wDumpContent(1); }