##// END OF EJS Templates
remove trailing white-spaces from app/views/mailer/wiki_content_added.text.plain.rhtml...
remove trailing white-spaces from app/views/mailer/wiki_content_added.text.plain.rhtml git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7314 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7149:de288bc1fe13
r7194:be7b00fc32d4
Show More
_calendar.html.erb
32 lines | 1.2 KiB | text/plain | TextLexer
/ app / views / common / _calendar.html.erb
Jean-Philippe Lang
Calendar:...
r804 <table class="cal">
<thead>
Eric Davis
Updated the project calendar for greater accessibility....
r3655 <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>
Jean-Philippe Lang
Calendar:...
r804 </thead>
<tbody>
<tr>
<% day = calendar.startdt
while day <= calendar.enddt %>
Eric Davis
Display the correct ISO week number on the project calendar....
r3676 <%= "<td class='week-number' title='#{ l(:label_week) }'>#{(day+(11-day.cwday)%7).cweek}</td>" if day.cwday == calendar.first_wday %>
Jean-Philippe Lang
Calendar:...
r804 <td class="<%= day.month==calendar.month ? 'even' : 'odd' %><%= ' today' if Date.today == day %>">
<p class="day-num"><%= day.day %></p>
<% calendar.events_on(day).each do |i| %>
<% if i.is_a? Issue %>
Jean-Philippe Lang
Move hardcoded calendar images to css classes....
r3363 <div class="<%= i.css_classes %> <%= 'starting' if day == i.start_date %> <%= 'ending' if day == i.due_date %> tooltip">
Jean-Philippe Lang
Include subprojects versions on calendar and gantt (#1116)....
r1349 <%= h("#{i.project} -") unless @project && @project == i.project %>
Jean-Philippe Lang
Refactoring ApplicationHelper#link_to_issue....
r2926 <%= link_to_issue i, :truncate => 30 %>
Jean-Philippe Lang
Calendar:...
r804 <span class="tip"><%= render_issue_tooltip i %></span>
</div>
<% else %>
Toshi MARUYAMA
remove trailing white-spaces from app/views/common/_calendar.html.erb...
r7149 <span class="icon icon-package">
Jean-Philippe Lang
Include subprojects versions on calendar and gantt (#1116)....
r1349 <%= h("#{i.project} -") unless @project && @project == i.project %>
<%= link_to_version i%>
</span>
Jean-Philippe Lang
Calendar:...
r804 <% end %>
<% end %>
</td>
<%= '</tr><tr>' if day.cwday==calendar.last_wday and day!=calendar.enddt %>
<% day = day + 1
end %>
</tr>
</tbody>
</table>