##// END OF EJS Templates
Updated 1.3 CHANGELOG....
Updated 1.3 CHANGELOG. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.3-stable@9407 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r6885:bbbfaab9c77c
r9273:d85f8425d963
Show More
_changesets.html.erb
10 lines | 457 B | text/plain | TextLexer
/ app / views / issues / _changesets.html.erb
Jean-Philippe Lang
Added related changesets messages on issue details view....
r1071 <% changesets.each do |changeset| %>
Jean-Philippe Lang
Slight style changes on issue associated changesets list....
r1098 <div class="changeset <%= cycle('odd', 'even') %>">
Toshi MARUYAMA
Fix associated revisions label on issue page....
r4532 <p><%= link_to_revision(changeset, changeset.project,
:text => "#{l(:label_revision)} #{changeset.format_identifier}") %><br />
Jean-Philippe Lang
Maps repository users to Redmine users (#1383)....
r2004 <span class="author"><%= authoring(changeset.committed_on, changeset.author) %></span></p>
Jean-Philippe Lang
Removed the changeset-changes class to the commit logs on the issue view (#8038)....
r5180 <div class="wiki">
Azamat Hackimov
RTL theme for reference (thanks to Orgad Shaneh, #5972)...
r3784 <%= textilizable(changeset, :comments) %>
</div>
Jean-Philippe Lang
Slight style changes on issue associated changesets list....
r1098 </div>
Jean-Philippe Lang
Added related changesets messages on issue details view....
r1071 <% end %>