mirror of
https://github.com/meineerde/redmine.git
synced 2026-03-02 15:31:49 +00:00
New commits are automatically retrieved and stored when consulting the repository in the app. This behaviour can be disabled by unchecking 'Autofecth commits' in configuration settings. Commits can be fetched offline by running (recommanded at least for the initial import of past commits): ruby script/runner "Repository.fetch_changesets" It will load commits for all of the repositories. git-svn-id: http://redmine.rubyforge.org/svn/trunk@377 e93f8b46-1217-0410-a6f0-8f06a7374b81
22 lines
854 B
Plaintext
22 lines
854 B
Plaintext
<div class="contextual">
|
|
<% form_tag do %>
|
|
<p><%= l(:label_revision) %>: <%= text_field_tag 'rev', @rev, :size => 5 %>
|
|
<%= submit_tag 'OK' %></p>
|
|
<% end %>
|
|
</div>
|
|
|
|
<h2><%= render :partial => 'navigation', :locals => { :path => @path, :kind => (@entry ? @entry.kind : nil), :revision => @rev } %></h2>
|
|
|
|
<% if @entry && @entry.is_file? %>
|
|
<h3><%=h @entry.name %></h3>
|
|
<p><%= link_to 'Download', {:action => 'entry', :id => @project, :path => @path, :rev => @rev, :format => 'raw' }, :class => "icon file" %> (<%= number_to_human_size @entry.size %>)</p>
|
|
<% end %>
|
|
|
|
<h3>Revisions</h3>
|
|
|
|
<%= render :partial => 'revisions', :locals => {:project => @project, :path => @path, :changesets => @changesets, :entry => @entry }%>
|
|
<p><%= lwr(:label_modification, @changesets.length) %></p>
|
|
|
|
<% content_for :header_tags do %>
|
|
<%= stylesheet_link_tag "scm" %>
|
|
<% end %> |