66 lines
2.4 KiB
Plaintext
66 lines
2.4 KiB
Plaintext
<%# Redmine plugin for Document Management System "Features"
|
|
#
|
|
# Copyright (C) 2011 Vít Jonáš <vit.jonas@gmail.com>
|
|
# Copyright (C) 2012 Daniel Munn <dan.munn@munnster.co.uk>
|
|
#
|
|
# 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.%>
|
|
|
|
<% html_title(l(:dmsf)) %>
|
|
|
|
<div class="contextual">
|
|
</div>
|
|
|
|
<h2>
|
|
<%= link_to l(:link_documents), {:controller => 'dmsf', :action => 'show', :id=> @project } %>
|
|
<% @folder.dmsf_path.each do |path_element| %>
|
|
/
|
|
<%= link_to h(path_element.title), {:controller => 'dmsf', :action => 'show', :id=> @project, :folder_id => path_element} %>
|
|
<% end %>
|
|
</h2>
|
|
|
|
<% unless DmsfFolder.allowed_target_projects_on_copy.blank? %>
|
|
<%= form_tag({:action => "copy_to", :id => @folder}, :id => "copyForm") do |f| %>
|
|
<div class="box dmsf_detail">
|
|
<p>
|
|
<label for="target_project_id"><%=l(:label_target_project)%>:</label>
|
|
<%= select_tag("target_project_id",
|
|
project_tree_options_for_select(DmsfFolder.allowed_target_projects_on_copy, :selected => @target_project)) %>
|
|
</p>
|
|
<p>
|
|
<%= label_tag("target_folder_id", l(:label_target_folder) + ":") %>
|
|
<%= select_tag("target_folder_id",
|
|
options_for_select(DmsfFolder.directory_tree(@target_project, @folder),
|
|
:selected => (@target_folder.id unless @target_folder.nil?))) %>
|
|
</p>
|
|
</div>
|
|
|
|
<%= submit_tag(l(:button_copy)) %>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<script type="text/javascript">
|
|
jQuery("#target_project_id").change(function () {
|
|
jQuery("#content").load("<%= url_for(:action => 'new') %>", jQuery("#copyForm").serialize());
|
|
});
|
|
</script>
|
|
|
|
<% content_for :header_tags do %>
|
|
<%= stylesheet_link_tag "dmsf", :plugin => "redmine_dmsf" %>
|
|
<%= javascript_include_tag "jquery-1.6.1.min.js", :plugin => "redmine_dmsf" %>
|
|
<script type="text/javascript">
|
|
jQuery.noConflict();
|
|
</script>
|
|
<% end %>
|