OSDN Git Service

cleaning dashboard & tags
authorDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>
Mon, 23 Jan 2012 07:54:47 +0000 (09:54 +0200)
committerDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>
Mon, 23 Jan 2012 07:54:47 +0000 (09:54 +0200)
app/controllers/tags_controller.rb [deleted file]
app/views/dashboard/_menu.html.haml [deleted file]
app/views/dashboard/index.html.haml
app/views/dashboard/issues.html.haml
app/views/dashboard/merge_requests.html.haml
app/views/tags/index.html.haml [deleted file]
config/routes.rb
db/schema.rb

diff --git a/app/controllers/tags_controller.rb b/app/controllers/tags_controller.rb
deleted file mode 100644 (file)
index 938beb6..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-class TagsController < ApplicationController
-  def index
-    @tags = Project.tag_counts.order('count DESC')
-    @tags = @tags.where('name like ?', "%#{params[:term]}%") unless params[:term].blank?
-
-    respond_to do |format|
-      format.html
-      format.json { render json: @tags.limit(8).map {|t| t.name}}
-    end
-  end
-end
diff --git a/app/views/dashboard/_menu.html.haml b/app/views/dashboard/_menu.html.haml
deleted file mode 100644 (file)
index 73d4149..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
--#%h4.dash-tabs
-  = link_to "Activities", dashboard_path, :remote => true, :class => "dash-button #{"active" if current_page?(dashboard_path) || current_page?(root_path) }", :id => "activities_slide"
-  = link_to "Issues", dashboard_issues_path, :remote => true, :class => "dash-button #{"active" if current_page?(dashboard_issues_path)}", :id => "issues_slide"
-  = link_to "Merge Requests", dashboard_merge_requests_path, :remote => true, :class => "dash-button #{"active" if current_page?(dashboard_merge_requests_path)}", :id => "merge_requests_slide"
-  = image_tag "ajax-loader-facebook.gif", :class => "dashboard-loader"
-
-:javascript 
-  $(function(){
-    $(".dash-button").live("click", function() { 
-      $(".dash-button").removeClass("active");
-      $(this).addClass("active");
-    });
-
-    $(".dash-button").live("ajax:before", function() { 
-      $(".dashboard-loader").show();
-    });
-
-    $(".dash-button").live("ajax:complete", function() { 
-      $(".dashboard-loader").hide();
-    });
-  });
index 7f6beff..b3de30f 100644 (file)
@@ -2,5 +2,4 @@
 
 #dashboard-content.dashboard-content.content
   = render "dashboard/sidebar"
-  = render "dashboard/menu"
   #news-feed.news-feed= render "dashboard/projects_feed"
index 4b7af96..063183e 100644 (file)
@@ -2,5 +2,4 @@
 
 #dashboard-content.dashboard-content.content
   = render "dashboard/sidebar"
-  = render "dashboard/menu"
   #news-feed.news-feed= render "dashboard/issues_feed"
index 3497062..088577e 100644 (file)
@@ -2,5 +2,4 @@
 
 #dashboard-content.dashboard-content.content
   = render "dashboard/sidebar"
-  = render "dashboard/menu"
   #news-feed.news-feed= render "dashboard/merge_requests_feed"
diff --git a/app/views/tags/index.html.haml b/app/views/tags/index.html.haml
deleted file mode 100644 (file)
index b7f422a..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-- content_for(:body_class, "projects-page")
-- content_for(:page_title) do
-  .grid_4
-    %h2
-      Tags
-
-  .tags-list
-    - @tags.all.each do |tag|
-      = link_to "#{tag.name}(#{tag.count})", tag_path(name)
-
index b8149f8..bb57535 100644 (file)
@@ -4,8 +4,6 @@ Gitlab::Application.routes.draw do
   require 'resque/server'
   mount Resque::Server.new, at: '/info/resque'
 
-  get 'tags'=> 'tags#index'
-  get 'tags/:tag' => 'projects#index'
   get 'help' => 'help#index'
 
   namespace :admin do
index 3e7866f..2d89191 100644 (file)
 
 ActiveRecord::Schema.define(:version => 20120121122616) do
 
-  create_table "features", :force => true do |t|
-    t.string   "name"
-    t.string   "branch_name"
-    t.integer  "assignee_id"
-    t.integer  "author_id"
-    t.integer  "project_id"
-    t.datetime "created_at"
-    t.datetime "updated_at"
-    t.string   "version"
-    t.integer  "status",      :default => 0, :null => false
-  end
-
   create_table "issues", :force => true do |t|
     t.string   "title"
     t.integer  "assignee_id"