##// END OF EJS Templates
Replaces find(:first) calls....
Replaces find(:first) calls. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10930 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9346:5e57a1a9d947
r10703:a7023dfa9b8e
Show More
_navigation.html.erb
34 lines | 1.2 KiB | text/plain | TextLexer
Eric Davis
Added branch and tag support to the git repository viewer. (#1406)...
r2735 <% content_for :header_tags do %>
<%= javascript_include_tag 'repository_navigation' %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
Toshi MARUYAMA
code layout cleanup app/views/repositories/_navigation.html.erb...
r8352 <%= link_to l(:label_statistics),
Jean-Philippe Lang
Adds support for multiple repositories per project (#779)....
r8530 {:action => 'stats', :id => @project, :repository_id => @repository.identifier_param},
Jean-Philippe Lang
Do not show revisions links and field on filesystem repositories....
r8545 :class => 'icon icon-stats' if @repository.supports_all_revisions? %>
Eric Davis
Added branch and tag support to the git repository viewer. (#1406)...
r2735
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_tag({:action => controller.action_name,
Toshi MARUYAMA
code layout cleanup app/views/repositories/_navigation.html.erb...
r8352 :id => @project,
Jean-Philippe Lang
Adds support for multiple repositories per project (#779)....
r8530 :repository_id => @repository.identifier_param,
Toshi MARUYAMA
code layout cleanup app/views/repositories/_navigation.html.erb...
r8352 :path => to_path_param(@path),
Jean-Philippe Lang
Fixed: Git: Mercurial: Branch dropdown broken on repositories page (#10026)....
r8558 :rev => nil},
Toshi MARUYAMA
code layout cleanup app/views/repositories/_navigation.html.erb...
r8352 {:method => :get, :id => 'revision_selector'}) do -%>
Eric Davis
Added branch and tag support to the git repository viewer. (#1406)...
r2735 <!-- Branches Dropdown -->
<% if !@repository.branches.nil? && @repository.branches.length > 0 -%>
| <%= l(:label_branch) %>:
Toshi MARUYAMA
code layout cleanup app/views/repositories/_navigation.html.erb...
r8352 <%= select_tag :branch,
options_for_select([''] + @repository.branches, @rev),
:id => 'branch' %>
Eric Davis
Added branch and tag support to the git repository viewer. (#1406)...
r2735 <% end -%>
<% if !@repository.tags.nil? && @repository.tags.length > 0 -%>
| <%= l(:label_tag) %>:
Toshi MARUYAMA
code layout cleanup app/views/repositories/_navigation.html.erb...
r8352 <%= select_tag :tag,
options_for_select([''] + @repository.tags, @rev),
:id => 'tag' %>
Eric Davis
Added branch and tag support to the git repository viewer. (#1406)...
r2735 <% end -%>
Jean-Philippe Lang
Slight improvements to the browser views....
r1019
Jean-Philippe Lang
Do not show revisions links and field on filesystem repositories....
r8545 <% if @repository.supports_all_revisions? %>
| <%= l(:label_revision) %>:
<%= text_field_tag 'rev', @rev, :size => 8 %>
<% end %>
Eric Davis
Added branch and tag support to the git repository viewer. (#1406)...
r2735 <% end -%>