##// END OF EJS Templates
Don't require category or target version when they are not available (#20583)....
Don't require category or target version when they are not available (#20583). git-svn-id: http://svn.redmine.org/redmine/trunk@14733 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14296:589bde0899cc
r14351:68620da79ab5
Show More
index.html.erb
68 lines | 3.2 KiB | text/plain | TextLexer
Jean-Philippe Lang
Fixed that link to user is escaped in activity title (#11124)....
r9603 <h2><%= @author.nil? ? l(:label_activity) : l(:label_user_activity, link_to_user(@author)).html_safe %></h2>
Jean-Philippe Lang
Adds a lang string with arguments for date ranges (#2305)....
r2519 <p class="subtitle"><%= l(:label_date_from_to, :start => format_date(@date_to - @days), :end => format_date(@date_to-1)) %></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Slight changes to the activity view....
r1106 <div id="activity">
Jean-Philippe Lang
Display the last 30 days on the activity view rather than the current month....
r1182 <% @events_by_day.keys.sort.reverse.each do |day| %>
<h3><%= format_activity_day(day) %></h3>
Jean-Philippe Lang
Slight changes to the activity view....
r1106 <dl>
Jean-Philippe Lang
Group events in the activity view (#12542)....
r10724 <% sort_activity_events(@events_by_day[day]).each do |e, in_group| -%>
<dt class="<%= e.event_type %> <%= "grouped" if in_group %> <%= User.current.logged? && e.respond_to?(:event_author) && User.current == e.event_author ? 'me' : nil %>">
Toshi MARUYAMA
replace tabs to spaces at app/views/activities/index.html.erb...
r7210 <%= avatar(e.event_author, :size => "24") if e.respond_to?(:event_author) %>
Jean-Philippe Lang
Adds a class ('me') to events of the activity view created by current user....
r1564 <span class="time"><%= format_time(e.event_datetime, false) %></span>
Jean-Philippe Lang
Removed unneeded #h calls in views....
r13661 <%= content_tag('span', e.project, :class => 'project') if @project.nil? || @project != e.project %>
Jean-Philippe Lang
Group events in the activity view (#12542)....
r10724 <%= link_to format_activity_title(e.event_title), e.event_url %>
</dt>
<dd class="<%= "grouped" if in_group %>"><span class="description"><%= format_activity_description(e.event_description) %></span>
Toshi MARUYAMA
HTML escape at app/views/activities/index.html.erb....
r6237 <span class="author"><%= link_to_user(e.event_author) if e.respond_to?(:event_author) %></span></dd>
Jean-Philippe Lang
Slight changes to the activity view....
r1106 <% end -%>
</dl>
<% end -%>
</div>
Jean-Philippe Lang
Application layout refactored....
r736
Jean-Philippe Lang
Slight changes to the activity view....
r1106 <%= content_tag('p', l(:label_no_data), :class => 'nodata') if @events_by_day.empty? %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
<div style="float:left;">
Toshi MARUYAMA
remove trailing white-spaces from app/views/activities/index.html.erb...
r7178 <%= link_to_content_update("\xc2\xab " + l(:label_previous),
Jean-Philippe Lang
Makes all pagination-like links use #link_to_content_update (#5138)....
r5181 params.merge(:from => @date_to - @days - 1),
Jean-Philippe Lang
Adds p/n access keys for previous/next links (#18692)....
r13412 :title => l(:label_date_from_to, :start => format_date(@date_to - 2*@days), :end => format_date(@date_to - @days - 1)),
:accesskey => accesskey(:previous)) %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
<div style="float:right;">
Toshi MARUYAMA
remove trailing white-spaces from app/views/activities/index.html.erb...
r7178 <%= link_to_content_update(l(:label_next) + " \xc2\xbb",
Jean-Philippe Lang
Makes all pagination-like links use #link_to_content_update (#5138)....
r5181 params.merge(:from => @date_to + @days - 1),
Jean-Philippe Lang
Adds p/n access keys for previous/next links (#18692)....
r13412 :title => l(:label_date_from_to, :start => format_date(@date_to), :end => format_date(@date_to + @days - 1)),
:accesskey => accesskey(:next)) unless @date_to >= Date.today %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
Jean-Philippe Lang
Display links to Atom feeds (closes #496, #750)....
r1171 &nbsp;
Jean-Philippe Lang
Adds an helper to render other formats download links....
r2331 <% other_formats_links do |f| %>
Toshi MARUYAMA
replace tabs to spaces at app/views/activities/index.html.erb...
r7210 <%= f.link_to 'Atom', :url => params.merge(:from => nil, :key => User.current.rss_key) %>
Jean-Philippe Lang
Adds an helper to render other formats download links....
r2331 <% end %>
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663
<% content_for :header_tags do %>
Jean-Philippe Lang
Fixes activity atom link params (when not on first page)....
r2066 <%= auto_discovery_link_tag(:atom, params.merge(:format => 'atom', :from => nil, :key => User.current.rss_key)) %>
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <% end %>
Jean-Philippe Lang
Application layout refactored....
r736
<% content_for :sidebar do %>
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_tag({}, :method => :get) do %>
Jean-Philippe Lang
Application layout refactored....
r736 <h3><%= l(:label_activity) %></h3>
Toshi MARUYAMA
use li tags for issue links in activities index (#13242)...
r11546 <ul>
<% @activity.event_types.each do |t| %>
<li>
<%= check_box_tag "show_#{t}", 1, @activity.scope.include?(t) %>
<label for="show_<%=t%>">
<%= link_to(l("label_#{t.singularize}_plural"),
{"show_#{t}" => 1, :user_id => params[:user_id], :from => params[:from]})%>
</label>
</li>
<% end %>
</ul>
Jean-Philippe Lang
Merged nested projects branch. Removes limit on subproject nesting (#594)....
r2302 <% if @project && @project.descendants.active.any? %>
Jean-Philippe Lang
Removed duplicate element ids....
r13262 <%= hidden_field_tag 'with_subprojects', 0, :id => nil %>
Jean-Philippe Lang
Activity enhancements:...
r1213 <p><label><%= check_box_tag 'with_subprojects', 1, @with_subprojects %> <%=l(:label_subproject_plural)%></label></p>
<% end %>
Jean-Philippe Lang
Fixed: 404 when "Apply" clicked on activity page (#2251)....
r2080 <%= hidden_field_tag('user_id', params[:user_id]) unless params[:user_id].blank? %>
Jean-Philippe Lang
Activity page to remember user's selection of activities (#1605)....
r14296 <p><%= submit_tag l(:button_apply), :class => 'button-small', :name => 'submit' %></p>
Jean-Philippe Lang
Application layout refactored....
r736 <% end %>
<% end %>
Jean-Philippe Lang
More detailed html title on several views....
r951
Jean-Philippe Lang
Makes activity view accept a user_id param to show user's activity (#1002)....
r2065 <% html_title(l(:label_activity), @author) -%>