To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / repositories / entry.html.erb @ 1082:997f6d7738f7

History | View | Annotate | Download (611 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
   <em><%= l(:text_binary_data) %></em>
13
<% else %>
14
  <%= render :partial => 'common/file', :locals => {:filename => @path, :content => @content} %>
15
<% end %>
16 0:513646585e45 Chris
17
<% content_for :header_tags do %>
18
<%= stylesheet_link_tag "scm" %>
19
<% end %>