_general.html.erb
40 lines
| 1.5 KiB
| text/plain
|
TextLexer
|
r1033 | <% form_tag({:action => 'edit'}) do %> | ||
<div class="box tabular settings"> | ||||
|
r3084 | <p><%= setting_text_field :app_title, :size => 30 %></p> | ||
|
r1033 | |||
|
r3084 | <p><%= setting_text_area :welcome_text, :cols => 60, :rows => 5, :class => 'wiki-edit' %></p> | ||
<%= wikitoolbar_for 'settings_welcome_text' %> | ||||
|
r1033 | |||
|
r4312 | <p><%= setting_text_field :attachment_max_size, :size => 6 %> <%= l(:"number.human.storage_units.units.kb") %></p> | ||
|
r1033 | |||
|
r8634 | <p><%= setting_text_field :per_page_options, :size => 20 %> | ||
<em class="info"><%= l(:text_comma_separated) %></em></p> | ||||
|
r1033 | |||
|
r3084 | <p><%= setting_text_field :activity_days_default, :size => 6 %> <%= l(:label_day_plural) %></p> | ||
|
r1182 | |||
|
r8634 | <p><%= setting_text_field :host_name, :size => 60 %> | ||
<em class="info"><%= l(:label_example) %>: <%= @guessed_host_and_path %></em></p> | ||||
|
r1033 | |||
|
r3084 | <p><%= setting_select :protocol, [['HTTP', 'http'], ['HTTPS', 'https']] %></p> | ||
|
r1033 | |||
|
r3084 | <p><%= setting_select :text_formatting, Redmine::WikiFormatting.format_names.collect{|name| [name, name.to_s]}, :blank => :label_none %></p> | ||
|
r1033 | |||
|
r3258 | <p><%= setting_check_box :cache_formatted_text %></p> | ||
|
r3084 | <p><%= setting_select :wiki_compression, [['Gzip', 'gzip']], :blank => :label_none %></p> | ||
|
r1033 | |||
|
r3084 | <p><%= setting_text_field :feeds_limit, :size => 6 %></p> | ||
|
r1970 | |||
|
r4312 | <p><%= setting_text_field :file_max_size_displayed, :size => 6 %> <%= l(:"number.human.storage_units.units.kb") %></p> | ||
|
r2440 | |||
|
r3084 | <p><%= setting_text_field :diff_max_lines_displayed, :size => 6 %></p> | ||
|
r3142 | |||
|
r8634 | <p><%= setting_text_field :repositories_encodings, :size => 60 %> | ||
<em class="info"><%= l(:text_comma_separated) %></em></p> | ||||
|
r7749 | |||
|
r3142 | <%= call_hook(:view_settings_general_form) %> | ||
|
r1033 | </div> | ||
<%= submit_tag l(:button_save) %> | ||||
<% end %> | ||||