Sha256: 5e4846d9b0353366f73d6c792b2e4956d757cce6404970f6eaca8df00e6909d7

Contents?: true

Size: 1.42 KB

Versions: 31

Compression:

Stored size: 1.42 KB

Contents

<p>
<%= manual_home_link() %>
&gt; <%=h _('Search Results') %>
</p>
<%
    headline_init
%>
<%= headline(_('Search Results')) %>
<form method="get" action="" name="f">
<input value="<%=h @query %>" name="q" size="41">
<input value="<%= _('Search') %>" type="submit">
</form>
<p>

<table class="entries">
<tr>
    <td></td>
    <td style="text-align:right" nowrap="nowrap">
        <%=h _('%d Results', @entries.size) %> <%=h '(%.3f sec)' % @elapsed_time %>
    </td>
</tr>
<% unless @entries.empty? %>
<tr>
    <th><%=h _('Entry') %></th>
    <th colspan="2"><%=h _('Description') %></th>
</tr>
<% end %>
<%
        headline_push
        @entries.each do |e|
          foreach_method_chunk(e.source) do |sigs, src| %>
<tr>
<%          case e.type_id
            when :method  %>
<td class="signature"><%=
              case e.type
              when :special_variable
                e.names.map {|name| method_link(e.spec_string, '$' + name) }
              else
                sigs.map {|sig|
                  method_link(e.spec_string,
                              e.klass.name + e.typemark + sig.to_s)
                }
              end.join("<br>\n") %></td>
<td class="description"><%= compile_rd(src) %></td>
<%          when :class   %>
<td class="signature"><%= class_link e.name %></td>
<td class="description"><%= compile_rd(src) %></td>
<%          end           %>
</tr>
<%
          end
        end
        headline_pop
%>
</table>

Version data entries

31 entries across 27 versions & 1 rubygems

Version Path
bitclust-core-1.3.0 data/bitclust/template/search
bitclust-core-1.2.6 data/bitclust/template/search
bitclust-core-1.2.5 data/bitclust/template/search
bitclust-core-1.2.4 data/bitclust/template/search
bitclust-core-1.2.3 data/bitclust/template/search
bitclust-core-1.2.2 data/bitclust/template/search
bitclust-core-1.2.1 data/bitclust/template/search
bitclust-core-1.2.0 data/bitclust/template/search
bitclust-core-1.1.1 data/bitclust/template/search
bitclust-core-1.1.0 data/bitclust/template/search
bitclust-core-1.0.0 data/bitclust/template/search
bitclust-core-0.9.6 data/bitclust/template/search
bitclust-core-0.9.5 data/bitclust/template/search
bitclust-core-0.9.4 data/bitclust/template/search
bitclust-core-0.9.3 data/bitclust/template/search
bitclust-core-0.9.2 data/bitclust/template/search
bitclust-core-0.9.1 data/bitclust/template/search
bitclust-core-0.9.0 data/bitclust/template/search
bitclust-core-0.8.0 data/bitclust/template/search
bitclust-core-0.7.0 data/bitclust/template/search