##// END OF EJS Templates
Main project list now displays root projects with their subprojects....
Main project list now displays root projects with their subprojects. Added files turned into links (if not removed) on the issue history. git-svn-id: http://redmine.rubyforge.org/svn/trunk@729 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r663:603e11d7a5aa
r718:f2a058f8cf04
Show More
activity.rhtml
72 lines | 4.2 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <h2><%=l(:label_activity)%>: <%= "#{month_name(@month).downcase} #{@year}" %></h2>
<div>
<div class="rightbox">
<% form_tag do %>
<p><%= select_month(@month, :prefix => "month", :discard_type => true) %>
<%= select_year(@year, :prefix => "year", :discard_type => true) %></p>
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663
<p><% @event_types.each do |t| %>
<%= check_box_tag "show_#{t}", 1, @scope.include?(t) %> <%= l("label_#{t.singularize}_plural")%><br />
<% end %></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <p class="textcenter"><%= submit_tag l(:button_apply), :class => 'button-small' %></p>
<% end %>
</div>
<% @events_by_day.keys.sort {|x,y| y <=> x }.each do |day| %>
<h3><%= day_name(day.cwday) %> <%= day.day %></h3>
<ul>
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <% @events_by_day[day].sort {|x,y| y.event_datetime <=> x.event_datetime }.each do |e| %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <li><p>
<% if e.is_a? Issue %>
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <%= e.event_datetime.strftime("%H:%M") %> <%= link_to_issue e %>: <%=h e.subject %><br />
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <i><%= e.author.name %></i>
Jean-Philippe Lang
Activity view improvements:...
r640 <% elsif e.is_a? Journal %>
<%= e.created_on.strftime("%H:%M") %> <%= link_to_issue e.journalized %>
(<%=h (status = IssueStatus.find_by_id(e.details.first.value)) ? status.name : '?' %>): <%=h e.journalized.subject %><br />
<em><%=h e.user.name %><%=h ": #{truncate(e.notes, 500)}" unless e.notes.blank? %></em>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% elsif e.is_a? News %>
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <%= e.event_datetime.strftime("%H:%M") %> <%=l(:label_news)%>: <%= link_to h(e.title), :controller => 'news', :action => 'show', :id => e %><br />
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% unless e.summary.empty? %><%=h e.summary %><br /><% end %>
<i><%= e.author.name %></i>
<% elsif (e.is_a? Attachment) and (e.container.is_a? Version) %>
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <%= e.event_datetime.strftime("%H:%M") %> <%=l(:label_attachment)%> (<%=h e.container.name %>): <%= link_to e.filename, :controller => 'projects', :action => 'list_files', :id => @project %><br />
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <i><%= e.author.name %></i>
<% elsif (e.is_a? Attachment) and (e.container.is_a? Document) %>
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <%= e.event_datetime.strftime("%H:%M") %> <%=l(:label_attachment)%>: <%= e.filename %> (<%= link_to h(e.container.title), :controller => 'documents', :action => 'show', :id => e.container %>)<br />
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <i><%= e.author.name %></i>
<% elsif e.is_a? Document %>
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <%= e.event_datetime.strftime("%H:%M") %> <%=l(:label_document)%>: <%= link_to h(e.title), :controller => 'documents', :action => 'show', :id => e %><br />
Jean-Philippe Lang
patch #9429 Display Wiki edits in activity log (Nick Read)...
r367 <% elsif e.is_a? WikiContent.versioned_class %>
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <%= e.event_datetime.strftime("%H:%M") %> <%=l(:label_wiki_edit)%>: <%= link_to h(WikiPage.pretty_title(e.title)), :controller => 'wiki', :page => e.title %>
Jean-Philippe Lang
Added wiki diff....
r580 (<%= link_to '#' + e.version.to_s, :controller => 'wiki', :page => e.title, :version => e.version %><%= ', ' + link_to('diff', :controller => 'wiki', :action => 'diff', :page => e.title, :version => e.version) if e.version > 1 %>)<br />
Jean-Philippe Lang
Fixed: 10342 Creation of Schema in Oracle...
r476 <% unless e.comments.blank? %><em><%=h e.comments %></em><% end %>
Jean-Philippe Lang
SVN commits are now stored in the database, and added to the activity view and the search engine....
r374 <% elsif e.is_a? Changeset %>
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <%= e.event_datetime.strftime("%H:%M") %> <%=l(:label_revision)%> <%= link_to h(e.revision), :controller => 'repositories', :action => 'revision', :id => @project, :rev => e.revision %><br />
Jean-Philippe Lang
Fixed: 10342 Creation of Schema in Oracle...
r476 <em><%=h e.committer.blank? ? "anonymous" : e.committer %><%= h(": #{truncate(e.comments, 500)}") unless e.comments.blank? %></em>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
</p></li>
<% end %>
</ul>
<% end %>
<% if @events_by_day.empty? %><p><i><%= l(:label_no_data) %></i></p><% end %>
<div style="float:left;">
Jean-Philippe Lang
Activity view improvements:...
r640 <% prev_params = params.clone.update :year => (@month==1 ? @year-1 : @year), :month =>(@month==1 ? 12 : @month-1) %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <%= link_to_remote ('&#171; ' + (@month==1 ? "#{month_name(12)} #{@year-1}" : "#{month_name(@month-1)}")),
Jean-Philippe Lang
Activity view improvements:...
r640 {:update => "content", :url => prev_params}, {:href => url_for(prev_params)} %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
<div style="float:right;">
Jean-Philippe Lang
Activity view improvements:...
r640 <% next_params = params.clone.update :year => (@month==12 ? @year+1 : @year), :month =>(@month==12 ? 1 : @month+1) %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <%= link_to_remote ((@month==12 ? "#{month_name(1)} #{@year+1}" : "#{month_name(@month+1)}") + ' &#187;'),
Jean-Philippe Lang
Activity view improvements:...
r640 {:update => "content", :url => next_params}, {:href => url_for(next_params)} %>
&nbsp;
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
<br />
Jean-Philippe Lang
patch #9429 Display Wiki edits in activity log (Nick Read)...
r367 </div>
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663
<% content_for :header_tags do %>
<%= auto_discovery_link_tag(:atom, params.merge({:format => 'atom', :year => nil, :month => nil, :key => User.current.rss_key})) %>
<% end %>