Single column
git-svn-id: file:///home/svn/framework3/trunk@3982 4d416f70-5f16-0410-b530-b9f4589650daunstable
parent
240f429a5a
commit
dd22ecf9e0
|
@ -1,18 +1,22 @@
|
|||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Description</th>
|
||||
<th>Modules</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<% @auxiliaries.each do |m| %>
|
||||
<tr>
|
||||
|
||||
<tr class="itemTitle">
|
||||
<td class="itemTitle">
|
||||
<a onClick="window.parent.openModuleWindow('auxiliaries', '<%= m.refname.gsub('/', ':') %>', '<%= m.name %>')" href="#"><%= m.name %></a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr class="itemDescription">
|
||||
<td class="itemDescription"><%= m.description %></td>
|
||||
</tr>
|
||||
|
||||
<% end %>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
|
@ -1,20 +1,24 @@
|
|||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Description</th>
|
||||
<th>Modules</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<% @encoders.each_index do |i|
|
||||
m = @encoders[i]
|
||||
%>
|
||||
<tr>
|
||||
|
||||
<tr 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>
|
||||
</tr>
|
||||
|
||||
<tr class="itemDescription">
|
||||
<td class="itemDescription"><%= m.description %></td>
|
||||
</tr>
|
||||
|
||||
<% end %>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
|
@ -1,20 +1,24 @@
|
|||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Description</th>
|
||||
<th>Modules</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<% @exploits.each_index do |i|
|
||||
m = @exploits[i]
|
||||
%>
|
||||
<tr>
|
||||
|
||||
<tr 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>
|
||||
</tr>
|
||||
|
||||
<tr class="itemDescription">
|
||||
<td class="itemDescription"><%= m.description %></td>
|
||||
</tr>
|
||||
|
||||
<% end %>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
|
@ -1,20 +1,24 @@
|
|||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Description</th>
|
||||
<th>Modules</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<% @nops.each_index do |i|
|
||||
m = @nops[i]
|
||||
%>
|
||||
<tr>
|
||||
|
||||
<tr 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>
|
||||
</tr>
|
||||
|
||||
<tr class="itemDescription">
|
||||
<td class="itemDescription"><%= m.description %></td>
|
||||
</tr>
|
||||
|
||||
<% end %>
|
||||
</tbody>
|
||||
</table>
|
|
@ -1,20 +1,24 @@
|
|||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Description</th>
|
||||
<th>Modules</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<% @payloads.each_index do |i|
|
||||
m = @payloads[i]
|
||||
%>
|
||||
<tr>
|
||||
|
||||
<tr 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>
|
||||
</tr>
|
||||
|
||||
<tr class="itemDescription">
|
||||
<td class="itemDescription"><%= m.description %></td>
|
||||
</tr>
|
||||
|
||||
<% end %>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
Loading…
Reference in New Issue