##// END OF EJS Templates
The ability to change the issue status to the same status is no longer forced....
The ability to change the issue status to the same status is no longer forced. This behaviour can be defined in workflow setup. git-svn-id: http://redmine.rubyforge.org/svn/trunk@470 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r393:4ff8386e3dfe
r467:feb973b97052
Show More
edit.rhtml
56 lines | 2.8 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
settings are now stored in the database (config_custom.rb no more used) and editable through the application in: Admin -> Settings...
r164 <h2><%= l(:label_settings) %></h2>
Jean-Philippe Lang
added a setting option to set the feeds content limit...
r343 <div id="settings">
Jean-Philippe Lang
deprecated start_form_tag replaced by form_tag...
r181 <% form_tag({:action => 'edit'}, :class => "tabular") do %>
Jean-Philippe Lang
settings are now stored in the database (config_custom.rb no more used) and editable through the application in: Admin -> Settings...
r164 <div class="box">
Jean-Philippe Lang
added translated strings for settings view...
r166 <p><label><%= l(:setting_app_title) %></label>
<%= text_field_tag 'settings[app_title]', Setting.app_title, :size => 30 %></p>
Jean-Philippe Lang
settings are now stored in the database (config_custom.rb no more used) and editable through the application in: Admin -> Settings...
r164
Jean-Philippe Lang
added translated strings for settings view...
r166 <p><label><%= l(:setting_app_subtitle) %></label>
<%= text_field_tag 'settings[app_subtitle]', Setting.app_subtitle, :size => 60 %></p>
Jean-Philippe Lang
settings are now stored in the database (config_custom.rb no more used) and editable through the application in: Admin -> Settings...
r164
Jean-Philippe Lang
added translated strings for settings view...
r166 <p><label><%= l(:setting_welcome_text) %></label>
Jean-Philippe Lang
settings are now stored in the database (config_custom.rb no more used) and editable through the application in: Admin -> Settings...
r164 <%= text_area_tag 'settings[welcome_text]', Setting.welcome_text, :cols => 60, :rows => 5 %></p>
Jean-Philippe Lang
added translated strings for settings view...
r166 <p><label><%= l(:setting_default_language) %></label>
Jean-Philippe Lang
settings are now stored in the database (config_custom.rb no more used) and editable through the application in: Admin -> Settings...
r164 <%= select_tag 'settings[default_language]', options_for_select( lang_options_for_select(false), Setting.default_language) %></p>
Jean-Philippe Lang
added translated strings for settings view...
r166 <p><label><%= l(:setting_login_required) %></label>
Jean-Philippe Lang
settings are now stored in the database (config_custom.rb no more used) and editable through the application in: Admin -> Settings...
r164 <%= check_box_tag 'settings[login_required]', 1, Setting.login_required? %><%= hidden_field_tag 'settings[login_required]', 0 %></p>
Jean-Philippe Lang
added translated strings for settings view...
r166 <p><label><%= l(:setting_self_registration) %></label>
Jean-Philippe Lang
settings are now stored in the database (config_custom.rb no more used) and editable through the application in: Admin -> Settings...
r164 <%= check_box_tag 'settings[self_registration]', 1, Setting.self_registration? %><%= hidden_field_tag 'settings[self_registration]', 0 %></p>
Jean-Philippe Lang
added a setting option to disable "password lost" functionality...
r228 <p><label><%= l(:label_password_lost) %></label>
Jean-Philippe Lang
setting password_lost renamed to lost_password...
r232 <%= check_box_tag 'settings[lost_password]', 1, Setting.lost_password? %><%= hidden_field_tag 'settings[lost_password]', 0 %></p>
Jean-Philippe Lang
added a setting option to disable "password lost" functionality...
r228
Jean-Philippe Lang
added translated strings for settings view...
r166 <p><label><%= l(:setting_attachment_max_size) %></label>
<%= text_field_tag 'settings[attachment_max_size]', Setting.attachment_max_size, :size => 6 %> KB</p>
Jean-Philippe Lang
settings are now stored in the database (config_custom.rb no more used) and editable through the application in: Admin -> Settings...
r164
Jean-Philippe Lang
added a setting option to set max number of issues in export...
r231 <p><label><%= l(:setting_issues_export_limit) %></label>
<%= text_field_tag 'settings[issues_export_limit]', Setting.issues_export_limit, :size => 6 %></p>
Jean-Philippe Lang
added translated strings for settings view...
r166 <p><label><%= l(:setting_mail_from) %></label>
Jean-Philippe Lang
settings are now stored in the database (config_custom.rb no more used) and editable through the application in: Admin -> Settings...
r164 <%= text_field_tag 'settings[mail_from]', Setting.mail_from, :size => 60 %></p>
Jean-Philippe Lang
added translated strings for settings view...
r166 <p><label><%= l(:setting_host_name) %></label>
Jean-Philippe Lang
settings are now stored in the database (config_custom.rb no more used) and editable through the application in: Admin -> Settings...
r164 <%= text_field_tag 'settings[host_name]', Setting.host_name, :size => 60 %></p>
Jean-Philippe Lang
added translated strings for settings view...
r166 <p><label><%= l(:setting_text_formatting) %></label>
Jean-Philippe Lang
settings are now stored in the database (config_custom.rb no more used) and editable through the application in: Admin -> Settings...
r164 <%= select_tag 'settings[text_formatting]', options_for_select( [[l(:label_none), 0], ["textile", "textile"]], Setting.text_formatting) %></p>
Jean-Philippe Lang
wiki branch merged into trunk...
r320 <p><label><%= l(:setting_wiki_compression) %></label>
<%= select_tag 'settings[wiki_compression]', options_for_select( [[l(:label_none), 0], ["gzip", "gzip"]], Setting.wiki_compression) %></p>
Jean-Philippe Lang
added a setting option to set the feeds content limit...
r343 <p><label><%= l(:setting_feeds_limit) %></label>
<%= text_field_tag 'settings[feeds_limit]', Setting.feeds_limit, :size => 6 %></p>
Jean-Philippe Lang
SVN commits are now stored in the database, and added to the activity view and the search engine....
r374 <p><label><%= l(:setting_autofetch_changesets) %></label>
<%= check_box_tag 'settings[autofetch_changesets]', 1, Setting.autofetch_changesets? %><%= hidden_field_tag 'settings[autofetch_changesets]', 0 %></p>
Jean-Philippe Lang
Initial commit for svn repository management and access control:...
r393 <p><label><%= l(:setting_sys_api_enabled) %></label>
<%= check_box_tag 'settings[sys_api_enabled]', 1, Setting.sys_api_enabled? %><%= hidden_field_tag 'settings[sys_api_enabled]', 0 %></p>
Jean-Philippe Lang
settings are now stored in the database (config_custom.rb no more used) and editable through the application in: Admin -> Settings...
r164 </div>
<%= submit_tag l(:button_save) %>
Jean-Philippe Lang
added a setting option to set the feeds content limit...
r343 </div>
Jean-Philippe Lang
deprecated start_form_tag replaced by form_tag...
r181 <% end %>