##// END OF EJS Templates
Fixed an error when downloading gantt png at global level....
Fixed an error when downloading gantt png at global level. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2332 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1946:48ae6f38e121
r2330:bf76988ebc3e
Show More
show.rhtml
35 lines | 1.5 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
added simple svn statistics graphs, rendered using SVG::Graph...
r377 <div class="contextual">
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
added simple svn statistics graphs, rendered using SVG::Graph...
r377 <%= link_to l(:label_statistics), {:action => 'stats', :id => @project}, :class => 'icon icon-stats' %>
Jean-Philippe Lang
Adds a field on the repository view to browse at specific revision (#1443)....
r1540
<% if !@entries.nil? && authorize_for('repositories', 'browse') -%>
<% form_tag(:action => 'browse', :id => @project) do -%>
| <%= l(:label_revision) %>: <%= text_field_tag 'rev', @rev, :size => 5 %>
<% end -%>
<% end -%>
Jean-Philippe Lang
added simple svn statistics graphs, rendered using SVG::Graph...
r377 </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
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
Adds links to changesets atom feed on repository browser (#1873)....
r1800 <p class="other-formats">
<%= l(:label_export_to) %>
<span><%= link_to 'Atom', {:action => 'revisions', :id => @project, :format => 'atom', :key => User.current.rss_key}, :class => 'feed' %></span>
</p>
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)) -%>