Remove unused code

This commit is contained in:
Oliver Günther
2026-02-18 09:47:30 +01:00
parent 81c43ca98b
commit 6dc1229300
4 changed files with 0 additions and 188 deletions
-24
View File
@@ -124,30 +124,6 @@ module ApplicationHelper
Project.project_tree(projects, &)
end
def project_nested_ul(projects, &)
s = +""
if projects.any?
ancestors = []
Project.project_tree(projects) do |project, _level|
if ancestors.empty? || project.is_descendant_of?(ancestors.last)
s << "<ul>\n"
else
ancestors.pop
s << "</li>"
while ancestors.any? && !project.is_descendant_of?(ancestors.last)
ancestors.pop
s << "</ul></li>\n"
end
end
s << "<li>"
s << yield(project).to_s
ancestors << project
end
s << ("</li></ul>\n" * ancestors.size)
end
s.html_safe
end
def principals_check_box_tags(name, principals)
labeled_check_box_tags(name, principals,
title: :user_status_i18n,
@@ -1,37 +0,0 @@
<%#-- 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.
++#%>
<%= attachments.select { |a| a.readable? and a.visible? }
.map do |a|
{ content_type: CGI::escape_html(a.content_type),
filename: CGI::escape_html(a.filename),
description: CGI::escape_html(a.description),
url: url_for(controller: "/attachments", action: "show", id: a, filename: a.filename),
is_image: !!a.image? } # doing the !! as image? for whatever reason returns null or a number
end.to_json.html_safe %>
-84
View File
@@ -1,84 +0,0 @@
<%#-- 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.
++#%>
<%=
render Primer::OpenProject::PageHeader.new do |header|
header.with_title { t("project.destroy.title", name: @project_to_destroy) }
header.with_breadcrumbs(
[{ href: project_overview_path(@project_to_destroy.id), text: @project_to_destroy.name },
{ href: project_settings_general_path(@project_to_destroy.id), text: I18n.t("label_project_settings") },
t("project.destroy.title", name: @project_to_destroy)]
)
end
%>
<%= styled_form_tag(
project_path(@project_to_destroy),
class: "danger-zone",
data: { turbo: false },
method: :delete
) do %>
<section class="form--section">
<h3 class="form--section-title">
<%= t("project.destroy.title", name: "<em>#{h(@project_to_destroy)}</em>").html_safe %>
</h3>
<p>
<%= t("project.destroy.confirmation", identifier: @project_to_destroy.identifier) %>
<% if @project_to_destroy.descendants.any? %>
<br>
<% descendants = h(@project_to_destroy.descendants.collect(&:to_s).join(", ")) %>
<%= t("project.destroy.subprojects_confirmation", value: "<strong>#{h(descendants)}</strong>").html_safe %>
<% end %>
</p>
<ul class="mb-3">
<li> <%= t("project.destroy.project_delete_result_1") %> </li>
<% if has_managed_project_folders?(@project_to_destroy) %>
<li> <%= t("project.destroy.project_delete_result_2") %> </li>
<% end %>
</ul>
<p class="danger-zone--warning">
<span class="icon icon-error"></span>
<span><%= t("project.destroy.info") %></span>
</p>
<p>
<%= t("project.destroy.project_verification", name: "<em class=\"danger-zone--expected-value\">#{h(@project_to_destroy)}</em>").html_safe %>
</p>
<div class="danger-zone--verification">
<input type="text">
<%= styled_button_tag title: t(:button_delete), class: "-primary", disabled: true do
concat content_tag :i, "", class: "button--icon icon-delete"
concat content_tag :span, t(:button_delete), class: "button--text"
end %>
<%= link_to projects_path,
title: t(:button_cancel),
class: "button -with-icon icon-cancel" do %>
<%= t(:button_cancel) %>
<% end %>
</div>
</section>
<% end %>
@@ -1,43 +0,0 @@
<%#-- 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.
++#%>
{
"results":
{
"items":[
<% @roles.each_with_index do |role, ix| %>
{
"id": <%= role.id.to_json.html_safe %>,
"name": <%= role.name.to_json.html_safe %>
} <%= "," unless ix == @roles.length - 1 %>
<% end %> ],
"total": <%= @total || @roles.size %>,
"more": <%= @more || 0 %>
}
}