OSDN Git Service

Project tab added. activities, team, snippets moved to project tab
authorDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>
Wed, 28 Dec 2011 07:38:50 +0000 (09:38 +0200)
committerDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>
Wed, 28 Dec 2011 07:38:50 +0000 (09:38 +0200)
12 files changed:
app/assets/stylesheets/projects.css.scss
app/controllers/projects_controller.rb
app/views/dashboard/_sidebar.html.haml
app/views/layouts/project.html.haml
app/views/projects/_project_head.html.haml [new file with mode: 0644]
app/views/projects/_tile.html.haml
app/views/projects/activities.html.haml [new file with mode: 0644]
app/views/projects/files.html.haml [new file with mode: 0644]
app/views/projects/show.html.haml
app/views/projects/team.html.haml
app/views/snippets/index.html.haml
config/routes.rb

index 33d70e3..f73c063 100644 (file)
@@ -561,6 +561,7 @@ h4.middle-panel {
   display:none;
 }
 
+
 .merge-tabs { 
   margin: 0; 
   border: 1px solid #ccc; 
@@ -576,7 +577,7 @@ h4.middle-panel {
     border-right: 1px solid #ddd;
     background:none;
     padding: 10px;
-    width:60px;
+    min-width:60px;
     float:left;
     position:relative;
     top:-5px;
@@ -598,6 +599,9 @@ h4.middle-panel {
     }
   }
 }
+.activities-tab span {  background: url("images.png") no-repeat -161px -1px; } 
+.stat-tab, .team-tab, .snippets-tab span {  background: url("images.png") no-repeat -38px -77px; } 
+.files-tab span {  background: url("images.png") no-repeat -112px -23px; } 
 
 .merge-notes-tab span {  background: url("images.png") no-repeat -161px -1px; } 
 .merge-commits-tab span {  background: url("images.png") no-repeat -86px 1px; } 
index 4b4f748..02495a2 100644 (file)
@@ -67,6 +67,13 @@ class ProjectsController < ApplicationController
   end
 
   def show
+  end
+
+  def files
+    @notes = @project.notes.where("attachment != 'NULL'").order("created_at DESC")
+  end
+
+  def activities
     return render "projects/empty" unless @project.repo_exists? && @project.has_commits?
     limit = (params[:limit] || 20).to_i
     @activities = @project.cached_updates(limit)
index 9f6378b..dfe4abd 100644 (file)
@@ -6,7 +6,7 @@
   %ol.project-list
     - @projects.each do |project|
       %li
-        %a{:href => project_path(project)}
+        %a{:href => activities_project_path(project)}
           %span.arrow →
           %span.project-name= project.name
           %span.time
index 5de97b5..44cd127 100644 (file)
         .project-sidebar
           .fixed
             %aside
-              = link_to "Activities", project_path(@project), :class => current_page?(:controller => "projects", :action => "show", :id => @project) ? "current" : nil
+              = link_to "Project", project_path(@project), :class => (current_page?(:controller => "projects", :action => "activities", :id => @project) || controller.controller_name == "snippets" || current_page?(:controller => "projects", :action => "team", :id => @project) || controller.controller_name == "team_members" || current_page?(project_path(@project))) ? "current" : nil
               = link_to "Tree", tree_project_ref_path(@project,  @project.root_ref), :class => current_page?(:controller => "refs", :action => "tree", :project_id => @project, :id => @ref || @project.root_ref ) ? "current" : nil
               = link_to "Commits", project_commits_path(@project), :class => current_page?(:controller => "commits", :action => "index", :project_id => @project) ? "current" : nil
               = link_to "Network graph", graph_project_path(@project), :class => current_page?(:controller => "projects", :action => "graph", :id => @project) ? "current" : nil
-              = link_to team_project_path(@project), :class => (current_page?(:controller => "projects", :action => "team", :id => @project) || controller.controller_name == "team_members") ? "current" : nil do
-                Team
-                - if @project.users_projects.count > 0
-                  %span{ :class => "number" }= @project.users_projects.count
               = link_to  project_issues_filter_path(@project), :class => (controller.controller_name == "issues") ? "current" : nil do
                 Issues
                 - if @project.issues.open_for(current_user).count > 0
                 Merge Requests
                 - if @project.merge_requests.opened.count > 0
                   %span{ :class => "number" }= @project.merge_requests.opened.count
-              = link_to project_snippets_path(@project), :class => (controller.controller_name == "snippets") ? "current" : nil do
-                Snippets
-                - if @project.snippets.non_expired.count > 0
-                  %span{ :class => "number" }= @project.snippets.non_expired.count
 
-              - if can? current_user, :admin_project, @project
-                = link_to "Admin", edit_project_path(@project), :class => (current_page?(edit_project_path(@project))) ? "current" : nil
 
             .medium-tags{:style => 'padding: 10px 0 0 10px; width: 210px;'}= tag_list @project
 
diff --git a/app/views/projects/_project_head.html.haml b/app/views/projects/_project_head.html.haml
new file mode 100644 (file)
index 0000000..c9aab4f
--- /dev/null
@@ -0,0 +1,27 @@
+%div
+  -#- if can? current_user, :admin_project, @project
+    -#%span.entity-info
+      -#= link_to edit_project_path(@project) do 
+        -#.entity-button
+          -#Edit Project
+          -#%i
+
+  -#%h2= @project.name
+.merge-tabs
+  = link_to activities_project_path(@project), :class => "activities-tab tab #{'active' if current_page?(activities_project_path(@project)) }" do 
+    %span
+    Activities
+  = link_to project_path(@project), :class => "stat-tab tab" do 
+    %span
+    Info
+  = link_to team_project_path(@project), :class => "team-tab tab" do 
+    %span 
+    Team
+  = link_to files_project_path(@project), :class => "files-tab tab" do 
+    %span
+    Files
+  = link_to project_snippets_path(@project), :class => "snippets-tab tab" do 
+    %span
+    Snippets
+
+
index d954904..8d0ad21 100644 (file)
@@ -2,7 +2,7 @@
   - projects.each_with_index do |project, i|
     %div.grid_1.projects_selector
       %div{ :class => "project-box ui-box ui-box-big" }
-        = link_to project_path(project) do
+        = link_to activities_project_path(project) do
           %h3= truncate(project.name, :length => 20)
         .data
           %p.title.repository.git_url_wrapper
diff --git a/app/views/projects/activities.html.haml b/app/views/projects/activities.html.haml
new file mode 100644 (file)
index 0000000..bbc31a5
--- /dev/null
@@ -0,0 +1,13 @@
+- content_for(:body_class, "project-page dashboard")
+
+= render "project_head"
+#news-feed.news-feed
+  .project-box.project-updates.ui-box.ui-box-small.ui-box-big
+    - @activities.each do |update|
+      = render "projects/feed", :update => update, :project => @project
+
+:javascript
+  function updateDashboard(){
+    $('.project-content').load("#{escape_javascript(project_path(@project))} .project-content>*");
+  }
+  setInterval("updateDashboard()", 300000);
diff --git a/app/views/projects/files.html.haml b/app/views/projects/files.html.haml
new file mode 100644 (file)
index 0000000..8bc7034
--- /dev/null
@@ -0,0 +1,15 @@
+= render "project_head"
+%div{ :class => "update-data ui-box ui-box-small ui-box-big" }
+  .data
+    - @notes.each do |note|
+      %a.update-item{:href => note.attachment.url}
+        = image_tag gravatar_icon(note.author_email), :class => "left", :width => 16
+        %span.update-title{:style => "margin-bottom:0px;"}
+          = note.attachment_identifier
+          %span.update-author.right
+            Added
+            = time_ago_in_words(note.created_at)
+            ago
+
+
+
index 0530736..bc78e99 100644 (file)
@@ -1,15 +1,6 @@
-- content_for(:body_class, "project-page dashboard")
+= render "project_head"
+.stats
+  - unless @project.description.empty?
+    %h3= simple_format @project.description
 
-#news-feed.news-feed
-  %h2.icon
-    %span>
-    Activities
-  .project-box.project-updates.ui-box.ui-box-small.ui-box-big
-    - @activities.each do |update|
-      = render "projects/feed", :update => update, :project => @project
 
-:javascript
-  function updateDashboard(){
-    $('.project-content').load("#{escape_javascript(project_path(@project))} .project-content>*");
-  }
-  setInterval("updateDashboard()", 300000);
index 3b2c4b3..41afc45 100644 (file)
@@ -1,3 +1,4 @@
+= render "project_head"
 %div
   = render :partial => "team", :locals => {:project => @project}
 
index f08a3d1..0c83bf9 100644 (file)
@@ -1,3 +1,4 @@
+= render "projects/project_head"
 %h2.icon
   %span>
   Snippets
index bf9fe95..2812b15 100644 (file)
@@ -42,6 +42,10 @@ Gitlab::Application.routes.draw do
       get "team"
       get "wall"
       get "graph"
+      get "activities"
+      get "branches"
+      get "tags"
+      get "files"
     end
 
     resources :refs, :only => [], :path => "/" do