##// END OF EJS Templates
scm: git: explicitly return string as default branch (#10207)...
scm: git: explicitly return string as default branch (#10207) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8857 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8530:1bd5e58c8478
r8737:58996e891ef7
Show More
_changesets.html.erb
10 lines | 460 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') %>">
Jean-Philippe Lang
Adds support for multiple repositories per project (#779)....
r8530 <p><%= link_to_revision(changeset, changeset.repository,
Toshi MARUYAMA
Fix associated revisions label on issue page....
r4532 :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 %>