##// END OF EJS Templates
scm: git: add "--no-decorate" option in "git log"....
scm: git: add "--no-decorate" option in "git log". git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5334 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r5180:7bca8c42121a
r5214:00277a2a0a1b
Show More
_changesets.rhtml
10 lines | 457 B | text/html+ruby | RhtmlLexer
/ app / views / issues / _changesets.rhtml
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 %>