##// END OF EJS Templates
Adds breadcrumb on all wiki page views....
Adds breadcrumb on all wiki page views. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6182 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r6062:25d900c78791
r6062:25d900c78791
Show More
diff.rhtml
19 lines | 968 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Added wiki diff....
r580 <div class="contextual">
Eric Davis
Refactor: use :id instead of :page when linking to Wiki Pages...
r4182 <%= link_to(l(:label_history), {:action => 'history', :id => @page.title}, :class => 'icon icon-history') %>
Jean-Philippe Lang
Added wiki diff....
r580 </div>
Jean-Philippe Lang
Adds breadcrumb on all wiki page views....
r6062 <%= wiki_page_breadcrumb(@page) %>
<h2><%=h @page.pretty_title %></h2>
Jean-Philippe Lang
Added wiki diff....
r580
<p>
Jean-Philippe Lang
Broken links on wiki diff view....
r4437 <%= l(:label_version) %> <%= link_to @diff.content_from.version, :action => 'show', :id => @page.title, :project_id => @page.project, :version => @diff.content_from.version %>
Jean-Philippe Lang
Added wiki diff....
r580 <em>(<%= @diff.content_from.author ? @diff.content_from.author.name : "anonyme" %>, <%= format_time(@diff.content_from.updated_on) %>)</em>
&#8594;
Jean-Philippe Lang
Broken links on wiki diff view....
r4437 <%= l(:label_version) %> <%= link_to @diff.content_to.version, :action => 'show', :id => @page.title, :project_id => @page.project, :version => @diff.content_to.version %>/<%= @page.content.version %>
Jean-Philippe Lang
Added wiki diff....
r580 <em>(<%= @diff.content_to.author ? @diff.content_to.author.name : "anonyme" %>, <%= format_time(@diff.content_to.updated_on) %>)</em>
</p>
Jean-Philippe Lang
Extracts a diff helper from the WikiDiff class....
r4832 <div class="text-diff">
Jean-Philippe Lang
Fixes wiki diff rendering....
r4833 <%= simple_format_without_paragraph @diff.to_html %>
Jean-Philippe Lang
Extracts a diff helper from the WikiDiff class....
r4832 </div>