##// END OF EJS Templates
Don't require category or target version when they are not available (#20583)....
Don't require category or target version when they are not available (#20583). git-svn-id: http://svn.redmine.org/redmine/trunk@14733 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r11991:699317e12e7f
r14351:68620da79ab5
Show More
diff.html.erb
29 lines | 1.3 KiB | text/plain | TextLexer
Jean-Philippe Lang
Added wiki diff....
r580 <div class="contextual">
Toshi MARUYAMA
Replaced french word "anonyme" at app/views/wiki/diff.rhtml with label_user_anonymous (#8994)....
r6290 <%= 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) %>
Jean-Philippe Lang
Adds some links for wiki history navigation....
r11991 <%= title [@page.pretty_title, project_wiki_page_path(@page.project, @page.title, :version => nil)],
[l(:label_history), history_project_wiki_page_path(@page.project, @page.title)],
"#{l(:label_version)} #{@diff.content_to.version}" %>
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 %>
Toshi MARUYAMA
Replaced french word "anonyme" at app/views/wiki/diff.rhtml with label_user_anonymous (#8994)....
r6290 <em>(<%= @diff.content_from.author ?
@diff.content_from.author.name : l(:label_user_anonymous)
%>, <%= format_time(@diff.content_from.updated_on) %>)</em>
Jean-Philippe Lang
Added wiki diff....
r580 &#8594;
Toshi MARUYAMA
Replaced french word "anonyme" at app/views/wiki/diff.rhtml with label_user_anonymous (#8994)....
r6290 <%= 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 %>
<em>(<%= @diff.content_to.author ?
link_to_user(@diff.content_to.author.name) : l(:label_user_anonymous)
%>, <%= format_time(@diff.content_to.updated_on) %>)</em>
Jean-Philippe Lang
Added wiki diff....
r580 </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>