Sha256: 45183dee37483acaedc519a29aae69367fb8bb3c5cf6f9042c2a8e8fa8b12995

Contents?: true

Size: 485 Bytes

Versions: 9

Compression:

Stored size: 485 Bytes

Contents

<%= update_after(@session.interval, context)%>
<%= on_update_script('document.title = "' + h(@session.headline) + '"') %>
<ul>
<%
last_group = nil
@content.each_slice(30) do |ary|
  ary.each do |k, v|
    time = Time.at(-0.1 * k)
    str, from = v
    group = group_header(from, time)
    if group != last_group %>
        <li class="group" style="color:<%= @color[from] %>"><%=h group %></li>
<%    last_group = group
    end
%>      <li><%=h str %></li><%
  end
  break
end
%>
</ul>

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
tofu-0.3.4 sample/koto/list.erb
tofu-0.3.3 sample/koto/list.erb
tofu-0.3.2 sample/koto/list.erb
tofu-0.3.1 sample/koto/list.erb
tofu-0.3.0 sample/koto/list.erb
tofu-0.2.0 sample/koto/list.erb
tofu-0.1.2 sample/koto/list.erb
tofu-0.1.1 sample/koto/list.erb
tofu-0.1.0 sample/koto/list.erb