342298ed0e
Should be to the published action. This didn't work right for inter-web links. (Reported by Mike Shulman) Also, change some .length's to .size's (for Andrew Stacey)
26 lines
803 B
Plaintext
26 lines
803 B
Plaintext
<%- @title = "Recently Revised" -%>
|
|
|
|
<%= categories_menu %>
|
|
|
|
<%- @pages_by_day.keys.sort.reverse.each do |day| -%>
|
|
<h3><%= format_date(day, include_time = false) %></h3>
|
|
<ul>
|
|
<%- for page in @pages_by_day[day] -%>
|
|
<li>
|
|
<%= link_to_existing_page page %>
|
|
<%- if page.revisions.size > 1 %>
|
|
<span class="views">
|
|
( <%= link_to_revision(page, page.revisions.size, text='diff',
|
|
mode='diff') %> | <%= link_to_history(page, text='history') %> )
|
|
</span>
|
|
<%- end -%>
|
|
<div class="byline" style="margin-bottom: 0px">
|
|
by <%= link_to_page(page.author) %>
|
|
at <%= format_date(page.revised_at) %>
|
|
<%= "from #{page.author.ip}" if page.author.respond_to?(:ip) %>
|
|
</div>
|
|
</li>
|
|
<%- end -%>
|
|
</ul>
|
|
<%- end -%>
|