From: Toshi MARUYAMA Date: Tue, 23 Aug 2011 06:57:23 +0000 (+0000) Subject: rename .rhtml to .html.erb of app/views/repositories/show.rhtml X-Git-Tag: 1.3.0~1432 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=60e3a6481466da3d5c4d1fc1a7aa36bd0b75da23;p=redmine.git rename .rhtml to .html.erb of app/views/repositories/show.rhtml git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6529 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/repositories/show.html.erb b/app/views/repositories/show.html.erb new file mode 100644 index 000000000..fc148e8d1 --- /dev/null +++ b/app/views/repositories/show.html.erb @@ -0,0 +1,64 @@ +<%= call_hook(:view_repositories_show_contextual, { :repository => @repository, :project => @project }) %> + +
+ <%= render :partial => 'navigation' %> +
+ +

<%= render :partial => 'breadcrumbs', :locals => { :path => @path, :kind => 'dir', :revision => @rev } %>

+ +<% if !@entries.nil? && authorize_for('repositories', 'browse') %> +<%= render :partial => 'dir_list' %> +<% end %> + +<%= render_properties(@properties) %> + +<% if authorize_for('repositories', 'revisions') %> +<% if @changesets && !@changesets.empty? %> +

<%= l(:label_latest_revision_plural) %>

+<%= render :partial => 'revisions', + :locals => {:project => @project, :path => @path, + :revisions => @changesets, :entry => nil }%> +<% end %> +

+<% + has_branches = (!@repository.branches.nil? && @repository.branches.length > 0) + sep = '' + %> +<% if @repository.supports_all_revisions? && @path.blank? %> +<%= link_to l(:label_view_all_revisions), :action => 'revisions', :id => @project %> +<% sep = '|' %> +<% end %> +<% + if @repository.supports_directory_revisions? && + ( has_branches || !@path.blank? || !@rev.blank? ) + %> +<%= sep %> +<%= + link_to l(:label_view_revisions), + :action => 'changes', + :path => to_path_param(@path), + :id => @project, + :rev => @rev + %> +<% end %> +

+ +<% if true # @path.blank? %> +<% 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 %> + +<% other_formats_links do |f| %> + <%= f.link_to 'Atom', :url => {:action => 'revisions', :id => @project, :key => User.current.rss_key} %> +<% end %> +<% end %> +<% end %> + +<% content_for :header_tags do %> +<%= stylesheet_link_tag "scm" %> +<% end %> + +<% html_title(l(:label_repository)) -%> diff --git a/app/views/repositories/show.rhtml b/app/views/repositories/show.rhtml deleted file mode 100644 index fc148e8d1..000000000 --- a/app/views/repositories/show.rhtml +++ /dev/null @@ -1,64 +0,0 @@ -<%= call_hook(:view_repositories_show_contextual, { :repository => @repository, :project => @project }) %> - -
- <%= render :partial => 'navigation' %> -
- -

<%= render :partial => 'breadcrumbs', :locals => { :path => @path, :kind => 'dir', :revision => @rev } %>

- -<% if !@entries.nil? && authorize_for('repositories', 'browse') %> -<%= render :partial => 'dir_list' %> -<% end %> - -<%= render_properties(@properties) %> - -<% if authorize_for('repositories', 'revisions') %> -<% if @changesets && !@changesets.empty? %> -

<%= l(:label_latest_revision_plural) %>

-<%= render :partial => 'revisions', - :locals => {:project => @project, :path => @path, - :revisions => @changesets, :entry => nil }%> -<% end %> -

-<% - has_branches = (!@repository.branches.nil? && @repository.branches.length > 0) - sep = '' - %> -<% if @repository.supports_all_revisions? && @path.blank? %> -<%= link_to l(:label_view_all_revisions), :action => 'revisions', :id => @project %> -<% sep = '|' %> -<% end %> -<% - if @repository.supports_directory_revisions? && - ( has_branches || !@path.blank? || !@rev.blank? ) - %> -<%= sep %> -<%= - link_to l(:label_view_revisions), - :action => 'changes', - :path => to_path_param(@path), - :id => @project, - :rev => @rev - %> -<% end %> -

- -<% if true # @path.blank? %> -<% 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 %> - -<% other_formats_links do |f| %> - <%= f.link_to 'Atom', :url => {:action => 'revisions', :id => @project, :key => User.current.rss_key} %> -<% end %> -<% end %> -<% end %> - -<% content_for :header_tags do %> -<%= stylesheet_link_tag "scm" %> -<% end %> - -<% html_title(l(:label_repository)) -%>