repo tab added. activities page for repo
This commit is contained in:
parent
e33aab0b21
commit
0ae9ac155c
14
app/controllers/repositories_controller.rb
Normal file
14
app/controllers/repositories_controller.rb
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
class RepositoriesController < ApplicationController
|
||||||
|
before_filter :project
|
||||||
|
|
||||||
|
# Authorize
|
||||||
|
before_filter :add_project_abilities
|
||||||
|
before_filter :authorize_read_project!
|
||||||
|
before_filter :require_non_empty_project
|
||||||
|
|
||||||
|
layout "project"
|
||||||
|
|
||||||
|
def show
|
||||||
|
@activities = @project.fresh_commits(20)
|
||||||
|
end
|
||||||
|
end
|
|
@ -33,4 +33,10 @@ module ProjectsHelper
|
||||||
:project_id => @project,
|
:project_id => @project,
|
||||||
:id => @ref || @project.root_ref ) ? "current" : nil
|
:id => @ref || @project.root_ref ) ? "current" : nil
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def repository_tab_class
|
||||||
|
if controller.controller_name == "repositories"
|
||||||
|
"current"
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
.fixed
|
.fixed
|
||||||
%aside
|
%aside
|
||||||
= link_to "Project", project_path(@project), :class => project_tab_class
|
= link_to "Project", project_path(@project), :class => project_tab_class
|
||||||
|
= link_to "Repository", project_repository_path(@project), :class => repository_tab_class
|
||||||
= link_to "Tree", tree_project_ref_path(@project, @project.root_ref), :class => tree_tab_class
|
= link_to "Tree", tree_project_ref_path(@project, @project.root_ref), :class => tree_tab_class
|
||||||
= link_to "Commits", project_commits_path(@project), :class => current_page?(:controller => "commits", :action => "index", :project_id => @project) ? "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 "Network graph", graph_project_path(@project), :class => current_page?(:controller => "projects", :action => "graph", :id => @project) ? "current" : nil
|
||||||
|
|
19
app/views/repositories/_head.html.haml
Normal file
19
app/views/repositories/_head.html.haml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
.merge-tabs.repository
|
||||||
|
= link_to project_repository_path(@project), :class => "tab #{'active' if current_page?(project_repository_path(@project)) }" do
|
||||||
|
%span
|
||||||
|
Activities
|
||||||
|
= link_to "#", :class => "tab" do
|
||||||
|
%span
|
||||||
|
Branches
|
||||||
|
= link_to "#", :class => "tab" do
|
||||||
|
%span
|
||||||
|
Tags
|
||||||
|
= link_to "#", :class => "tab" do
|
||||||
|
%span
|
||||||
|
Hooks
|
||||||
|
= link_to "#", :class => "tab" do
|
||||||
|
%span
|
||||||
|
Deploy Keys
|
||||||
|
|
||||||
|
|
||||||
|
|
7
app/views/repositories/show.html.haml
Normal file
7
app/views/repositories/show.html.haml
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
- content_for(:body_class, "project-page dashboard")
|
||||||
|
= render "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
|
|
@ -46,6 +46,8 @@ Gitlab::Application.routes.draw do
|
||||||
get "files"
|
get "files"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
resource :repository
|
||||||
|
|
||||||
resources :refs, :only => [], :path => "/" do
|
resources :refs, :only => [], :path => "/" do
|
||||||
collection do
|
collection do
|
||||||
get "switch"
|
get "switch"
|
||||||
|
|
Loading…
Reference in a new issue