##// END OF EJS Templates
scm: git: unit adapter latin-1 path encoding test passes on Japanese Windows (#5251)....
scm: git: unit adapter latin-1 path encoding test passes on Japanese Windows (#5251). Ruby uses ANSI api to fork a process on Windows. Japanese Shift_JIS and Traditional Chinese Big5 have 0x5c(backslash) problem and these are incompatible with ASCII. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5071 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r4399:b48291ec63b5
r4951:74f44a5b6a0b
Show More
_issues.rhtml
21 lines | 787 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Admin settings screen split to tabs....
r1033 <% form_tag({:action => 'edit', :tab => 'issues'}) do %>
<div class="box tabular settings">
Jean-Philippe Lang
Adds helpers for setting field tags....
r3084 <p><%= setting_check_box :cross_project_issue_relations %></p>
Jean-Philippe Lang
Admin settings screen split to tabs....
r1033
Jean-Philippe Lang
Adds helpers for setting field tags....
r3084 <p><%= setting_check_box :display_subprojects_issues %></p>
Jean-Philippe Lang
Adds an application setting to choose whether or not subprojects issues should be displayed by default on the issue list, calendar and gantt (r1178). Default is true....
r1184
Jean-Philippe Lang
Adds helpers for setting field tags....
r3084 <p><%= setting_select :issue_done_ratio, Issue::DONE_RATIO_OPTIONS.collect {|i| [l("setting_issue_done_ratio_#{i}"), i]} %></p>
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037
Jean-Philippe Lang
Adds helpers for setting field tags....
r3084 <p><%= setting_text_field :issues_export_limit, :size => 6 %></p>
Jean-Philippe Lang
Adds an application setting to limit the number of items that can be displayed on the gantt chart (#6276)....
r4399
<p><%= setting_text_field :gantt_items_limit, :size => 6 %></p>
Jean-Philippe Lang
Admin settings screen split to tabs....
r1033 </div>
Jean-Philippe Lang
Makes the default issue list columns selection look like other multi-checkbox fieldsets....
r2444 <fieldset class="box settings"><legend><%= l(:setting_issue_list_default_columns) %></legend>
Jean-Philippe Lang
Adds helpers for setting field tags....
r3084 <%= setting_multiselect(:issue_list_default_columns,
Query.new.available_columns.collect {|c| [c.caption, c.name.to_s]}, :label => false) %>
Jean-Philippe Lang
Admin settings screen split to tabs....
r1033 </fieldset>
<%= submit_tag l(:button_save) %>
<% end %>