##// END OF EJS Templates
Introduce virtual MenuNodes (#15880)....
Introduce virtual MenuNodes (#15880). They are characterized by having a blank url. they will only be rendered if the user is authorized to see at least one of its children. they render as links which do nothing when clicked. Patch by Jan Schulz-Hofen. git-svn-id: http://svn.redmine.org/redmine/trunk@15501 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r11406:7040a1212f2c
r15119:53710d80fc88
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 %>
Toshi MARUYAMA
replace tabs to spaces at app/views/repositories/_navigation.html.erb...
r11406 <% end %>
Eric Davis
Added branch and tag support to the git repository viewer. (#1406)...
r2735 <% end -%>