##// END OF EJS Templates
Email notifications are now sent as Blind carbon copy by default. This can be changed in email notifications settings (new setting added)....
Email notifications are now sent as Blind carbon copy by default. This can be changed in email notifications settings (new setting added). Emission email address setting moved to the email notifications settings view. git-svn-id: http://redmine.rubyforge.org/svn/trunk@944 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r931:bc060b31ae08
r931:bc060b31ae08
Show More
edit.rhtml
100 lines | 5.9 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
Default columns displayed on the issue list can now be selected at application level....
r774 <% form_tag({:action => 'edit'}) do %>
Jean-Philippe Lang
Email notifications are now sent as Blind carbon copy by default. This can be changed in email notifications settings (new setting added)....
r931 <div class="box tabular settings">
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
Application welcome text is now textilized....
r646 <%= text_area_tag 'settings[welcome_text]', Setting.welcome_text, :cols => 60, :rows => 5, :class => 'wiki-edit' %></p>
<%= wikitoolbar_for 'settings[welcome_text]' %>
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 basic Theme support....
r807 <p><label><%= l(:label_theme) %></label>
<%= select_tag 'settings[ui_theme]', options_for_select( ([[l(:label_default), '']] + Redmine::Themes.themes.collect {|t| [t.name, t.id]}), Setting.ui_theme) %></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 an option to choose the date format: language based (as defined in each lang file) or ISO 8601 (YYYY-MM-DD)....
r582 <p><label><%= l(:setting_date_format) %></label>
Jean-Philippe Lang
Added a couple of new formats for the 'date format' setting....
r892 <%= select_tag 'settings[date_format]', options_for_select( [[l(:label_language_based), '']] + Setting::DATE_FORMATS.collect {|f| [Date.today.strftime(f), f]}, Setting.date_format) %></p>
<p><label><%= l(:setting_time_format) %></label>
<%= select_tag 'settings[time_format]', options_for_select( [[l(:label_language_based), '']] + Setting::TIME_FORMATS.collect {|f| [Time.now.strftime(f), f]}, Setting.time_format) %></p>
Jean-Philippe Lang
Added an option to choose the date format: language based (as defined in each lang file) or ISO 8601 (YYYY-MM-DD)....
r582
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 an option to be able to relate issues in different projects....
r617 <p><label><%= l(:setting_cross_project_issue_relations) %></label>
<%= check_box_tag 'settings[cross_project_issue_relations]', 1, Setting.cross_project_issue_relations? %><%= hidden_field_tag 'settings[cross_project_issue_relations]', 0 %></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
Mailer:...
r864 <p><label><%= l(:setting_protocol) %></label>
<%= select_tag 'settings[protocol]', options_for_select(['http', 'https'], Setting.protocol) %></p>
Jean-Philippe Lang
added translated strings for settings view...
r166 <p><label><%= l(:setting_text_formatting) %></label>
Jean-Philippe Lang
Removed RedCloth checks since it's now supplied with the application....
r697 <%= select_tag 'settings[text_formatting]', options_for_select([[l(:label_none), "0"], ["textile", "textile"]], Setting.text_formatting) %></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
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
Default encodings for repository files can now be set in application settings (Admin -> Settings -> Repositories encodings)....
r803
<p><label><%= l(:setting_repositories_encodings) %></label>
<%= text_field_tag 'settings[repositories_encodings]', Setting.repositories_encodings, :size => 60 %><br /><em><%= l(:text_comma_separated) %></em></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>
Jean-Philippe Lang
Commit messages are now scanned for referenced or fixed issue IDs....
r470
Jean-Philippe Lang
Default columns displayed on the issue list can now be selected at application level....
r774 <fieldset class="box"><legend><%= l(:setting_issue_list_default_columns) %></legend>
<%= hidden_field_tag 'settings[issue_list_default_columns][]', '' %>
Jean-Philippe Lang
Custom fields can now be displayed as columns on the issue list....
r876 <p><% Query.new.available_columns.each do |column| %>
Jean-Philippe Lang
Default columns displayed on the issue list can now be selected at application level....
r774 <label><%= check_box_tag 'settings[issue_list_default_columns][]', column.name, Setting.issue_list_default_columns.include?(column.name.to_s) %>
Jean-Philippe Lang
Custom fields can now be displayed as columns on the issue list....
r876 <%= column.caption %></label>
Jean-Philippe Lang
Default columns displayed on the issue list can now be selected at application level....
r774 <% end %></p>
</fieldset>
<fieldset class="box tabular"><legend><%= l(:label_authentication) %></legend>
Jean-Philippe Lang
Added autologin feature (disabled by default)....
r511 <p><label><%= l(:setting_login_required) %></label>
<%= check_box_tag 'settings[login_required]', 1, Setting.login_required? %><%= hidden_field_tag 'settings[login_required]', 0 %></p>
<p><label><%= l(:setting_autologin) %></label>
<%= select_tag 'settings[autologin]', options_for_select( [[l(:label_disabled), "0"]] + [1, 7, 30, 365].collect{|days| [lwr(:actionview_datehelper_time_in_words_day, days), days.to_s]}, Setting.autologin) %></p>
<p><label><%= l(:setting_self_registration) %></label>
Jean-Philippe Lang
There's now 3 account activation strategies (available in application settings):...
r902 <%= select_tag 'settings[self_registration]',
options_for_select( [[l(:label_disabled), "0"],
[l(:label_registration_activation_by_email), "1"],
[l(:label_registration_manual_activation), "2"],
[l(:label_registration_automatic_activation), "3"]
], Setting.self_registration ) %></p>
Jean-Philippe Lang
Added autologin feature (disabled by default)....
r511
<p><label><%= l(:label_password_lost) %></label>
<%= check_box_tag 'settings[lost_password]', 1, Setting.lost_password? %><%= hidden_field_tag 'settings[lost_password]', 0 %></p>
</fieldset>
Jean-Philippe Lang
Default columns displayed on the issue list can now be selected at application level....
r774 <fieldset class="box tabular"><legend><%= l(:text_issues_ref_in_commit_messages) %></legend>
Jean-Philippe Lang
Commit messages are now scanned for referenced or fixed issue IDs....
r470 <p><label><%= l(:setting_commit_ref_keywords) %></label>
Jean-Philippe Lang
Fixed a couple of spelling errors (JT Zemp)...
r534 <%= text_field_tag 'settings[commit_ref_keywords]', Setting.commit_ref_keywords, :size => 30 %><br /><em><%= l(:text_comma_separated) %></em></p>
Jean-Philippe Lang
Commit messages are now scanned for referenced or fixed issue IDs....
r470
<p><label><%= l(:setting_commit_fix_keywords) %></label>
<%= text_field_tag 'settings[commit_fix_keywords]', Setting.commit_fix_keywords, :size => 30 %>
&nbsp;<%= l(:label_applied_status) %>: <%= select_tag 'settings[commit_fix_status_id]', options_for_select( [["", 0]] + IssueStatus.find(:all).collect{|status| [status.name, status.id.to_s]}, Setting.commit_fix_status_id) %>
Jean-Philippe Lang
Added the ability to set the "done ratio" of issues fixed by commit (original path by Nikolay Solakov, slightly edited)....
r810 &nbsp;<%= l(:field_done_ratio) %>: <%= select_tag 'settings[commit_fix_done_ratio]', options_for_select( [[l(:label_no_change_option), '']] + ((0..10).to_a.collect {|r| ["#{r*10} %", "#{r*10}"] }), Setting.commit_fix_done_ratio) %>
Jean-Philippe Lang
Fixed a couple of spelling errors (JT Zemp)...
r534 <br /><em><%= l(:text_comma_separated) %></em></p>
Jean-Philippe Lang
Commit messages are now scanned for referenced or fixed issue IDs....
r470 </fieldset>
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 <%= submit_tag l(:button_save) %>
Jean-Philippe Lang
Mailer:...
r864 <% end %>