##// END OF EJS Templates
Added a simple mail handler....
Added a simple mail handler. It lets users add notes to an existing issue by replying to the initial notification email. Permissions are checked in the same way as in the application (the user is identified by its mail address). Information about configuring the application so that it receives emails can be found here: http://wiki.rubyonrails.com/rails/pages/HowToReceiveEmailsWithActionMailer RedMine mail hander is MailHandler#receive git-svn-id: http://redmine.rubyforge.org/svn/trunk@523 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r513:8e24c6458da0
r520:42193960f2f4
Show More
changelog.rhtml
27 lines | 974 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <h2><%=l(:label_change_log)%></h2>
<div class="rightbox" style="width:140px;">
<% form_tag do %>
Jean-Philippe Lang
Added an option to see all versions in the roadmap view (including completed ones)....
r513 <p><strong><%=l(:label_tracker_plural)%></strong><br />
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% @trackers.each do |tracker| %>
<%= check_box_tag "tracker_ids[]", tracker.id, (@selected_tracker_ids.include? tracker.id.to_s) %>
<%= tracker.name %><br />
Jean-Philippe Lang
Added an option to see all versions in the roadmap view (including completed ones)....
r513 <% end %></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <p><center><%= submit_tag l(:button_apply), :class => 'button-small' %></center></p>
<% end %>
</div>
<% if @fixed_issues.empty? %><p><i><%= l(:label_no_data) %></i></p><% end %>
<% ver_id = nil
@fixed_issues.each do |issue| %>
<% unless ver_id == issue.fixed_version_id %>
<% if ver_id %></ul><% end %>
<h3 class="icon22 icon22-package"><%= issue.fixed_version.name %></h3>
<p><%= format_date(issue.fixed_version.effective_date) %><br />
<%=h issue.fixed_version.description %></p>
<ul>
<% ver_id = issue.fixed_version_id
end %>
Jean-Philippe Lang
Added link_to_issue helper....
r428 <li><%= link_to_issue issue %>: <%=h issue.subject %></li>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>