##// END OF EJS Templates
Fixed broken italic text style in edited comment preview (#10130)....
Fixed broken italic text style in edited comment preview (#10130). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8752 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7212:3e44551d12e4
r8632:b47c5af0b83e
Show More
_mail_handler.html.erb
23 lines | 978 B | text/plain | TextLexer
/ app / views / settings / _mail_handler.html.erb
Jean-Philippe Lang
Adds a simple API and a standalone script that can be used to forward emails from a local or remote email server to Redmine (#1110)....
r1570 <% form_tag({:action => 'edit', :tab => 'mail_handler'}) do %>
Jean-Philippe Lang
Adds a setting to remove incoming emails body after a delimiter (#4409)....
r3112 <div class="box tabular settings">
<p>
<%= setting_text_area :mail_handler_body_delimiters, :rows => 5 %>
<br /><em><%= l(:text_line_separated) %></em>
</p>
</div>
Jean-Philippe Lang
Adds a simple API and a standalone script that can be used to forward emails from a local or remote email server to Redmine (#1110)....
r1570 <div class="box tabular settings">
Toshi MARUYAMA
remove trailing white-spaces from app/views/settings/_mail_handler.html.erb...
r7167 <p><%= setting_check_box :mail_handler_api_enabled,
Toshi MARUYAMA
replace tabs to spaces at app/views/settings/_mail_handler.html.erb...
r7212 :onclick => "if (this.checked) { Form.Element.enable('settings_mail_handler_api_key'); } else { Form.Element.disable('settings_mail_handler_api_key'); }"%></p>
Jean-Philippe Lang
Adds a simple API and a standalone script that can be used to forward emails from a local or remote email server to Redmine (#1110)....
r1570
Jean-Philippe Lang
Adds helpers for setting field tags....
r3084 <p><%= setting_text_field :mail_handler_api_key, :size => 30,
Toshi MARUYAMA
replace tabs to spaces at app/views/settings/_mail_handler.html.erb...
r7212 :id => 'settings_mail_handler_api_key',
:disabled => !Setting.mail_handler_api_enabled? %>
Jean-Philippe Lang
Adds helpers for setting field tags....
r3084 <%= link_to_function l(:label_generate_key), "if ($('settings_mail_handler_api_key').disabled == false) { $('settings_mail_handler_api_key').value = randomKey(20) }" %>
</p>
Jean-Philippe Lang
Adds a simple API and a standalone script that can be used to forward emails from a local or remote email server to Redmine (#1110)....
r1570 </div>
<%= submit_tag l(:button_save) %>
Jean-Philippe Lang
Adds a setting to remove incoming emails body after a delimiter (#4409)....
r3112
Jean-Philippe Lang
Adds a simple API and a standalone script that can be used to forward emails from a local or remote email server to Redmine (#1110)....
r1570 <% end %>