##// END OF EJS Templates
Diff style (inline or side by side) automatically saved as a user preference....
Diff style (inline or side by side) automatically saved as a user preference. Fixed a Postgres test failure. git-svn-id: http://redmine.rubyforge.org/svn/trunk@893 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r677:c6ac590d17b5
r880:1454a711caf6
Show More
_issuesreportedbyme.rhtml
17 lines | 1.0 KiB | text/html+ruby | RhtmlLexer
/ app / views / my / blocks / _issuesreportedbyme.rhtml
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <h3><%=l(:label_reported_issues)%></h3>
<% reported_issues = Issue.find(:all,
Jean-Philippe Lang
Added the ability to archive projects:...
r546 :conditions => ["author_id=? AND #{Project.table_name}.status=#{Project::STATUS_ACTIVE}", user.id],
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 :limit => 10,
:include => [ :status, :project, :tracker ],
Jean-Philippe Lang
fixed #9308 table_name pre/suffix support...
r334 :order => "#{Issue.table_name}.updated_on DESC") %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <%= render :partial => 'issues/list_simple', :locals => { :issues => reported_issues } %>
<% if reported_issues.length > 0 %>
Jean-Philippe Lang
Added a cross-project issue list. It displays the issues of all the projects visible by the user....
r673 <p class="small"><%= link_to l(:label_issue_view_all), :controller => 'issues', :action => 'index', :set_filter => 1, :author_id => 'me' %></p>
<% end %>
Jean-Philippe Lang
Added 'reported by me' and 'assigned to me' issue feeds on 'My page'....
r677
<% content_for :header_tags do %>
<%= auto_discovery_link_tag(:atom,
{:controller => 'issues', :action => 'index', :set_filter => 1,
:author_id => 'me', :format => 'atom', :key => User.current.rss_key},
{:title => l(:label_reported_issues)}) %>
<% end %>