From: Eloi G. <ada...@us...> - 2004-09-19 18:44:42
|
Update of /cvsroot/phpwsbb/phpwsbb/templates/threads In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6153/templates/threads 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/threads/row.tpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** row.tpl 15 Sep 2004 20:22:18 -0000 1.4 --- row.tpl 19 Sep 2004 18:44:33 -0000 1.5 *************** *** 1,12 **** <tr{ROW_CLASS}> <!-- BEGIN SELECT --> ! <td class="smalltext" align="center">{SELECT}</td> <!-- END SELECT --> <td class="smalltext"> ! <a href="./index.php?module=phpwsbb&PHPWSBB_MAN_OP=view&PHPWS_MAN_ITEMS={ID}">{LABEL}</a></td> <!-- <td class="smalltext">{OWNER}</td> --> ! <td align="center" class="smalltext">{REPLIES}</td> ! <td align="center" class="smalltext">{LASTPOST}</td> </tr> --- 1,12 ---- <tr{ROW_CLASS}> <!-- BEGIN SELECT --> ! <td class="smalltext" style="text-align:center">{SELECT}</td> <!-- END SELECT --> <td class="smalltext"> ! <a href="./index.php?module=phpwsbb&PHPWSBB_MAN_OP=view&PHPWS_MAN_ITEMS[]={ID}">{LABEL}</a></td> <!-- <td class="smalltext">{OWNER}</td> --> ! <td class="smalltext" style="text-align:center">{REPLIES}</td> ! <td class="smalltext" style="text-align:center">{LASTPOST}</td> </tr> Index: list.tpl =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/templates/threads/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:39 -0000 1.4 --- list.tpl 19 Sep 2004 18:44:32 -0000 1.5 *************** *** 7,16 **** <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="100%" class="smalltext"><b>{LABEL_LABEL}</b></td> ! <td align="center" valign="middle" class="smalltext"><b>{REPLIES_LABEL}</b></td> ! <td align="center" valign="middle" nowrap="nowrap" class="smalltext"><b>{LASTPOST_LABEL}</b></td> </tr> {LIST_ITEMS} --- 7,16 ---- <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="100%" class="smalltext" scope="col"><b>{LABEL_LABEL}</b></th> ! <th valign="middle" class="smalltext" style="text-align:center" scope="col"><b>{REPLIES_LABEL}</b></th> ! <th valign="middle" nowrap="nowrap" class="smalltext" style="text-align:center" scope="col"><b>{LASTPOST_LABEL}</b></th> </tr> {LIST_ITEMS} *************** *** 20,27 **** <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> --- 20,28 ---- <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> |