Tables accessibility : added missing <thead> sections.

pull/76/head
luccioman 8 years ago
parent 9fb3142317
commit 4d8611e5e7

@ -28,13 +28,14 @@
<fieldset id="queues" style="width:210px;float:left;"> <fieldset id="queues" style="width:210px;float:left;">
<legend>Queues</legend> <legend>Queues</legend>
<table border="0" class="watchCrawler"> <table border="0" class="watchCrawler">
<tbody> <thead>
<tr class="TableHeader"> <tr class="TableHeader">
<th width="120">Queue<br/>&nbsp;</th> <th width="120">Queue<br/>&nbsp;</th>
<th width="60">Size<br/>&nbsp;</th> <th width="60">Size<br/>&nbsp;</th>
<th width="30"><span class="glyphicon glyphicon-wrench"></span> <th width="30"><span class="glyphicon glyphicon-wrench"></span></th>
</th>
</tr> </tr>
</thead>
<tbody>
<tr class="TableCellLight"> <tr class="TableCellLight">
<td align="left"><a href="IndexCreateQueues_p.html?stack=LOCAL">Local Crawler</a></td> <td align="left"><a href="IndexCreateQueues_p.html?stack=LOCAL">Local Crawler</a></td>
<td align="right"><span id="localcrawlerqueuesize">#[localCrawlSize]#</span></td> <td align="right"><span id="localcrawlerqueuesize">#[localCrawlSize]#</span></td>
@ -88,12 +89,14 @@
<fieldset id="indexsize" style="width:240px;float:left;"> <fieldset id="indexsize" style="width:240px;float:left;">
<legend>Index Size</legend> <legend>Index Size</legend>
<table border="0" class="watchCrawler"> <table border="0" class="watchCrawler">
<tbody> <thead>
<tr class="TableHeader"> <tr class="TableHeader">
<th width="130">Database<br/>&nbsp;</th> <th width="130">Database<br/>&nbsp;</th>
<th width="50">Entries<br/>&nbsp;</th> <th width="50">Entries<br/>&nbsp;</th>
<th width="40">Seg-<br/>ments</th> <th width="40">Seg-<br/>ments</th>
</tr> </tr>
</thead>
<tbody>
<tr class="TableCellLight"> <tr class="TableCellLight">
<td align="left">Documents<br/><a href="#[urlpublictextSolrURL]#">solr search api</a></td> <td align="left">Documents<br/><a href="#[urlpublictextSolrURL]#">solr search api</a></td>
<td align="right"><span id="urlpublictextSize">#[urlpublictextSize]#</span></td> <td align="right"><span id="urlpublictextSize">#[urlpublictextSize]#</span></td>
@ -121,11 +124,13 @@
<legend>Progress</legend> <legend>Progress</legend>
<form action="Crawler_p.html" method="get" enctype="multipart/form-data" accept-charset="UTF-8"> <form action="Crawler_p.html" method="get" enctype="multipart/form-data" accept-charset="UTF-8">
<table border="0" class="watchCrawler"> <table border="0" class="watchCrawler">
<tbody> <thead>
<tr class="TableHeader"> <tr class="TableHeader">
<th width="160">Indicator<br/>&nbsp;</th> <th width="160">Indicator<br/>&nbsp;</th>
<th width="300" colspan="4">Level<br/>&nbsp;</th> <th width="300" colspan="4">Level<br/>&nbsp;</th>
</tr> </tr>
</thead>
<tbody>
<tr class="TableCellLight"> <tr class="TableCellLight">
<td align="left">Speed / PPM<br/>(Pages Per Minute)</td> <td align="left">Speed / PPM<br/>(Pages Per Minute)</td>
<td align="left" colspan="4"> <td align="left" colspan="4">
@ -222,30 +227,36 @@ window.setInterval("setTableSize()", 1000);
<legend>Running Crawls (#[count]#)</legend> <legend>Running Crawls (#[count]#)</legend>
<table width="96%"> <table width="96%">
<tr><td> <tr><td>
<table border="0" summary="A list of crawl profiles and their current settings."> <table border="0" summary="A list of crawl profiles and their current settings." id="crawlProfiles">
<colgroup> <colgroup>
<col width="16" /> <col width="16" />
<col width="140"/> <col width="140"/>
</colgroup> </colgroup>
<thead>
<tr class="TableHeader"> <tr class="TableHeader">
<td><strong>Name</strong></td> <th><strong>Name</strong></th>
#(debug)#::<td><strong>Count</strong></td>#(/debug)# #(debug)#::<th><strong>Count</strong></th>#(/debug)#
<td><strong>Status</strong></td> <th><strong>Status</strong></th>
</tr> </tr>
</thead>
<tbody>
#{list}# #{list}#
<tr class="TableCell#(dark)#Light::Dark#(/dark)#"> <tr class="TableCell#(dark)#Light::Dark#(/dark)#">
<td>#[name]#</td> <td>#[name]#</td>
#(debug)#::<td>#[count]#</td>#(/debug)# #(debug)#::<td>#[count]#</td>#(/debug)#
<td>#(terminateButton)#:: <td>#(terminateButton)#::
<div style="text-decoration:blink;float:left;">Running</div> <div style="text-decoration:blink;float:left;">Running</div>
<form style="float:left;" action="Crawler_p.html" method="get" enctype="multipart/form-data" accept-charset="UTF-8"><div> <form style="float:left;" action="Crawler_p.html" method="get" enctype="multipart/form-data" accept-charset="UTF-8">
<div>
<input type="hidden" name="handle" value="#[handle]#" /> <input type="hidden" name="handle" value="#[handle]#" />
<input type="submit" name="terminate" value="Terminate" class="btn btn-danger btn-xs"/> <input type="submit" name="terminate" value="Terminate" class="btn btn-danger btn-xs"/>
</div></form> </div>
</form>
#(/terminateButton)# #(/terminateButton)#
</td> </td>
</tr> </tr>
#{/list}# #{/list}#
</tbody>
</table> </table>
</td> </td>
#(linkstructure)# #(linkstructure)#

Loading…
Cancel
Save