mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-24 09:21:12 +00:00
Depending on the offset between a user's configured timezone and the server timezone, Date.today may be more or less often wrong from the user's perspective, leading to things like issues marked as overdue too early or too late, or yesterday / tomorrow being displayed / selected where 'today' is intended. A test case illustrating the problem with Issue#overdue? is included Patch by Jens Kraemer. git-svn-id: http://svn.redmine.org/redmine/trunk@15379 e93f8b46-1217-0410-a6f0-8f06a7374b81
33 lines
1.2 KiB
Plaintext
33 lines
1.2 KiB
Plaintext
<table class="cal">
|
|
<thead>
|
|
<tr><th scope="col" title="<%= l(:label_week) %>" class="week-number"></th><% 7.times do |i| %><th scope="col"><%= day_name( (calendar.first_wday+i)%7 ) %></th><% end %></tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<% day = calendar.startdt
|
|
while day <= calendar.enddt %>
|
|
<%= ("<td class='week-number' title='#{ l(:label_week) }'>#{(day+(11-day.cwday)%7).cweek}</td>".html_safe) if day.cwday == calendar.first_wday %>
|
|
<td class="<%= day.month==calendar.month ? 'even' : 'odd' %><%= ' today' if User.current.today == day %>">
|
|
<p class="day-num"><%= day.day %></p>
|
|
<% calendar.events_on(day).each do |i| %>
|
|
<% if i.is_a? Issue %>
|
|
<div class="<%= i.css_classes %> <%= 'starting' if day == i.start_date %> <%= 'ending' if day == i.due_date %> tooltip">
|
|
<%= "#{i.project} -" unless @project && @project == i.project %>
|
|
<%= link_to_issue i, :truncate => 30 %>
|
|
<span class="tip"><%= render_issue_tooltip i %></span>
|
|
</div>
|
|
<% else %>
|
|
<span class="icon icon-package">
|
|
<%= "#{i.project} -" unless @project && @project == i.project %>
|
|
<%= link_to_version i%>
|
|
</span>
|
|
<% end %>
|
|
<% end %>
|
|
</td>
|
|
<%= '</tr><tr>'.html_safe if day.cwday==calendar.last_wday and day!=calendar.enddt %>
|
|
<% day = day + 1
|
|
end %>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|