##// END OF EJS Templates
Trac importer improvements (by Mat Trudel):...
Trac importer improvements (by Mat Trudel): * better support for wiki internal links (still not perfect, but much improved) * support for unordered lists * support for most of trac's highlighting tags (underline, bold, etc) * import progress dots now flush to stdout on every dot, so the import doesn't look frozen * support for migration of multiple trac instances into a single Redmine install (as separate projects) git-svn-id: http://redmine.rubyforge.org/svn/trunk@931 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r846:0d605006a3eb
r918:3937caeb3c8f
Show More
mail_options.rhtml
22 lines | 786 B | text/html+ruby | RhtmlLexer
/ app / views / admin / mail_options.rhtml
Jean-Philippe Lang
Mail notification options restored (default is: issue_added and issue_updated)....
r717 <div class="contextual">
<%= link_to l(:label_send_test_email), :action => 'test_email' %>
</div>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <h2><%=l(:field_mail_notification)%></h2>
Jean-Philippe Lang
Mail notification options restored (default is: issue_added and issue_updated)....
r717 <% form_tag({:action => 'mail_options'}, :id => 'mail-options-form') do %>
<fieldset class="box"><legend><%=l(:text_select_mail_notifications)%></legend>
<% @notifiables.each do |notifiable| %>
Jean-Philippe Lang
* Emails footer can now be customized from the admin interface (Admin -> Email notifications)....
r845 <label><%= check_box_tag "notified_events[]", notifiable, Setting.notified_events.include?(notifiable) %>
<%= notifiable.humanize %></label><br />
Jean-Philippe Lang
Mail notification options restored (default is: issue_added and issue_updated)....
r717 <% end %>
Jean-Philippe Lang
* Emails footer can now be customized from the admin interface (Admin -> Email notifications)....
r845 <p><%= check_all_links('mail-options-form') %></p>
</fieldset>
Jean-Philippe Lang
Fixed flashes style for IE6....
r846 <fieldset class="box"><legend><%= l(:setting_emails_footer) %></legend>
Jean-Philippe Lang
* Emails footer can now be customized from the admin interface (Admin -> Email notifications)....
r845 <%= text_area_tag 'emails_footer', Setting.emails_footer, :class => 'wiki-edit', :rows => 5 %>
Jean-Philippe Lang
Mail notification options restored (default is: issue_added and issue_updated)....
r717 </fieldset>
<%= submit_tag l(:button_save) %>
<% end %>