mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
1f7de54aee
This option seems to have been broken for quite some time and lead to pretty inconsistent results. What it clearly didn't do was to show the item in the project navigation. Some effects were visible in the wiki navigation, some of them only in some views of the wiki. This must have been broken for quite some time without major complaints about it. Since we want to generalize our wiki options going forward and also integrate with external wikis, this is a good chance for simplification. Therefore instead of trying to reverse engineer what this option was supposed to do, it's going to be removed for the time being.
87 lines
2.8 KiB
Ruby
87 lines
2.8 KiB
Ruby
#-- copyright
|
|
# OpenProject is an open source project management software.
|
|
# Copyright (C) the OpenProject GmbH
|
|
#
|
|
# 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 COPYRIGHT and LICENSE files for more details.
|
|
#++
|
|
|
|
module Redmine::MenuManager::WikiMenuHelper
|
|
def build_wiki_menus(project)
|
|
return unless project.enabled_module_names.include? "wiki"
|
|
|
|
project_wiki = project.wiki
|
|
return if project_wiki.nil?
|
|
|
|
wiki_main_items(project_wiki).reverse_each do |main_item|
|
|
Redmine::MenuManager.loose :project_menu do |menu|
|
|
push_wiki_main_menu(menu, main_item, project)
|
|
end
|
|
end
|
|
end
|
|
|
|
def push_wiki_main_menu(menu, main_item, project)
|
|
menu.push main_item.menu_identifier,
|
|
{ controller: "/wiki", action: "show", id: main_item.slug },
|
|
caption: main_item.title,
|
|
after: :meetings,
|
|
icon: "book",
|
|
html: { class: "wiki-menu--main-item" }
|
|
|
|
if project.wiki.pages.any?
|
|
push_wiki_menu_partial(main_item, menu)
|
|
end
|
|
rescue ArgumentError => e
|
|
Rails.logger.error "Failed to add wiki item #{main_item.slug} to wiki menu: #{e}. Deleting it."
|
|
main_item.destroy
|
|
end
|
|
|
|
def default_menu_item(page)
|
|
if (main_item = page.nearest_main_item)
|
|
main_item
|
|
else
|
|
MenuItems::WikiMenuItem.main_items(page.wiki.id).first
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def wiki_main_items(wiki)
|
|
##
|
|
# Ensure a main item exists if it got deleted somewhere
|
|
MenuItems::WikiMenuItem
|
|
.main_items(wiki)
|
|
.tap do |items|
|
|
wiki.create_menu_item_for_start_page if items.empty?
|
|
end
|
|
end
|
|
|
|
def push_wiki_menu_partial(main_item, menu)
|
|
menu.push :wiki_menu_partial,
|
|
{ controller: "/wiki", action: "show" },
|
|
parent: main_item.menu_identifier,
|
|
partial: "wiki/menu_pages_tree",
|
|
last: true
|
|
end
|
|
end
|