diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-04-14 11:20:45 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-04-14 11:20:45 +0300 |
commit | 95fde9bd7a1fb0a902c33f03f641909043df4125 (patch) | |
tree | 4444cc609b2d0ec6b6ecae36d498e9a72b27a735 /app/views | |
parent | 5f31989a0501c12ae609709f8707841ec3fc7e31 (diff) | |
download | gitlab-ce-95fde9bd7a1fb0a902c33f03f641909043df4125.tar.gz |
Projects page as dashboard. Old dashboard removed
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/dashboard/_issues.html.haml | 17 | ||||
-rw-r--r-- | app/views/dashboard/_issues_feed.html.haml | 12 | ||||
-rw-r--r-- | app/views/dashboard/_merge_requests.html.haml | 20 | ||||
-rw-r--r-- | app/views/dashboard/_merge_requests_feed.html.haml | 11 | ||||
-rw-r--r-- | app/views/dashboard/_projects.html.haml | 22 | ||||
-rw-r--r-- | app/views/dashboard/_projects_feed.html.haml | 15 | ||||
-rw-r--r-- | app/views/dashboard/index.html.haml | 82 | ||||
-rw-r--r-- | app/views/layouts/_app_menu.html.haml | 1 | ||||
-rw-r--r-- | app/views/layouts/_const_menu_links.html.haml | 2 | ||||
-rw-r--r-- | app/views/projects/index.html.haml | 14 | ||||
-rw-r--r-- | app/views/search/show.html.haml | 3 |
11 files changed, 16 insertions, 183 deletions
diff --git a/app/views/dashboard/_issues.html.haml b/app/views/dashboard/_issues.html.haml deleted file mode 100644 index ea93840f289..00000000000 --- a/app/views/dashboard/_issues.html.haml +++ /dev/null @@ -1,17 +0,0 @@ -%div.ui-box - %h5 - = link_to "Issues" , "#issues", :id => "issues" - %small (assigned to you) - %ul.unstyled - - @issues.each do |issue| - %li.wll - = link_to [issue.project, issue] do - %p - %span.btn.disabled.small= issue.project.name - %strong - – - Issue # - = issue.id - = truncate issue.title, :length => 50 - %span.right.cgray - = issue.updated_at.stamp("Aug 21, 2011") diff --git a/app/views/dashboard/_issues_feed.html.haml b/app/views/dashboard/_issues_feed.html.haml deleted file mode 100644 index f85ec7213ab..00000000000 --- a/app/views/dashboard/_issues_feed.html.haml +++ /dev/null @@ -1,12 +0,0 @@ -- @issues.each do |issue| - .wll - = link_to [issue.project, issue] do - %p - %strong - %span= issue.project.name - – - Issue # - = issue.id - = truncate issue.title, :length => 50 - %span.right.cgray - = issue.updated_at.stamp("Aug 21, 2011") diff --git a/app/views/dashboard/_merge_requests.html.haml b/app/views/dashboard/_merge_requests.html.haml deleted file mode 100644 index a4174588a1b..00000000000 --- a/app/views/dashboard/_merge_requests.html.haml +++ /dev/null @@ -1,20 +0,0 @@ -%div.ui-box - %h5 - = link_to "5 Latest Merge Requests" , "#merge_requests", :id => "merge_requests" - %small (authored or assigned to you) - %ul.unstyled - - @merge_requests.each do |merge_request| - %li.wll - = link_to [merge_request.project, merge_request] do - %p - %span.btn.disabled.small= merge_request.project.name - %strong - – - Merge Request ##{merge_request.id} - = truncate merge_request.title, :length => 50 - %span.right.cgray - = merge_request.updated_at.stamp("Aug 21, 2011") - - %li.bottom - - diff --git a/app/views/dashboard/_merge_requests_feed.html.haml b/app/views/dashboard/_merge_requests_feed.html.haml deleted file mode 100644 index 8f8bad3307c..00000000000 --- a/app/views/dashboard/_merge_requests_feed.html.haml +++ /dev/null @@ -1,11 +0,0 @@ -- @merge_requests.each do |merge_request| - .wll - = link_to [merge_request.project, merge_request] do - %p - %strong - %strong= merge_request.project.name - – - Merge Request ##{merge_request.id} - = truncate merge_request.title, :length => 50 - %span.right.cgray - = merge_request.updated_at.stamp("Aug 21, 2011") diff --git a/app/views/dashboard/_projects.html.haml b/app/views/dashboard/_projects.html.haml deleted file mode 100644 index 97dab62fdbe..00000000000 --- a/app/views/dashboard/_projects.html.haml +++ /dev/null @@ -1,22 +0,0 @@ -%div - %h3 - %span.ico.projects - Projects - %small - (most recent) - %hr - %div.dash_projects - - projects.first(5).each do |project| - %div.dash_project - %h4 - = link_to project, :class => "project_link" do - = truncate project.name, :length => 30 - %small - last activity at - = project.last_activity_date.stamp("Aug 25, 2011") - - .right - %small - %strong= link_to "Browse Code »", tree_project_ref_path(project, project.root_ref), :class => "neib" - %strong= link_to "Commits »", project_commits_path(project) - diff --git a/app/views/dashboard/_projects_feed.html.haml b/app/views/dashboard/_projects_feed.html.haml deleted file mode 100644 index 479df952226..00000000000 --- a/app/views/dashboard/_projects_feed.html.haml +++ /dev/null @@ -1,15 +0,0 @@ -- projects.first(5).each do |project| - %div.dash_project_item - %h4 - = link_to project, :class => "project_link" do - %span.ico.project - = truncate project.name, :length => 24 - - %small - last activity at - = project.last_activity_date.stamp("Aug 25, 2011") - - .right - %small - %strong= link_to "Browse Code »", tree_project_ref_path(project, project.root_ref), :class => "neib gray" - %strong= link_to "Commits »", project_commits_path(project), :class => "gray" diff --git a/app/views/dashboard/index.html.haml b/app/views/dashboard/index.html.haml deleted file mode 100644 index 882bb58c547..00000000000 --- a/app/views/dashboard/index.html.haml +++ /dev/null @@ -1,82 +0,0 @@ -- if current_user.require_ssh_key? - .alert-message.block-message.error - %p - You wont be able to pull/push project code unless you - = link_to new_key_path, :class => "vlink" do - add new key - to your profile - -%div.dashboard_category - %h3 - %span.ico.projects - = link_to "Projects" , "#projects", :id => "projects" - %small - (most recent) - - %strong.right - = link_to projects_path do - Projects list → - %hr - .dashboard_block - .row - .span3.right - %div.lborder.ipadded - %h3 - = pluralize current_user.projects.count, "project", "projects" - - if current_user.can_create_project? - %hr - %div - You can create up to - = current_user.projects_limit - projects. Click on button below to add a new one - .link_holder - %br - = link_to new_project_path, :class => "btn" do - New Project » - - else - %hr - %div - You've reached project limit for your account. - You cannot create new projects. - .link_holder - %br - = link_to profile_path, :class => "btn" do - Your Profile » - .span9.left= render "dashboard/projects_feed", :projects => @active_projects - - if @last_push && @last_push.valid_push? - .padded.prepend-top-20 - %h5 - %small Latest push was to the #{@last_push.ref_name} #{@last_push.ref_type} of #{@last_push.project.name}: - %ul.unstyled= render @last_push - -- if @merge_requests.any? - %div.dashboard_category - %h3 - = link_to "Merge Requests" , "#merge_requests", :id => "merge_requests" - - %small (authored or assigned to you) - %strong.right - = link_to dashboard_merge_requests_path do - Visit merge requests page → - %hr - .dashboard_block= render "dashboard/merge_requests_feed" - -- if @issues.any? - %div.dashboard_category - %h3 - = link_to "Issues" , "#issues", :id => "issues" - %small (assigned to you) - %strong.right - = link_to dashboard_issues_path do - Visit issues page → - %hr - .dashboard_block= render "dashboard/issues_feed" - -- if @events.any? - %div.dashboard_category - %h3 - %span.ico.activities - = link_to "Activities" , "#activities", :id => "activities" - - %hr - .dashboard_block= render @events diff --git a/app/views/layouts/_app_menu.html.haml b/app/views/layouts/_app_menu.html.haml index b9249b525b0..50b5c92fcaf 100644 --- a/app/views/layouts/_app_menu.html.haml +++ b/app/views/layouts/_app_menu.html.haml @@ -1,6 +1,5 @@ %nav.main_menu = render "layouts/const_menu_links" - = link_to "Projects", projects_path, :class => "#{"current" if current_page?(projects_path)}" = link_to dashboard_issues_path, :class => "#{"current" if current_page?(dashboard_issues_path)}", :id => "issues_slide" do Issues %span.count= current_user.assigned_issues.opened.count diff --git a/app/views/layouts/_const_menu_links.html.haml b/app/views/layouts/_const_menu_links.html.haml index ffd028ec706..c0b971c2836 100644 --- a/app/views/layouts/_const_menu_links.html.haml +++ b/app/views/layouts/_const_menu_links.html.haml @@ -1 +1 @@ -= link_to "Home", root_path, :class => "home #{"current" if current_page?(dashboard_path) || current_page?(root_path)}", :title => "Home" += link_to "Home", root_path, :class => "home #{"current" if current_page?(projects_path) || current_page?(root_path)}", :title => "Home" diff --git a/app/views/projects/index.html.haml b/app/views/projects/index.html.haml index 68edd9b405c..d918259d883 100644 --- a/app/views/projects/index.html.haml +++ b/app/views/projects/index.html.haml @@ -1,7 +1,19 @@ - if @projects.any? .row .span8 - = render @events + - if current_user.require_ssh_key? + .alert.alert-error.padded + %span + You wont be able to pull/push project code unless you + %strong + = link_to new_key_path, :class => "vlink" do + add new key + to your profile + - if @events.any? + = render @events + - else + .padded + %strong.cgray Projects activity will be displayed here .span4.right %div.leftbar.ui-box %h5 diff --git a/app/views/search/show.html.haml b/app/views/search/show.html.haml index a7df49b9b4c..7ce47eccbeb 100644 --- a/app/views/search/show.html.haml +++ b/app/views/search/show.html.haml @@ -1,6 +1,7 @@ = form_tag search_path, :method => :get do |f| .padded - = label_tag :search, "Looking for" + = label_tag :search do + %strong Looking for .input = text_field_tag :search, params[:search],:placeholder => "issue 143", :class => "input-xxlarge" = submit_tag 'Search', :class => "btn btn-primary" |