2008-01-06 23:24:26 +03:00
|
|
|
<% form_tag({:action => 'edit'}) do %>
|
|
|
|
|
|
|
|
<div class="box tabular settings">
|
2009-12-19 23:07:09 +03:00
|
|
|
<p><%= setting_text_field :app_title, :size => 30 %></p>
|
2008-01-06 23:24:26 +03:00
|
|
|
|
2009-12-19 23:07:09 +03:00
|
|
|
<p><%= setting_text_area :welcome_text, :cols => 60, :rows => 5, :class => 'wiki-edit' %></p>
|
|
|
|
<%= wikitoolbar_for 'settings_welcome_text' %>
|
2008-01-06 23:24:26 +03:00
|
|
|
|
2009-12-19 23:07:09 +03:00
|
|
|
<p><%= setting_text_field :attachment_max_size, :size => 6 %> KB</p>
|
2008-01-06 23:24:26 +03:00
|
|
|
|
2009-12-19 23:07:09 +03:00
|
|
|
<p><%= setting_text_field :per_page_options, :size => 20 %><br />
|
|
|
|
<em><%= l(:text_comma_separated) %></em></p>
|
2008-01-06 23:24:26 +03:00
|
|
|
|
2009-12-19 23:07:09 +03:00
|
|
|
<p><%= setting_text_field :activity_days_default, :size => 6 %> <%= l(:label_day_plural) %></p>
|
2008-03-05 16:44:08 +03:00
|
|
|
|
2009-12-19 23:07:09 +03:00
|
|
|
<p><%= setting_text_field :host_name, :size => 60 %><br />
|
2008-11-07 18:37:17 +03:00
|
|
|
<em><%= l(:label_example) %>: <%= @guessed_host_and_path %></em></p>
|
2008-01-06 23:24:26 +03:00
|
|
|
|
2009-12-19 23:07:09 +03:00
|
|
|
<p><%= setting_select :protocol, [['HTTP', 'http'], ['HTTPS', 'https']] %></p>
|
2008-01-06 23:24:26 +03:00
|
|
|
|
2009-12-19 23:07:09 +03:00
|
|
|
<p><%= setting_select :text_formatting, Redmine::WikiFormatting.format_names.collect{|name| [name, name.to_s]}, :blank => :label_none %></p>
|
2008-01-06 23:24:26 +03:00
|
|
|
|
2009-12-19 23:07:09 +03:00
|
|
|
<p><%= setting_select :wiki_compression, [['Gzip', 'gzip']], :blank => :label_none %></p>
|
2008-01-06 23:24:26 +03:00
|
|
|
|
2009-12-19 23:07:09 +03:00
|
|
|
<p><%= setting_text_field :feeds_limit, :size => 6 %></p>
|
2008-10-31 03:41:28 +03:00
|
|
|
|
2009-12-19 23:07:09 +03:00
|
|
|
<p><%= setting_text_field :file_max_size_displayed, :size => 6 %> KB</p>
|
2009-02-21 18:34:11 +03:00
|
|
|
|
2009-12-19 23:07:09 +03:00
|
|
|
<p><%= setting_text_field :diff_max_lines_displayed, :size => 6 %></p>
|
2009-12-29 03:43:06 +03:00
|
|
|
|
|
|
|
<%= call_hook(:view_settings_general_form) %>
|
2008-01-06 23:24:26 +03:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<%= submit_tag l(:button_save) %>
|
|
|
|
<% end %>
|