Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tatuya Kamada
gitlab-ce
Commits
4107f2cc
Commit
4107f2cc
authored
Dec 08, 2011
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mixed dashboard - first try
parent
8e0126e9
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
125 additions
and
51 deletions
+125
-51
app/assets/stylesheets/projects.css.scss
app/assets/stylesheets/projects.css.scss
+1
-0
app/assets/stylesheets/style.scss
app/assets/stylesheets/style.scss
+1
-1
app/controllers/user_issues_controller.rb
app/controllers/user_issues_controller.rb
+1
-2
app/controllers/user_merge_requests_controller.rb
app/controllers/user_merge_requests_controller.rb
+1
-2
app/views/dashboard/_issues_feed.html.haml
app/views/dashboard/_issues_feed.html.haml
+28
-0
app/views/dashboard/_merge_requests_feed.html.haml
app/views/dashboard/_merge_requests_feed.html.haml
+27
-0
app/views/dashboard/_projects_feed.html.haml
app/views/dashboard/_projects_feed.html.haml
+30
-0
app/views/dashboard/index.html.haml
app/views/dashboard/index.html.haml
+1
-22
app/views/issues/_show.html.haml
app/views/issues/_show.html.haml
+1
-4
app/views/layouts/_head_panel.html.erb
app/views/layouts/_head_panel.html.erb
+0
-3
app/views/user_issues/index.html.haml
app/views/user_issues/index.html.haml
+17
-8
app/views/user_merge_requests/index.html.haml
app/views/user_merge_requests/index.html.haml
+17
-9
No files found.
app/assets/stylesheets/projects.css.scss
View file @
4107f2cc
...
...
@@ -506,3 +506,4 @@ body.project-page table.no-borders td{
top
:
6px
;
right
:
5px
;
}
.box-arrow
{
float
:
right
;
background
:
#E3E5EA
;
padding
:
10px
;
border-radius
:
5px
;
margin-top
:
2px
;
text-shadow
:
none
;
color
:
#999
;
margin
:
1
.5em
0
;}
app/assets/stylesheets/style.scss
View file @
4107f2cc
...
...
@@ -351,7 +351,7 @@ header h1.logo a{
text-indent
:
-1000em
;
}
header
nav
{
border-radius
:
4px
;
box-shadow
:
0
1px
2px
black
;
width
:
392
px
;
margin
:
auto
;
header
nav
{
border-radius
:
4px
;
box-shadow
:
0
1px
2px
black
;
width
:
294
px
;
margin
:
auto
;
background-image
:
-webkit-gradient
(
linear
,
0
0
,
0
30
,
color-stop
(
0
.066
,
#595d63
)
,
to
(
#31363e
));
background-image
:
-webkit-linear-gradient
(
#595d63
6
.6%
,
#31363e
);
background-image
:
-moz-linear-gradient
(
#595d63
6
.6%
,
#31363e
);
...
...
app/controllers/user_issues_controller.rb
View file @
4107f2cc
class
UserIssuesController
<
ApplicationController
before_filter
:authenticate_user!
layout
"user"
respond_to
:js
,
:html
def
index
@projects
=
current_user
.
projects
.
all
@user
=
current_user
@issues
=
current_user
.
assigned_issues
.
opened
...
...
app/controllers/user_merge_requests_controller.rb
View file @
4107f2cc
class
UserMergeRequestsController
<
ApplicationController
before_filter
:authenticate_user!
layout
"user"
def
index
@projects
=
current_user
.
projects
.
all
@merge_requests
=
current_user
.
assigned_merge_requests
end
end
app/views/dashboard/_issues_feed.html.haml
0 → 100644
View file @
4107f2cc
#news-feed
.news-feed
%div
=
link_to
dashboard_path
,
:class
=>
"left"
do
.box-arrow
←
%h2
{
:style
=>
"width:86%; text-align:center"
}
Issues
=
link_to
merge_requests_path
,
:class
=>
"right"
do
.box-arrow
→
.project-box.project-updates.ui-box.ui-box-small.ui-box-big
.data
-
@issues
.
each
do
|
update
|
%a
.project-update
{
:href
=>
dashboard_feed_path
(
update
.
project
,
update
)}
=
image_tag
gravatar_icon
(
update
.
author_email
),
:class
=>
"left"
,
:width
=>
40
%span
.update-title
=
dashboard_feed_title
(
update
)
%span
.update-author
%strong
=
update
.
author_name
authored
=
time_ago_in_words
(
update
.
created_at
)
ago
.right
-
klass
=
update
.
class
.
to_s
.
split
(
"::"
).
last
.
downcase
%span
.tag
{
:class
=>
klass
}=
klass
app/views/dashboard/_merge_requests_feed.html.haml
0 → 100644
View file @
4107f2cc
#news-feed
.news-feed
%div
=
link_to
issues_path
,
:class
=>
"left"
do
.box-arrow
←
%h2
{
:style
=>
"width:86%; text-align:center"
}
Merge Requests
=
link_to
dashboard_path
,
:class
=>
"right"
do
.box-arrow
→
.project-box.project-updates.ui-box.ui-box-small.ui-box-big
.data
-
@merge_requests
.
each
do
|
update
|
%a
.project-update
{
:href
=>
dashboard_feed_path
(
update
.
project
,
update
)}
=
image_tag
gravatar_icon
(
update
.
author_email
),
:class
=>
"left"
,
:width
=>
40
%span
.update-title
=
dashboard_feed_title
(
update
)
%span
.update-author
%strong
=
update
.
author_name
authored
=
time_ago_in_words
(
update
.
created_at
)
ago
.right
-
klass
=
update
.
class
.
to_s
.
split
(
"::"
).
last
.
downcase
%span
.tag
{
:class
=>
klass
}=
klass
app/views/dashboard/_projects_feed.html.haml
0 → 100644
View file @
4107f2cc
#news-feed
.news-feed
%div
=
link_to
merge_requests_path
,
:class
=>
"left"
do
.box-arrow
←
%h2
{
:style
=>
"width:86%; text-align:center"
}
Activities
=
link_to
issues_path
,
:class
=>
"right"
do
.box-arrow
→
-
@active_projects
.
first
(
3
).
each
do
|
project
|
.project-box.project-updates.ui-box.ui-box-small.ui-box-big
=
link_to
project
,
do
%h3
=
project
.
name
.data
-
project
.
updates
(
3
).
each
do
|
update
|
%a
.project-update
{
:href
=>
dashboard_feed_path
(
project
,
update
)}
=
image_tag
gravatar_icon
(
update
.
author_email
),
:class
=>
"left"
,
:width
=>
40
%span
.update-title
=
dashboard_feed_title
(
update
)
%span
.update-author
%strong
=
update
.
author_name
authored
=
time_ago_in_words
(
update
.
created_at
)
ago
.right
-
klass
=
update
.
class
.
to_s
.
split
(
"::"
).
last
.
downcase
%span
.tag
{
:class
=>
klass
}=
klass
app/views/dashboard/index.html.haml
View file @
4107f2cc
...
...
@@ -15,25 +15,4 @@
%span
.time
%strong
Last activity:
=
project
.
last_activity_date
?
time_ago_in_words
(
project
.
last_activity_date
)
+
" ago"
:
"Never"
#news-feed
.news-feed
%h2
.icon
%span
>
Dashboard
-
@active_projects
.
first
(
3
).
each
do
|
project
|
.project-box.project-updates.ui-box.ui-box-small.ui-box-big
=
link_to
project
,
do
%h3
=
project
.
name
.data
-
project
.
updates
(
3
).
each
do
|
update
|
%a
.project-update
{
:href
=>
dashboard_feed_path
(
project
,
update
)}
=
image_tag
gravatar_icon
(
update
.
author_email
),
:class
=>
"left"
,
:width
=>
40
%span
.update-title
=
dashboard_feed_title
(
update
)
%span
.update-author
%strong
=
update
.
author_name
authored
=
time_ago_in_words
(
update
.
created_at
)
ago
.right
-
klass
=
update
.
class
.
to_s
.
split
(
"::"
).
last
.
downcase
%span
.tag
{
:class
=>
klass
}=
klass
=
render
"dashboard/projects_feed"
app/views/issues/_show.html.haml
View file @
4107f2cc
...
...
@@ -2,13 +2,10 @@
%td
%strong
.issue-number
{
:class
=>
sort_class
}=
"#
#{
issue
.
id
}
"
%span
=
truncate
(
html_escape
(
issue
.
title
),
:length
=>
fixed_mode?
?
100
:
20
0
)
=
truncate
(
html_escape
(
issue
.
title
),
:length
=>
4
0
)
%br
%br
%div
.note-author
-
if
not
@project
.
present?
%strong
=
issue
.
project
.
name
=
'-'
%strong
=
issue
.
assignee
.
name
%cite
.cgray
=
time_ago_in_words
(
issue
.
created_at
)
...
...
app/views/layouts/_head_panel.html.erb
View file @
4107f2cc
...
...
@@ -25,9 +25,6 @@
<%=
link_to
dashboard_path
,
:class
=>
current_page?
(
root_path
)
?
"current dashboard"
:
"dashboard"
do
%>
<span></span>
Dashboard
<%
end
%>
<%=
link_to
issues_path
,
:class
=>
current_page?
(
issues_path
)
?
"current issues"
:
"issues"
do
%>
<span></span>
Issues
<%
end
%>
<%=
link_to
projects_path
,
:class
=>
current_page?
(
projects_path
)
?
"current project"
:
"project"
do
%>
<span></span>
Projects
<%
end
%>
...
...
app/views/user_issues/index.html.haml
View file @
4107f2cc
%div
#issues-table-holder
%table
.round-borders
#issues-table
%thead
%th
.top_panel_issues
%h2
Issues assigned to me
-
content_for
(
:body_class
,
"dashboard-page"
)
=
render
'issues/issues'
%br
#dashboard-content
.dashboard-content.content
%aside
%h4
-
if
current_user
.
can_create_project?
%a
.button-small.button-green
{
:href
=>
new_project_path
}
New Project
Your Projects
%ol
.project-list
-
@projects
.
each
do
|
project
|
%li
%a
{
:href
=>
project_path
(
project
)}
%span
.arrow
→
%span
.project-name
=
project
.
name
%span
.time
%strong
Last activity:
=
project
.
last_activity_date
?
time_ago_in_words
(
project
.
last_activity_date
)
+
" ago"
:
"Never"
=
render
"dashboard/issues_feed"
app/views/user_merge_requests/index.html.haml
View file @
4107f2cc
-
if
@merge_requests
.
opened
.
count
>
0
%div
{
:class
=>
"update-data ui-box ui-box-small ui-box-big"
}
%h3
%span
.tag.open
Open
.data
=
render
@merge_requests
.
opened
.clear
%br
-
content_for
(
:body_class
,
"dashboard-page"
)
#dashboard-content
.dashboard-content.content
%aside
%h4
-
if
current_user
.
can_create_project?
%a
.button-small.button-green
{
:href
=>
new_project_path
}
New Project
Your Projects
%ol
.project-list
-
@projects
.
each
do
|
project
|
%li
%a
{
:href
=>
project_path
(
project
)}
%span
.arrow
→
%span
.project-name
=
project
.
name
%span
.time
%strong
Last activity:
=
project
.
last_activity_date
?
time_ago_in_words
(
project
.
last_activity_date
)
+
" ago"
:
"Never"
=
render
"dashboard/merge_requests_feed"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment