Sha256: 8637404fdeab0b242442ef24e2ff4eafffd47898f00596479e3abcdb4ceb039f

Contents?: true

Size: 703 Bytes

Versions: 25

Compression:

Stored size: 703 Bytes

Contents

<h1>HTTP sessions</h1>

<table>
  <thead>
    <tr>
      <th>Key</th>
      <th>Working</th>
    </tr>
  </thead>
  <tbody>
    <%
      sessions = _hb.httpserv.http_sessions.clone
      
      sessions.each_index do |key|
        http_session = sessions[key]
        
        %>
          <tr>
            <td>
              <%=key%>
            </td>
            <td>
              <%=Knj::Strings.yn_str(http_session.working)%>
            </td>
          </tr>
        <%
      end
      
      if sessions.empty?
        %>
          <tr>
            <td colspan="2">
              No HTTP-sessions has been spawned.
            </td>
          </tr>
        <%
      end
    %>
  </tbody>
</table>

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
hayabusa-0.0.30 pages/debug_http_sessions.rhtml
hayabusa-0.0.28 pages/debug_http_sessions.rhtml
hayabusa-0.0.25 pages/debug_http_sessions.rhtml
hayabusa-0.0.24 pages/debug_http_sessions.rhtml
hayabusa-0.0.23 pages/debug_http_sessions.rhtml
hayabusa-0.0.22 pages/debug_http_sessions.rhtml
hayabusa-0.0.20 pages/debug_http_sessions.rhtml
hayabusa-0.0.19 pages/debug_http_sessions.rhtml
hayabusa-0.0.18 pages/debug_http_sessions.rhtml
hayabusa-0.0.17 pages/debug_http_sessions.rhtml
hayabusa-0.0.16 pages/debug_http_sessions.rhtml
hayabusa-0.0.15 pages/debug_http_sessions.rhtml
hayabusa-0.0.14 pages/debug_http_sessions.rhtml
hayabusa-0.0.13 pages/debug_http_sessions.rhtml
hayabusa-0.0.12 pages/debug_http_sessions.rhtml
hayabusa-0.0.11 pages/debug_http_sessions.rhtml
hayabusa-0.0.10 pages/debug_http_sessions.rhtml
hayabusa-0.0.9 pages/debug_http_sessions.rhtml
hayabusa-0.0.8 pages/debug_http_sessions.rhtml
hayabusa-0.0.6 pages/debug_http_sessions.rhtml