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 ...
55 lines
1.9 KiB
Plaintext
55 lines
1.9 KiB
Plaintext
<%-
|
|
@title = @page.plain_name
|
|
@title += ' (changes)' if @show_diff
|
|
@show_footer = true
|
|
-%>
|
|
|
|
<div id="revision">
|
|
<%- if @show_diff -%>
|
|
<p class="show_diff">
|
|
Showing changes from revision #<%= @page.revisions.size - 1 %> to #<%= @page.revisions.size %>:
|
|
<ins class="diffins">Added</ins> | <del class="diffdel">Removed</del> | <del class="diffmod">Chan</del><ins class="diffmod">ged</ins>
|
|
</p>
|
|
<%= @renderer.display_diff %>
|
|
<%- else -%>
|
|
<%= @renderer.display_content %>
|
|
<%- end -%>
|
|
</div>
|
|
|
|
<div class="byline">
|
|
<%= @page.revisions? ? "Revised" : "Created" %> on <%= format_date(@page.revised_at) %>
|
|
by <%= author_link(@page) %>
|
|
<%= "(#{@page.author.ip})" if @page.author.respond_to?(:ip) %>
|
|
<% if @web.count_pages? %>
|
|
<% total_chars = @page.content.length %>
|
|
(<%= total_chars %> characters / <%= sprintf("%-.1f", (total_chars / 2275 rescue 0)) %> pages)
|
|
<% end %>
|
|
</div>
|
|
|
|
<div class="navigation navfoot">
|
|
|
|
<%= raw navigation_menu_for_page.join(' | ') %>
|
|
|
|
<span class="views">
|
|
| Views:
|
|
<%= link_to('Print',
|
|
{ :web => @web.address, :action => 'print', :id => @page.name },
|
|
{ :accesskey => 'p', :id => 'view_print', :rel => 'nofollow' }) %>
|
|
<%- if @web.markup == :markdownMML or @web.markup == :markdown or @web.markup == :markdownPNG -%>
|
|
|
|
|
<%= link_to 'TeX', {:web => @web.address, :action => 'tex', :id => @page.name},
|
|
{:id => 'view_tex', :rel => 'nofollow' } %>
|
|
<% if WikiReference.pages_in_category(@web, 'S5-slideshow').map.include?(@page.name) %>
|
|
|
|
|
<%= link_to 'S5', {:web => @web.address, :action => 's5', :id => @page.name},
|
|
{:id => 'view_S5'} %>
|
|
<%- end -%>
|
|
<%- end -%>
|
|
|
|
|
<%= link_to 'Source', {:web => @web.address, :action => 'source', :id => @page.name},
|
|
{:id => 'view_source', :rel => 'nofollow' } %>
|
|
</span>
|
|
|
|
<%= render :partial => 'inbound_links' %>
|
|
</div>
|