Sha256: 05abc2da0c77d81741dca1bfaa91e20b790382e59d99c2b437b74ebf5d054b21

Contents?: true

Size: 1.45 KB

Versions: 4

Compression:

Stored size: 1.45 KB

Contents

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
  <head>
    <meta name="Content-Type" content="text/html; charset=UTF-8" />
    <link rel="stylesheet" href="css/full_list.css" type="text/css" media="screen" charset="utf-8" />
    <link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
    <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
    <script type="text/javascript" charset="utf-8" src="js/full_list.js"></script>
    <base target="_parent" />
  </head>
  <body>
    <h1 id="full_list_header"><%= @list_title %></h1>
    <div id="search">Search: <input type="text" /></div>
    <div class="clear"></div>
    <ul id="full_list">
      <% n = 1 %>
      <% @items.each do |item| %>
        <li class="r<%= n %> <%= item.is_a?(CodeObjects::Base) && item.has_tag?(:deprecated) ? 'deprecated' : '' %>">
          <% if @file_list %>
            <%= link_file item, File.basename(item).gsub(/\.[^.]+$/, '') %>
          <% elsif item.root? %>
            <a href="top-level-namespace.html">Top Level Namespace</a>
          <% else %>
            <%= linkify item, item.name(true) %> 
            <% if item.namespace && !item.namespace.root? %>
              <small>(<%= item.namespace %>)</small>
            <% end %>
          <% end %>
          <% n = n == 2 ? 1 : 2 %>
        </li>
      <% end %>
    </ul>
  </body>
</html>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
yard-0.5.2 templates/default/fulldoc/html/full_list.erb
yard-0.5.1p1 templates/default/fulldoc/html/full_list.erb
yard-0.5.1 templates/default/fulldoc/html/full_list.erb
yard-0.5.0 templates/default/fulldoc/html/full_list.erb