Sha256: 254bf1765695c87b7ac49e7fd8ee483470505e0bc612599bf31a0ce597021fb3

Contents?: true

Size: 704 Bytes

Versions: 13

Compression:

Stored size: 704 Bytes

Contents

<h1>HTTP sessions</h1>

<table>
  <thead>
    <tr>
      <th>Key</th>
      <th>Working</th>
    </tr>
  </thead>
  <tbody>
    <%
      sessions = _kas.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

13 entries across 13 versions & 1 rubygems

Version Path
knjappserver-0.0.30 lib/pages/debug_http_sessions.rhtml
knjappserver-0.0.29 lib/pages/debug_http_sessions.rhtml
knjappserver-0.0.28 lib/pages/debug_http_sessions.rhtml
knjappserver-0.0.26 lib/pages/debug_http_sessions.rhtml
knjappserver-0.0.25 lib/pages/debug_http_sessions.rhtml
knjappserver-0.0.24 lib/pages/debug_http_sessions.rhtml
knjappserver-0.0.23 lib/pages/debug_http_sessions.rhtml
knjappserver-0.0.22 lib/pages/debug_http_sessions.rhtml
knjappserver-0.0.21 lib/pages/debug_http_sessions.rhtml
knjappserver-0.0.20 lib/pages/debug_http_sessions.rhtml
knjappserver-0.0.19 lib/pages/debug_http_sessions.rhtml
knjappserver-0.0.18 lib/pages/debug_http_sessions.rhtml
knjappserver-0.0.17 lib/pages/debug_http_sessions.rhtml