show.rhtml
58 lines
| 3.5 KiB
| text/html+ruby
|
RhtmlLexer
|
r330 | <div class="contextual"> | ||
|
r1400 | <% if @editable %> | ||
|
r793 | <%= link_to_if_authorized(l(:button_edit), {:action => 'edit', :page => @page.title}, :class => 'icon icon-edit', :accesskey => accesskey(:edit)) if @content.version == @page.content.version %> | ||
|
r1400 | <%= link_to_if_authorized(l(:button_lock), {:action => 'protect', :page => @page.title, :protected => 1}, :method => :post, :class => 'icon icon-lock') if !@page.protected? %> | ||
<%= link_to_if_authorized(l(:button_unlock), {:action => 'protect', :page => @page.title, :protected => 0}, :method => :post, :class => 'icon icon-unlock') if @page.protected? %> | ||||
|
r709 | <%= link_to_if_authorized(l(:button_rename), {:action => 'rename', :page => @page.title}, :class => 'icon icon-move') if @content.version == @page.content.version %> | ||
|
r537 | <%= link_to_if_authorized(l(:button_delete), {:action => 'destroy', :page => @page.title}, :method => :post, :confirm => l(:text_are_you_sure), :class => 'icon icon-del') %> | ||
|
r663 | <%= link_to_if_authorized(l(:button_rollback), {:action => 'edit', :page => @page.title, :version => @content.version }, :class => 'icon icon-cancel') if @content.version < @page.content.version %> | ||
|
r1400 | <% end %> | ||
|
r1813 | <%= link_to_if_authorized(l(:label_history), {:action => 'history', :page => @page.title}, :class => 'icon icon-history') %> | ||
|
r330 | </div> | ||
|
r1689 | <%= breadcrumb(@page.ancestors.reverse.collect {|parent| link_to h(parent.pretty_title), {:page => parent.title}}) %> | ||
|
r330 | <% if @content.version != @page.content.version %> | ||
<p> | ||||
<%= link_to(('« ' + l(:label_previous)), :action => 'index', :page => @page.title, :version => (@content.version - 1)) + " - " if @content.version > 1 %> | ||||
|
r580 | <%= "#{l(:label_version)} #{@content.version}/#{@page.content.version}" %> | ||
<%= '(' + link_to('diff', :controller => 'wiki', :action => 'diff', :page => @page.title, :version => @content.version) + ')' if @content.version > 1 %> - | ||||
|
r330 | <%= link_to((l(:label_next) + ' »'), :action => 'index', :page => @page.title, :version => (@content.version + 1)) + " - " if @content.version < @page.content.version %> | ||
<%= link_to(l(:label_current_version), :action => 'index', :page => @page.title) %> | ||||
<br /> | ||||
<em><%= @content.author ? @content.author.name : "anonyme" %>, <%= format_time(@content.updated_on) %> </em><br /> | ||||
|
r476 | <%=h @content.comments %> | ||
|
r330 | </p> | ||
<hr /> | ||||
<% end %> | ||||
|
r561 | <%= render(:partial => "wiki/content", :locals => {:content => @content}) %> | ||
|
r330 | |||
|
r2114 | <%= link_to_attachments @page %> | ||
|
r538 | |||
|
r1400 | <% if @editable && authorize_for('wiki', 'add_attachment') %> | ||
|
r1166 | <p><%= link_to l(:label_attachment_new), {}, :onclick => "Element.show('add_attachment_form'); Element.hide(this); Element.scrollTo('add_attachment_form'); return false;", | ||
:id => 'attach_files_link' %></p> | ||||
<% form_tag({ :controller => 'wiki', :action => 'add_attachment', :page => @page.title }, :multipart => true, :id => "add_attachment_form", :style => "display:none;") do %> | ||||
<div class="box"> | ||||
<p><%= render :partial => 'attachments/form' %></p> | ||||
</div> | ||||
|
r538 | <%= submit_tag l(:button_add) %> | ||
|
r1166 | <%= link_to l(:button_cancel), {}, :onclick => "Element.hide('add_attachment_form'); Element.show('attach_files_link'); return false;" %> | ||
|
r538 | <% end %> | ||
<% end %> | ||||
|
r699 | |||
|
r2331 | <% other_formats_links do |f| %> | ||
<%= f.link_to 'HTML', :url => {:page => @page.title, :version => @content.version} %> | ||||
<%= f.link_to 'TXT', :url => {:page => @page.title, :version => @content.version} %> | ||||
<% end %> | ||||
|
r1010 | |||
|
r699 | <% content_for :header_tags do %> | ||
<%= stylesheet_link_tag 'scm' %> | ||||
<% end %> | ||||
|
r704 | |||
|
r736 | <% content_for :sidebar do %> | ||
<%= render :partial => 'sidebar' %> | ||||
<% end %> | ||||
|
r1019 | <% html_title @page.pretty_title %> | ||