##// END OF EJS Templates
Diff style (inline or side by side) automatically saved as a user preference....
Diff style (inline or side by side) automatically saved as a user preference. Fixed a Postgres test failure. git-svn-id: http://redmine.rubyforge.org/svn/trunk@893 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r663:603e11d7a5aa
r880:1454a711caf6
Show More
show.rhtml
23 lines | 985 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
added simple svn statistics graphs, rendered using SVG::Graph...
r377 <div class="contextual">
<%= link_to l(:label_statistics), {:action => 'stats', :id => @project}, :class => 'icon icon-stats' %>
</div>
Jean-Philippe Lang
Added basic support for CVS and Mercurial SCMs....
r556 <h2><%= l(:label_repository) %> (<%= @repository.scm_name %>)</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
svn browser merged in trunk...
r103 <h3><%= l(:label_browse) %></h3>
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
Merged 0.6 branch into trunk....
r663 <% if !@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
Added basic support for CVS and Mercurial SCMs....
r556 <%= render :partial => 'revisions', :locals => {:project => @project, :path => '', :revisions => @changesets, :entry => nil }%>
Jean-Philippe Lang
SVN commits are now stored in the database, and added to the activity view and the search engine....
r374 <p><%= link_to l(:label_view_revisions), :action => 'revisions', :id => @project %></p>
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
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 %>