Single column

git-svn-id: file:///home/svn/framework3/trunk@3982 4d416f70-5f16-0410-b530-b9f4589650da
unstable
HD Moore 2006-09-27 19:55:29 +00:00
parent 240f429a5a
commit dd22ecf9e0
6 changed files with 41 additions and 21 deletions

View File

@ -1,18 +1,22 @@
<table> <table>
<thead> <thead>
<tr> <tr>
<th>Name</th> <th>Modules</th>
<th>Description</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<% @auxiliaries.each do |m| %> <% @auxiliaries.each do |m| %>
<tr>
<tr class="itemTitle">
<td class="itemTitle"> <td class="itemTitle">
<a onClick="window.parent.openModuleWindow('auxiliaries', '<%= m.refname.gsub('/', ':') %>', '<%= m.name %>')" href="#"><%= m.name %></a> <a onClick="window.parent.openModuleWindow('auxiliaries', '<%= m.refname.gsub('/', ':') %>', '<%= m.name %>')" href="#"><%= m.name %></a>
</td> </td>
</tr>
<tr class="itemDescription">
<td class="itemDescription"><%= m.description %></td> <td class="itemDescription"><%= m.description %></td>
</tr> </tr>
<% end %> <% end %>
</tbody> </tbody>
</table> </table>

View File

@ -1,20 +1,24 @@
<table> <table>
<thead> <thead>
<tr> <tr>
<th>Name</th> <th>Modules</th>
<th>Description</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<% @encoders.each_index do |i| <% @encoders.each_index do |i|
m = @encoders[i] m = @encoders[i]
%> %>
<tr>
<tr class="itemTitle">
<td class="itemTitle"> <td class="itemTitle">
<a onClick="window.parent.openModuleWindow('encoders', '<%= i %>', '<%= m.name %>')" href="#"><%= m.name %></a> <a onClick="window.parent.openModuleWindow('encoders', '<%= m.refname.gsub('/', ':') %>', '<%= m.name %>')" href="#"><%= m.name %></a>
</td> </td>
</tr>
<tr class="itemDescription">
<td class="itemDescription"><%= m.description %></td> <td class="itemDescription"><%= m.description %></td>
</tr> </tr>
<% end %> <% end %>
</tbody> </tbody>
</table> </table>

View File

@ -1,20 +1,24 @@
<table> <table>
<thead> <thead>
<tr> <tr>
<th>Name</th> <th>Modules</th>
<th>Description</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<% @exploits.each_index do |i| <% @exploits.each_index do |i|
m = @exploits[i] m = @exploits[i]
%> %>
<tr>
<tr class="itemTitle">
<td class="itemTitle"> <td class="itemTitle">
<a onClick="window.parent.openModuleWindow('exploits', '<%= i %>', '<%= m.name %>')" href="#"><%= m.name %></a> <a onClick="window.parent.openModuleWindow('exploits', '<%= m.refname.gsub('/', ':') %>', '<%= m.name %>')" href="#"><%= m.name %></a>
</td> </td>
</tr>
<tr class="itemDescription">
<td class="itemDescription"><%= m.description %></td> <td class="itemDescription"><%= m.description %></td>
</tr> </tr>
<% end %> <% end %>
</tbody> </tbody>
</table> </table>

View File

@ -1,20 +1,24 @@
<table> <table>
<thead> <thead>
<tr> <tr>
<th>Name</th> <th>Modules</th>
<th>Description</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<% @nops.each_index do |i| <% @nops.each_index do |i|
m = @nops[i] m = @nops[i]
%> %>
<tr>
<tr class="itemTitle">
<td class="itemTitle"> <td class="itemTitle">
<a onClick="window.parent.openModuleWindow('nops', '<%= i %>', '<%= m.name %>')" href="#"><%= m.name %></a> <a onClick="window.parent.openModuleWindow('nops', '<%= m.refname.gsub('/', ':') %>', '<%= m.name %>')" href="#"><%= m.name %></a>
</td> </td>
</tr>
<tr class="itemDescription">
<td class="itemDescription"><%= m.description %></td> <td class="itemDescription"><%= m.description %></td>
</tr> </tr>
<% end %> <% end %>
</tbody> </tbody>
</table> </table>

View File

@ -1,20 +1,24 @@
<table cellpadding="0" cellspacing="0" border="0"> <table cellpadding="0" cellspacing="0" border="0">
<thead> <thead>
<tr> <tr>
<th>Name</th> <th>Modules</th>
<th>Description</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<% @payloads.each_index do |i| <% @payloads.each_index do |i|
m = @payloads[i] m = @payloads[i]
%> %>
<tr>
<tr class="itemTitle">
<td class="itemTitle"> <td class="itemTitle">
<a onClick="window.parent.openModuleWindow('payloads', '<%= i %>', '<%= m.name %>')" href="#"><%= m.name %></a> <a onClick="window.parent.openModuleWindow('payloads', '<%= m.refname.gsub('/', ':') %>', '<%= m.name %>')" href="#"><%= m.name %></a>
</td> </td>
</tr>
<tr class="itemDescription">
<td class="itemDescription"><%= m.description %></td> <td class="itemDescription"><%= m.description %></td>
</tr> </tr>
<% end %> <% end %>
</tbody> </tbody>
</table> </table>

View File

@ -47,4 +47,4 @@ table .itemDescription {
table .itemDescription:hover { table .itemDescription:hover {
background: #CAE1FF; background: #CAE1FF;
} }