diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2006-12-05 20:45:04 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2006-12-05 20:45:04 +0000 |
commit | 96f83cc8f0f032554f771a59da22303cd473b878 (patch) | |
tree | 355a0d2ed653a5426c59ebf6a1fe65eba024b4d0 /redmine/app/views | |
parent | eabc04d8368824965d3ac8de3fa84502e9c05d38 (diff) | |
download | redmine-96f83cc8f0f032554f771a59da22303cd473b878.tar.gz redmine-96f83cc8f0f032554f771a59da22303cd473b878.zip |
trunk moved from /trunk/redmine to /trunk
git-svn-id: http://redmine.rubyforge.org/svn/trunk@67 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'redmine/app/views')
111 files changed, 0 insertions, 3080 deletions
diff --git a/redmine/app/views/account/login.rhtml b/redmine/app/views/account/login.rhtml deleted file mode 100644 index 74c075516..000000000 --- a/redmine/app/views/account/login.rhtml +++ /dev/null @@ -1,18 +0,0 @@ -<center>
-<div class="box login">
-<h2><%= image_tag 'login' %> <%=l(:label_please_login)%></h2> -
-<%= start_form_tag({:action=> "login"}, :class => "tabular") %>
-<p><label for="login"><%=l(:field_login)%>:</label>
-<%= text_field_tag 'login', nil, :size => 25 %></p>
-
-<p><label for="password"><%=l(:field_password)%>:</label>
-<%= password_field_tag 'password', nil, :size => 25 %></p>
-
-<p><center><input type="submit" name="login" value="<%=l(:button_login)%> »" class="primary" /></center> -<%= end_form_tag %>
-
-<br><% unless $RDM_SELF_REGISTRATION == false %><%= link_to l(:label_register), :action => 'register' %> |<% end %>
-<%= link_to l(:label_password_lost), :action => 'lost_password' %></p> -</div>
-</center>
\ No newline at end of file diff --git a/redmine/app/views/account/lost_password.rhtml b/redmine/app/views/account/lost_password.rhtml deleted file mode 100644 index 3f32e7153..000000000 --- a/redmine/app/views/account/lost_password.rhtml +++ /dev/null @@ -1,14 +0,0 @@ -<center>
-<div class="box login">
-<h2><%=l(:label_password_lost)%></h2>
-
-<%= start_form_tag({:action=> "lost_password"}, :class => "tabular") %>
-
-<p><label for="mail"><%=l(:field_mail)%> <span class="required">*</span></label>
-<%= text_field_tag 'mail', nil, :size => 40 %></p>
-
-<p><center><%= submit_tag l(:button_submit) %></center></p>
-
-<%= end_form_tag %>
-</div>
-</center>
\ No newline at end of file diff --git a/redmine/app/views/account/password_recovery.rhtml b/redmine/app/views/account/password_recovery.rhtml deleted file mode 100644 index 39a8071a9..000000000 --- a/redmine/app/views/account/password_recovery.rhtml +++ /dev/null @@ -1,21 +0,0 @@ -<center> -<div class="box login"> -<h2><%=l(:label_password_lost)%></h2> -
-<p><%=l(:field_login)%>: <strong><%= @user.login %></strong><br />
- -<%= error_messages_for 'user' %> -
- <%= start_form_tag({:token => @token.value}, :class => "tabular") %> -
- <p><label for="new_password"><%=l(:field_new_password)%> <span class="required">*</span></label> - <%= password_field_tag 'new_password', nil, :size => 25 %></p>
-
- <p><label for="new_password_confirmation"><%=l(:field_password_confirmation)%> <span class="required">*</span></label> - <%= password_field_tag 'new_password_confirmation', nil, :size => 25 %></p>
- - <p><center><%= submit_tag l(:button_save) %></center></p> - <%= end_form_tag %>
-
-</div> -</center>
\ No newline at end of file diff --git a/redmine/app/views/account/register.rhtml b/redmine/app/views/account/register.rhtml deleted file mode 100644 index b34aff79c..000000000 --- a/redmine/app/views/account/register.rhtml +++ /dev/null @@ -1,39 +0,0 @@ -<h2><%=l(:label_register)%></h2> - -<%= start_form_tag({:action => 'register'}, :class => "tabular") %> -<%= error_messages_for 'user' %> - -<div class="box"> -<!--[form:user]--> -<p><label for="user_login"><%=l(:field_login)%> <span class="required">*</span></label> -<%= text_field 'user', 'login', :size => 25 %></p> -
-<p><label for="password"><%=l(:field_password)%> <span class="required">*</span></label> -<%= password_field_tag 'password', nil, :size => 25 %></p> - -<p><label for="password_confirmation"><%=l(:field_password_confirmation)%> <span class="required">*</span></label> -<%= password_field_tag 'password_confirmation', nil, :size => 25 %></p> - -<p><label for="user_firstname"><%=l(:field_firstname)%> <span class="required">*</span></label> -<%= text_field 'user', 'firstname' %></p> -
-<p><label for="user_lastname"><%=l(:field_lastname)%> <span class="required">*</span></label> -<%= text_field 'user', 'lastname' %></p> - -<p><label for="user_mail"><%=l(:field_mail)%> <span class="required">*</span></label> -<%= text_field 'user', 'mail' %></p>
-
-<p><label for="user_language"><%=l(:field_language)%></label> -<%= select("user", "language", lang_options_for_select) %></p>
-
-<% for @custom_value in @custom_values %> - <p><%= custom_field_tag_with_label @custom_value %></p> -<% end %>
-
-<p><label for="user_mail_notification"><%=l(:field_mail_notification)%></label> -<%= check_box 'user', 'mail_notification' %></p>
-<!--[eoform:user]--> -</div> - -<%= submit_tag l(:button_submit) %> -<%= end_form_tag %> diff --git a/redmine/app/views/account/show.rhtml b/redmine/app/views/account/show.rhtml deleted file mode 100644 index 985238951..000000000 --- a/redmine/app/views/account/show.rhtml +++ /dev/null @@ -1,26 +0,0 @@ -<h2><%= @user.display_name %></h2>
-
-<p>
-<%= mail_to @user.mail unless @user.pref.hide_mail %>
-<ul>
- <li><%=l(:label_registered_on)%>: <%= format_date(@user.created_on) %></li>
-<% for custom_value in @custom_values %>
-<% if !custom_value.value.empty? %>
- <li><%= custom_value.custom_field.name%>: <%= show_value(custom_value) %></li>
-<% end %>
-<% end %>
-</ul>
-</p>
-
-<h3><%=l(:label_project_plural)%></h3>
-<p>
-<% for membership in @user.memberships %>
- <%= membership.project.name %> (<%= membership.role.name %>, <%= format_date(membership.created_on) %>)
- <br />
-<% end %>
-</p>
-
-<h3><%=l(:label_activity)%></h3>
-<p>
-<%=l(:label_reported_issues)%>: <%= Issue.count(["author_id=?", @user.id]) %>
-</p>
\ No newline at end of file diff --git a/redmine/app/views/admin/index.rhtml b/redmine/app/views/admin/index.rhtml deleted file mode 100644 index d937e287c..000000000 --- a/redmine/app/views/admin/index.rhtml +++ /dev/null @@ -1,50 +0,0 @@ -<h2><%=l(:label_administration)%></h2>
-
-<p>
-<%= image_tag "projects" %>
-<%= link_to l(:label_project_plural), :controller => 'admin', :action => 'projects' %> |
-<%= link_to l(:label_new), :controller => 'projects', :action => 'add' %>
-</p>
-
-<p>
-<%= image_tag "users" %>
-<%= link_to l(:label_user_plural), :controller => 'users' %> |
-<%= link_to l(:label_new), :controller => 'users', :action => 'add' %>
-</p>
-
-<p>
-<%= image_tag "role" %>
-<%= link_to l(:label_role_and_permissions), :controller => 'roles' %>
-</p>
-
-<p>
-<%= image_tag "tracker" %>
-<%= link_to l(:label_tracker_plural), :controller => 'trackers' %> |
-<%= link_to l(:label_custom_field_plural), :controller => 'custom_fields' %>
-</p>
-
-<p>
-<%= image_tag "workflow" %>
-<%= link_to l(:label_issue_status_plural), :controller => 'issue_statuses' %> |
-<%= link_to l(:label_workflow), :controller => 'roles', :action => 'workflow' %>
-</p>
-
-<p>
-<%= image_tag "options" %>
-<%= link_to l(:label_enumerations), :controller => 'enumerations' %>
-</p>
-
-<p>
-<%= image_tag "mailer" %>
-<%= link_to l(:field_mail_notification), :controller => 'admin', :action => 'mail_options' %>
-</p>
-
-<p>
-<%= image_tag "login" %>
-<%= link_to l(:label_authentication), :controller => 'auth_sources' %>
-</p>
-
-<p>
-<%= image_tag "help" %>
-<%= link_to l(:label_information_plural), :controller => 'admin', :action => 'info' %>
-</p>
\ No newline at end of file diff --git a/redmine/app/views/admin/info.rhtml b/redmine/app/views/admin/info.rhtml deleted file mode 100644 index 4777a151e..000000000 --- a/redmine/app/views/admin/info.rhtml +++ /dev/null @@ -1,10 +0,0 @@ -<h2><%=l(:label_information_plural)%></h2>
-
-<p><%=l(:field_version)%>: <strong><%= RDM_APP_NAME %> <%= RDM_APP_VERSION %></strong></p>
-
-<%=l(:label_environment)%>:
-<ul>
-<% Rails::Info.properties.each do |name, value| %>
-<li><%= name %>: <%= value %></li>
-<% end %>
-</ul>
\ No newline at end of file diff --git a/redmine/app/views/admin/mail_options.rhtml b/redmine/app/views/admin/mail_options.rhtml deleted file mode 100644 index 54e2daf3e..000000000 --- a/redmine/app/views/admin/mail_options.rhtml +++ /dev/null @@ -1,24 +0,0 @@ -<h2><%=l(:field_mail_notification)%></h2>
-
-<%= start_form_tag ({}, :id => 'mail_options_form')%>
-
-<div class="box">
-<p><%=l(:text_select_mail_notifications)%></p>
-
-<% actions = @actions.group_by {|p| p.group_id } %>
-<% actions.keys.sort.each do |group_id| %>
-<fieldset style="margin-top: 6px;"><legend><strong><%= l(Permission::GROUPS[group_id]) %></strong></legend>
-<% actions[group_id].each do |p| %>
- <div style="width:170px;float:left;"><%= check_box_tag "action_ids[]", p.id, p.mail_enabled? %>
- <%= l(p.description.to_sym) %>
- </div>
-<% end %>
-</fieldset>
-<% end %>
-
-<br />
-<p><%= check_all_links 'mail_options_form' %></p>
-</div>
-
-<%= submit_tag l(:button_save) %>
-<%= end_form_tag %>
diff --git a/redmine/app/views/admin/projects.rhtml b/redmine/app/views/admin/projects.rhtml deleted file mode 100644 index 39e4d9bf7..000000000 --- a/redmine/app/views/admin/projects.rhtml +++ /dev/null @@ -1,30 +0,0 @@ -<h2><%=l(:label_project_plural)%></h2> - -<table class="listTableContent"> - <tr class="ListHead"> - <%= sort_header_tag('name', :caption => l(:label_project)) %>
- <th><%=l(:field_description)%></th>
- <th><%=l(:field_is_public)%></th> - <th><%=l(:label_subproject_plural)%></th>
- <%= sort_header_tag('created_on', :caption => l(:field_created_on)) %>
- <th></th> - </tr> - -<% for project in @projects %> - <tr class="<%= cycle("odd", "even") %>">
- <td><%= link_to project.name, :controller => 'projects', :action => 'settings', :id => project %>
- <td><%= project.description %>
- <td align="center"><%= image_tag 'true' if project.is_public? %> - <td align="center"><%= project.projects_count %>
- <td align="center"><%= format_date(project.created_on) %>
- <td align="center"> - <%= button_to l(:button_delete), { :controller => 'projects', :action => 'destroy', :id => project }, :class => "button-small" %>
- </td>
- </tr> -<% end %> -</table> - -<p><%= pagination_links_full @project_pages %> -[ <%= @project_pages.current.first_item %> - <%= @project_pages.current.last_item %> / <%= @project_count %> ]</p>
- -<p><%= link_to ('» ' + l(:label_project_new)), :controller => 'projects', :action => 'add' %></p>
\ No newline at end of file diff --git a/redmine/app/views/auth_sources/_form.rhtml b/redmine/app/views/auth_sources/_form.rhtml deleted file mode 100644 index b6365dce5..000000000 --- a/redmine/app/views/auth_sources/_form.rhtml +++ /dev/null @@ -1,45 +0,0 @@ -<%= error_messages_for 'auth_source' %> - -<div class="box"> -<!--[form:auth_source]--> -<p><label for="auth_source_name"><%=l(:field_name)%> <span class="required">*</span></label> -<%= text_field 'auth_source', 'name' %></p> - -<p><label for="auth_source_host"><%=l(:field_host)%> <span class="required">*</span></label> -<%= text_field 'auth_source', 'host' %></p> - -<p><label for="auth_source_port"><%=l(:field_port)%> <span class="required">*</span></label> -<%= text_field 'auth_source', 'port', :size => 6 %></p> - -<p><label for="auth_source_account"><%=l(:field_account)%></label> -<%= text_field 'auth_source', 'account' %></p> - -<p><label for="auth_source_account_password"><%=l(:field_password)%></label> -<%= password_field 'auth_source', 'account_password' %></p> - -<p><label for="auth_source_base_dn"><%=l(:field_base_dn)%> <span class="required">*</span></label> -<%= text_field 'auth_source', 'base_dn', :size => 60 %></p> -</div> - -<div class="box"> -<p><label for="auth_source_onthefly_register"><%=l(:field_onthefly)%></label> -<%= check_box 'auth_source', 'onthefly_register' %></p> - -<p> -<fieldset><legend><%=l(:label_attribute_plural)%></legend> -<p><label for="auth_source_attr_login"><%=l(:field_login)%> <span class="required">*</span></label> -<%= text_field 'auth_source', 'attr_login', :size => 20 %></p> - -<p><label for="auth_source_attr_firstname"><%=l(:field_firstname)%></label> -<%= text_field 'auth_source', 'attr_firstname', :size => 20 %></p> - -<p><label for="auth_source_attr_lastname"><%=l(:field_lastname)%></label> -<%= text_field 'auth_source', 'attr_lastname', :size => 20 %></p> - -<p><label for="auth_source_attr_mail"><%=l(:field_mail)%></label> -<%= text_field 'auth_source', 'attr_mail', :size => 20 %></p> -</fieldset> -</p> -</div> -<!--[eoform:auth_source]--> - diff --git a/redmine/app/views/auth_sources/edit.rhtml b/redmine/app/views/auth_sources/edit.rhtml deleted file mode 100644 index 149463e7f..000000000 --- a/redmine/app/views/auth_sources/edit.rhtml +++ /dev/null @@ -1,7 +0,0 @@ -<h2><%=l(:label_auth_source)%> (<%= @auth_source.auth_method_name %>)</h2> - -<%= start_form_tag({:action => 'update', :id => @auth_source}, :class => "tabular") %> - <%= render :partial => 'form' %> - <%= submit_tag l(:button_save) %> -<%= end_form_tag %> - diff --git a/redmine/app/views/auth_sources/list.rhtml b/redmine/app/views/auth_sources/list.rhtml deleted file mode 100644 index 47cbeeaff..000000000 --- a/redmine/app/views/auth_sources/list.rhtml +++ /dev/null @@ -1,30 +0,0 @@ -<h2><%=l(:label_auth_source_plural)%></h2> - -<table class="listTableContent"> - <tr class="ListHead"> - <th><%=l(:field_name)%></th> - <th><%=l(:field_type)%></th> - <th><%=l(:field_host)%></th> - <th></th> - <th></th> - </tr> - -<% for source in @auth_sources %> - <tr class="<%= cycle("odd", "even") %>"> - <td><%= link_to source.name, :action => 'edit', :id => source%></td> - <td align="center"><%= source.auth_method_name %></td> - <td align="center"><%= source.host %></td> - <td align="center"> - <%= link_to l(:button_test), :action => 'test_connection', :id => source %> - </td> - <td align="center"> - <%= button_to l(:button_delete), { :action => 'destroy', :id => source }, :confirm => l(:text_are_you_sure), :class => "button-small" %> - </td> - </tr> -<% end %> -</table> - -<%= pagination_links_full @auth_source_pages %> -<br /> -<%= link_to '» ' + l(:label_auth_source_new), :action => 'new' %> - diff --git a/redmine/app/views/auth_sources/new.rhtml b/redmine/app/views/auth_sources/new.rhtml deleted file mode 100644 index 29d66327b..000000000 --- a/redmine/app/views/auth_sources/new.rhtml +++ /dev/null @@ -1,6 +0,0 @@ -<h2><%=l(:label_auth_source_new)%> (<%= @auth_source.auth_method_name %>)</h2> - -<%= start_form_tag({:action => 'create'}, :class => "tabular") %> - <%= render :partial => 'form' %> - <%= submit_tag l(:button_create) %> -<%= end_form_tag %> diff --git a/redmine/app/views/custom_fields/_form.rhtml b/redmine/app/views/custom_fields/_form.rhtml deleted file mode 100644 index f7f968e33..000000000 --- a/redmine/app/views/custom_fields/_form.rhtml +++ /dev/null @@ -1,52 +0,0 @@ -<%= error_messages_for 'custom_field' %> - -<!--[form:custom_field]--> -<div class="box"> -<p><label for="custom_field_name"><%=l(:field_name)%><span class="required"> *</span></label> -<%= text_field 'custom_field', 'name' %></p> -
-<p><label for="custom_field_field_format"><%=l(:field_field_format)%></label> -<%= select("custom_field", "field_format", custom_field_formats_for_select) %></p>
-
-<p><label for="custom_field_min_length"><%=l(:label_min_max_length)%></label> -<%= text_field 'custom_field', 'min_length', :size => 5 %> - -<%= text_field 'custom_field', 'max_length', :size => 5 %><br>(<%=l(:text_min_max_length_info)%>)</p>
-
-<p><label for="custom_field_regexp"><%=l(:field_regexp)%></label> -<%= text_field 'custom_field', 'regexp', :size => 50 %><br>(<%=l(:text_regexp_info)%>)</p>
-
-<p><label for="custom_field_possible_values"><%=l(:field_possible_values)%></label> -<%= text_area 'custom_field', 'possible_values', :rows => 5, :cols => 60 %><br>(<%=l(:text_possible_values_info)%>)</p> -</div>
-<!--[eoform:custom_field]--> - -<div class="box"> -<% case type.to_s - when "IssueCustomField" %>
-
-<fieldset><legend><%=l(:label_tracker_plural)%></legend>
-<% for tracker in @trackers %>
- <input type="checkbox"
- name="tracker_ids[]"
- value="<%= tracker.id %>"
- <%if @custom_field.trackers.include? tracker%>checked="checked"<%end%>
- > <%= tracker.name %>
-<% end %></fieldset>
- - -<p><label for="custom_field_is_required"><%=l(:field_is_required)%></label> -<%= check_box 'custom_field', 'is_required' %></p> - -<p><label for="custom_field_is_for_all"><%=l(:field_is_for_all)%></label> -<%= check_box 'custom_field', 'is_for_all' %></p> - -<% when "UserCustomField" %> -<p><label for="custom_field_is_required"><%=l(:field_is_required)%></label> -<%= check_box 'custom_field', 'is_required' %></p> - -<% when "ProjectCustomField" %> -<p><label for="custom_field_is_required"><%=l(:field_is_required)%></label> -<%= check_box 'custom_field', 'is_required' %></p> - -<% end %> -</div> diff --git a/redmine/app/views/custom_fields/edit.rhtml b/redmine/app/views/custom_fields/edit.rhtml deleted file mode 100644 index 201047a8d..000000000 --- a/redmine/app/views/custom_fields/edit.rhtml +++ /dev/null @@ -1,6 +0,0 @@ -<h2><%=l(:label_custom_field)%> (<%=l(@custom_field.type_name)%>)</h2> - -<%= start_form_tag({:action => 'edit', :id => @custom_field}, :class => "tabular") %> - <%= render :partial => 'form', :locals => { :type => @custom_field.type } %> - <%= submit_tag l(:button_save) %> -<%= end_form_tag %> diff --git a/redmine/app/views/custom_fields/list.rhtml b/redmine/app/views/custom_fields/list.rhtml deleted file mode 100644 index 858590c49..000000000 --- a/redmine/app/views/custom_fields/list.rhtml +++ /dev/null @@ -1,36 +0,0 @@ -<h2><%=l(:label_custom_field_plural)%></h2> -
-<table class="listTableContent">
-<tr class="ListHead"> - <th><%=l(:field_name)%></th> - <th><%=l(:field_type)%></th>
- <th><%=l(:field_field_format)%></th>
- <th><%=l(:field_is_required)%></th>
- <th><%=l(:field_is_for_all)%></th>
- <th><%=l(:label_used_by)%></th>
- <th></th>
-</tr> -<% for custom_field in @custom_fields %> - <tr class="<%= cycle("odd", "even") %>">
- <td><%= link_to custom_field.name, :action => 'edit', :id => custom_field %></td>
- <td align="center"><%= l(custom_field.type_name) %></td> - <td align="center"><%= l(CustomField::FIELD_FORMATS[custom_field.field_format]) %></td>
- <td align="center"><%= image_tag 'true' if custom_field.is_required? %></td>
- <td align="center"><%= image_tag 'true' if custom_field.is_for_all? %></td>
- <td align="center"><%= custom_field.projects.count.to_s + ' ' + lwr(:label_project, custom_field.projects.count) if custom_field.is_a? IssueCustomField and !custom_field.is_for_all? %></td> - <td align="center"> - <%= button_to l(:button_delete), { :action => 'destroy', :id => custom_field }, :confirm => l(:text_are_you_sure), :class => "button-small" %> - </td> - </tr> -<% end %> -</table>
- -<%= pagination_links_full @custom_field_pages %> - -<br /> -<%=l(:label_custom_field_new)%>: -<ul> -<li><%= link_to l(:label_issue_plural), :action => 'new', :type => 'IssueCustomField' %></li> -<li><%= link_to l(:label_project_plural), :action => 'new', :type => 'ProjectCustomField' %></li> -<li><%= link_to l(:label_user_plural), :action => 'new', :type => 'UserCustomField' %></li> -</ul> diff --git a/redmine/app/views/custom_fields/new.rhtml b/redmine/app/views/custom_fields/new.rhtml deleted file mode 100644 index 3b215dc9f..000000000 --- a/redmine/app/views/custom_fields/new.rhtml +++ /dev/null @@ -1,8 +0,0 @@ -<h2><%=l(:label_custom_field_new)%> (<%=l(@custom_field.type_name)%>)</h2> - -<%= start_form_tag({:action => 'new'}, :class => "tabular") %> - <%= render :partial => 'form', :locals => { :type => @custom_field.type } %> - <%= hidden_field_tag 'type', @custom_field.type %> - <%= submit_tag l(:button_save) %> -<%= end_form_tag %> - diff --git a/redmine/app/views/documents/_form.rhtml b/redmine/app/views/documents/_form.rhtml deleted file mode 100644 index 873c96329..000000000 --- a/redmine/app/views/documents/_form.rhtml +++ /dev/null @@ -1,29 +0,0 @@ -<%= error_messages_for 'document' %> -<div class="box"> -<!--[form:document]--> -<p><label for="document_category_id"><%=l(:field_category)%></label>
-<select name="document[category_id]">
-<%= options_from_collection_for_select @categories, "id", "name", @document.category_id %> -</select></p>
-
-<p><label for="document_title"><%=l(:field_title)%> <span class="required">*</span></label> -<%= text_field 'document', 'title', :size => 60 %></p> - -<p><label for="document_description"><%=l(:field_description)%></label> -<%= text_area 'document', 'description', :cols => 60, :rows => 15 %></p> -<!--[eoform:document]--> -</div> - -<% unless $RDM_TEXTILE_DISABLED %> -<%= javascript_include_tag 'jstoolbar' %> -<script type="text/javascript"> -//<![CDATA[ -if (document.getElementById) { - if (document.getElementById('document_description')) { - var commentTb = new jsToolBar(document.getElementById('document_description')); - commentTb.draw(); - } -} -//]]> -</script> -<% end %>
\ No newline at end of file diff --git a/redmine/app/views/documents/edit.rhtml b/redmine/app/views/documents/edit.rhtml deleted file mode 100644 index 3db4bcc6a..000000000 --- a/redmine/app/views/documents/edit.rhtml +++ /dev/null @@ -1,8 +0,0 @@ -<h2><%=l(:label_document)%></h2> - -<%= start_form_tag({:action => 'edit', :id => @document}, :class => "tabular") %> - <%= render :partial => 'form' %> - <%= submit_tag l(:button_save) %> -<%= end_form_tag %> - - diff --git a/redmine/app/views/documents/show.rhtml b/redmine/app/views/documents/show.rhtml deleted file mode 100644 index 2f021e1b8..000000000 --- a/redmine/app/views/documents/show.rhtml +++ /dev/null @@ -1,48 +0,0 @@ -<h2><%= @document.title %></h2>
-
-<p><em><%= @document.category.name %><br />
-<%= format_date @document.created_on %></em></p>
-<%= textilizable @document.description %>
-
-
-<table width="100%">
-<tr><td><%= link_to_if_authorized l(:button_edit), :controller => 'documents', :action => 'edit', :id => @document %></td>
-<td align="right">
-<% if authorize_for('documents', 'destroy') %>
- <%= start_form_tag({ :controller => 'documents', :action => 'destroy', :id => @document } ) %>
- <%= submit_tag l(:button_delete) %>
- <%= end_form_tag %>
-<% end %>
-</td></tr>
-</table>
-<br />
-
-<h3><%= l(:label_attachment_plural) %></h3>
-<ul> -<% for attachment in @attachments %> - <li>
- <% if authorize_for('documents', 'destroy_attachment') %>
- <div style="float:right;padding:6px;">
- <%= start_form_tag({ :controller => 'documents', :action => 'destroy_attachment', :id => @document, :attachment_id => attachment } ) %>
- <%= submit_tag l(:button_delete), :class => 'button-small' %>
- <%= end_form_tag %>
- </div>
- <% end %>
-
- <%= link_to attachment.filename, :action => 'download', :id => @document, :attachment_id => attachment %>
- (<%= human_size attachment.filesize %>)<br />
- <em><%= attachment.author.display_name %>, <%= format_date(attachment.created_on) %></em><br /> - <%= lwr(:label_download, attachment.downloads) %>
- </li>
-<% end %> -</ul>
-<br />
-
-
-<% if authorize_for('documents', 'add_attachment') %>
- <%= start_form_tag ({ :controller => 'documents', :action => 'add_attachment', :id => @document }, :multipart => true) %>
- <label><%=l(:label_attachment_new)%></label>
- <%= file_field 'attachment', 'file' %>
- <%= submit_tag l(:button_add) %>
- <%= end_form_tag %>
-<% end %>
diff --git a/redmine/app/views/enumerations/_form.rhtml b/redmine/app/views/enumerations/_form.rhtml deleted file mode 100644 index 637605939..000000000 --- a/redmine/app/views/enumerations/_form.rhtml +++ /dev/null @@ -1,9 +0,0 @@ -<%= error_messages_for 'enumeration' %> -<div class="box"> -<!--[form:optvalue]--> -<%= hidden_field 'enumeration', 'opt' %> - -<p><label for="enumeration_name"><%=l(:field_name)%></label> -<%= text_field 'enumeration', 'name' %></p> -<!--[eoform:optvalue]--> -</div>
\ No newline at end of file diff --git a/redmine/app/views/enumerations/edit.rhtml b/redmine/app/views/enumerations/edit.rhtml deleted file mode 100644 index 3002b5936..000000000 --- a/redmine/app/views/enumerations/edit.rhtml +++ /dev/null @@ -1,10 +0,0 @@ -<h2><%=l(:label_enumerations)%></h2> - -<%= start_form_tag({:action => 'update', :id => @enumeration}, :class => "tabular") %> - <%= render :partial => 'form' %> - <%= submit_tag l(:button_save) %> -<%= end_form_tag %> - -<%= start_form_tag :action => 'destroy', :id => @enumeration %> - <%= submit_tag l(:button_delete) %> -<%= end_form_tag %>
\ No newline at end of file diff --git a/redmine/app/views/enumerations/list.rhtml b/redmine/app/views/enumerations/list.rhtml deleted file mode 100644 index 15b91c1ac..000000000 --- a/redmine/app/views/enumerations/list.rhtml +++ /dev/null @@ -1,21 +0,0 @@ -<h2><%=l(:label_enumerations)%></h2> - -<% Enumeration::OPTIONS.each do |option, name| %>
-
- <% if @params[:opt]==option %>
-
- <p><%= image_tag 'dir_open' %> <b><%= l(name) %></b></p>
- <ul>
- <% for value in Enumeration.find(:all, :conditions => ["opt = ?", option]) %>
- <li><%= link_to value.name, :action => 'edit', :id => value %></li>
- <% end %>
- </ul>
- <ul>
- <li><%= link_to ('» ' + l(:label_new)), :action => 'new', :opt => option %></li>
- </ul>
-
- <% else %>
- <p><%= image_tag 'dir' %> <%= link_to l(name), :opt => option %></p>
- <% end %>
-
-<% end %>
\ No newline at end of file diff --git a/redmine/app/views/enumerations/new.rhtml b/redmine/app/views/enumerations/new.rhtml deleted file mode 100644 index 0a773519d..000000000 --- a/redmine/app/views/enumerations/new.rhtml +++ /dev/null @@ -1,6 +0,0 @@ -<h2><%= l(@enumeration.option_name) %>: <%=l(:label_enumeration_new)%></h2> - -<%= start_form_tag({:action => 'create'}, :class => "tabular") %> - <%= render :partial => 'form' %> - <%= submit_tag l(:button_create) %> -<%= end_form_tag %> diff --git a/redmine/app/views/issue_categories/_form.rhtml b/redmine/app/views/issue_categories/_form.rhtml deleted file mode 100644 index 765b8f53d..000000000 --- a/redmine/app/views/issue_categories/_form.rhtml +++ /dev/null @@ -1,7 +0,0 @@ -<%= error_messages_for 'issue_category' %> - -<!--[form:issue_category]--> -<p><label for="issue_category_name"><%l(:field_name)%></label> -<%= text_field 'issue_category', 'name' %></p> -<!--[eoform:issue_category]--> - diff --git a/redmine/app/views/issue_categories/edit.rhtml b/redmine/app/views/issue_categories/edit.rhtml deleted file mode 100644 index 053facbf7..000000000 --- a/redmine/app/views/issue_categories/edit.rhtml +++ /dev/null @@ -1,6 +0,0 @@ -<h2><%=l(:label_issue_category)%></h2> - -<%= start_form_tag({:action => 'edit', :id => @category}, :class => "tabular") %> - <%= render :partial => 'form' %> - <%= submit_tag l(:button_save) %> -<%= end_form_tag %> diff --git a/redmine/app/views/issue_statuses/_form.rhtml b/redmine/app/views/issue_statuses/_form.rhtml deleted file mode 100644 index f3b1cf2ca..000000000 --- a/redmine/app/views/issue_statuses/_form.rhtml +++ /dev/null @@ -1,18 +0,0 @@ -<%= error_messages_for 'issue_status' %> - -<div class="box"> -<!--[form:issue_status]--> -<p><label for="issue_status_name"><%=l(:field_name)%><span class="required"> *</span></label> -<%= text_field 'issue_status', 'name' %></p> - -<p><label for="issue_status_is_closed"><%=l(:field_is_closed)%></label> -<%= check_box 'issue_status', 'is_closed' %></p>
-
-<p><label for="issue_status_is_default"><%=l(:field_is_default)%></label> -<%= check_box 'issue_status', 'is_default' %></p>
-
-<p><label for="issue_status_html_color"><%=l(:field_html_color)%><span class="required"> *</span></label> -#<%= text_field 'issue_status', 'html_color', :maxlength => 6 %></p>
- -<!--[eoform:issue_status]--> -</div>
\ No newline at end of file diff --git a/redmine/app/views/issue_statuses/edit.rhtml b/redmine/app/views/issue_statuses/edit.rhtml deleted file mode 100644 index 80f856a2a..000000000 --- a/redmine/app/views/issue_statuses/edit.rhtml +++ /dev/null @@ -1,6 +0,0 @@ -<h2><%=l(:label_issue_status)%></h2> - -<%= start_form_tag({:action => 'update', :id => @issue_status}, :class => "tabular") %> - <%= render :partial => 'form' %> - <%= submit_tag l(:button_save) %> -<%= end_form_tag %> diff --git a/redmine/app/views/issue_statuses/list.rhtml b/redmine/app/views/issue_statuses/list.rhtml deleted file mode 100644 index 023863437..000000000 --- a/redmine/app/views/issue_statuses/list.rhtml +++ /dev/null @@ -1,28 +0,0 @@ -<h2><%=l(:label_issue_status_plural)%></h2> - -<table class="listTableContent"> - <tr class="ListHead"> - <th><%=l(:field_status)%></th>
- <th><%=l(:field_is_default)%></th>
- <th><%=l(:field_is_closed)%></th>
- <th><%=l(:field_html_color)%></th>
- <th></th> - </tr> - -<% for status in @issue_statuses %> - <tr class="<%= cycle("odd", "even") %>"> - <td><%= link_to status.name, :action => 'edit', :id => status %></td>
- <td align="center"><%= image_tag 'true' if status.is_default? %></td>
- <td align="center"><%= image_tag 'true' if status.is_closed? %></td> - <td><div style="background-color:#<%= status.html_color %>"> </div></td>
- <td align="center"> - <%= button_to l(:button_delete), { :action => 'destroy', :id => status }, :confirm => l(:text_are_you_sure), :class => "button-small" %>
- </td> - </tr> -<% end %> -</table> -
-<%= pagination_links_full @issue_status_pages %>
-<br /> - -<%= link_to '» ' + l(:label_issue_status_new), :action => 'new' %> diff --git a/redmine/app/views/issue_statuses/new.rhtml b/redmine/app/views/issue_statuses/new.rhtml deleted file mode 100644 index 2dacb1e21..000000000 --- a/redmine/app/views/issue_statuses/new.rhtml +++ /dev/null @@ -1,6 +0,0 @@ -<h2><%=l(:label_issue_status_new)%></h2> - -<%= start_form_tag({:action => 'create'}, :class => "tabular") %> - <%= render :partial => 'form' %> - <%= submit_tag l(:button_create) %> -<%= end_form_tag %> diff --git a/redmine/app/views/issues/_history.rhtml b/redmine/app/views/issues/_history.rhtml deleted file mode 100644 index 6dc2a84be..000000000 --- a/redmine/app/views/issues/_history.rhtml +++ /dev/null @@ -1,11 +0,0 @@ -<% for journal in journals %>
- <h4><%= format_time(journal.created_on) %> - <%= journal.user.name %></h4>
- <ul>
- <% for detail in journal.details %>
- <li><%= show_detail(detail) %></li>
- <% end %>
- </ul>
- <% if journal.notes? %>
- <%= simple_format auto_link journal.notes %>
- <% end %>
-<% end %>
diff --git a/redmine/app/views/issues/_list_simple.rhtml b/redmine/app/views/issues/_list_simple.rhtml deleted file mode 100644 index 94b63d613..000000000 --- a/redmine/app/views/issues/_list_simple.rhtml +++ /dev/null @@ -1,28 +0,0 @@ -<% if issues.length > 0 %>
-<table cellspacing="0" cellpadding="1" width="100%" border="0" class="listTable">
- <tr><td>
- <table class="listTableContent">
- <tr class="ListHead">
- <th>#</th>
- <th><%=l(:field_tracker)%></th>
- <th><%=l(:field_subject)%></th>
- </tr>
- <% for issue in issues %> - <tr class="<%= cycle("odd", "even") %>">
- <td align="center" style="font-weight:bold;color:#<%= issue.status.html_color %>;">
- <%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %><br />
- </td>
- <td><p class="small"><%= issue.project.name %> - <%= issue.tracker.name %><br /> - <%= issue.status.name %> - <%= format_time(issue.updated_on) %></p></td>
- <td>
- <p class="small"><%= link_to issue.subject, :controller => 'issues', :action => 'show', :id => issue %></p>
- </td> - </tr> - <% end %> - </table> - </td>
- </tr>
-</table>
-<% else %>
- <i><%=l(:label_no_data)%></i>
-<% end %>
\ No newline at end of file diff --git a/redmine/app/views/issues/_pdf.rfpdf b/redmine/app/views/issues/_pdf.rfpdf deleted file mode 100644 index 1f6a12283..000000000 --- a/redmine/app/views/issues/_pdf.rfpdf +++ /dev/null @@ -1,100 +0,0 @@ -<% pdf.SetFont('Arial','B',11)
- pdf.Cell(190,10, "#{issue.project.name} - #{issue.tracker.name} # #{issue.long_id} - #{issue.subject}")
- pdf.Ln
-
- y0 = pdf.GetY
-
- pdf.SetFont('Arial','B',9)
- pdf.Cell(35,5, l(:field_status) + ":","LT")
- pdf.SetFont('Arial','',9)
- pdf.Cell(60,5, issue.status.name,"RT")
- pdf.SetFont('Arial','B',9)
- pdf.Cell(35,5, l(:field_priority) + ":","LT")
- pdf.SetFont('Arial','',9)
- pdf.Cell(60,5, issue.priority.name,"RT")
- pdf.Ln
-
- pdf.SetFont('Arial','B',9)
- pdf.Cell(35,5, l(:field_author) + ":","L")
- pdf.SetFont('Arial','',9)
- pdf.Cell(60,5, issue.author.name,"R")
- pdf.SetFont('Arial','B',9)
- pdf.Cell(35,5, l(:field_category) + ":","L")
- pdf.SetFont('Arial','',9)
- pdf.Cell(60,5, (issue.category ? issue.category.name : "-"),"R")
- pdf.Ln
-
- pdf.SetFont('Arial','B',9)
- pdf.Cell(35,5, l(:field_created_on) + ":","L")
- pdf.SetFont('Arial','',9)
- pdf.Cell(60,5, format_date(issue.created_on),"R")
- pdf.SetFont('Arial','B',9)
- pdf.Cell(35,5, l(:field_assigned_to) + ":","L")
- pdf.SetFont('Arial','',9)
- pdf.Cell(60,5, (issue.assigned_to ? issue.assigned_to.name : "-"),"R")
- pdf.Ln
-
- pdf.SetFont('Arial','B',9)
- pdf.Cell(35,5, l(:field_updated_on) + ":","LB")
- pdf.SetFont('Arial','',9)
- pdf.Cell(60,5, format_date(issue.updated_on),"RB")
- pdf.SetFont('Arial','B',9)
- pdf.Cell(35,5, l(:field_due_date) + ":","LB")
- pdf.SetFont('Arial','',9)
- pdf.Cell(60,5, format_date(issue.due_date),"RB")
- pdf.Ln
-
- for custom_value in issue.custom_values
- pdf.SetFont('Arial','B',9)
- pdf.Cell(35,5, custom_value.custom_field.name + ":","L")
- pdf.SetFont('Arial','',9)
- pdf.MultiCell(155,5, (show_value custom_value),"R")
- end
-
- pdf.SetFont('Arial','B',9)
- pdf.Cell(35,5, l(:field_subject) + ":","LTB")
- pdf.SetFont('Arial','',9)
- pdf.Cell(155,5, issue.subject,"RTB")
- pdf.Ln
-
- pdf.SetFont('Arial','B',9)
- pdf.Cell(35,5, l(:field_description) + ":")
- pdf.SetFont('Arial','',9)
- pdf.MultiCell(155,5, issue.description,"BR")
-
- pdf.Line(pdf.GetX, y0, pdf.GetX, pdf.GetY)
- pdf.Line(pdf.GetX, pdf.GetY, 170, pdf.GetY)
-
- pdf.Ln
-
- pdf.SetFont('Arial','B',9)
- pdf.Cell(190,5, l(:label_history), "B")
- pdf.Ln
- for journal in issue.journals.find(:all, :include => :user, :order => "journals.created_on desc")
- pdf.SetFont('Arial','B',8)
- pdf.Cell(190,5, format_time(journal.created_on) + " - " + journal.user.name)
- pdf.Ln
- pdf.SetFont('Arial','I',8)
- for detail in journal.details
- pdf.Cell(190,5, "- " + show_detail(detail, true))
- pdf.Ln
- end
- if journal.notes?
- pdf.SetFont('Arial','',8)
- pdf.MultiCell(190,5, journal.notes)
- end
- pdf.Ln
- end
-
- pdf.SetFont('Arial','B',9)
- pdf.Cell(190,5, l(:label_attachment_plural), "B")
- pdf.Ln
- for attachment in issue.attachments
- pdf.SetFont('Arial','',8)
- pdf.Cell(80,5, attachment.filename)
- pdf.Cell(20,5, human_size(attachment.filesize),0,0,"R")
- pdf.Cell(20,5, format_date(attachment.created_on),0,0,"R")
- pdf.Cell(70,5, attachment.author.name,0,0,"R")
- pdf.Ln
- end
-%>
\ No newline at end of file diff --git a/redmine/app/views/issues/change_status.rhtml b/redmine/app/views/issues/change_status.rhtml deleted file mode 100644 index 2ef87183d..000000000 --- a/redmine/app/views/issues/change_status.rhtml +++ /dev/null @@ -1,37 +0,0 @@ -<h2><%=l(:label_issue)%> #<%= @issue.id %>: <%= @issue.subject %></h2> -
-<%= error_messages_for 'issue' %>
-<%= start_form_tag({:action => 'change_status', :id => @issue}, :class => "tabular") %>
-
-<%= hidden_field_tag 'confirm', 1 %>
-<%= hidden_field_tag 'new_status_id', @new_status.id %> - -<div class="box">
-<p><label><%=l(:label_issue_status_new)%></label> <%= @new_status.name %></p>
-
-<p><label for="issue_assigned_to_id"><%=l(:field_assigned_to)%></label> -<select name="issue[assigned_to_id]">
-<option value=""></option>
-<%= options_from_collection_for_select @assignable_to, "id", "display_name", @issue.assigned_to_id %></p> -</select></p>
- - -<p><label for="issue_done_ratio"><%=l(:field_done_ratio)%></label> -<%= select("issue", "done_ratio", ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) ) %> -</select></p> - -
-<p><label for="issue_fixed_version"><%=l(:field_fixed_version)%></label> -<select name="issue[fixed_version_id]">
-<option value="">--none--</option>
-<%= options_from_collection_for_select @issue.project.versions, "id", "name", @issue.fixed_version_id %>
-</select></p> - -<p><label for="notes"><%= l(:field_notes) %></label> -<%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10 %></p> - -</div> -
-<%= hidden_field 'issue', 'lock_version' %> -<%= submit_tag l(:button_save) %>
-<%= end_form_tag %>
diff --git a/redmine/app/views/issues/edit.rhtml b/redmine/app/views/issues/edit.rhtml deleted file mode 100644 index 60cdafc1e..000000000 --- a/redmine/app/views/issues/edit.rhtml +++ /dev/null @@ -1,49 +0,0 @@ -<h2><%= @issue.tracker.name %> #<%= @issue.id %> - <%= @issue.subject %></h2> - -<% labelled_tabular_form_for :issue, @issue, :url => {:action => 'edit'} do |f| %> -<%= error_messages_for 'issue' %> -<div class="box"> -<!--[form:issue]--> -<div class="splitcontentleft"> -<p><label><%=l(:field_status)%></label> <%= @issue.status.name %></p> -<p><%= f.select :priority_id, (@priorities.collect {|p| [p.name, p.id]}), :required => true %></p> -<p><%= f.select :assigned_to_id, (@issue.project.members.collect {|m| [m.name, m.user_id]}), :include_blank => true %></p> -<p><%= f.select :category_id, (@project.issue_categories.collect {|c| [c.name, c.id]}) %></p> -</div> - -<div class="splitcontentright"> -<p><%= f.text_field :start_date, :size => 10 %><%= calendar_for('issue_start_date') %></p> -<p><%= f.text_field :due_date, :size => 10 %><%= calendar_for('issue_due_date') %></p> -<p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></p> -</div> - -<div class="clear"> -<p><%= f.text_field :subject, :size => 80, :required => true %></p> -<p><%= f.text_area :description, :cols => 60, :rows => [[10, @issue.description.length / 50].max, 100].min, :required => true %></p> - -<% for @custom_value in @custom_values %> - <p><%= custom_field_tag_with_label @custom_value %></p> -<% end %> - -<p><%= f.select :fixed_version_id, (@project.versions.collect {|v| [v.name, v.id]}), { :include_blank => true } %> -</select></p> -</div> -<!--[eoform:issue]--> -</div> -<%= f.hidden_field :lock_version %> -<%= submit_tag l(:button_save) %> -<% end %> - -<% unless $RDM_TEXTILE_DISABLED %> -<%= javascript_include_tag 'jstoolbar' %> -<script type="text/javascript"> -//<![CDATA[ -if (document.getElementById) { - if (document.getElementById('issue_description')) { - var commentTb = new jsToolBar(document.getElementById('issue_description')); - commentTb.draw(); - } -} -//]]> -</script> -<% end %>
\ No newline at end of file diff --git a/redmine/app/views/issues/export_pdf.rfpdf b/redmine/app/views/issues/export_pdf.rfpdf deleted file mode 100644 index a8622dd51..000000000 --- a/redmine/app/views/issues/export_pdf.rfpdf +++ /dev/null @@ -1,9 +0,0 @@ -<% pdf=IfpdfHelper::IFPDF.new
- pdf.AliasNbPages
- pdf.footer_date = format_date(Date.today)
- pdf.AddPage
-
- render :partial => 'issues/pdf', :locals => { :pdf => pdf, :issue => @issue }
-%>
-
-<%= pdf.Output %>
\ No newline at end of file diff --git a/redmine/app/views/issues/history.rhtml b/redmine/app/views/issues/history.rhtml deleted file mode 100644 index 2443cc739..000000000 --- a/redmine/app/views/issues/history.rhtml +++ /dev/null @@ -1,6 +0,0 @@ -<h3><%=l(:label_history)%></h3>
-<div id="history">
-<%= render :partial => 'history', :locals => { :journals => @journals } %>
-</div>
-<br />
-<p><%= link_to l(:button_back), :action => 'show', :id => @issue %></p>
\ No newline at end of file diff --git a/redmine/app/views/issues/show.rhtml b/redmine/app/views/issues/show.rhtml deleted file mode 100644 index 8128b74a9..000000000 --- a/redmine/app/views/issues/show.rhtml +++ /dev/null @@ -1,133 +0,0 @@ -<h2><%= @issue.tracker.name %> #<%= @issue.id %> - <%= @issue.subject %></h2>
-<div class="topright">
-<small>
-<%= link_to 'PDF', :action => 'export_pdf', :id => @issue %>
-</small>
-</div>
- -<div class="box">
-<table width="100%">
-<tr>
- <td width="15%"><b><%=l(:field_status)%> :</b></td><td width="35%"><%= @issue.status.name %></td>
- <td width="15%"><b><%=l(:field_priority)%> :</b></td><td width="35%"><%= @issue.priority.name %></td>
-</tr>
-<tr>
- <td><b><%=l(:field_assigned_to)%> :</b></td><td><%= @issue.assigned_to ? @issue.assigned_to.name : "-" %></td>
- <td><b><%=l(:field_category)%> :</b></td><td><%= @issue.category ? @issue.category.name : "-" %></td>
-</tr>
-<tr>
- <td><b><%=l(:field_author)%> :</b></td><td><%= link_to_user @issue.author %></td>
- <td><b><%=l(:field_start_date)%> :</b></td><td><%= format_date(@issue.start_date) %></td>
-</tr>
-<tr>
- <td><b><%=l(:field_created_on)%> :</b></td><td><%= format_date(@issue.created_on) %></td>
- <td><b><%=l(:field_due_date)%> :</b></td><td><%= format_date(@issue.due_date) %></td>
-</tr>
-<tr>
- <td><b><%=l(:field_updated_on)%> :</b></td><td><%= format_date(@issue.updated_on) %></td>
- <td><b><%=l(:field_done_ratio)%> :</b></td><td><%= @issue.done_ratio %> %</td>
-</tr>
-<tr>
-<% n = 0
-for custom_value in @custom_values %>
- <td><b><%= custom_value.custom_field.name %> :</b></td><td><%= show_value custom_value %></td>
-<% n = n + 1
- if (n > 1)
- n = 0 %>
- </tr><tr>
- <%end
-end %>
-</tr>
-</table>
-<hr />
-<br />
-
-<b><%=l(:field_description)%> :</b><br /><br />
-<%= textilizable @issue.description %>
-<br />
-<div style="float:left;">
-<% if authorize_for('issues', 'edit') %>
- <%= start_form_tag ({:controller => 'issues', :action => 'edit', :id => @issue}, :method => "get" ) %>
- <%= submit_tag l(:button_edit) %>
- <%= end_form_tag %>
-
-<% end %>
-
-<% if authorize_for('issues', 'change_status') and @status_options and !@status_options.empty? %>
- <%= start_form_tag ({:controller => 'issues', :action => 'change_status', :id => @issue}) %>
- <%=l(:label_change_status)%> :
- <select name="new_status_id">
- <%= options_from_collection_for_select @status_options, "id", "name" %>
- </select>
- <%= submit_tag l(:button_change) %>
- <%= end_form_tag %>
-
-<% end %>
-
-<% if authorize_for('projects', 'move_issues') %>
- <%= start_form_tag ({:controller => 'projects', :action => 'move_issues', :id => @project} ) %>
- <%= hidden_field_tag "issue_ids[]", @issue.id %>
- <%= submit_tag l(:button_move) %>
- <%= end_form_tag %>
-
-<% end %>
-</div>
-<div style="float:right;">
-<% if authorize_for('issues', 'destroy') %>
- <%= start_form_tag ({:controller => 'issues', :action => 'destroy', :id => @issue} ) %>
- <%= submit_tag l(:button_delete) %>
- <%= end_form_tag %>
-
-<% end %>
-</div>
-<div class="clear"></div>
-</div>
-
-<div id="history" class="box">
-<h3><%=l(:label_history)%>
-<% if @journals_count > @journals.length %>(<%= l(:label_last_changes, @journals.length) %>)<% end %></h3>
-<%= render :partial => 'history', :locals => { :journals => @journals } %>
-<% if @journals_count > @journals.length %>
- <p><center><small>[ <%= link_to l(:label_change_view_all), :action => 'history', :id => @issue %> ]</small></center></p>
-<% end %> -</div>
-
-<div class="box">
-<h3><%=l(:label_attachment_plural)%></h3>
-<table width="100%">
-<% for attachment in @issue.attachments %>
-<tr>
-<td><%= image_tag('attachment') %> <%= link_to attachment.filename, :action => 'download', :id => @issue, :attachment_id => attachment %> (<%= human_size(attachment.filesize) %>)</td>
-<td><%= format_date(attachment.created_on) %></td>
-<td><%= attachment.author.display_name %></td>
-<% if authorize_for('issues', 'destroy_attachment') %>
- <td>
- <%= start_form_tag :action => 'destroy_attachment', :id => @issue, :attachment_id => attachment %>
- <%= submit_tag l(:button_delete), :class => "button-small" %>
- <%= end_form_tag %>
- </td>
-<% end %>
-</tr>
-<% end %> -</table>
-<br />
-<% if authorize_for('issues', 'add_attachment') %>
- <%= start_form_tag ({ :controller => 'issues', :action => 'add_attachment', :id => @issue }, :multipart => true, :class => "tabular") %>
- <p id="attachments_p"><label><%=l(:label_attachment_new)%>
- <%= link_to_function image_tag('add'), "addFileField()" %></label>
- <%= file_field_tag 'attachments[]', :size => 30 %></p>
- <%= submit_tag l(:button_add) %>
- <%= end_form_tag %>
-<% end %>
-</div>
-
-<% if authorize_for('issues', 'add_note') %>
- <div class="box">
- <h3><%= l(:label_add_note) %></h3>
- <%= start_form_tag ({:controller => 'issues', :action => 'add_note', :id => @issue}, :class => "tabular" ) %>
- <p><label for="notes"><%=l(:field_notes)%></label>
- <%= text_area_tag 'notes', '', :cols => 60, :rows => 10 %></p>
- <%= submit_tag l(:button_add) %>
- <%= end_form_tag %>
- </div>
-<% end %>
diff --git a/redmine/app/views/layouts/base.rhtml b/redmine/app/views/layouts/base.rhtml deleted file mode 100644 index 951fa88f7..000000000 --- a/redmine/app/views/layouts/base.rhtml +++ /dev/null @@ -1,142 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
-<head>
-<title><%= $RDM_HEADER_TITLE + (@html_title ? ": #{@html_title}" : "") %></title>
-<meta http-equiv="content-type" content="text/html; charset=utf-8" />
-<meta name="description" content="redMine" />
-<meta name="keywords" content="issue,bug,tracker" />
-<%= stylesheet_link_tag "application" %>
-<%= stylesheet_link_tag "menu" %>
-<%= stylesheet_link_tag "rails" %>
-<%= javascript_include_tag :defaults %>
-<%= javascript_include_tag 'menu' %>
-<%= javascript_include_tag 'calendar/calendar' %>
-<%= javascript_include_tag "calendar/lang/calendar-#{current_language}.js" %>
-<%= javascript_include_tag 'calendar/calendar-setup' %>
-<%= stylesheet_link_tag 'calendar' %>
-<%= stylesheet_link_tag 'jstoolbar' %>
-<script type='text/javascript'>
-var menu_contenu=' \
-<div id="menuAdmin" class="menu" onmouseover="menuMouseover(event)"> \
-<a class="menuItem" href="\/admin\/projects" onmouseover="menuItemMouseover(event,\'menuProjects\');"><span class="menuItemText"><%=l(:label_project_plural)%><\/span><span class="menuItemArrow">▶<\/span><\/a> \
-<a class="menuItem" href="\/users" onmouseover="menuItemMouseover(event,\'menuUsers\');"><span class="menuItemText"><%=l(:label_user_plural)%><\/span><span class="menuItemArrow">▶<\/span><\/a> \
-<a class="menuItem" href="\/roles"><%=l(:label_role_and_permissions)%><\/a> \
-<a class="menuItem" href="\/trackers" onmouseover="menuItemMouseover(event,\'menuTrackers\');"><span class="menuItemText"><%=l(:label_tracker_plural)%><\/span><span class="menuItemArrow">▶<\/span><\/a> \
-<a class="menuItem" href="\/custom_fields"><%=l(:label_custom_field_plural)%><\/a> \
-<a class="menuItem" href="\/enumerations"><%=l(:label_enumerations)%><\/a> \
-<a class="menuItem" href="\/admin\/mail_options"><%=l(:field_mail_notification)%><\/a> \
-<a class="menuItem" href="\/auth_sources"><%=l(:label_authentication)%><\/a> \
-<a class="menuItem" href="\/admin\/info"><%=l(:label_information_plural)%><\/a> \
-<\/div> \
-<div id="menuTrackers" class="menu"> \
-<a class="menuItem" href="\/issue_statuses"><%=l(:label_issue_status_plural)%><\/a> \
-<a class="menuItem" href="\/roles\/workflow"><%=l(:label_workflow)%><\/a> \
-<\/div> \
-<div id="menuProjects" class="menu"><a class="menuItem" href="\/projects\/add"><%=l(:label_new)%><\/a><\/div> \
-<div id="menuUsers" class="menu"><a class="menuItem" href="\/users\/add"><%=l(:label_new)%><\/a><\/div> \
- \
-<% unless @project.nil? || @project.id.nil? %> \
-<div id="menuProject" class="menu" onmouseover="menuMouseover(event)"> \
-<%= link_to l(:label_calendar), {:controller => 'projects', :action => 'calendar', :id => @project }, :class => "menuItem" %> \
-<%= link_to l(:label_issue_plural), {:controller => 'projects', :action => 'list_issues', :id => @project }, :class => "menuItem" %> \
-<%= link_to l(:label_report_plural), {:controller => 'reports', :action => 'issue_report', :id => @project }, :class => "menuItem" %> \
-<%= link_to l(:label_activity), {:controller => 'projects', :action => 'activity', :id => @project }, :class => "menuItem" %> \
-<%= link_to l(:label_news_plural), {:controller => 'projects', :action => 'list_news', :id => @project }, :class => "menuItem" %> \
-<%= link_to l(:label_change_log), {:controller => 'projects', :action => 'changelog', :id => @project }, :class => "menuItem" %> \
-<%= link_to l(:label_document_plural), {:controller => 'projects', :action => 'list_documents', :id => @project }, :class => "menuItem" %> \
-<%= link_to l(:label_member_plural), {:controller => 'projects', :action => 'list_members', :id => @project }, :class => "menuItem" %> \
-<%= link_to l(:label_attachment_plural), {:controller => 'projects', :action => 'list_files', :id => @project }, :class => "menuItem" %> \
-<%= link_to_if_authorized l(:label_settings), {:controller => 'projects', :action => 'settings', :id => @project }, :class => "menuItem" %> \
-<\/div> \
-<% end %> \
-';
-</script>
-
-</head>
-
-<body>
-<div id="container" >
-
- <div id="header">
- <div style="float: left;">
- <h1><%= $RDM_HEADER_TITLE %></h1>
- <h2><%= $RDM_HEADER_SUBTITLE %></h2>
- </div>
- <div style="float: right; padding-right: 1em; padding-top: 0.2em;">
- <% if loggedin? %><small><%=l(:label_logged_as)%> <b><%= @logged_in_user.login %></b></small><% end %>
- </div>
- </div>
-
- <div id="navigation">
- <ul>
- <li class="selected"><%= link_to l(:label_home), { :controller => '' }, :class => "picHome" %></li>
- <li><%= link_to l(:label_my_page), { :controller => 'my', :action => 'page'}, :class => "picUserPage" %></li>
- <li><%= link_to l(:label_project_plural), { :controller => 'projects' }, :class => "picProject" %></li>
-
- <% unless @project.nil? || @project.id.nil? %>
- <li><%= link_to @project.name, { :controller => 'projects', :action => 'show', :id => @project }, :class => "picProject", :onmouseover => "buttonMouseover(event, 'menuProject');" %></li>
- <% end %>
-
- <% if loggedin? %>
- <li><%= link_to l(:label_my_account), { :controller => 'my', :action => 'account' }, :class => "picUser" %></li>
- <% end %>
-
- <% if admin_loggedin? %>
- <li><%= link_to l(:label_administration), { :controller => 'admin' }, :class => "picAdmin", :onmouseover => "buttonMouseover(event, 'menuAdmin');" %></li>
- <% end %>
-
- <li class="right"><%= link_to l(:label_help), { :controller => 'help', :ctrl => @params[:controller], :page => @params[:action] }, :target => "new", :class => "picHelp" %></li>
-
- <% if loggedin? %>
- <li class="right"><%= link_to l(:label_logout), { :controller => 'account', :action => 'logout' }, :class => "picUser" %></li>
- <% else %>
- <li class="right"><%= link_to l(:label_login), { :controller => 'account', :action => 'login' }, :class => "picUser" %></li>
- <% end %>
- </ul>
- </div>
- <script type='text/javascript'>if(document.getElementById) {document.write(menu_contenu);}</script>
-
- <div id="subcontent">
-
- <% unless @project.nil? || @project.id.nil? %>
- <h2><%= @project.name %></h2>
- <ul class="menublock">
- <li><%= link_to l(:label_overview), :controller => 'projects', :action => 'show', :id => @project %></li>
- <li><%= link_to l(:label_calendar), :controller => 'projects', :action => 'calendar', :id => @project %></li>
- <li><%= link_to l(:label_issue_plural), :controller => 'projects', :action => 'list_issues', :id => @project %></li>
- <li><%= link_to l(:label_report_plural), :controller => 'reports', :action => 'issue_report', :id => @project %></li>
- <li><%= link_to l(:label_activity), :controller => 'projects', :action => 'activity', :id => @project %></li>
- <li><%= link_to l(:label_news_plural), :controller => 'projects', :action => 'list_news', :id => @project %></li>
- <li><%= link_to l(:label_change_log), :controller => 'projects', :action => 'changelog', :id => @project %></li>
- <li><%= link_to l(:label_document_plural), :controller => 'projects', :action => 'list_documents', :id => @project %></li>
- <li><%= link_to l(:label_member_plural), :controller => 'projects', :action => 'list_members', :id => @project %></li>
- <li><%= link_to l(:label_attachment_plural), :controller => 'projects', :action => 'list_files', :id => @project %></li>
- <li><%= link_to_if_authorized l(:label_settings), :controller => 'projects', :action => 'settings', :id => @project %></li>
- </ul>
- <% end %>
-
- <% if loggedin? and @logged_in_user.memberships.length > 0 %>
- <h2><%=l(:label_my_projects) %></h2>
- <ul class="menublock">
- <% for membership in @logged_in_user.memberships %>
- <li><%= link_to membership.project.name, :controller => 'projects', :action => 'show', :id => membership.project %></li>
- <% end %>
- </ul>
- <% end %>
- </div>
-
- <div id="content">
- <% if flash[:notice] %><p style="color: green"><%= flash[:notice] %></p><% end %>
- <%= @content_for_layout %>
- </div>
-
- <div id="footer">
- <p>
- <%= auto_link $RDM_FOOTER_SIG %> |
- <a href="http://redmine.rubyforge.org/" target="_new"><%= RDM_APP_NAME %></a> <%= RDM_APP_VERSION %>
- </p>
- </div>
-
-</div>
-</body>
-</html>
\ No newline at end of file diff --git a/redmine/app/views/mailer/_issue.rhtml b/redmine/app/views/mailer/_issue.rhtml deleted file mode 100644 index c123ae30c..000000000 --- a/redmine/app/views/mailer/_issue.rhtml +++ /dev/null @@ -1,7 +0,0 @@ -<%=l(:label_issue)%> #<%= issue.id %> - <%= issue.subject %>
-<%=l(:field_author)%>: <%= issue.author.display_name %>
-<%=l(:field_status)%>: <%= issue.status.name %>
- -<%= issue.description %>
-
-http://<%= $RDM_HOST_NAME %>/issues/show/<%= issue.id %>
\ No newline at end of file diff --git a/redmine/app/views/mailer/issue_add_de.rhtml b/redmine/app/views/mailer/issue_add_de.rhtml deleted file mode 100644 index 9efec9ad9..000000000 --- a/redmine/app/views/mailer/issue_add_de.rhtml +++ /dev/null @@ -1,3 +0,0 @@ -Issue #<%= @issue.id %> has been reported.
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file diff --git a/redmine/app/views/mailer/issue_add_en.rhtml b/redmine/app/views/mailer/issue_add_en.rhtml deleted file mode 100644 index 9efec9ad9..000000000 --- a/redmine/app/views/mailer/issue_add_en.rhtml +++ /dev/null @@ -1,3 +0,0 @@ -Issue #<%= @issue.id %> has been reported.
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file diff --git a/redmine/app/views/mailer/issue_add_es.rhtml b/redmine/app/views/mailer/issue_add_es.rhtml deleted file mode 100644 index 9efec9ad9..000000000 --- a/redmine/app/views/mailer/issue_add_es.rhtml +++ /dev/null @@ -1,3 +0,0 @@ -Issue #<%= @issue.id %> has been reported.
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file diff --git a/redmine/app/views/mailer/issue_add_fr.rhtml b/redmine/app/views/mailer/issue_add_fr.rhtml deleted file mode 100644 index 628ecae12..000000000 --- a/redmine/app/views/mailer/issue_add_fr.rhtml +++ /dev/null @@ -1,3 +0,0 @@ -Une nouvelle demande (#<%= @issue.id %>) a été soumise.
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file diff --git a/redmine/app/views/mailer/issue_edit_de.rhtml b/redmine/app/views/mailer/issue_edit_de.rhtml deleted file mode 100644 index d22d6c534..000000000 --- a/redmine/app/views/mailer/issue_edit_de.rhtml +++ /dev/null @@ -1,8 +0,0 @@ -Issue #<%= @issue.id %> has been updated.
-<%= @journal.user.name %>
-<% for detail in @journal.details %>
-<%= show_detail(detail, true) %>
-<% end %>
-<%= @journal.notes if @journal.notes? %>
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file diff --git a/redmine/app/views/mailer/issue_edit_en.rhtml b/redmine/app/views/mailer/issue_edit_en.rhtml deleted file mode 100644 index d22d6c534..000000000 --- a/redmine/app/views/mailer/issue_edit_en.rhtml +++ /dev/null @@ -1,8 +0,0 @@ -Issue #<%= @issue.id %> has been updated.
-<%= @journal.user.name %>
-<% for detail in @journal.details %>
-<%= show_detail(detail, true) %>
-<% end %>
-<%= @journal.notes if @journal.notes? %>
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file diff --git a/redmine/app/views/mailer/issue_edit_es.rhtml b/redmine/app/views/mailer/issue_edit_es.rhtml deleted file mode 100644 index d22d6c534..000000000 --- a/redmine/app/views/mailer/issue_edit_es.rhtml +++ /dev/null @@ -1,8 +0,0 @@ -Issue #<%= @issue.id %> has been updated.
-<%= @journal.user.name %>
-<% for detail in @journal.details %>
-<%= show_detail(detail, true) %>
-<% end %>
-<%= @journal.notes if @journal.notes? %>
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file diff --git a/redmine/app/views/mailer/issue_edit_fr.rhtml b/redmine/app/views/mailer/issue_edit_fr.rhtml deleted file mode 100644 index 9edacb703..000000000 --- a/redmine/app/views/mailer/issue_edit_fr.rhtml +++ /dev/null @@ -1,8 +0,0 @@ -La demande #<%= @issue.id %> a été mise à jour.
-<%= @journal.user.name %> - <%= format_date(@journal.created_on) %>
-<% for detail in @journal.details %>
-<%= show_detail(detail, true) %>
-<% end %>
-<%= journal.notes if journal.notes? %>
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file diff --git a/redmine/app/views/mailer/lost_password_de.rhtml b/redmine/app/views/mailer/lost_password_de.rhtml deleted file mode 100644 index 2593edbda..000000000 --- a/redmine/app/views/mailer/lost_password_de.rhtml +++ /dev/null @@ -1,3 +0,0 @@ -To change your password, use the following link:
-
-http://<%= $RDM_HOST_NAME %>/account/lost_password?token=<%= @token.value %>
\ No newline at end of file diff --git a/redmine/app/views/mailer/lost_password_en.rhtml b/redmine/app/views/mailer/lost_password_en.rhtml deleted file mode 100644 index 2593edbda..000000000 --- a/redmine/app/views/mailer/lost_password_en.rhtml +++ /dev/null @@ -1,3 +0,0 @@ -To change your password, use the following link:
-
-http://<%= $RDM_HOST_NAME %>/account/lost_password?token=<%= @token.value %>
\ No newline at end of file diff --git a/redmine/app/views/mailer/lost_password_es.rhtml b/redmine/app/views/mailer/lost_password_es.rhtml deleted file mode 100644 index 2593edbda..000000000 --- a/redmine/app/views/mailer/lost_password_es.rhtml +++ /dev/null @@ -1,3 +0,0 @@ -To change your password, use the following link:
-
-http://<%= $RDM_HOST_NAME %>/account/lost_password?token=<%= @token.value %>
\ No newline at end of file diff --git a/redmine/app/views/mailer/lost_password_fr.rhtml b/redmine/app/views/mailer/lost_password_fr.rhtml deleted file mode 100644 index 30996f118..000000000 --- a/redmine/app/views/mailer/lost_password_fr.rhtml +++ /dev/null @@ -1,3 +0,0 @@ -Pour changer votre mot de passe, utilisez le lien suivant:
-
-http://<%= $RDM_HOST_NAME %>/account/lost_password?token=<%= @token.value %>
\ No newline at end of file diff --git a/redmine/app/views/mailer/register_de.rhtml b/redmine/app/views/mailer/register_de.rhtml deleted file mode 100644 index 2c0341b24..000000000 --- a/redmine/app/views/mailer/register_de.rhtml +++ /dev/null @@ -1,3 +0,0 @@ -To activate your redMine account, use the following link:
-
-http://<%= $RDM_HOST_NAME %>/account/register?token=<%= @token.value %>
\ No newline at end of file diff --git a/redmine/app/views/mailer/register_en.rhtml b/redmine/app/views/mailer/register_en.rhtml deleted file mode 100644 index 2c0341b24..000000000 --- a/redmine/app/views/mailer/register_en.rhtml +++ /dev/null @@ -1,3 +0,0 @@ -To activate your redMine account, use the following link:
-
-http://<%= $RDM_HOST_NAME %>/account/register?token=<%= @token.value %>
\ No newline at end of file diff --git a/redmine/app/views/mailer/register_es.rhtml b/redmine/app/views/mailer/register_es.rhtml deleted file mode 100644 index 2c0341b24..000000000 --- a/redmine/app/views/mailer/register_es.rhtml +++ /dev/null @@ -1,3 +0,0 @@ -To activate your redMine account, use the following link:
-
-http://<%= $RDM_HOST_NAME %>/account/register?token=<%= @token.value %>
\ No newline at end of file diff --git a/redmine/app/views/mailer/register_fr.rhtml b/redmine/app/views/mailer/register_fr.rhtml deleted file mode 100644 index 3f5d0ccaf..000000000 --- a/redmine/app/views/mailer/register_fr.rhtml +++ /dev/null @@ -1,3 +0,0 @@ -Pour activer votre compte sur redMine, utilisez le lien suivant:
-
-http://<%= $RDM_HOST_NAME %>/account/register?token=<%= @token.value %>
\ No newline at end of file diff --git a/redmine/app/views/my/_block.rhtml b/redmine/app/views/my/_block.rhtml deleted file mode 100644 index 3f72bdaf1..000000000 --- a/redmine/app/views/my/_block.rhtml +++ /dev/null @@ -1,16 +0,0 @@ -<div id="block_<%= block_name %>" class="mypage-box">
-
- <div style="float:right;margin-right:16px;z-index:500;">
- <%= link_to_remote "", {
- :url => { :action => "remove_block", :block => block_name },
- :complete => "removeBlock('block_#{block_name}')",
- :loading => "Element.show('indicator')",
- :loaded => "Element.hide('indicator')" },
- :class => "close-icon"
- %>
- </div>
-
- <div class="handle">
- <%= render :partial => "my/blocks/#{block_name}", :locals => { :user => user } %>
- </div>
-</div>
\ No newline at end of file diff --git a/redmine/app/views/my/account.rhtml b/redmine/app/views/my/account.rhtml deleted file mode 100644 index 23b236e29..000000000 --- a/redmine/app/views/my/account.rhtml +++ /dev/null @@ -1,47 +0,0 @@ -<h2><%=l(:label_my_account)%></h2> -
-<p><%=l(:field_login)%>: <strong><%= @user.login %></strong><br />
-<%=l(:field_created_on)%>: <%= format_time(@user.created_on) %>,
-<%=l(:field_updated_on)%>: <%= format_time(@user.updated_on) %></p>
- -<%= error_messages_for 'user' %> -
-<div class="box">
-<h3><%=l(:label_information_plural)%></h3> - -<% labelled_tabular_form_for :user, @user, :url => { :action => "account" } do |f| %> - -<p><%= f.text_field :firstname, :required => true %></p> -<p><%= f.text_field :lastname, :required => true %></p> -<p><%= f.text_field :mail, :required => true, :size => 40 %></p> -<p><%= f.select :language, lang_options_for_select %></p> -<p><%= f.check_box :mail_notification %></p> - -<% fields_for :pref, @user.pref, :builder => TabularFormBuilder, :lang => current_language do |pref_fields| %> -<p><%= pref_fields.check_box :hide_mail %></p> -<% end %> - -<center><%= submit_tag l(:button_save) %></center> -<% end %>
-</div>
-
- -<% unless @user.auth_source_id %>
- <div class="box">
- <h3><%=l(:field_password)%></h3>
- - <%= start_form_tag({:action => 'change_password'}, :class => "tabular") %> -
- <p><label for="password"><%=l(:field_password)%> <span class="required">*</span></label> - <%= password_field_tag 'password', nil, :size => 25 %></p> -
- <p><label for="new_password"><%=l(:field_new_password)%> <span class="required">*</span></label> - <%= password_field_tag 'new_password', nil, :size => 25 %></p>
-
- <p><label for="new_password_confirmation"><%=l(:field_password_confirmation)%> <span class="required">*</span></label> - <%= password_field_tag 'new_password_confirmation', nil, :size => 25 %></p>
- - <center><%= submit_tag l(:button_save) %></center> - <%= end_form_tag %>
- </div> -<% end %>
diff --git a/redmine/app/views/my/blocks/_calendar.rhtml b/redmine/app/views/my/blocks/_calendar.rhtml deleted file mode 100644 index 2d7930f52..000000000 --- a/redmine/app/views/my/blocks/_calendar.rhtml +++ /dev/null @@ -1,45 +0,0 @@ -<h3><%= l(:label_calendar) %></h3>
-
-<%
-@date_from = Date.today - (Date.today.cwday-1)
-@date_to = Date.today + (7-Date.today.cwday)
-@issues = Issue.find :all,
- :conditions => ["issues.project_id in (#{@user.projects.collect{|m| m.id}.join(',')}) AND ((start_date>=? and start_date<=?) or (due_date>=? and due_date<=?))", @date_from, @date_to, @date_from, @date_to],
- :include => [:project, :tracker] unless @user.projects.empty?
-@issues ||= []
-%>
-
-<table class="calenderTable">
-<tr class="ListHead">
-<td></td>
-<% 1.upto(7) do |d| %>
- <td align="center" width="14%"><%= day_name(d) %></td>
-<% end %>
-</tr>
-<tr height="100">
-<% day = @date_from
-while day <= @date_to
- if day.cwday == 1 %>
- <td valign="middle"><%= day.cweek %></td>
- <% end %>
- <td valign="top" width="14%" class="<%= day.month==@month ? "even" : "odd" %>">
- <p align="right"><%= day==Date.today ? "<b>#{day.day}</b>" : day.day %></p>
- <% day_issues = []
- @issues.each { |i| day_issues << i if i.start_date == day or i.due_date == day }
- day_issues.each do |i| %>
- <%= if day == i.start_date and day == i.due_date
- image_tag('arrow_bw')
- elsif day == i.start_date
- image_tag('arrow_from')
- elsif day == i.due_date
- image_tag('arrow_to')
- end %>
- <small><%= link_to "#{i.tracker.name} ##{i.id}", :controller => 'issues', :action => 'show', :id => i %>: <%= i.subject.sub(/^(.{30}[^\s]*\s).*$/, '\1 (...)') %></small><br />
- <% end %>
- </td>
- <%= '</tr><tr height="100">' if day.cwday >= 7 and day!=@date_to %>
- <%
- day = day + 1
-end %>
-</tr>
-</table>
\ No newline at end of file diff --git a/redmine/app/views/my/blocks/_documents.rhtml b/redmine/app/views/my/blocks/_documents.rhtml deleted file mode 100644 index 5fa8c7980..000000000 --- a/redmine/app/views/my/blocks/_documents.rhtml +++ /dev/null @@ -1,15 +0,0 @@ -<h3><%=l(:label_document_plural)%></h3>
-
-<ul>
-<% for document in Document.find :all,
- :limit => 10,
- :conditions => "documents.project_id in (#{@user.projects.collect{|m| m.id}.join(',')})",
- :include => [:project] %>
- <li>
- <b><%= link_to document.title, :controller => 'documents', :action => 'show', :id => document %></b>
- <br />
- <%= truncate document.description, 150 %><br />
- <em><%= format_time(document.created_on) %></em><br />
- </li>
-<% end unless @user.projects.empty? %>
-</ul>
\ No newline at end of file diff --git a/redmine/app/views/my/blocks/_issues_assigned_to_me.rhtml b/redmine/app/views/my/blocks/_issues_assigned_to_me.rhtml deleted file mode 100644 index 2a4e2a05d..000000000 --- a/redmine/app/views/my/blocks/_issues_assigned_to_me.rhtml +++ /dev/null @@ -1,10 +0,0 @@ -<h3><%=l(:label_assigned_to_me_issues)%></h3>
-<% assigned_issues = Issue.find(:all,
- :conditions => ["assigned_to_id=?", user.id],
- :limit => 10,
- :include => [ :status, :project, :tracker ],
- :order => 'issues.updated_on DESC') %>
-<%= render :partial => 'issues/list_simple', :locals => { :issues => assigned_issues } %>
-<% if assigned_issues.length > 0 %>
-<p><%=lwr(:label_last_updates, assigned_issues.length)%></p>
-<% end %>
diff --git a/redmine/app/views/my/blocks/_issues_reported_by_me.rhtml b/redmine/app/views/my/blocks/_issues_reported_by_me.rhtml deleted file mode 100644 index 9b40b3606..000000000 --- a/redmine/app/views/my/blocks/_issues_reported_by_me.rhtml +++ /dev/null @@ -1,10 +0,0 @@ -<h3><%=l(:label_reported_issues)%></h3>
-<% reported_issues = Issue.find(:all,
- :conditions => ["author_id=?", user.id],
- :limit => 10,
- :include => [ :status, :project, :tracker ],
- :order => 'issues.updated_on DESC') %>
-<%= render :partial => 'issues/list_simple', :locals => { :issues => reported_issues } %>
-<% if reported_issues.length > 0 %>
-<p><%=lwr(:label_last_updates, reported_issues.length)%></p>
-<% end %>
\ No newline at end of file diff --git a/redmine/app/views/my/blocks/_latest_news.rhtml b/redmine/app/views/my/blocks/_latest_news.rhtml deleted file mode 100644 index 85430ef54..000000000 --- a/redmine/app/views/my/blocks/_latest_news.rhtml +++ /dev/null @@ -1,13 +0,0 @@ -<h3><%=l(:label_news_latest)%></h3>
-
-<ul>
-<% for news in News.find :all,
- :limit => 10,
- :conditions => "news.project_id in (#{@user.projects.collect{|m| m.id}.join(',')})",
- :include => [:project, :author] %>
- <li><%= link_to news.title, :controller => 'news', :action => 'show', :id => news %><br />
- <% unless news.summary.empty? %><%= news.summary %><br /><% end %>
- <em><%= news.author.name %>, <%= format_time(news.created_on) %></em><br />
- </li>
-<% end unless @user.projects.empty? %>
-</ul>
\ No newline at end of file diff --git a/redmine/app/views/my/page.rhtml b/redmine/app/views/my/page.rhtml deleted file mode 100644 index 121d48ca9..000000000 --- a/redmine/app/views/my/page.rhtml +++ /dev/null @@ -1,30 +0,0 @@ -<h2><%=l(:label_my_page)%></h2>
-
-<div class="topright">
- <small><%= link_to l(:label_personalize_page), :action => 'page_layout' %></small>
-</div>
-
-<div id="list-top">
- <% @blocks['top'].each do |b| %>
- <div class="mypage-box">
- <%= render :partial => "my/blocks/#{b}", :locals => { :user => @user } %>
- </div>
- <% end if @blocks['top'] %>
-</div>
-
-<div id="list-left" class="splitcontentleft">
- <% @blocks['left'].each do |b| %>
- <div class="mypage-box">
- <%= render :partial => "my/blocks/#{b}", :locals => { :user => @user } %>
- </div>
- <% end if @blocks['left'] %>
-</div>
-
-<div id="list-right" class="splitcontentright">
- <% @blocks['right'].each do |b| %>
- <div class="mypage-box">
- <%= render :partial => "my/blocks/#{b}", :locals => { :user => @user } %>
- </div>
- <% end if @blocks['right'] %>
-</div>
-
diff --git a/redmine/app/views/my/page_layout.rhtml b/redmine/app/views/my/page_layout.rhtml deleted file mode 100644 index 59a38567d..000000000 --- a/redmine/app/views/my/page_layout.rhtml +++ /dev/null @@ -1,121 +0,0 @@ -<script language="JavaScript">
-
-function recreateSortables() {
- Sortable.destroy('list-top');
- Sortable.destroy('list-left');
- Sortable.destroy('list-right');
-
- Sortable.create("list-top", {constraint:false, containment:['list-top','list-left','list-right'], dropOnEmpty:true, handle:'handle', onUpdate:function(){new Ajax.Request('/my/order_blocks?group=top', {asynchronous:true, evalScripts:true, onComplete:function(request){new Effect.Highlight("list-top",{});}, onLoaded:function(request){Element.hide('indicator')}, onLoading:function(request){Element.show('indicator')}, parameters:Sortable.serialize("list-top")})}, only:'mypage-box', tag:'div'})
- Sortable.create("list-left", {constraint:false, containment:['list-top','list-left','list-right'], dropOnEmpty:true, handle:'handle', onUpdate:function(){new Ajax.Request('/my/order_blocks?group=left', {asynchronous:true, evalScripts:true, onComplete:function(request){new Effect.Highlight("list-left",{});}, onLoaded:function(request){Element.hide('indicator')}, onLoading:function(request){Element.show('indicator')}, parameters:Sortable.serialize("list-left")})}, only:'mypage-box', tag:'div'})
- Sortable.create("list-right", {constraint:false, containment:['list-top','list-left','list-right'], dropOnEmpty:true, handle:'handle', onUpdate:function(){new Ajax.Request('/my/order_blocks?group=right', {asynchronous:true, evalScripts:true, onComplete:function(request){new Effect.Highlight("list-right",{});}, onLoaded:function(request){Element.hide('indicator')}, onLoading:function(request){Element.show('indicator')}, parameters:Sortable.serialize("list-right")})}, only:'mypage-box', tag:'div'})
-}
-
-function updateSelect() {
- s = $('block-select')
- for (var i = 0; i < s.options.length; i++) {
- if ($('block_' + s.options[i].value)) {
- s.options[i].disabled = true;
- } else {
- s.options[i].disabled = false;
- }
- }
- s.options[0].selected = true;
-}
-
-function afterAddBlock() {
- recreateSortables();
- updateSelect();
-}
-
-function removeBlock(block) {
- $(block).parentNode.removeChild($(block));
- updateSelect();
-}
-
-</script>
-
-<div style="float:right;">
-<%= start_form_tag({:action => "add_block"}, :id => "block-form") %>
-
-<%= select_tag 'block', "<option></option>" + options_for_select(@block_options), :id => "block-select", :class => "select-small" %>
-<small>
-<%= link_to_remote l(:button_add),
- :url => { :action => "add_block" },
- :with => "Form.serialize('block-form')",
- :update => "list-top",
- :position => :top,
- :complete => "afterAddBlock();",
- :loading => "Element.show('indicator')",
- :loaded => "Element.hide('indicator')"
- %>
-</small>
-<%= end_form_tag %>
-<small>|
-<%= link_to l(:button_save), :action => 'page_layout_save' %> |
-<%= link_to l(:button_cancel), :action => 'page' %>
-</small>
-</div>
-
-<div style="float:right;margin-right:20px;">
-<span id="indicator" style="display:none"><%= image_tag "loading.gif" %></span>
-</div>
-
-<h2><%=l(:label_my_page)%></h2>
-
-<div id="list-top" class="block-receiver">
- <% @blocks['top'].each do |b| %>
- <%= render :partial => 'block', :locals => {:user => @user, :block_name => b} %>
- <% end if @blocks['top'] %>
-</div>
-
-<div id="list-left" class="splitcontentleft block-receiver">
- <% @blocks['left'].each do |b| %>
- <%= render :partial => 'block', :locals => {:user => @user, :block_name => b} %>
- <% end if @blocks['left'] %>
-</div>
-
-<div id="list-right" class="splitcontentright block-receiver">
- <% @blocks['right'].each do |b| %>
- <%= render :partial => 'block', :locals => {:user => @user, :block_name => b} %>
- <% end if @blocks['right'] %>
-</div>
-
-<%= sortable_element 'list-top',
- :tag => 'div',
- :only => 'mypage-box',
- :handle => "handle",
- :dropOnEmpty => true,
- :containment => ['list-top', 'list-left', 'list-right'],
- :constraint => false,
- :complete => visual_effect(:highlight, 'list-top'),
- :url => { :action => "order_blocks", :group => "top" },
- :loading => "Element.show('indicator')",
- :loaded => "Element.hide('indicator')"
- %>
-
-
-<%= sortable_element 'list-left',
- :tag => 'div',
- :only => 'mypage-box',
- :handle => "handle",
- :dropOnEmpty => true,
- :containment => ['list-top', 'list-left', 'list-right'],
- :constraint => false,
- :complete => visual_effect(:highlight, 'list-left'),
- :url => { :action => "order_blocks", :group => "left" },
- :loading => "Element.show('indicator')",
- :loaded => "Element.hide('indicator')" %>
-
-<%= sortable_element 'list-right',
- :tag => 'div',
- :only => 'mypage-box',
- :handle => "handle",
- :dropOnEmpty => true,
- :containment => ['list-top', 'list-left', 'list-right'],
- :constraint => false,
- :complete => visual_effect(:highlight, 'list-right'),
- :url => { :action => "order_blocks", :group => "right" },
- :loading => "Element.show('indicator')",
- :loaded => "Element.hide('indicator')" %>
-
-<%= javascript_tag "updateSelect()" %>
\ No newline at end of file diff --git a/redmine/app/views/news/_form.rhtml b/redmine/app/views/news/_form.rhtml deleted file mode 100644 index 2dcdc9f80..000000000 --- a/redmine/app/views/news/_form.rhtml +++ /dev/null @@ -1,20 +0,0 @@ -<%= error_messages_for 'news' %> -<div class="box"> -<p><%= f.text_field :title, :required => true, :size => 60 %></p> -<p><%= f.text_area :summary, :cols => 60, :rows => 2 %></p> -<p><%= f.text_area :description, :required => true, :cols => 60, :rows => 15 %></p> -</div> - -<% unless $RDM_TEXTILE_DISABLED %> -<%= javascript_include_tag 'jstoolbar' %> -<script type="text/javascript"> -//<![CDATA[ -if (document.getElementById) { - if (document.getElementById('news_description')) { - var commentTb = new jsToolBar(document.getElementById('news_description')); - commentTb.draw(); - } -} -//]]> -</script> -<% end %>
\ No newline at end of file diff --git a/redmine/app/views/news/edit.rhtml b/redmine/app/views/news/edit.rhtml deleted file mode 100644 index 5e015c4c7..000000000 --- a/redmine/app/views/news/edit.rhtml +++ /dev/null @@ -1,6 +0,0 @@ -<h2><%=l(:label_news)%></h2> - -<% labelled_tabular_form_for :news, @news, :url => { :action => "edit" } do |f| %> -<%= render :partial => 'form', :locals => { :f => f } %> -<%= submit_tag l(:button_save) %> -<% end %>
\ No newline at end of file diff --git a/redmine/app/views/news/show.rhtml b/redmine/app/views/news/show.rhtml deleted file mode 100644 index 91df09f0f..000000000 --- a/redmine/app/views/news/show.rhtml +++ /dev/null @@ -1,16 +0,0 @@ -<h2><%= @news.title %></h2>
-
-<p><em><%= @news.summary %><br />
-<%= @news.author.display_name %>, <%= format_time(@news.created_on) %></em></p>
-<br />
-<%= textilizable auto_link @news.description %> -
-<div style="float:right;">
-<% if authorize_for('news', 'destroy') %>
- <%= start_form_tag ({:controller => 'news', :action => 'destroy', :id => @news}) %>
- <%= submit_tag l(:button_delete) %>
- <%= end_form_tag %>
-<% end %>
-</div>
-
-<%= link_to_if_authorized l(:button_edit), :controller => 'news', :action => 'edit', :id => @news %>
diff --git a/redmine/app/views/projects/_form.rhtml b/redmine/app/views/projects/_form.rhtml deleted file mode 100644 index ab0b35fab..000000000 --- a/redmine/app/views/projects/_form.rhtml +++ /dev/null @@ -1,26 +0,0 @@ -<%= error_messages_for 'project' %> -<div class="box"> -<!--[form:project]--> -<p><%= f.text_field :name, :required => true %></p> - -<% if admin_loggedin? and !@root_projects.empty? %> - <p><%= f.select :parent_id, (@root_projects.collect {|p| [p.name, p.id]}), { :include_blank => true } %></p> -<% end %> - -<p><%= f.text_area :description, :required => true, :cols => 60, :rows => 3 %></p> -<p><%= f.text_field :homepage, :size => 40 %></p> -<p><%= f.check_box :is_public %></p> -
-<% for @custom_value in @custom_values %> - <p><%= custom_field_tag_with_label @custom_value %></p> -<% end %>
- -<% unless @custom_fields.empty? %> -<p><label><%=l(:label_custom_field_plural)%></label> -<% for custom_field in @custom_fields %> - <%= check_box_tag "custom_field_ids[]", custom_field.id, ((@project.custom_fields.include? custom_field) or custom_field.is_for_all?), (custom_field.is_for_all? ? {:disabled => "disabled"} : {}) %>
- <%= custom_field.name %>
-<% end %></p> -<% end %>
-<!--[eoform:project]-->
-</div> diff --git a/redmine/app/views/projects/activity.rhtml b/redmine/app/views/projects/activity.rhtml deleted file mode 100644 index d6e5a1a43..000000000 --- a/redmine/app/views/projects/activity.rhtml +++ /dev/null @@ -1,41 +0,0 @@ -<h2><%=l(:label_activity)%></h2>
-
-<div>
-<div class="rightbox">
- <%= start_form_tag %>
-<p><%= select_month(@month, :prefix => "month", :discard_type => true) %>
-<%= select_year(@year, :prefix => "year", :discard_type => true) %></p>
- <%= check_box_tag 'show_issues', 1, @show_issues %><%= hidden_field_tag 'show_issues', 0 %> <%=l(:label_issue_plural)%><br />
- <%= check_box_tag 'show_news', 1, @show_news %><%= hidden_field_tag 'show_news', 0 %> <%=l(:label_news_plural)%><br />
- <%= check_box_tag 'show_files', 1, @show_files %><%= hidden_field_tag 'show_files', 0 %> <%=l(:label_attachment_plural)%><br />
- <%= check_box_tag 'show_documents', 1, @show_documents %><%= hidden_field_tag 'show_documents', 0 %> <%=l(:label_document_plural)%><br />
- <p><center><%= submit_tag l(:button_apply), :class => 'button-small' %></center></p>
- <%= end_form_tag %>
- </div>
-<% @events_by_day.keys.sort {|x,y| y <=> x }.each do |day| %>
- <h3><%= day_name(day.cwday) %> <%= format_date(day) %></h3>
- <ul>
- <% @events_by_day[day].sort {|x,y| y.created_on <=> x.created_on }.each do |e| %>
- <li><p>
- <% if e.is_a? Issue %>
- <%= e.created_on.strftime("%H:%M") %> <%= link_to "#{e.tracker.name} ##{e.id}", :controller => 'issues', :action => 'show', :id => e %> (<%= e.status.name %>): <%= e.subject %><br />
- <i><%= e.author.name %></i>
- <% elsif e.is_a? News %>
- <%= e.created_on.strftime("%H:%M") %> <%=l(:label_news)%>: <%= link_to e.title, :controller => 'news', :action => 'show', :id => e %><br />
- <% unless e.summary.empty? %><%= e.summary %><br /><% end %>
- <i><%= e.author.name %></i>
- <% elsif (e.is_a? Attachment) and (e.container.is_a? Version) %>
- <%= e.created_on.strftime("%H:%M") %> <%=l(:label_attachment)%> (Version <%= e.container.name %>): <%= link_to e.filename, :controller => 'projects', :action => 'list_files', :id => @project %><br />
- <i><%= e.author.name %></i>
- <% elsif (e.is_a? Attachment) and (e.container.is_a? Document) %>
- <%= e.created_on.strftime("%H:%M") %> <%=l(:label_document)%>: <%= link_to e.container.title, :controller => 'documents', :action => 'show', :id => e %><br />
- <i><%= e.author.name %></i>
- <% end %>
- </p></li>
-
- <% end %>
- </ul>
-<% end %>
-<% if @events_by_day.empty? %><p><i><%= l(:label_no_data) %></i></p><% end %>
-<br />
-</div>
\ No newline at end of file diff --git a/redmine/app/views/projects/add.rhtml b/redmine/app/views/projects/add.rhtml deleted file mode 100644 index bafbf9145..000000000 --- a/redmine/app/views/projects/add.rhtml +++ /dev/null @@ -1,6 +0,0 @@ -<h2><%=l(:label_project_new)%></h2> - -<% labelled_tabular_form_for :project, @project, :url => { :action => "add" } do |f| %> -<%= render :partial => 'form', :locals => { :f => f } %> -<%= submit_tag l(:button_save) %> -<% end %>
\ No newline at end of file diff --git a/redmine/app/views/projects/add_document.rhtml b/redmine/app/views/projects/add_document.rhtml deleted file mode 100644 index 88572f409..000000000 --- a/redmine/app/views/projects/add_document.rhtml +++ /dev/null @@ -1,14 +0,0 @@ -<h2><%=l(:label_document_new)%></h2> -
-<%= start_form_tag( { :action => 'add_document', :id => @project }, :class => "tabular", :multipart => true) %>
-<%= render :partial => 'documents/form' %> - -<div class="box">
-<p><label for="attachment_file"><%=l(:label_attachment)%></label> -<%= file_field 'attachment', 'file' %></p> -</div> -
-<%= submit_tag l(:button_create) %> -<%= end_form_tag %> -
- diff --git a/redmine/app/views/projects/add_file.rhtml b/redmine/app/views/projects/add_file.rhtml deleted file mode 100644 index fee67c53f..000000000 --- a/redmine/app/views/projects/add_file.rhtml +++ /dev/null @@ -1,14 +0,0 @@ -<h2><%=l(:label_attachment_new)%></h2>
-
-<%= error_messages_for 'attachment' %>
-<%= start_form_tag ({ :action => 'add_file', :project => @project }, :multipart => true) %>
-
-<p><label for="version_id"><%=l(:field_version)%></label><br />
-<select name="version_id">
-<%= options_from_collection_for_select @versions, "id", "name" %> -</select></p>
-
-<p><b><%=l(:label_attachment)%><b><br /><%= file_field 'attachment', 'file' %></p>
-<br/>
-<%= submit_tag l(:button_add) %>
-<%= end_form_tag %>
\ No newline at end of file diff --git a/redmine/app/views/projects/add_issue.rhtml b/redmine/app/views/projects/add_issue.rhtml deleted file mode 100644 index b60f91a2e..000000000 --- a/redmine/app/views/projects/add_issue.rhtml +++ /dev/null @@ -1,50 +0,0 @@ -<h2><%=l(:label_issue_new)%>: <%= @tracker.name %></h2> -
-<% labelled_tabular_form_for :issue, @issue, :url => {:action => 'add_issue'}, :html => {:multipart => true} do |f| %> -<%= error_messages_for 'issue' %> -<div class="box"> -<!--[form:issue]--> -<%= hidden_field_tag 'tracker_id', @tracker.id %> - -<div class="splitcontentleft"> -<p><%= f.select :priority_id, (@priorities.collect {|p| [p.name, p.id]}), :required => true %></p>
-<p><%= f.select :assigned_to_id, (@issue.project.members.collect {|m| [m.name, m.user_id]}), :include_blank => true %></p>
-<p><%= f.select :category_id, (@project.issue_categories.collect {|c| [c.name, c.id]}), :include_blank => true %></p>
-</div> -<div class="splitcontentright"> -<p><%= f.text_field :start_date, :size => 10 %><%= calendar_for('issue_start_date') %></p> -<p><%= f.text_field :due_date, :size => 10 %><%= calendar_for('issue_due_date') %></p> -<p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></p> -</div> - -<div class="clear"> -<p><%= f.text_field :subject, :size => 80, :required => true %></p> -<p><%= f.text_area :description, :cols => 60, :rows => 10, :required => true %></p> -
-<% for @custom_value in @custom_values %> - <p><%= custom_field_tag_with_label @custom_value %></p> -<% end %>
-
-<p id="attachments_p"><label for="attachment_file"><%=l(:label_attachment)%> -<%= link_to_function image_tag('add'), "addFileField()" %></label> -<%= file_field_tag 'attachments[]', :size => 30 %></p> - -</div> -<!--[eoform:issue]--> -</div> -<%= submit_tag l(:button_create) %>
-<% end %> - -<% unless $RDM_TEXTILE_DISABLED %> -<%= javascript_include_tag 'jstoolbar' %> -<script type="text/javascript"> -//<![CDATA[ -if (document.getElementById) { - if (document.getElementById('issue_description')) { - var commentTb = new jsToolBar(document.getElementById('issue_description')); - commentTb.draw(); - } -} -//]]> -</script> -<% end %>
\ No newline at end of file diff --git a/redmine/app/views/projects/add_news.rhtml b/redmine/app/views/projects/add_news.rhtml deleted file mode 100644 index a6ecd3da7..000000000 --- a/redmine/app/views/projects/add_news.rhtml +++ /dev/null @@ -1,6 +0,0 @@ -<h2><%=l(:label_news_new)%></h2> - -<% labelled_tabular_form_for :news, @news, :url => { :action => "add_news" } do |f| %> -<%= render :partial => 'news/form', :locals => { :f => f } %> -<%= submit_tag l(:button_create) %> -<% end %>
\ No newline at end of file diff --git a/redmine/app/views/projects/add_version.rhtml b/redmine/app/views/projects/add_version.rhtml deleted file mode 100644 index c038b7de9..000000000 --- a/redmine/app/views/projects/add_version.rhtml +++ /dev/null @@ -1,6 +0,0 @@ -<h2><%=l(:label_version_new)%></h2> - -<% labelled_tabular_form_for :version, @version, :url => { :action => 'add_version' } do |f| %> -<%= render :partial => 'versions/form', :locals => { :f => f } %> -<%= submit_tag l(:button_create) %> -<% end %>
\ No newline at end of file diff --git a/redmine/app/views/projects/calendar.rhtml b/redmine/app/views/projects/calendar.rhtml deleted file mode 100644 index fc62921d4..000000000 --- a/redmine/app/views/projects/calendar.rhtml +++ /dev/null @@ -1,75 +0,0 @@ -<h2><%= l(:label_calendar) %></h2>
-
-<table width="100%">
-<tr>
-<td align="left">
-<%= start_form_tag :action => 'calendar', :id => @project %>
-<%= select_month(@month, :prefix => "month", :discard_type => true) %>
-<%= select_year(@year, :prefix => "year", :discard_type => true) %>
-<%= submit_tag l(:button_submit), :class => "button-small" %>
-<%= end_form_tag %>
-</td>
-<td align="right">
-<%= image_tag 'gantt' %>
-<%= link_to l(:label_gantt_chart), :action => 'gantt', :id => @project %>
-</td>
-</tr>
-</table>
-<br />
-
-<table class="calenderTable">
-<tr class="ListHead">
-<td></td>
-<% 1.upto(7) do |d| %>
- <td align="center" width="14%"><%= day_name(d) %></td>
-<% end %>
-</tr>
-<tr height="100">
-<% day = @date_from
-while day <= @date_to
- if day.cwday == 1 %>
- <td valign="middle"><%= day.cweek %></td>
- <% end %>
- <td valign="top" width="14%" class="<%= day.month==@month ? "even" : "odd" %>">
- <p align="right"><%= day==Date.today ? "<b>#{day.day}</b>" : day.day %></p>
- <% day_issues = []
- @issues.each { |i| day_issues << i if i.start_date == day or i.due_date == day }
- day_issues.each do |i| %>
- <%= if day == i.start_date and day == i.due_date
- image_tag('arrow_bw')
- elsif day == i.start_date
- image_tag('arrow_from')
- elsif day == i.due_date
- image_tag('arrow_to')
- end %>
- <small><%= link_to "#{i.tracker.name} ##{i.id}", :controller => 'issues', :action => 'show', :id => i %>: <%= i.subject.sub(/^(.{30}[^\s]*\s).*$/, '\1 (...)') %></small><br />
- <% end %>
- </td>
- <%= '</tr><tr height="100">' if day.cwday >= 7 and day!=@date_to %>
- <%
- day = day + 1
-end %>
-</tr>
-</table>
-
-<table width="100%">
-<tr>
-<td align="left">
-<%= link_to_remote ('« ' + l(:label_previous)),
- {:update => "content", :url => { :year => (@month==1 ? @year-1 : @year), :month =>(@month==1 ? 12 : @month-1) }},
- {:href => url_for(:action => 'calendar', :year => (@month==1 ? @year-1 : @year), :month =>(@month==1 ? 12 : @month-1))}
- %>
-</td>
-<td align="right">
-<%= link_to_remote (l(:label_next) + ' »'),
- {:update => "content", :url => { :year => (@month==12 ? @year+1 : @year), :month =>(@month==12 ? 1 : @month+1) }},
- {:href => url_for(:action => 'calendar', :year => (@month==12 ? @year+1 : @year), :month =>(@month==12 ? 1 : @month+1))}
- %>
-
-</td>
-</tr>
-</table>
-<br />
-<%= image_tag 'arrow_from' %> <%= l(:text_tip_task_begin_day) %><br />
-<%= image_tag 'arrow_to' %> <%= l(:text_tip_task_end_day) %><br />
-<%= image_tag 'arrow_bw' %> <%= l(:text_tip_task_begin_end_day) %><br />
\ No newline at end of file diff --git a/redmine/app/views/projects/changelog.rhtml b/redmine/app/views/projects/changelog.rhtml deleted file mode 100644 index 081456413..000000000 --- a/redmine/app/views/projects/changelog.rhtml +++ /dev/null @@ -1,28 +0,0 @@ -<h2><%=l(:label_change_log)%></h2>
-
-<div>
-
-<div class="rightbox" style="width:140px;">
-<%= start_form_tag %>
-<strong><%=l(:label_tracker_plural)%></strong><br />
-<% @trackers.each do |tracker| %>
- <%= check_box_tag "tracker_ids[]", tracker.id, (@selected_tracker_ids.include? tracker.id.to_s) %>
- <%= tracker.name %><br />
-<% end %>
-<p><center><%= submit_tag l(:button_apply), :class => 'button-small' %></center></p>
-<%= end_form_tag %>
-</div>
-
-<% ver_id = nil
- @fixed_issues.each do |issue| %>
- <% unless ver_id == issue.fixed_version_id %>
- <% if ver_id %></ul><% end %>
- <h3><%= l(:label_version) %>: <%= issue.fixed_version.name %></h3>
- <p><%= format_date(issue.fixed_version.effective_date) %><br />
- <%=h issue.fixed_version.description %></p>
- <ul>
- <% ver_id = issue.fixed_version_id
- end %>
- <li><%= link_to issue.long_id, :controller => 'issues', :action => 'show', :id => issue %> [<%= issue.tracker.name %>]: <%= issue.subject %></li>
-<% end %>
-</div>
\ No newline at end of file diff --git a/redmine/app/views/projects/destroy.rhtml b/redmine/app/views/projects/destroy.rhtml deleted file mode 100644 index d11705be4..000000000 --- a/redmine/app/views/projects/destroy.rhtml +++ /dev/null @@ -1,14 +0,0 @@ -<h2><%=l(:label_confirmation)%></h2>
-<div class="box">
-<center>
-<p><strong><%= @project.name %></strong><br />
-<%=l(:text_project_destroy_confirmation)%></p>
-
-<p>
- <%= start_form_tag({:controller => 'projects', :action => 'destroy', :id => @project}) %>
- <%= hidden_field_tag "confirm", 1 %>
- <%= submit_tag l(:button_delete) %>
- <%= end_form_tag %>
-</p>
-</center>
-</div>
\ No newline at end of file diff --git a/redmine/app/views/projects/export_issues_pdf.rfpdf b/redmine/app/views/projects/export_issues_pdf.rfpdf deleted file mode 100644 index 2e0acf54b..000000000 --- a/redmine/app/views/projects/export_issues_pdf.rfpdf +++ /dev/null @@ -1,11 +0,0 @@ -<% pdf=IfpdfHelper::IFPDF.new
- pdf.AliasNbPages
- pdf.footer_date = format_date(Date.today)
- pdf.AddPage
- @issues.each {|i|
- render :partial => 'issues/pdf', :locals => { :pdf => pdf, :issue => i }
- pdf.AddPage
- }
-%>
-
-<%= pdf.Output %>
\ No newline at end of file diff --git a/redmine/app/views/projects/gantt.rfpdf b/redmine/app/views/projects/gantt.rfpdf deleted file mode 100644 index 545abb483..000000000 --- a/redmine/app/views/projects/gantt.rfpdf +++ /dev/null @@ -1,168 +0,0 @@ -<%
-pdf=IfpdfHelper::IFPDF.new
-pdf.AliasNbPages
-pdf.footer_date = format_date(Date.today)
-pdf.AddPage("L")
-pdf.SetFont('Arial','B',12)
-pdf.SetX(15)
-pdf.Cell(70, 20, @project.name)
-pdf.Ln
-pdf.SetFont('Arial','B',9)
-
-subject_width = 70
-header_heigth = 5
-
-headers_heigth = header_heigth
-show_weeks = false
-show_days = false
-
-if @months < 7
- show_weeks = true
- headers_heigth = 2*header_heigth
- if @months < 3
- show_days = true
- headers_heigth = 3*header_heigth
- end
-end
-
-g_width = 210
-zoom = (g_width) / (@date_to - @date_from + 1)
-g_height = 120
-t_height = g_height + headers_heigth
-
-y_start = pdf.GetY
-
-
-#
-# Months headers
-#
-month_f = @date_from
-left = subject_width
-height = header_heigth
-@months.times do
- width = ((month_f >> 1) - month_f) * zoom
- pdf.SetY(y_start)
- pdf.SetX(left)
- pdf.Cell(width, height, "#{month_f.year}-#{month_f.month}", "LTR", 0, "C")
- left = left + width
- month_f = month_f >> 1
-end
-
-#
-# Weeks headers
-#
-if show_weeks
- left = subject_width
- height = header_heigth
- if @date_from.cwday == 1
- # @date_from is monday
- week_f = @date_from
- else
- # find next monday after @date_from
- week_f = @date_from + (7 - @date_from.cwday + 1)
- width = (7 - @date_from.cwday + 1) * zoom-1
- pdf.SetY(y_start + header_heigth)
- pdf.SetX(left)
- pdf.Cell(width + 1, height, "", "LTR")
- left = left + width+1
- end
- while week_f < @date_to
- width = (week_f + 6 <= @date_to) ? 7 * zoom : (@date_to - week_f + 1) * zoom
- pdf.SetY(y_start + header_heigth)
- pdf.SetX(left)
- pdf.Cell(width, height, week_f.cweek.to_s, "LTR", 0, "C")
- left = left + width
- week_f = week_f+7
- end
-end
-
-#
-# Days headers
-#
-if show_days
- left = subject_width
- height = header_heigth
- wday = @date_from.cwday
- pdf.SetFont('Arial','B',7)
- (@date_to - @date_from + 1).to_i.times do
- width = zoom
- pdf.SetY(y_start + 2 * header_heigth)
- pdf.SetX(left)
- pdf.Cell(width, height, day_name(wday)[0,1], "LTR", 0, "C")
- left = left + width
- wday = wday + 1
- wday = 1 if wday > 7
- end
-end
-
-pdf.SetY(y_start)
-pdf.SetX(15)
-pdf.Cell(subject_width+g_width-15, headers_heigth, "", 1)
-
-
-#
-# Tasks
-#
-top = headers_heigth + y_start
-pdf.SetFont('Arial','B',7)
-@issues.each do |i|
- pdf.SetY(top)
- pdf.SetX(15)
- pdf.Cell(subject_width-15, 5, "#{i.tracker.name} #{i.id}: #{i.subject}".sub(/^(.{30}[^\s]*\s).*$/, '\1 (...)'), "LR")
-
- pdf.SetY(top)
- pdf.SetX(subject_width)
- pdf.Cell(g_width, 5, "", "LR")
-
- i_start_date = (i.start_date >= @date_from ? i.start_date : @date_from )
- i_end_date = (i.due_date <= @date_to ? i.due_date : @date_to )
-
- i_done_date = i.start_date + ((i.due_date - i.start_date+1)*i.done_ratio/100).floor
- i_done_date = (i_done_date <= @date_from ? @date_from : i_done_date )
- i_done_date = (i_done_date >= @date_to ? @date_to : i_done_date )
-
- i_late_date = [i_end_date, Date.today].min if i_start_date < Date.today
-
- i_left = ((i_start_date - @date_from)*zoom)
- i_width = ((i_end_date - i_start_date + 1)*zoom)
- d_width = ((i_done_date - i_start_date)*zoom)
- l_width = ((i_late_date - i_start_date+1)*zoom) if i_late_date
- l_width ||= 0
-
- pdf.SetY(top+1.5)
- pdf.SetX(subject_width + i_left)
- pdf.SetFillColor(200,200,200)
- pdf.Cell(i_width, 2, "", 0, 0, "", 1)
-
- if l_width > 0
- pdf.SetY(top+1.5)
- pdf.SetX(subject_width + i_left)
- pdf.SetFillColor(255,100,100)
- pdf.Cell(l_width, 2, "", 0, 0, "", 1)
- end
- if d_width > 0
- pdf.SetY(top+1.5)
- pdf.SetX(subject_width + i_left)
- pdf.SetFillColor(100,100,255)
- pdf.Cell(d_width, 2, "", 0, 0, "", 1)
- end
-
- pdf.SetY(top+1.5)
- pdf.SetX(subject_width + i_left + i_width)
- pdf.Cell(30, 2, "#{i.status.name} #{i.done_ratio}%")
-
- top = top + 5
- pdf.SetDrawColor(200, 200, 200)
- pdf.Line(15, top, subject_width+g_width, top)
- if pdf.GetY() > 180
- pdf.AddPage("L")
- top = 20
- pdf.Line(15, top, subject_width+g_width, top)
- end
- pdf.SetDrawColor(0, 0, 0)
-end
-
-pdf.Line(15, top, subject_width+g_width, top)
-
-%>
-<%= pdf.Output %>
\ No newline at end of file diff --git a/redmine/app/views/projects/gantt.rhtml b/redmine/app/views/projects/gantt.rhtml deleted file mode 100644 index 78d3ac20a..000000000 --- a/redmine/app/views/projects/gantt.rhtml +++ /dev/null @@ -1,241 +0,0 @@ -<h2><%= l(:label_gantt_chart) %></h2>
-<div class="topright">
-<small>
-<%= l(:label_export_to) %> <%= link_to 'PDF', :zoom => @zoom, :year => @year_from, :month => @month_from, :months => @months, :output => 'pdf' %>
-</small>
-</div>
-
-<table width="100%">
-<tr>
-<td align="left">
-<%= start_form_tag %>
-<input type="text" name="months" size="2" value="<%= @months %>">
-<%= l(:label_months_from) %>
-<%= select_month(@month_from, :prefix => "month", :discard_type => true) %>
-<%= select_year(@year_from, :prefix => "year", :discard_type => true) %>
-<%= hidden_field_tag 'zoom', @zoom %>
-<%= submit_tag l(:button_submit), :class => "button-small" %>
-<%= end_form_tag %>
-</td>
-<td align="right">
-<%= if @zoom < 4
- link_to image_tag('zoom_in'), {:zoom => (@zoom+1), :year => @year_from, :month => @month_from, :months => @months}
- else
- image_tag 'zoom_in_g'
- end %>
-<%= if @zoom > 1
- link_to image_tag('zoom_out'), :zoom => (@zoom-1), :year => @year_from, :month => @month_from, :months => @months
- else
- image_tag 'zoom_out_g'
- end %>
-</td>
-</tr>
-</table>
-<br />
-
-<style>
-.m_bg {
- position:absolute;
- top:0;
- height:16px;
- border-top: 1px solid #c0c0c0;
- border-bottom: 1px solid #c0c0c0;
- border-right: 1px solid #c0c0c0;
- text-align: center;
-}
-
-.task {
- position: absolute;
- height:8px;
- font-size:0.8em;
- color:#888;
- background:#aaa;
- padding:0;
- margin:0;
- line-height:0.8em;
-}
-
-.task_late {
- background:#f66;
-}
-
-.task_done {
- background:#66f;
-}
-</style>
-
-<% zoom = 1
-@zoom.times { zoom = zoom * 2 }
-
-subject_width = 260
-header_heigth = 18
-
-headers_heigth = header_heigth
-show_weeks = false
-show_days = false
-
-if @zoom >1
- show_weeks = true
- headers_heigth = 2*header_heigth
- if @zoom > 2
- show_days = true
- headers_heigth = 3*header_heigth
- end
-end
-
-g_width = (@date_to - @date_from + 1)*zoom
-g_height = [(20 * @issues.length + 6), 206].max
-t_height = g_height + headers_heigth
-%>
-
-<table width="100%" border=0 cellspacing=0 cellpading=0>
-<tr>
-<td width=260>
-
-<div style="position:relative;height:<%= t_height + 24 %>px;width:<%= subject_width + 1 %>px;">
-<div style="right:-2px;width:<%= subject_width %>px;height:<%= headers_heigth %>px;" class="m_bg"></div>
-<div style="right:-2px;width:<%= subject_width %>px;height:<%= t_height %>px;border-left: 1px solid #c0c0c0;" class="m_bg"></div>
-<%
-#
-# Tasks subjects
-#
-top = headers_heigth + 8
-@issues.each do |i| %>
- <div style="position: absolute;line-height:1em;height:16px;top:<%= top %>px;left:4px;width:<%= subject_width - 5 %>px;overflow:hidden;">
- <small><%= link_to "#{i.tracker.name} ##{i.id}", :controller => 'issues', :action => 'show', :id => i %>:
- <%= i.subject.sub(/^(.{30}[^\s]*\s).*$/, '\1 (...)') %></small>
- </div>
-<% top = top + 20
-end %>
-</div>
-</td>
-<td>
-
-<div style="position:relative;height:<%= t_height + 24 %>px;width:<%= subject_width %>;overflow:auto;">
-<div style="width:<%= g_width-1 %>px;height:<%= headers_heigth %>px;" class="m_bg"> </div>
-<%
-#
-# Months headers
-#
-month_f = @date_from
-left = 0
-height = (show_weeks ? header_heigth : header_heigth + g_height)
-@months.times do
- width = ((month_f >> 1) - month_f) * zoom - 1
- %>
- <div style="left:<%= left %>px;width:<%= width %>px;height:<%= height %>px;" class="m_bg">
- <%= link_to "#{month_f.year}-#{month_f.month}", :year => month_f.year, :month => month_f.month, :zoom => @zoom, :months => @months %>
- </div>
- <%
- left = left + width + 1
- month_f = month_f >> 1
-end %>
-
-<%
-#
-# Weeks headers
-#
-if show_weeks
- left = 0
- height = (show_days ? header_heigth-1 : header_heigth-1 + g_height)
- if @date_from.cwday == 1
- # @date_from is monday
- week_f = @date_from
- else
- # find next monday after @date_from
- week_f = @date_from + (7 - @date_from.cwday + 1)
- width = (7 - @date_from.cwday + 1) * zoom-1
- %>
- <div style="left:<%= left %>px;top:19px;width:<%= width %>px;height:<%= height %>px;" class="m_bg"> </div>
- <%
- left = left + width+1
- end %>
- <%
- while week_f < @date_to
- width = (week_f + 6 <= @date_to) ? 7 * zoom -1 : (@date_to - week_f + 1) * zoom-1
- %>
- <div style="left:<%= left %>px;top:19px;width:<%= width %>px;height:<%= height %>px;" class="m_bg">
- <small><%= week_f.cweek %></small>
- </div>
- <%
- left = left + width+1
- week_f = week_f+7
- end
-end %>
-
-<%
-#
-# Days headers
-#
-if show_days
- left = 0
- height = g_height + header_heigth - 1
- wday = @date_from.cwday
- (@date_to - @date_from + 1).to_i.times do
- width = zoom - 1
- %>
- <div style="left:<%= left %>px;top:37px;width:<%= width %>px;height:<%= height %>px;font-size:0.7em;<%= "background:#f1f1f1;" if wday > 5 %>" class="m_bg">
- <%= day_name(wday)[0,1] %>
- </div>
- <%
- left = left + width+1
- wday = wday + 1
- wday = 1 if wday > 7
- end
-end %>
-
-<%
-#
-# Today red line
-#
-if Date.today >= @date_from and Date.today <= @date_to %>
- <div style="position: absolute;height:<%= g_height %>px;top:<%= headers_heigth + 1 %>px;left:<%= ((Date.today-@date_from+1)*zoom).floor()-1 %>px;width:10px;border-left: 1px dashed red;"> </div>
-<% end %>
-
-<%
-#
-# Tasks
-#
-top = headers_heigth + 12
-@issues.each do |i| %>
- <%
- i_start_date = (i.start_date >= @date_from ? i.start_date : @date_from )
- i_end_date = (i.due_date <= @date_to ? i.due_date : @date_to )
-
- i_done_date = i.start_date + ((i.due_date - i.start_date+1)*i.done_ratio/100).floor
- i_done_date = (i_done_date <= @date_from ? @date_from : i_done_date )
- i_done_date = (i_done_date >= @date_to ? @date_to : i_done_date )
-
- i_late_date = [i_end_date, Date.today].min if i_start_date < Date.today
-
- i_left = ((i_start_date - @date_from)*zoom).floor
- i_width = ((i_end_date - i_start_date + 1)*zoom).floor
- d_width = ((i_done_date - i_start_date)*zoom).floor
- l_width = ((i_late_date - i_start_date+1)*zoom).floor if i_late_date
- l_width ||= 0
- %>
- <div style="top:<%= top %>px;left:<%= i_left %>px;width:<%= i_width %>px;" class="task"> </div>
- <% if l_width > 0 %>
- <div style="top:<%= top %>px;left:<%= i_left %>px;width:<%= l_width %>px;" class="task task_late"> </div>
- <% end %>
- <% if d_width > 0 %>
- <div style="top:<%= top %>px;left:<%= i_left %>px;width:<%= d_width %>px;" class="task task_done"> </div>
- <% end %>
- <div style="top:<%= top %>px;left:<%= i_left + i_width + 5 %>px;background:#fff;" class="task">
- <%= i.status.name %>
- <%= (i.done_ratio).to_i %>%
- </div>
- <% top = top + 20
-end %>
-</div>
-</td>
-</tr>
-</table>
-
-<table width="100%">
-<tr>
-<td align="left"><%= link_to ('« ' + l(:label_previous)), :year => (@date_from << @months).year, :month => (@date_from << @months).month, :zoom => @zoom, :months => @months %></td>
-<td>
-<td align="right"><%= link_to (l(:label_next) + ' »'), :year => (@date_from >> @months).year, :month => (@date_from >> @months).month, :zoom => @zoom, :months => @months %></td>
-</tr>
-</table>
\ No newline at end of file diff --git a/redmine/app/views/projects/list.rhtml b/redmine/app/views/projects/list.rhtml deleted file mode 100644 index 0137086d9..000000000 --- a/redmine/app/views/projects/list.rhtml +++ /dev/null @@ -1,20 +0,0 @@ -<h2><%=l(:label_public_projects)%></h2> - -<table class="listTableContent"> - <tr class="ListHead"> - <%= sort_header_tag('name', :caption => l(:label_project)) %>
- <th><%=l(:field_description)%></th>
- <%= sort_header_tag('created_on', :caption => l(:field_created_on)) %> - </tr> - -<% for project in @projects %> - <tr class="<%= cycle("odd", "even") %>">
- <td><%= link_to project.name, :action => 'show', :id => project %>
- <td><%= project.description %>
- <td align="center"><%= format_date(project.created_on) %>
- </tr> -<% end %> -</table>
-
-<%= pagination_links_full @project_pages %> -[ <%= @project_pages.current.first_item %> - <%= @project_pages.current.last_item %> / <%= @project_count %> ]
\ No newline at end of file diff --git a/redmine/app/views/projects/list_documents.rhtml b/redmine/app/views/projects/list_documents.rhtml deleted file mode 100644 index e6cf2b828..000000000 --- a/redmine/app/views/projects/list_documents.rhtml +++ /dev/null @@ -1,23 +0,0 @@ -<h2><%=l(:label_document_plural)%></h2>
-
-<% if @documents.empty? %><p><i><%= l(:label_no_data) %></i></p><% end %>
-
-<% documents = @documents.group_by {|d| d.category } %>
-<% documents.each do |category, docs| %>
-<h3><%= category.name %></h3>
-<ul>
-<% docs.each do |d| %>
- <li>
- <b><%= link_to d.title, :controller => 'documents', :action => 'show', :id => d %></b>
- <br />
- <%= truncate d.description, 250 %><br />
- <em><%= format_time(d.created_on) %></em><br />
- </li> -
-<% end %>
-</ul>
-<% end %>
-
-<p>
-<%= link_to_if_authorized '» ' + l(:label_document_new), :controller => 'projects', :action => 'add_document', :id => @project %> -</p>
diff --git a/redmine/app/views/projects/list_files.rhtml b/redmine/app/views/projects/list_files.rhtml deleted file mode 100644 index 5fe65e6a6..000000000 --- a/redmine/app/views/projects/list_files.rhtml +++ /dev/null @@ -1,46 +0,0 @@ -<h2><%=l(:label_attachment_plural)%></h2>
-
-<% delete_allowed = authorize_for('versions', 'destroy_file') %>
-
-<table class="listTableContent">
- <tr class="ListHead">
- <th><%=l(:field_version)%></th>
- <th><%=l(:field_filename)%></th>
- <th><%=l(:label_date)%></th>
- <th><%=l(:field_filesize)%></th>
- <th>D/L</th>
- <th>MD5</th>
- <% if delete_allowed %><th></th><% end %>
- </tr>
-
-<% for version in @versions %>
- <% unless version.attachments.empty? %>
- <tr><td colspan="7"><%= image_tag 'package' %> <b><%= version.name %></b></td></tr>
- <% for file in version.attachments %> - <tr class="<%= cycle("odd", "even") %>">
- <td></td>
- <td><%= link_to file.filename, :controller => 'versions', :action => 'download', :id => version, :attachment_id => file %></td>
- <td align="center"><%= format_date(file.created_on) %></td>
- <td align="center"><%= human_size(file.filesize) %></td>
- <td align="center"><%= file.downloads %></td> - <td align="center"><small><%= file.digest %></small></td>
- <% if delete_allowed %>
- <td align="center">
- <%= start_form_tag :controller => 'versions', :action => 'destroy_file', :id => version, :attachment_id => file %>
- <%= submit_tag l(:button_delete), :class => "button-small" %>
- <%= end_form_tag %>
- </td>
- <% end %> - </tr> - <% end
- reset_cycle %>
- <% end %>
-<% end %>
-</table>
-
-<br />
-<p>
-<%= link_to_if_authorized '» ' + l(:label_attachment_new), :controller => 'projects', :action => 'add_file', :id => @project %> -</p>
-
-
diff --git a/redmine/app/views/projects/list_issues.rhtml b/redmine/app/views/projects/list_issues.rhtml deleted file mode 100644 index e7e3ceeda..000000000 --- a/redmine/app/views/projects/list_issues.rhtml +++ /dev/null @@ -1,76 +0,0 @@ -<h2><%=l(:label_issue_plural)%></h2>
-<div class="topright">
-<small>
-<%= l(:label_export_to) %>
-<%= link_to 'CSV', :action => 'export_issues_csv', :id => @project %>,
-<%= link_to 'PDF', :action => 'export_issues_pdf', :id => @project %>
-</small>
-</div>
-
-<%= start_form_tag :action => 'list_issues' %>
-<table cellpadding=2>
- <tr>
- <td valign="bottom"><small><%=l(:field_status)%>:</small><br /><%= search_filter_tag 'status_id', :class => 'select-small' %></td>
- <td valign="bottom"><small><%=l(:field_tracker)%>:</small><br /><%= search_filter_tag 'tracker_id', :class => 'select-small' %></td>
- <td valign="bottom"><small><%=l(:field_priority)%>:</small><br /><%= search_filter_tag 'priority_id', :class => 'select-small' %></td>
- <td valign="bottom"><small><%=l(:field_category)%>:</small><br /><%= search_filter_tag 'category_id', :class => 'select-small' %></td>
- <td valign="bottom"><small><%=l(:field_fixed_version)%>:</small><br /><%= search_filter_tag 'fixed_version_id', :class => 'select-small' %></td>
- <td valign="bottom"><small><%=l(:field_author)%>:</small><br /><%= search_filter_tag 'author_id', :class => 'select-small' %></td>
- <td valign="bottom"><small><%=l(:field_assigned_to)%>:</small><br /><%= search_filter_tag 'assigned_to_id', :class => 'select-small' %></td>
- <td valign="bottom"><small><%=l(:label_subproject_plural)%>:</small><br /><%= search_filter_tag 'subproject_id', :class => 'select-small' %></td>
- <td valign="bottom">
- <%= hidden_field_tag 'set_filter', 1 %>
- <%= submit_tag l(:button_apply), :class => 'button-small' %>
- </td>
- <td valign="bottom">
- <%= link_to l(:button_clear), :action => 'list_issues', :id => @project, :set_filter => 1 %>
- </td>
- </tr>
-</table>
-<%= end_form_tag %>
-
-
-<table class="listTableContent">
- <tr>
- <td colspan="6" align="left"><small><%= check_all_links 'issues_form' %></small></td>
- <td colspan="2" align="right">
- <small><%= l(:label_per_page) %>:</small>
- <%= start_form_tag %>
- <%= select_tag 'per_page', options_for_select(@results_per_page_options, @results_per_page), :class => 'select-small'%>
- <%= submit_tag l(:button_apply), :class => 'button-small'%>
- <%= end_form_tag %>
- </td>
- </tr>
-</table>
-<%= start_form_tag({:controller => 'projects', :action => 'move_issues', :id => @project}, :id => 'issues_form' ) %>
-<table class="listTableContent">
-
- <tr class="ListHead">
- <td></td>
- <%= sort_header_tag('issues.id', :caption => '#') %>
- <%= sort_header_tag('issue_statuses.name', :caption => l(:field_status)) %>
- <%= sort_header_tag('issues.tracker_id', :caption => l(:field_tracker)) %>
- <th><%=l(:field_subject)%></th>
- <%= sort_header_tag('users.lastname', :caption => l(:field_author)) %>
- <%= sort_header_tag('issues.created_on', :caption => l(:field_created_on)) %>
- <%= sort_header_tag('issues.updated_on', :caption => l(:field_updated_on)) %>
- </tr>
- <% for issue in @issues %> - <tr class="<%= cycle("odd", "even") %>">
- <td width="15"><%= check_box_tag "issue_ids[]", issue.id %></td>
- <td align="center"><%= link_to issue.long_id, :controller => 'issues', :action => 'show', :id => issue %></td>
- <td align="center" style="font-weight:bold;color:#<%= issue.status.html_color %>;"><%= issue.status.name %></font></td>
- <td align="center"><%= issue.tracker.name %></td>
- <td><%= link_to issue.subject, :controller => 'issues', :action => 'show', :id => issue %></td> - <td align="center"><%= issue.author.display_name %></td>
- <td align="center"><%= format_time(issue.created_on) %></td> - <td align="center"><%= format_time(issue.updated_on) %></td> - </tr> - <% end %> -</table>
-<p>
-<%= pagination_links_full @issue_pages %>
-[ <%= @issue_pages.current.first_item %> - <%= @issue_pages.current.last_item %> / <%= @issue_count %> ]
-</p>
-<%= submit_tag l(:button_move) %>
-<%= end_form_tag %>
\ No newline at end of file diff --git a/redmine/app/views/projects/list_members.rhtml b/redmine/app/views/projects/list_members.rhtml deleted file mode 100644 index 655abb280..000000000 --- a/redmine/app/views/projects/list_members.rhtml +++ /dev/null @@ -1,11 +0,0 @@ -<h2><%=l(:label_member_plural)%></h2>
-
-<% members = @members.group_by {|m| m.role } %>
-<% members.each do |role, member| %>
-<h3><%= role.name %></h3>
-<ul>
-<% member.each do |m| %>
-<li><%= link_to m.user.display_name, :controller => 'account', :action => 'show', :id => m.user %> (<%= format_date m.created_on %>)</li>
-<% end %>
-</ul>
-<% end %>
diff --git a/redmine/app/views/projects/list_news.rhtml b/redmine/app/views/projects/list_news.rhtml deleted file mode 100644 index 6880de32f..000000000 --- a/redmine/app/views/projects/list_news.rhtml +++ /dev/null @@ -1,18 +0,0 @@ -<h2><%=l(:label_news_plural)%></h2> - -<% if @news.empty? %><p><i><%= l(:label_no_data) %></i></p><% end %> - -<ul> -<% for news in @news %>
- <li><%= link_to news.title, :controller => 'news', :action => 'show', :id => news %><br />
- <% unless news.summary.empty? %><%= news.summary %><br /><% end %> - <em><%= news.author.name %>, <%= format_time(news.created_on) %></em><br />
- </li>
-<% end %> -</ul> - -
-<%= pagination_links_full @news_pages %>
-<p> -<%= link_to_if_authorized '» ' + l(:label_news_new), :controller => 'projects', :action => 'add_news', :id => @project %> -</p>
diff --git a/redmine/app/views/projects/move_issues.rhtml b/redmine/app/views/projects/move_issues.rhtml deleted file mode 100644 index 380d47fd5..000000000 --- a/redmine/app/views/projects/move_issues.rhtml +++ /dev/null @@ -1,24 +0,0 @@ -<h2><%=l(:button_move)%></h2> - - -<%= start_form_tag({:action => 'move_issues', :id => @project}, :class => "tabular") %> - -<div class="box"> -<p><label><%= l(:label_issue_plural) %>:</label> -<% for issue in @issues %> - <b><%= link_to issue.long_id, :controller => 'issues', :action => 'show', :id => issue %></b> - <%= issue.subject %> - <%= hidden_field_tag "issue_ids[]", issue.id %><br /> -<% end %> -<i>(<%= @issues.length%> <%= lwr(:label_issue, @issues.length)%>)</i></p> - - - -<!--[form:issue]--> -<p><label for="new_project_id"><%=l(:field_project)%></label> -<%= select_tag "new_project_id", options_from_collection_for_select(@projects, "id", "name", @project.id) %></p> - -<p><label for="new_tracker_id"><%=l(:field_tracker)%></label> -<%= select_tag "new_tracker_id", options_from_collection_for_select(@trackers, "id", "name") %></p> -</div> -<%= submit_tag l(:button_move) %> -<%= end_form_tag %> diff --git a/redmine/app/views/projects/settings.rhtml b/redmine/app/views/projects/settings.rhtml deleted file mode 100644 index 3f9cba0a0..000000000 --- a/redmine/app/views/projects/settings.rhtml +++ /dev/null @@ -1,118 +0,0 @@ -<h2><%=l(:label_settings)%></h2> - -<% if authorize_for('projects', 'edit') %>
- <% labelled_tabular_form_for :project, @project, :url => { :action => "edit", :id => @project } do |f| %> - <%= render :partial => 'form', :locals => { :f => f } %> - <%= submit_tag l(:button_save) %> - <% end %> - <br /> -<% end %> -
-<div class="box"> -<h3><%=l(:label_member_plural)%></h3>
-<%= error_messages_for 'member' %>
-<table>
-<% for member in @project.members.find(:all, :include => :user) %>
- <% unless member.new_record? %>
- <tr>
- <td><%= member.user.display_name %></td>
- <td>
- <% if authorize_for('members', 'edit') %> - <%= start_form_tag :controller => 'members', :action => 'edit', :id => member %>
- <select name="member[role_id]">
- <%= options_from_collection_for_select @roles, "id", "name", member.role_id %> - </select>
- <%= submit_tag l(:button_change), :class => "button-small" %> - <%= end_form_tag %> - <% end %> - </td>
- <td> - <% if authorize_for('members', 'destroy') %>
- <%= start_form_tag :controller => 'members', :action => 'destroy', :id => member %>
- <%= submit_tag l(:button_delete), :class => "button-small" %>
- <%= end_form_tag %> - <% end %>
- </td>
- </tr>
- <% end %>
-<% end %>
-</table> -<% if authorize_for('projects', 'add_member') %>
- <hr />
- <label><%=l(:label_member_new)%></label><br/>
- <%= start_form_tag :controller => 'projects', :action => 'add_member', :id => @project %>
- <select name="member[user_id]">
- <%= options_from_collection_for_select @users, "id", "display_name", @member.user_id %> - </select>
- <select name="member[role_id]">
- <%= options_from_collection_for_select @roles, "id", "name", @member.role_id %> - </select>
- <%= submit_tag l(:button_add) %>
- <%= end_form_tag %> -<% end %>
-</div>
-
-<div class="box">
-<h3><%=l(:label_version_plural)%></h3>
-<table>
-<% for version in @project.versions %>
- <tr>
- <td width="100"><strong><%=h version.name %></strong></td>
- <td width="100"><%= format_date(version.effective_date) %></td>
- <td><%=h version.description %></td> - <td> - <%= link_to_if_authorized l(:button_edit), :controller => 'versions', :action => 'edit', :id => version %> - <% if authorize_for('versions', 'destroy') %> -
- <%= start_form_tag :controller => 'versions', :action => 'destroy', :id => version %>
- <%= submit_tag l(:button_delete), :class => "button-small" %>
- <%= end_form_tag %> - <% end %>
- </td>
- </tr>
-<% end %>
-</table> -<% if authorize_for('projects', 'add_version') %>
- <hr /> - <%= link_to l(:label_version_new), :controller => 'projects', :action => 'add_version', :id => @project %>
-<% end %>
-</div>
-
-
-<div class="box">
-<h3><%=l(:label_issue_category_plural)%></h3> -<table>
-<% for @category in @project.issue_categories %>
- <% unless @category.new_record? %>
- <tr>
- <td>
- <%= start_form_tag :controller => 'issue_categories', :action => 'edit', :id => @category %>
- <%= text_field 'category', 'name', :size => 25 %>
- </td>
- <td> - <% if authorize_for('issue_categories', 'edit') %>
- <%= submit_tag l(:button_save), :class => "button-small" %>
- <%= end_form_tag %> - <% end %>
- </td>
- <td> - <% if authorize_for('issue_categories', 'destroy') %>
- <%= start_form_tag :controller => 'issue_categories', :action => 'destroy', :id => @category %>
- <%= submit_tag l(:button_delete), :class => "button-small" %>
- <%= end_form_tag %> - <% end %>
- </td>
- </tr>
- <% end %>
-<% end %>
-</table> -<% if authorize_for('projects', 'add_issue_category') %>
- <hr />
- <%= start_form_tag :action => 'add_issue_category', :id => @project %> - <label for="issue_category_name"><%=l(:label_issue_category_new)%></label><br/> - <%= error_messages_for 'issue_category' %>
- <%= text_field 'issue_category', 'name', :size => 25 %> - <%= submit_tag l(:button_create) %>
- <%= end_form_tag %>
-<% end %>
-</div>
diff --git a/redmine/app/views/projects/show.rhtml b/redmine/app/views/projects/show.rhtml deleted file mode 100644 index 79e36a586..000000000 --- a/redmine/app/views/projects/show.rhtml +++ /dev/null @@ -1,72 +0,0 @@ -<h2><%=l(:label_overview)%></h2>
-
-<div class="splitcontentleft">
- <%= simple_format(auto_link(@project.description)) %>
- <ul>
- <% unless @project.homepage.empty? %><li><%=l(:field_homepage)%>: <%= auto_link @project.homepage %></li><% end %>
- <li><%=l(:field_created_on)%>: <%= format_date(@project.created_on) %></li>
- <% for custom_value in @custom_values %>
- <% if !custom_value.value.empty? %>
- <li><%= custom_value.custom_field.name%>: <%= show_value(custom_value) %></li>
- <% end %>
- <% end %>
- </ul>
-
- <div class="box">
- <h3><%= image_tag "tracker" %> <%=l(:label_tracker_plural)%></h3>
- <ul>
- <% for tracker in @trackers %>
- <li><%= link_to tracker.name, :controller => 'projects', :action => 'list_issues', :id => @project,
- :set_filter => 1,
- "tracker_id" => tracker.id %>:
- <%= issue_count = Issue.count(:conditions => ["project_id=? and tracker_id=? and issue_statuses.is_closed=?", @project.id, tracker.id, false], :include => :status) %>
- <%= lwr(:label_open_issues, issue_count) %>
- </li>
- <% end %>
- </ul> - <% if authorize_for 'projects', 'add_issue' %>
- » <%=l(:label_issue_new)%>:
- <ul>
- <% @trackers.each do |tracker| %>
- <li><%= link_to tracker.name, :controller => 'projects', :action => 'add_issue', :id => @project, :tracker_id => tracker %></li>
- <% end %>
- </ul>
- <% end %> - <center><small>[ <%= link_to l(:label_issue_view_all), :controller => 'projects', :action => 'list_issues', :id => @project, :set_filter => 1 %> ]</small></center>
- </div> -</div>
-
-<div class="splitcontentright">
- <div class="box">
- <h3><%= image_tag "users" %> <%=l(:label_member_plural)%></h3>
- <% for member in @members %>
- <%= link_to_user member.user %> (<%= member.role.name %>)<br />
- <% end %>
- </div>
-
- <% if @subprojects %>
- <div class="box">
- <h3><%= image_tag "projects" %> <%=l(:label_subproject_plural)%></h3>
- <% for subproject in @subprojects %>
- <%= link_to subproject.name, :action => 'show', :id => subproject %><br />
- <% end %>
- </div>
- <% end %>
-
- <div class="box">
- <h3><%=l(:label_news_latest)%></h3>
- <% for news in @news %>
- <p><b><%= news.title %></b> <small>(<%= link_to_user news.author %> <%= format_time(news.created_on) %>)</small><br />
- <%= news.summary %>
- <small>[<%= link_to l(:label_read), :controller => 'news', :action => 'show', :id => news %>]</small></p>
- <hr />
- <% end %> - <center><small>[ <%= link_to l(:label_news_view_all), :controller => 'projects', :action => 'list_news', :id => @project %> ]</small></center>
- </div>
-</div>
-
-
-
- -
-
diff --git a/redmine/app/views/reports/_details.rhtml b/redmine/app/views/reports/_details.rhtml deleted file mode 100644 index be4c82e77..000000000 --- a/redmine/app/views/reports/_details.rhtml +++ /dev/null @@ -1,47 +0,0 @@ -<% if @statuses.empty? or rows.empty? %>
- <p><i><%=l(:label_no_data)%></i></p>
-<% else %>
-<% col_width = 70 / (@statuses.length+3) %>
-<table class="reportTableContent">
-<tr>
-<td width="25%"></td>
-<% for status in @statuses %>
- <td align="center" width="<%= col_width %>%" bgcolor="#<%= status.html_color %>"><small><%= status.name %></small></td>
-<% end %>
-<td align="center" width="<%= col_width %>%"><strong><%=l(:label_open_issues_plural)%></strong></td>
-<td align="center" width="<%= col_width %>%"><strong><%=l(:label_closed_issues_plural)%></strong></td>
-<td align="center" width="<%= col_width %>%"><strong><%=l(:label_total)%></strong></td>
-</tr>
-
-<% for row in rows %>
-<tr class="<%= cycle("odd", "even") %>">
- <td><%= link_to row.name, :controller => 'projects', :action => 'list_issues', :id => @project,
- :set_filter => 1,
- "#{field_name}" => row.id %></td>
- <% for status in @statuses %>
- <td align="center"><%= link_to (aggregate data, { field_name => row.id, "status_id" => status.id }),
- :controller => 'projects', :action => 'list_issues', :id => @project,
- :set_filter => 1,
- "status_id" => status.id,
- "#{field_name}" => row.id %></td>
- <% end %>
- <td align="center"><%= link_to (aggregate data, { field_name => row.id, "closed" => 0 }),
- :controller => 'projects', :action => 'list_issues', :id => @project,
- :set_filter => 1,
- "#{field_name}" => row.id,
- "status_id" => "O" %></td>
- <td align="center"><%= link_to (aggregate data, { field_name => row.id, "closed" => 1 }),
- :controller => 'projects', :action => 'list_issues', :id => @project,
- :set_filter => 1,
- "#{field_name}" => row.id,
- "status_id" => "C" %></td>
- <td align="center"><%= link_to (aggregate data, { field_name => row.id }),
- :controller => 'projects', :action => 'list_issues', :id => @project,
- :set_filter => 1,
- "#{field_name}" => row.id,
- "status_id" => "A" %></td>
-<% end %>
-</tr>
-</table>
-<% end
- reset_cycle %>
\ No newline at end of file diff --git a/redmine/app/views/reports/_simple.rhtml b/redmine/app/views/reports/_simple.rhtml deleted file mode 100644 index 3be1281c5..000000000 --- a/redmine/app/views/reports/_simple.rhtml +++ /dev/null @@ -1,36 +0,0 @@ -<% if @statuses.empty? or rows.empty? %>
- <p><i><%=l(:label_no_data)%></i></p>
-<% else %>
-<table class="reportTableContent">
-<tr>
-<td width="25%"></td>
-<td align="center" width="25%"><%=l(:label_open_issues_plural)%></td>
-<td align="center" width="25%"><%=l(:label_closed_issues_plural)%></td>
-<td align="center" width="25%"><%=l(:label_total)%></td>
-</tr>
-
-<% for row in rows %>
-<tr class="<%= cycle("odd", "even") %>">
- <td><%= link_to row.name, :controller => 'projects', :action => 'list_issues', :id => @project,
- :set_filter => 1,
- "#{field_name}" => row.id %></td>
- <td align="center"><%= link_to (aggregate data, { field_name => row.id, "closed" => 0 }),
- :controller => 'projects', :action => 'list_issues', :id => @project,
- :set_filter => 1,
- "#{field_name}" => row.id,
- "status_id" => "O" %></td>
- <td align="center"><%= link_to (aggregate data, { field_name => row.id, "closed" => 1 }),
- :controller => 'projects', :action => 'list_issues', :id => @project,
- :set_filter => 1,
- "#{field_name}" => row.id,
- "status_id" => "C" %></td>
- <td align="center"><%= link_to (aggregate data, { field_name => row.id }),
- :controller => 'projects', :action => 'list_issues', :id => @project,
- :set_filter => 1,
- "#{field_name}" => row.id,
- "status_id" => "A" %></td>
-<% end %>
-</tr>
-</table>
-<% end
- reset_cycle %>
\ No newline at end of file diff --git a/redmine/app/views/reports/issue_report.rhtml b/redmine/app/views/reports/issue_report.rhtml deleted file mode 100644 index 4927186a9..000000000 --- a/redmine/app/views/reports/issue_report.rhtml +++ /dev/null @@ -1,20 +0,0 @@ -<h2><%=l(:label_report_plural)%></h2>
-
-<div class="splitcontentleft">
-<h3><%=l(:field_tracker)%> <%= link_to image_tag('details'), :detail => 'author' %></h3>
-<%= render :partial => 'simple', :locals => { :data => @issues_by_tracker, :field_name => "tracker_id", :rows => @trackers } %>
-<br />
-<h3><%=l(:field_priority)%> <%= link_to image_tag('details'), :detail => 'priority' %></h3>
-<%= render :partial => 'simple', :locals => { :data => @issues_by_priority, :field_name => "priority_id", :rows => @priorities } %>
-<br />
-<h3><%=l(:field_author)%> <%= link_to image_tag('details'), :detail => 'author' %></h3>
-<%= render :partial => 'simple', :locals => { :data => @issues_by_author, :field_name => "author_id", :rows => @authors } %>
-<br />
-</div>
-
-<div class="splitcontentright">
-<h3><%=l(:field_category)%> <%= link_to image_tag('details'), :detail => 'category' %></h3>
-<%= render :partial => 'simple', :locals => { :data => @issues_by_category, :field_name => "category_id", :rows => @categories } %>
-<br />
-</div>
-
diff --git a/redmine/app/views/reports/issue_report_details.rhtml b/redmine/app/views/reports/issue_report_details.rhtml deleted file mode 100644 index e37d38649..000000000 --- a/redmine/app/views/reports/issue_report_details.rhtml +++ /dev/null @@ -1,7 +0,0 @@ -<h2><%=l(:label_report_plural)%></h2>
-
-<h3><%=@report_title%></h3>
-<%= render :partial => 'details', :locals => { :data => @data, :field_name => @field, :rows => @rows } %>
-<br />
-<%= link_to l(:button_back), :action => 'issue_report' %>
-
diff --git a/redmine/app/views/roles/_form.rhtml b/redmine/app/views/roles/_form.rhtml deleted file mode 100644 index e0ab1c099..000000000 --- a/redmine/app/views/roles/_form.rhtml +++ /dev/null @@ -1,20 +0,0 @@ -<%= error_messages_for 'role' %> -<div class="box"> -<!--[form:role]-->
-<p><%= f.text_field :name, :required => true %></p>
-
-<strong><%=l(:label_permissions)%>:</strong>
-<% permissions = @permissions.group_by {|p| p.group_id } %>
-<% permissions.keys.sort.each do |group_id| %> -<fieldset style="margin-top: 6px;"><legend><strong><%= l(Permission::GROUPS[group_id]) %></strong></legend>
-<% permissions[group_id].each do |p| %>
- <div style="width:170px;float:left;"><%= check_box_tag "permission_ids[]", p.id, (@role.permissions.include? p) %>
- <%= l(p.description.to_sym) %>
- </div>
-<% end %>
-</fieldset>
-<% end %>
-<br /> -<%= check_all_links 'role_form' %>
-<!--[eoform:role]--> -</div> diff --git a/redmine/app/views/roles/edit.rhtml b/redmine/app/views/roles/edit.rhtml deleted file mode 100644 index ffe117cef..000000000 --- a/redmine/app/views/roles/edit.rhtml +++ /dev/null @@ -1,6 +0,0 @@ -<h2><%=l(:label_role)%></h2> - -<% labelled_tabular_form_for :role, @role, :url => { :action => 'edit' }, :html => {:id => 'role_form'} do |f| %> -<%= render :partial => 'form', :locals => { :f => f } %> -<%= submit_tag l(:button_save) %> -<% end %>
diff --git a/redmine/app/views/roles/list.rhtml b/redmine/app/views/roles/list.rhtml deleted file mode 100644 index 169b3d1c0..000000000 --- a/redmine/app/views/roles/list.rhtml +++ /dev/null @@ -1,21 +0,0 @@ -<h2><%=l(:label_role_plural)%></h2> - -<table class="listTableContent"> - <tr class="ListHead"> - <th><%=l(:label_role)%></th> - <th></th> - </tr> - -<% for role in @roles %> - <tr class="<%= cycle("odd", "even") %>"> - <td><%= link_to role.name, :action => 'edit', :id => role %></td> - <td align="center"> - <%= button_to l(:button_delete), { :action => 'destroy', :id => role }, :confirm => l(:text_are_you_sure), :class => "button-small" %>
- </tr> -<% end %> -</table> -
-<%= pagination_links_full @role_pages %> -<br /> - -<%= link_to '» ' + l(:label_role_new), :action => 'new' %> diff --git a/redmine/app/views/roles/new.rhtml b/redmine/app/views/roles/new.rhtml deleted file mode 100644 index a73c36cb1..000000000 --- a/redmine/app/views/roles/new.rhtml +++ /dev/null @@ -1,6 +0,0 @@ -<h2><%=l(:label_role_new)%></h2> -
-<% labelled_tabular_form_for :role, @role, :url => { :action => 'new' }, :html => {:id => 'role_form'} do |f| %> -<%= render :partial => 'form', :locals => { :f => f } %> -<%= submit_tag l(:button_create) %> -<% end %>
\ No newline at end of file diff --git a/redmine/app/views/roles/workflow.rhtml b/redmine/app/views/roles/workflow.rhtml deleted file mode 100644 index ee5b3a278..000000000 --- a/redmine/app/views/roles/workflow.rhtml +++ /dev/null @@ -1,71 +0,0 @@ -<h2><%=l(:label_workflow)%></h2>
-
-<p><%=l(:text_workflow_edit)%>:</p>
-
-<%= start_form_tag ({:action => 'workflow'}, :method => 'get') %>
-<div style="float:left;margin-right:10px;">
-<p><label for="role_id"><%=l(:label_role)%></label><br/>
-<select id="role_id" name="role_id">
- <%= options_from_collection_for_select @roles, "id", "name", (@role.id unless @role.nil?) %>
-</select></p>
-</div>
-
-<div>
-<p><label for="tracker_id"><%=l(:label_tracker)%></label><br/>
-<select id="tracker_id" name="tracker_id">
- <%= options_from_collection_for_select @trackers, "id", "name", (@tracker.id unless @tracker.nil?) %>
-</select>
-
-<%= submit_tag l(:button_edit) %>
-</p>
-</div>
-<%= end_form_tag %>
-
-
-
-<% unless @tracker.nil? or @role.nil? %>
-<div class="box">
- <%= form_tag ({:action => 'workflow', :role_id => @role, :tracker_id => @tracker }, :id => 'workflow_form' ) %>
- <table>
- <tr>
- <td align="center" colspan="2"><strong><%=l(:label_current_status)%></strong></td>
- <td align="center" colspan="<%= @statuses.length %>"><strong><%=l(:label_new_statuses_allowed)%></strong></td>
- </tr>
- <tr>
- <td colspan="2"></td>
- <% for new_status in @statuses %>
- <td width="80" align="center"><%= new_status.name %></td>
- <% end %>
- </tr>
-
- <% for old_status in @statuses %>
- <tr>
- <td width="20" align="center"><div style="background-color:#<%= old_status.html_color %>"> </div></td>
- <td><%= old_status.name %></td>
-
- <% for new_status in @statuses %>
- <td align="center">
-
- <input type="checkbox"
- name="issue_status[<%= old_status.id %>][]"
- value="<%= new_status.id %>"
- <%if old_status.new_statuses_allowed_to(@role, @tracker).include? new_status%>checked="checked"<%end%>
- <%if old_status==new_status%>disabled<%end%>
- >
- </td>
- <% end %>
-
- </tr>
- <% end %>
- </table>
-<br />
-<p>
-<a href="javascript:checkAll('workflow_form', true)"><%=l(:button_check_all)%></a> |
-<a href="javascript:checkAll('workflow_form', false)"><%=l(:button_uncheck_all)%></a>
-</p>
-<br />
-<%= submit_tag l(:button_save) %> -<%= end_form_tag %>
-
-<% end %>
-</div>
\ No newline at end of file diff --git a/redmine/app/views/trackers/_form.rhtml b/redmine/app/views/trackers/_form.rhtml deleted file mode 100644 index 625c0d636..000000000 --- a/redmine/app/views/trackers/_form.rhtml +++ /dev/null @@ -1,7 +0,0 @@ -<%= error_messages_for 'tracker' %> -<div class="box"> -<!--[form:tracker]--> -<p><%= f.text_field :name, :required => true %></p>
-<p><%= f.check_box :is_in_chlog %></p>
-<!--[eoform:tracker]--> -</div> diff --git a/redmine/app/views/trackers/edit.rhtml b/redmine/app/views/trackers/edit.rhtml deleted file mode 100644 index d8411099c..000000000 --- a/redmine/app/views/trackers/edit.rhtml +++ /dev/null @@ -1,6 +0,0 @@ -<h2><%=l(:label_tracker)%></h2> - -<% labelled_tabular_form_for :tracker, @tracker, :url => { :action => 'edit' } do |f| %> -<%= render :partial => 'form', :locals => { :f => f } %> -<%= submit_tag l(:button_save) %> -<% end %>
\ No newline at end of file diff --git a/redmine/app/views/trackers/list.rhtml b/redmine/app/views/trackers/list.rhtml deleted file mode 100644 index 8d4a5c595..000000000 --- a/redmine/app/views/trackers/list.rhtml +++ /dev/null @@ -1,22 +0,0 @@ -<h2><%=l(:label_tracker_plural)%></h2> - -<table class="listTableContent"> - <tr class="ListHead"> - <th><%=l(:label_tracker)%></th>
- <th></th> - </tr> - -<% for tracker in @trackers %> - <tr class="<%= cycle("odd", "even") %>"> - <td><%= link_to tracker.name, :action => 'edit', :id => tracker %></td> - <td align="center"> - <%= button_to l(:button_delete), { :action => 'destroy', :id => tracker }, :confirm => l(:text_are_you_sure), :class => "button-small" %>
- </td> - </tr> -<% end %> -</table> -
-<%= pagination_links_full @tracker_pages %> -<br /> - -<%= link_to '» ' + l(:label_tracker_new), :action => 'new' %> diff --git a/redmine/app/views/trackers/new.rhtml b/redmine/app/views/trackers/new.rhtml deleted file mode 100644 index b318a5dc4..000000000 --- a/redmine/app/views/trackers/new.rhtml +++ /dev/null @@ -1,6 +0,0 @@ -<h2><%=l(:label_tracker_new)%></h2> - -<% labelled_tabular_form_for :tracker, @tracker, :url => { :action => 'new' } do |f| %> -<%= render :partial => 'form', :locals => { :f => f } %> -<%= submit_tag l(:button_create) %> -<% end %>
\ No newline at end of file diff --git a/redmine/app/views/users/_form.rhtml b/redmine/app/views/users/_form.rhtml deleted file mode 100644 index 089d4d23c..000000000 --- a/redmine/app/views/users/_form.rhtml +++ /dev/null @@ -1,30 +0,0 @@ -<%= error_messages_for 'user' %> - -<!--[form:user]--> -<div class="box"> -<h3><%=l(:label_information_plural)%></h3> -<p><%= f.text_field :login, :required => true, :size => 25 %></p> -<p><%= f.text_field :firstname, :required => true %></p>
-<p><%= f.text_field :lastname, :required => true %></p> -<p><%= f.text_field :mail, :required => true %></p>
-<p><%= f.select :language, lang_options_for_select %></p>
-
-<% for @custom_value in @custom_values %> - <p><%= custom_field_tag_with_label @custom_value %></p> -<% end %>
-
-<p><%= f.check_box :admin %></p>
-<p><%= f.check_box :mail_notification %></p>
-</div> - -<div class="box"> -<h3><%=l(:label_authentication)%></h3> -<% unless @auth_sources.empty? %> -<p><%= f.select :auth_source_id, [[l(:label_internal), ""]] + @auth_sources.collect { |a| [a.name, a.id] } %></p> -<% end %> -<p><label for="password"><%=l(:field_password)%><span class="required"> *</span></label> -<%= password_field_tag 'password', nil, :size => 25 %></p> -<p><label for="password_confirmation"><%=l(:field_password_confirmation)%><span class="required"> *</span></label> -<%= password_field_tag 'password_confirmation', nil, :size => 25 %></p> -</div> -<!--[eoform:user]--> diff --git a/redmine/app/views/users/add.rhtml b/redmine/app/views/users/add.rhtml deleted file mode 100644 index d4c6a15f4..000000000 --- a/redmine/app/views/users/add.rhtml +++ /dev/null @@ -1,6 +0,0 @@ -<h2><%=l(:label_user_new)%></h2> - -<% labelled_tabular_form_for :user, @user, :url => { :action => "add" } do |f| %> -<%= render :partial => 'form', :locals => { :f => f } %> -<%= submit_tag l(:button_create) %> -<% end %>
\ No newline at end of file diff --git a/redmine/app/views/users/edit.rhtml b/redmine/app/views/users/edit.rhtml deleted file mode 100644 index 2332b70ad..000000000 --- a/redmine/app/views/users/edit.rhtml +++ /dev/null @@ -1,6 +0,0 @@ -<h2><%=l(:label_user)%></h2> - -<% labelled_tabular_form_for :user, @user, :url => { :action => "edit" } do |f| %> -<%= render :partial => 'form', :locals => { :f => f } %> -<%= submit_tag l(:button_save) %> -<% end %> diff --git a/redmine/app/views/users/list.rhtml b/redmine/app/views/users/list.rhtml deleted file mode 100644 index 9f4438138..000000000 --- a/redmine/app/views/users/list.rhtml +++ /dev/null @@ -1,46 +0,0 @@ -<h2><%=l(:label_user_plural)%></h2> -
-<table class="listTableContent">
-<tr class="ListHead"> - <%= sort_header_tag('login', :caption => l(:field_login)) %>
- <%= sort_header_tag('firstname', :caption => l(:field_firstname)) %>
- <%= sort_header_tag('lastname', :caption => l(:field_lastname)) %>
- <th><%=l(:field_mail)%></th>
- <%= sort_header_tag('admin', :caption => l(:field_admin)) %>
- <%= sort_header_tag('status', :caption => l(:field_status)) %>
- <%= sort_header_tag('created_on', :caption => l(:field_created_on)) %>
- <%= sort_header_tag('last_login_on', :caption => l(:field_last_login_on)) %>
- <th></th>
-</tr> -<% for user in @users %> - <tr class="<%= cycle("odd", "even") %>">
- <td><%= link_to user.login, :action => 'edit', :id => user %></td>
- <td><%= user.firstname %></td>
- <td><%= user.lastname %></td>
- <td><%= user.mail %></td>
- <td align="center"><%= image_tag 'true' if user.admin? %></td>
- <td align="center"><%= image_tag 'locked' if user.locked? %><%= image_tag 'user_new' if user.registered? %></td>
- <td align="center"><%= format_time(user.created_on) %></td>
- <td align="center"><%= format_time(user.last_login_on) unless user.last_login_on.nil? %></td>
- <td align="center">
- <%= start_form_tag :action => 'edit', :id => user %>
- <% if user.locked? %>
- <%= hidden_field_tag 'user[status]', User::STATUS_ACTIVE %>
- <%= submit_tag l(:button_unlock), :class => "button-small" %>
- <% else %>
- <%= hidden_field_tag 'user[status]', User::STATUS_LOCKED %>
- <%= submit_tag l(:button_lock), :class => "button-small" %>
- <% end %>
- <%= end_form_tag %>
- </td> - </tr> -<% end %> -</table> -
-<p><%= pagination_links_full @user_pages %>
-[ <%= @user_pages.current.first_item %> - <%= @user_pages.current.last_item %> / <%= @user_count %> ]
-</p>
- -<p> -<%= link_to '» ' + l(:label_user_new), :action => 'add' %> -</p>
\ No newline at end of file diff --git a/redmine/app/views/versions/_form.rhtml b/redmine/app/views/versions/_form.rhtml deleted file mode 100644 index 3d0eb0a2d..000000000 --- a/redmine/app/views/versions/_form.rhtml +++ /dev/null @@ -1,9 +0,0 @@ -<%= error_messages_for 'version' %> - -<div class="box"> -<!--[form:version]--> -<p><%= f.text_field :name, :size => 20, :required => true %></p> -<p><%= f.text_field :description, :size => 60 %></p> -<p><%= f.text_field :effective_date, :size => 10, :required => true %><%= calendar_for('version_effective_date') %></p> -<!--[eoform:version]--> -</div>
\ No newline at end of file diff --git a/redmine/app/views/versions/edit.rhtml b/redmine/app/views/versions/edit.rhtml deleted file mode 100644 index 1556ebba1..000000000 --- a/redmine/app/views/versions/edit.rhtml +++ /dev/null @@ -1,7 +0,0 @@ -<h2><%=l(:label_version)%></h2> - -<% labelled_tabular_form_for :version, @version, :url => { :action => 'edit' } do |f| %> -<%= render :partial => 'form', :locals => { :f => f } %> -<%= submit_tag l(:button_save) %> -<% end %> - diff --git a/redmine/app/views/welcome/index.rhtml b/redmine/app/views/welcome/index.rhtml deleted file mode 100644 index abee85691..000000000 --- a/redmine/app/views/welcome/index.rhtml +++ /dev/null @@ -1,30 +0,0 @@ -<h2><%= $RDM_WELCOME_TITLE || l(:label_home) %></h2>
-
-<div class="splitcontentleft">
- <% if $RDM_WELCOME_TEXT %><p><%= $RDM_WELCOME_TEXT %></p><br /><% end %>
- <div class="box">
- <h3><%=l(:label_news_latest)%></h3> - <% for news in @news %>
- <p>
- <b><%= news.title %></b> (<%= link_to_user news.author %> <%= format_time(news.created_on) %> - <%= news.project.name %>)<br />
- <% unless news.summary.empty? %><%= news.summary %><br /><% end %>
- [<%= link_to l(:label_read), :controller => 'news', :action => 'show', :id => news %>]
- </p>
- <hr />
- <% end %>
- </div>
-</div>
-
-<div class="splitcontentright">
- <div class="box">
- <h3><%=l(:label_project_latest)%></h3>
- <ul> - <% for project in @projects %>
- <li>
- <%= link_to project.name, :controller => 'projects', :action => 'show', :id => project %> (<%= format_time(project.created_on) %>)<br />
- <%= project.description %>
- </li>
- <% end %>
- </ul>
- </div>
-</div>
|