<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="ja-JP">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=<%=h charset() %>">
  <meta http-equiv="Content-Language" content="ja-JP">
  <link rel="stylesheet" type="text/css" href="<%=h css_url() %>">
  <title><%= _('Library Index') %></title>
  <link rel="search" type="application/opensearchdescription+xml" title="<%= _('Ruby %s Reference Manual', ruby_version()) %>" href="<%=h opensearchdescription_url() %>">
</head>
<body id="libraryindex">

<p>
<%= manual_home_link() %> 
&gt; <%= _("All Libraries") %>
</p>
<%= search_form() %>

<%
    headline_init
%>
<%= headline(_("Library Index")) %>
<table class="entries" class="libraries">
<%
    headline_push
    lib = @entries.detect {|lib| lib.id == '_builtin' }
%>
<tr>
<td class="signature"><%= library_link(lib.name, _('Builtin Library')) %></td>
<td class="description"><%= compile_rd(lib.synopsis_source) %></td>
</tr>
<%
    @entries.each do |lib|
      next if lib.id == '_builtin'
      next if lib.is_sublibrary
%>
<tr>
<td class="signature"><%= library_link(lib.name) %></td>
<td class="description"><%= compile_rd(lib.synopsis_source) %></td>
</tr>
<%
    end
    headline_pop
%>
</table>

</body>
</html>
