summaryrefslogtreecommitdiffstats
path: root/app/views/repositories
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2012-04-04 10:19:55 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2012-04-04 10:19:55 +0000
commit72590ea9979e15a0079aa5804ff156340ad0f491 (patch)
treed1fe9b4cc9ac183decc2c66c5e5a7a0f9749f28d /app/views/repositories
parenta5b480c62e507758045099e5e4496c90b16758e0 (diff)
downloadredmine-72590ea9979e15a0079aa5804ff156340ad0f491.tar.gz
redmine-72590ea9979e15a0079aa5804ff156340ad0f491.zip
code layout clean up app/views/repositories/show.html.erb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9319 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/repositories')
-rw-r--r--app/views/repositories/show.html.erb67
1 files changed, 32 insertions, 35 deletions
diff --git a/app/views/repositories/show.html.erb b/app/views/repositories/show.html.erb
index 3e5696cf9..bad555822 100644
--- a/app/views/repositories/show.html.erb
+++ b/app/views/repositories/show.html.erb
@@ -7,55 +7,51 @@
<h2><%= render :partial => 'breadcrumbs', :locals => { :path => @path, :kind => 'dir', :revision => @rev } %></h2>
<% if !@entries.nil? && authorize_for('repositories', 'browse') %>
-<%= render :partial => 'dir_list' %>
+ <%= render :partial => 'dir_list' %>
<% end %>
<%= render_properties(@properties) %>
<% if authorize_for('repositories', 'revisions') %>
-<% if @changesets && !@changesets.empty? %>
-<h3><%= l(:label_latest_revision_plural) %></h3>
-<%= render :partial => 'revisions',
+ <% if @changesets && !@changesets.empty? %>
+ <h3><%= l(:label_latest_revision_plural) %></h3>
+ <%= render :partial => 'revisions',
:locals => {:project => @project, :path => @path,
:revisions => @changesets, :entry => nil }%>
-<% end %>
-<p>
-<%
- 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, :repository_id => @repository.identifier_param %>
-<% sep = '|' %>
-<% end %>
-<%
- if @repository.supports_directory_revisions? &&
- ( has_branches || !@path.blank? || !@rev.blank? )
- %>
-<%= sep %>
-<%=
- link_to l(:label_view_revisions),
+ <% end %>
+ <p>
+ <% 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, :repository_id => @repository.identifier_param %>
+ <% 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,
:repository_id => @repository.identifier_param,
- :rev => @rev
- %>
-<% end %>
+ :rev => @rev %>
+ <% end %>
</p>
-
-<% if @repository.supports_all_revisions? %>
-<% content_for :header_tags do %>
- <%= auto_discovery_link_tag(
+ <% if @repository.supports_all_revisions? %>
+ <% 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 %>
+ <% end %>
-<% other_formats_links do |f| %>
- <%= f.link_to 'Atom', :url => {:action => 'revisions', :id => @project, :repository_id => @repository.identifier_param, :key => User.current.rss_key} %>
-<% end %>
-<% end %>
+ <% other_formats_links do |f| %>
+ <%= f.link_to 'Atom',
+ :url => {:action => 'revisions', :id => @project,
+ :repository_id => @repository.identifier_param,
+ :key => User.current.rss_key} %>
+ <% end %>
+ <% end %>
<% end %>
<% if @repositories.size > 1 %>
@@ -63,14 +59,15 @@
<h3><%= l(:label_repository_plural) %></h3>
<%= @repositories.sort.collect {|repo|
link_to h(repo.name),
- {:controller => 'repositories', :action => 'show', :id => @project, :repository_id => repo.identifier_param, :rev => nil, :path => nil},
+ {:controller => 'repositories', :action => 'show',
+ :id => @project, :repository_id => repo.identifier_param, :rev => nil, :path => nil},
:class => 'repository' + (repo == @repository ? ' selected' : '')
}.join('<br />').html_safe %></p>
<% end %>
<% end %>
<% content_for :header_tags do %>
-<%= stylesheet_link_tag "scm" %>
+ <%= stylesheet_link_tag "scm" %>
<% end %>
<% html_title(l(:label_repository)) -%>