1 message in net.sourceforge.lists.courier-sqwebmail[sqwebmail] [PATCH] Simpler changing ...
FromSent OnAttachments
Marcin SemeniukMay 23, 2006 1:37 am.patch
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:[sqwebmail] [PATCH] Simpler changing of textarea for mailing lists editiingActions...
From:Marcin Semeniuk (m.se@net.icm.edu.pl)
Date:May 23, 2006 1:37:10 am
List:net.sourceforge.lists.courier-sqwebmail
Attachments:

Hello Sam,

Another simple patch that moves definition of textarea from .c file to .html

best regards, Marcin Semeniuk

--- webmail/sqwebmail.c-org 2006-05-23 10:05:34.000000000 +0200 +++ webmail/sqwebmail.c 2006-05-23 10:08:03.000000000 +0200 @@ -1363,12 +1363,9 @@ ** things up in Netscape. */

- printf("<textarea style=\"font-family: courier;\" cols=\"40\" rows=\"4\" " - "name=\"mailinglists\" wrap=\"soft\">"); output_attrencoded(p ? p:""); if (p) free(p); - printf("</textarea>"); } else if (strcmp(kw, "AUTORESPONSE") == 0) { --- webmail/html/en-us/preferences.html-org 2006-05-23 10:06:04.000000000 +0200 +++ webmail/html/en-us/preferences.html 2006-05-23 10:07:52.000000000 +0200 @@ -182,7 +182,11 @@ Mailing Lists</div>

<p>Enter the addresses of mailing lists you are - subscribed to (one per line): [#MAILINGLISTS#]</p> + subscribed to (one per line): <textarea + style="font-family: courier;" cols="40" + rows="4" name="mailinglists" + wrap="soft">[#MAILINGLISTS#]</textarea> + </p> </td> <td width="100%"></td> </tr>