##// END OF EJS Templates
Moves ProjectsController#add_version to VersionsController#new....
Moves ProjectsController#add_version to VersionsController#new. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3548 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2744:5b975706932d
r3434:729bea1cf38e
Show More
show.rhtml
38 lines | 1.4 KiB | text/html+ruby | RhtmlLexer
Eric Davis
Added hook :view_repositories_show_contextual to allow adding items to the...
r1946 <%= call_hook(:view_repositories_show_contextual, { :repository => @repository, :project => @project }) %>
Jean-Philippe Lang
Adds a field on the repository view to browse at specific revision (#1443)....
r1540
Eric Davis
Added branch and tag support to the git repository viewer. (#1406)...
r2735 <div class="contextual">
<%= render :partial => 'navigation' %>
Jean-Philippe Lang
added simple svn statistics graphs, rendered using SVG::Graph...
r377 </div>
Eric Davis
Added branch and tag support to the git repository viewer. (#1406)...
r2735 <h2><%= render :partial => 'breadcrumbs', :locals => { :path => @path, :kind => 'dir', :revision => @rev } %></h2>
Jean-Philippe Lang
svn browser merged in trunk...
r103
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <% if !@entries.nil? && authorize_for('repositories', 'browse') %>
Jean-Philippe Lang
XHTML compliance improvements...
r147 <%= render :partial => 'dir_list' %>
Jean-Philippe Lang
Added basic support for CVS and Mercurial SCMs....
r556 <% end %>
Jean-Philippe Lang
XHTML compliance improvements...
r147
Jean-Philippe Lang
SCM browser:...
r2738 <%= render_properties(@properties) %>
<% if @changesets && !@changesets.empty? && authorize_for('repositories', 'revisions') %>
Jean-Philippe Lang
SVN commits are now stored in the database, and added to the activity view and the search engine....
r374 <h3><%= l(:label_latest_revision_plural) %></h3>
Jean-Philippe Lang
SCM:...
r2744 <%= render :partial => 'revisions', :locals => {:project => @project, :path => @path, :revisions => @changesets, :entry => nil }%>
<% if @path.blank? %>
<p><%= link_to l(:label_view_all_revisions), :action => 'revisions', :id => @project %></p>
<% else %>
<p><%= link_to l(:label_view_revisions), :action => 'changes', :path => to_path_param(@path), :id => @project %></p>
<% end %>
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <% content_for :header_tags do %>
<%= auto_discovery_link_tag(:atom, params.merge({:format => 'atom', :action => 'revisions', :id => @project, :page => nil, :key => User.current.rss_key})) %>
<% end %>
Jean-Philippe Lang
Adds an helper to render other formats download links....
r2331
<% other_formats_links do |f| %>
<%= f.link_to 'Atom', :url => {:action => 'revisions', :id => @project, :key => User.current.rss_key} %>
<% end %>
Jean-Philippe Lang
SVN commits are now stored in the database, and added to the activity view and the search engine....
r374 <% end %>
Jean-Philippe Lang
XHTML compliance improvements...
r147 <% content_for :header_tags do %>
<%= stylesheet_link_tag "scm" %>
Jean-Philippe Lang
Added basic support for CVS and Mercurial SCMs....
r556 <% end %>
Jean-Philippe Lang
More detailed html title on several views....
r951
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(l(:label_repository)) -%>