##// END OF EJS Templates
Anonymous users can now be allowed to create, edit, comment issues, comment news and post messages in the forums....
Anonymous users can now be allowed to create, edit, comment issues, comment news and post messages in the forums. These permissions need to be explicitly given to the Anonymous role (Admin -> Roles & Permissions -> Anonymous). git-svn-id: http://redmine.rubyforge.org/svn/trunk@919 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r892:e4ce95c3a184
r906:987a5aa22114
Show More
activity.rhtml
41 lines | 1.9 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>
<% @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 a couple of new formats for the 'date format' setting....
r892 <li><p><%= format_time(e.event_datetime, false) %> <%= link_to truncate(e.event_title, 100), e.event_url %><br />
Jean-Philippe Lang
Activity view now uses events attributes....
r863 <% unless e.event_description.blank? %><em><%= truncate(e.event_description, 500) %></em><br /><% end %>
Jean-Philippe Lang
Added issues status changes on the activity view (initial patch by Cyril Mougel)....
r879 <span class="author"><%= e.event_author if e.respond_to?(:event_author) %></span></p></li>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
</ul>
<% end %>
Jean-Philippe Lang
Application layout refactored....
r736
Jean-Philippe Lang
Activity view now uses events attributes....
r863 <% if @events_by_day.empty? %><p class="nodata"><%= l(:label_no_data) %></p><% end %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
<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
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 %>
Jean-Philippe Lang
Application layout refactored....
r736
<% content_for :sidebar do %>
<% form_tag do %>
<h3><%= l(:label_activity) %></h3>
<p><% @event_types.each do |t| %>
Jean-Philippe Lang
Added label tags on various checkboxes....
r778 <label><%= check_box_tag "show_#{t}", 1, @scope.include?(t) %> <%= l("label_#{t.singularize}_plural")%></label><br />
Jean-Philippe Lang
Application layout refactored....
r736 <% end %></p>
<p><%= submit_tag l(:button_apply), :class => 'button-small' %></p>
<% end %>
<% end %>