From: Eloi G. <ada...@us...> - 2004-09-19 18:44:41
|
Update of /cvsroot/phpwsbb/phpwsbb/templates/forums In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6153/templates/forums Modified Files: list.tpl row.tpl Log Message: Got rid of deprecated "align" & "center" tags and made other changes to bring module output closer to WAI & Section 508 accessibility standards Index: row.tpl =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/templates/forums/row.tpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** row.tpl 13 Aug 2004 21:32:39 -0000 1.4 --- row.tpl 19 Sep 2004 18:44:32 -0000 1.5 *************** *** 1,5 **** <tr{ROW_CLASS}> <!-- BEGIN SELECT --> ! <td class="smalltext" align="center">{SELECT}</td> <!-- END SELECT --> <td class="smalltext"> --- 1,5 ---- <tr{ROW_CLASS}> <!-- BEGIN SELECT --> ! <td class="smalltext" style="text-align:center">{SELECT}</td> <!-- END SELECT --> <td class="smalltext"> Index: list.tpl =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/templates/forums/list.tpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** list.tpl 13 Aug 2004 21:32:38 -0000 1.4 --- list.tpl 19 Sep 2004 18:44:32 -0000 1.5 *************** *** 7,28 **** <table border="0" width="100%" cellspacing="1" cellpadding="4"> <tr class="bg_medium"> ! <!-- BEGIN SELECT_LABEL --> ! <td class="smalltext"><b>{SELECT_LABEL}</b></td> ! <!-- END SELECT_LABEL --> ! <td width="60%" class="smalltext"><b>{LABEL_LABEL}</b></td> ! <td align="center" valign="middle" class="smalltext"><b>{THREADS_LABEL}</b></td> ! <td align="center" valign="middle" class="smalltext"><b>{POSTS_LABEL}</b></td> ! <td width="30%" align="center" valign="middle" nowrap="nowrap" class="smalltext"><b>{LASTPOST_LABEL}</b></td> </tr> {LIST_ITEMS} </table> <!-- BEGIN ACTION_STUFF --> ! <br /> ! <table border="0" width="100%"> <tr> ! <td width="33%">{NAV_INFO}</td> ! <td width="33%" align="center">{NAV_BACKWARD} {NAV_SECTIONS} {NAV_FORWARD}<br /> ! {NAV_LIMITS}</td> ! <td width="33%" align="right">{ACTION_SELECT} {ACTION_BUTTON}</td> </tr> </table> --- 7,29 ---- <table border="0" width="100%" cellspacing="1" cellpadding="4"> <tr class="bg_medium"> ! <!-- BEGIN SELECT_LABEL --> ! <th class="smalltext" scope="col"><b>{SELECT_LABEL}</b></th> ! <!-- END SELECT_LABEL --> ! <th width="60%" class="smalltext" scope="col"><b>{LABEL_LABEL}</b></th> ! <th valign="middle" class="smalltext" style="text-align:center" scope="col"><b>{THREADS_LABEL}</b></th> ! <th valign="middle" class="smalltext" style="text-align:center" scope="col"><b>{POSTS_LABEL}</b></th> ! <th width="30%" valign="middle" nowrap="nowrap" class="smalltext" style="text-align:center" scope="col"><b>{LASTPOST_LABEL}</b></th> </tr> {LIST_ITEMS} </table> <!-- BEGIN ACTION_STUFF --> ! <table border="0" width="100%" style="background-color: transparent"> <tr> ! <td width="33%">{NAV_INFO}</td> ! <td width="33%" style="text-align:center"> ! {NAV_BACKWARD} {NAV_SECTIONS} {NAV_FORWARD}<br /> ! {NAV_LIMITS} ! </td> ! <td width="33%" style="text-align:right">{ACTION_SELECT} {ACTION_BUTTON}</td> </tr> </table> |