To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / app / views / repositories / entry.html.erb @ 1083:0d837624e795
History | View | Annotate | Download (776 Bytes)
| 1 | 0:513646585e45 | Chris | <%= call_hook(:view_repositories_show_contextual, { :repository => @repository, :project => @project }) %>
|
|---|---|---|---|
| 2 | |||
| 3 | <div class="contextual"> |
||
| 4 | <%= render :partial => 'navigation' %>
|
||
| 5 | </div>
|
||
| 6 | |||
| 7 | <h2><%= render :partial => 'breadcrumbs', :locals => { :path => @path, :kind => 'file', :revision => @rev } %></h2> |
||
| 8 | |||
| 9 | <p><%= render :partial => 'link_to_functions' %></p> |
||
| 10 | |||
| 11 | 1082:997f6d7738f7 | chris | <% if @display_raw %>
|
| 12 | 1083:0d837624e795 | chris | <% if @content.size && @content.size > Setting.file_max_size_displayed.to_i.kilobyte %>
|
| 13 | <em><%= l(:text_data_too_large) %></em> |
||
| 14 | <% else %>
|
||
| 15 | <em><%= l(:text_binary_data) %></em> |
||
| 16 | <% end %>
|
||
| 17 | 1082:997f6d7738f7 | chris | <% else %>
|
| 18 | <%= render :partial => 'common/file', :locals => {:filename => @path, :content => @content} %>
|
||
| 19 | <% end %>
|
||
| 20 | 0:513646585e45 | Chris | |
| 21 | <% content_for :header_tags do %>
|
||
| 22 | <%= stylesheet_link_tag "scm" %>
|
||
| 23 | <% end %> |