summaryrefslogtreecommitdiff
path: root/app/views/public/projects
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-09-24 16:00:21 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-09-24 16:00:21 +0300
commitffd0a985ee86691ddb4807cf9be267bdd37c7815 (patch)
tree51747a334629aa8e441861141708c71d4ea522ca /app/views/public/projects
parent66998f6d46ee778e6bde749e41f1d712b184a771 (diff)
downloadgitlab-ce-ffd0a985ee86691ddb4807cf9be267bdd37c7815.tar.gz
Point to project page from public area
Diffstat (limited to 'app/views/public/projects')
-rw-r--r--app/views/public/projects/_tree.html.haml5
-rw-r--r--app/views/public/projects/index.html.haml2
-rw-r--r--app/views/public/projects/show.html.haml49
3 files changed, 1 insertions, 55 deletions
diff --git a/app/views/public/projects/_tree.html.haml b/app/views/public/projects/_tree.html.haml
deleted file mode 100644
index bd09c236a0b..00000000000
--- a/app/views/public/projects/_tree.html.haml
+++ /dev/null
@@ -1,5 +0,0 @@
-- if tree.readme
- = render "projects/tree/readme", readme: tree.readme
-- else
- .alert
- %h3.nothing_here_message This project does not have README file
diff --git a/app/views/public/projects/index.html.haml b/app/views/public/projects/index.html.haml
index 7dbe560e7fc..bea99b54ef7 100644
--- a/app/views/public/projects/index.html.haml
+++ b/app/views/public/projects/index.html.haml
@@ -17,7 +17,7 @@
%li
.project-title
%i.icon-share.cgray
- = link_to public_project_path(project) do
+ = link_to project_path(project) do
%strong= project.name_with_namespace
.pull-right
%pre.public-clone git clone #{project.http_url_to_repo}
diff --git a/app/views/public/projects/show.html.haml b/app/views/public/projects/show.html.haml
deleted file mode 100644
index 195b9bc07d2..00000000000
--- a/app/views/public/projects/show.html.haml
+++ /dev/null
@@ -1,49 +0,0 @@
-%h3.page-title
- = @project.name_with_namespace
- .pull-right
- %pre.public-clone git clone #{@project.http_url_to_repo}
- .pull-right
- - if current_user
- = link_to 'Browse project', @project, class: 'btn btn-create append-right-10'
-
-
-%div
- = link_to public_root_path do
- &larr; To projects list
- .pull-right
- %span.light= @project.description
-
-%br
-.row
- - unless @project.empty_repo?
- .span9
- = render 'tree', tree: @tree
- .span3
- %h5 Repository:
- %div
- %p
- %span.light Bare size is
- #{@project.repository.size} MB
-
- %p
- = pluralize(@repository.round_commit_count, 'commit')
- %p
- = pluralize(@repository.branch_names.count, 'branch')
- %p
- = pluralize(@repository.tag_names.count, 'tag')
-
- - if @recent_tags.present?
- %hr
- %h5 Most Recent Tags:
- %ul.unstyled
- - @recent_tags.each do |tag|
- %li
- %p
- %i.icon-tag
- %strong= tag.name
- %small.light.pull-right
- %i.icon-calendar
- = time_ago_in_words(tag.commit.committed_date)
- ago
- - else
- = 'Empty Repository'