<%#-- copyright OpenProject is a project management system. Copyright (C) 2012-2015 the OpenProject Foundation (OPF) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: Copyright (C) 2006-2013 Jean-Philippe Lang Copyright (C) 2010-2013 the ChiliProject Team This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. See doc/COPYRIGHT.rdoc for more details. ++#%> <%= call_hook :wiki_navigation %> <% content_for :action_menu_main do %> <% if @editable %> <%= li_unless_nil(link_to_if_authorized(l(:button_edit), {action: 'edit', id: @page}, class: 'button icon-edit', accesskey: accesskey(:edit)), class: 'toolbar-item') if @content.version == @page.content.version %> <%= li_unless_nil(watcher_link(@page, User.current), class: 'toolbar-item') if Setting.notified_events.include?("wiki_content_added") or Setting.notified_events.include?("wiki_content_updated") %> <% end %> <% end %> <% content_for :action_menu_more do %> <% if @editable %> <%= li_unless_nil(link_to_if_authorized(l(:button_lock), {action: 'protect', id: @page, protected: 1}, method: :post, class: 'icon-context icon-locked')) if !@page.protected? %> <%= li_unless_nil(link_to_if_authorized(l(:button_unlock), {action: 'protect', id: @page, protected: 0}, method: :post, class: 'icon-context icon-unlocked')) if @page.protected? %> <% if User.current.allowed_to? :edit_wiki_pages, @project %> <% if @page %> <%= content_tag(:li, link_to(l(:create_child_page), wiki_new_child_path(id: @page, project_id: @project), class: 'icon-context icon-duplicate')) %> <% end %> <% end %> <% if @content.version == @page.content.version %> <%= li_unless_nil(link_to_if_authorized(t(:button_rename), {action: 'rename', id: @page}, class: 'icon-context icon-rename')) %> <%= li_unless_nil(link_to_if_authorized(t(:button_change_parent_page), {action: 'edit_parent_page', id: @page}, class: 'icon-context icon-link')) %> <% end %> <%= li_unless_nil(link_to_if_authorized(l(:button_delete), {action: 'destroy', id: @page}, method: :delete, data: { confirm: l(:text_are_you_sure) }, class: 'icon-context icon-delete')) %> <%= li_unless_nil(link_to_if_authorized(l(:button_rollback), {action: 'edit', id: @page, version: @content.version }, class: 'icon-context icon-cancel')) if @content.version < @page.content.version %> <% end %> <%= li_unless_nil(link_to_if_authorized(l(:label_history), {action: 'history', id: @page}, class: 'icon-context icon-wiki')) %> <%= li_unless_nil(link_to_if_authorized(l(:button_manage_menu_entry), {controller: '/wiki_menu_items', action: 'edit', project_id: @project.identifier, id: @page}, class: 'icon-context icon-settings')) %> <% end %> <% breadcrumb_paths(*(@page.ancestors.reverse.collect {|parent| link_to h(parent.breadcrumb_title), {id: parent, project_id: parent.project}} + [h(@page.breadcrumb_title)])) %> <% if @content.version != @page.content.version %>

<%= link_to(l(:label_previous), { action: 'show', id: @page, project_id: @page.project, version: (@content.version - 1) }, class: 'navigate-left') + " - " if @content.version > 1 %> <%= "#{Version.model_name.human} #{@content.version}/#{@page.content.version}" %> <%= '(' + link_to(l(:label_diff), controller: '/wiki', action: 'diff', id: @page, project_id: @page.project, version: @content.version) + ')' if @content.version > 1 %> - <%= link_to(l(:label_next), action: 'show', id: @page, project_id: @page.project, version: (@content.version + 1), class: 'navigate-right') + " - " if @content.version < @page.content.version %> <%= link_to(l(:label_current_version), action: 'show', id: @page, project_id: @page.project) %>
<%= @content.author ? link_to_user(@content.author) : l(:label_user_anonymous) %>, <%= format_time(@content.updated_on) %>
<%=h @content.comments %>


<% end %> <%= render(partial: "wiki/content", locals: {content: @content}) %> <%= link_to_attachments @page %> <% if @editable && authorize_for('wiki', 'add_attachment') %>

<%= 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' %>

<%= form_tag({ controller: '/wiki', action: 'add_attachment', project_id: @project, id: @page }, multipart: true, id: "add_attachment_form", style: "display:none;") do %>

<%= render partial: 'attachments/form' %>

<%= submit_tag l(:button_add), class: 'button -highlight' %> <%= link_to l(:button_cancel), {}, onclick: "Element.hide('add_attachment_form'); Element.show('attach_files_link'); return false;", class: 'button' %> <% end %>
<% end %> <%= other_formats_links do |f| %> <%= f.link_to 'Atom', url: { controller: '/activities', action: 'index', show_wiki_edits: 1, key: User.current.rss_key } %> <%= f.link_to 'HTML', url: { version: @content.version, id: @page } %> <%= f.link_to 'TXT', url: { version: @content.version, id: @page } %> <%= call_hook(:view_wiki_show_other_formats, {link_builder: f, url_params: {id: @page, version: @content.version}}) %> <% end if User.current.allowed_to?(:export_wiki_pages, @project) %> <% content_for :header_tags do %> <%= auto_discovery_link_tag(:atom, controller: '/activities', action: 'index', id: @project, show_wiki_edits: 1, format: 'atom', key: User.current.rss_key) %> <% end %> <% content_for :sidebar do %> <%= render partial: 'wiki/sidebar' %> <% end %> <% html_title h(@page.pretty_title) %>