%#-- copyright
OpenProject is a project management system.
Copyright (C) 2012-2018 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-2017 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 docs/COPYRIGHT.rdoc for more details.
++#%>
<%= call_hook :wiki_navigation %>
<% if @content.version != @page.content.version %>
<% title = link_to(h(@page.title), {action: 'show', id: @page, project_id: @page.project}).html_safe %>
<% else %>
<% title = h(@page.title) %>
<% end %>
<%# Set meta tags %>
<% title "#{t(:project_module_wiki)} | #{title}" %>
<% description strip_tags(format_text(@content, :text)) %>
<%= toolbar title: title, html: {class: '-with-dropdown'} do %>
<% if @editable %>
<% if User.current.allowed_to? :edit_wiki_pages, @project %>
<% if @page %>
<%= link_to({controller: '/wiki', action: 'new_child', project_id: @project.identifier, id: @page},
{ class: 'button -alt-highlight',
aria: {label: t('wiki.index.no_results_content_text')},
title: t('wiki.index.no_results_content_text')}) do %>
<%= op_icon('button--icon icon-add') %>
<%= t(:create_new_page) %>
<% end %>
<% end %>
<% end %>
<% if @content.version == @page.content.version %>
<%= link_to_if_authorized(l(:button_edit), {action: 'edit', id: @page}, class: 'button icon-edit', accesskey: accesskey(:edit)) %>
<% end %>
<% if Setting.notified_events.include?("wiki_content_added") or Setting.notified_events.include?("wiki_content_updated") %>
<%= watcher_link(@page, User.current) %>
<% end %>
<% if @content.version != @page.content.version %>
<%= link_to(l(:label_history), {action: 'history', id: @page}, class: 'button icon-wiki') %>
<% end %>
<% end %>
<%= t(:label_more) %>
<%= op_icon('button--dropdown-indicator') %>
<% 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 params[:version] %>
<%= link_to(l(:label_previous), { action: 'show', id: @page, project_id: @page.project, version: (@content.version - 1) }, class: 'button navigate-left') if @content.version > 1 %>
<%= "#{Version.model_name.human} #{@content.version}/#{@page.content.version}" %> —
<%= @content.author ? link_to_user(@content.author) : l(:label_user_anonymous) %> — <%= format_time(@content.updated_on) %>
<%= link_to(l(:label_next), { action: 'show', id: @page, project_id: @page.project, version: (@content.version + 1) }, class: 'button navigate-right') if @content.version < @page.content.version %>
<% end %>
<%= render(partial: "wiki/content", locals: {content: @content}) %>
<%= link_to_attachments @page %>
<% if @editable && authorize_for('wiki', 'add_attachment') %>
<%= link_to_function l(:label_attachment_new),
%{
jQuery('#add_attachment_form').show();
jQuery(this).hide();
jQuery('#add_attachment_form')[0].scrollIntoView();
},
id: 'attach_files_link',
class: 'button -with-icon -tiny icon-attachment' %>
<%= 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_function l(:button_cancel),
%{
jQuery('#add_attachment_form').hide();
jQuery('#attach_files_link').show()
},
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 %>
<% html_title h(@page.title) %>