annotate .svn/pristine/46/464ede74f94c35ac881e4ab743d46257f404e211.svn-base @ 1517:dffacf8a6908 redmine-2.5

Update to Redmine SVN revision 13367 on 2.5-stable branch
author Chris Cannam
date Tue, 09 Sep 2014 09:29:00 +0100
parents 261b3d9a4903
children
rev   line source
Chris@1464 1 <div class="contextual">
Chris@1464 2 <%= link_to(l(:label_history), {:action => 'history', :id => @page.title},
Chris@1464 3 :class => 'icon icon-history') %>
Chris@1464 4 </div>
Chris@1464 5
Chris@1464 6 <%= wiki_page_breadcrumb(@page) %>
Chris@1464 7
Chris@1464 8 <%= title [@page.pretty_title, project_wiki_page_path(@page.project, @page.title, :version => nil)],
Chris@1464 9 [l(:label_history), history_project_wiki_page_path(@page.project, @page.title)],
Chris@1464 10 "#{l(:label_version)} #{@diff.content_to.version}" %>
Chris@1464 11
Chris@1464 12 <p>
Chris@1464 13 <%= l(:label_version) %> <%= link_to @diff.content_from.version, :action => 'show', :id => @page.title, :project_id => @page.project, :version => @diff.content_from.version %>
Chris@1464 14 <em>(<%= @diff.content_from.author ?
Chris@1464 15 @diff.content_from.author.name : l(:label_user_anonymous)
Chris@1464 16 %>, <%= format_time(@diff.content_from.updated_on) %>)</em>
Chris@1464 17 &#8594;
Chris@1464 18 <%= l(:label_version) %> <%= link_to @diff.content_to.version, :action => 'show',
Chris@1464 19 :id => @page.title, :project_id => @page.project,
Chris@1464 20 :version => @diff.content_to.version
Chris@1464 21 %>/<%= @page.content.version %>
Chris@1464 22 <em>(<%= @diff.content_to.author ?
Chris@1464 23 link_to_user(@diff.content_to.author.name) : l(:label_user_anonymous)
Chris@1464 24 %>, <%= format_time(@diff.content_to.updated_on) %>)</em>
Chris@1464 25 </p>
Chris@1464 26
Chris@1464 27 <div class="text-diff">
Chris@1464 28 <%= simple_format_without_paragraph @diff.to_html %>
Chris@1464 29 </div>