a5e08f7bcc
I installed the rails_xss plugin, for the main purpose of seeing what will break with Rails 3.0 (where the behaviour of the plugin is the default). I think I've fixed everything, but let me know if you see stuff that is HTML-escaped, which shouldn't be. As a side benefit, we now use Erubis, rather than ERB, to render templates. They tell me it's faster ...
29 lines
1,016 B
Plaintext
29 lines
1,016 B
Plaintext
<%- @title = "Wiki webs" -%>
|
|
|
|
<ul>
|
|
<%- @webs.each do |web| -%>
|
|
|
|
<li>
|
|
<%- if web.password -%>
|
|
<div class="web_protected">
|
|
<%- else -%>
|
|
<div class="web_normal">
|
|
<%- end -%>
|
|
<%= link_to(web.name, {:web => web.address, :action => 'show', :id => 'HomePage'}) %>
|
|
<%- if web.published? -%>
|
|
(<%= link_to_page 'HomePage', web, 'published version', :mode => 'publish' %>)
|
|
<%- end -%>
|
|
|
|
<div class="byline" style="margin-bottom: 0px">
|
|
<%= web.pages.size %> page<% if web.pages.size != 1 %>s<% end %> by <%= web.authors.size %> author<% if web.authors.size != 1 %>s<% end %>
|
|
- Last Update: <%= web.last_page.nil? ? format_date(web.created_at) : format_date(web.last_page.revised_at) %><br/>
|
|
<%- if ! web.last_page.nil? -%>
|
|
Last Document: <%= link_to_page(web.last_page.name,web) %>
|
|
<%= web.last_page.revisions? ? "Revised" : "Created" %> by <%= author_link(web.last_page) %> (<%= web.last_page.current_revision.ip %>)
|
|
<%- end -%>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
<%- end -%>
|
|
</ul>
|