17 messages in net.sourceforge.lists.courier-sqwebmail[sqwebmail] Small "Check Spelling" im...
FromSent OnAttachments
Pawel TeczaJul 20, 2006 3:15 am 
Sam VarshavchikJul 20, 2006 3:57 am 
Pawel TeczaJul 20, 2006 4:41 am 
Sam VarshavchikJul 20, 2006 5:25 pm 
Pawel TeczaJul 21, 2006 12:32 am 
Sam VarshavchikJul 21, 2006 3:58 am 
Pawel TeczaJul 21, 2006 4:34 am 
ResJul 21, 2006 6:46 pm 
Sam VarshavchikJul 22, 2006 2:42 pm 
Mark ConstableJul 22, 2006 3:16 pm 
Sam VarshavchikJul 22, 2006 4:56 pm 
Brian CandlerJul 23, 2006 11:35 am 
Pawel TeczaJul 25, 2006 2:13 am 
Sam VarshavchikJul 25, 2006 4:00 am 
Pawel TeczaJul 25, 2006 5:01 am 
Dave TurkAug 3, 2006 8:55 am 
Pawel TeczaAug 4, 2006 1:17 am 
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] Small "Check Spelling" improvements and XHTML fixActions...
From:Pawel Tecza (p.te@net.icm.edu.pl)
Date:Jul 20, 2006 3:15:57 am
List:net.sourceforge.lists.courier-sqwebmail

Hi Sam,

Are you alive there? ;) I hope so and now I'm sending you a patch with the following small changes:

1. set border="0" attribute for all <table> tags on "Check Spelling" page

Some of tables have border="1" attribute and it looks ugly. I think that is a typo.

2. "size" attribute instead of "width" for one <input> tag

It's probably a typo too.

Any your feedback is very welcomed :)

Index: webmail/sqispell.c =================================================================== RCS file: /cvsroot/courier/courier/webmail/sqispell.c,v retrieving revision 1.21 diff -u -r1.21 sqispell.c --- webmail/sqispell.c 25 Jan 2004 05:38:50 -0000 1.21 +++ webmail/sqispell.c 20 Jul 2006 09:45:18 -0000 @@ -441,7 +441,7 @@ "class=\"box-small-outer\"><tr><td>"); printf("<table border=\"0\" cellspacing=\"0\"
class=\"spellcheck-background\"><tr><td>");

- printf("<table border=\"1\" cellspacing=\"0\" cellpadding=\"8\"
class=\"spellcheck-excerpt\"><tr><td align=\"center\"><span style=\"color:
#000000\" class=\"spellcheck-excerpt\">"); + printf("<table border=\"0\" cellspacing=\"0\" cellpadding=\"8\"
class=\"spellcheck-excerpt\"><tr><td align=\"center\"><span
class=\"spellcheck-excerpt\">");

if (msp->word_pos > 30) { @@ -490,7 +490,7 @@ if (n != l-p) printf("&nbsp;..."); printf("</span></td></tr></table><br />"); - printf("<table border=\"1\" cellpadding=\"8\"
class=\"spellcheck-main\"><tr><td>"); + printf("<table border=\"0\" cellpadding=\"8\"
class=\"spellcheck-main\"><tr><td>");

printf("<table border=\"0\">"); for (isps=msp->first_suggestion; isps; isps=isps->next) @@ -501,7 +501,7 @@ isps->suggested_word); replacelab=" "; } - printf("<tr><td>%s</td><td><input type=\"radio\" name=\"REPLACE\"
value=\"#other\" /></td><td><input type=\"text\" name=\"OTHER\" width=\"20\"
/></td></tr>\n", + printf("<tr><td>%s</td><td><input type=\"radio\" name=\"REPLACE\"
value=\"#other\" /></td><td><input type=\"text\" name=\"OTHER\" size=\"20\"
/></td></tr>\n", replacelab); printf("<tr><td> </td><td><input type=\"radio\" name=\"REPLACE\"
value=\"#insert\" /></td><td>%s</td></tr>\n", insertlab); @@ -515,7 +515,7 @@ ignorealllab); printf("</table>"); printf("</td></tr></table><br />"); - printf("<table border=\"1\" cellpadding=\"8\"
class=\"spellcheck-continue\"><tr><td>"); + printf("<table border=\"0\" cellpadding=\"8\"
class=\"spellcheck-continue\"><tr><td>"); printf("<input type=\"submit\" name=\"continue\" value=\"%s\" />\n", continuelab); printf("<input type=\"submit\" name=\"finish\" value=\"%s\" />\n",

My best regards,