To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / .svn / pristine / 98 / 9881063ed20b5e2fe47d9d6b91d54ab72efcf5ef.svn-base @ 1297:0a574315af3e

History | View | Annotate | Download (1.53 KB)

1
<% form_tag({:action => 'edit'}) do %>
2

    
3
<div class="box tabular settings">
4
<p><%= setting_text_field :app_title, :size => 30 %></p>
5

    
6
<p><%= setting_text_area :welcome_text, :cols => 60, :rows => 5, :class => 'wiki-edit' %></p>
7
<%= wikitoolbar_for 'settings_welcome_text' %>
8

    
9
<p><%= setting_text_field :attachment_max_size, :size => 6 %> <%= l(:"number.human.storage_units.units.kb") %></p>
10

    
11
<p><%= setting_text_field :per_page_options, :size => 20 %><br />
12
<em><%= l(:text_comma_separated) %></em></p>
13

    
14
<p><%= setting_text_field :activity_days_default, :size => 6 %> <%= l(:label_day_plural) %></p>
15

    
16
<p><%= setting_text_field :host_name, :size => 60 %><br />
17
<em><%= l(:label_example) %>: <%= @guessed_host_and_path %></em></p>
18

    
19
<p><%= setting_select :protocol, [['HTTP', 'http'], ['HTTPS', 'https']] %></p>
20

    
21
<p><%= setting_select :text_formatting, Redmine::WikiFormatting.format_names.collect{|name| [name, name.to_s]}, :blank => :label_none %></p>
22

    
23
<p><%= setting_check_box :cache_formatted_text %></p>
24

    
25
<p><%= setting_select :wiki_compression, [['Gzip', 'gzip']], :blank => :label_none %></p>
26

    
27
<p><%= setting_text_field :feeds_limit, :size => 6 %></p>
28

    
29
<p><%= setting_text_field :file_max_size_displayed, :size => 6 %> <%= l(:"number.human.storage_units.units.kb") %></p>
30

    
31
<p><%= setting_text_field :diff_max_lines_displayed, :size => 6 %></p>
32

    
33
<p><%= setting_text_field :repositories_encodings, :size => 60 %><br />
34
<em><%= l(:text_comma_separated) %></em></p>
35

    
36
<%= call_hook(:view_settings_general_form) %>
37
</div>
38

    
39
<%= submit_tag l(:button_save) %>
40
<% end %>