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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
d155b3e7
Commit
d155b3e7
authored
Aug 20, 2014
by
Jacob Vosmaer
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of dev.gitlab.org:gitlab/gitlabhq
parents
d819b9d4
1eaa8e18
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
27 additions
and
21 deletions
+27
-21
app/assets/javascripts/dispatcher.js.coffee
app/assets/javascripts/dispatcher.js.coffee
+1
-1
app/assets/stylesheets/sections/dashboard.scss
app/assets/stylesheets/sections/dashboard.scss
+4
-0
app/assets/stylesheets/sections/projects.scss
app/assets/stylesheets/sections/projects.scss
+1
-0
app/views/explore/projects/_project.html.haml
app/views/explore/projects/_project.html.haml
+21
-20
No files found.
app/assets/javascripts/dispatcher.js.coffee
View file @
d155b3e7
...
...
@@ -50,7 +50,7 @@ class Dispatcher
new
TreeView
()
when
'projects:blob:show'
new
BlobView
()
when
'projects:labels:new'
when
'projects:labels:new'
,
'projects:labels:edit'
new
Labels
()
switch
path
.
first
()
...
...
app/assets/stylesheets/sections/dashboard.scss
View file @
d155b3e7
...
...
@@ -89,6 +89,10 @@
}
}
.project-description
{
overflow
:
hidden
;
}
.project-access-icon
{
margin-left
:
10px
;
float
:
left
;
...
...
app/assets/stylesheets/sections/projects.scss
View file @
d155b3e7
...
...
@@ -192,6 +192,7 @@ ul.nav.nav-projects-tabs {
background-image
:
none
;
.btn
,
&
.btn
{
white-space
:
normal
;
text-align
:
left
;
padding
:
10px
15px
;
background-color
:
#F1f1f1
;
...
...
app/views/explore/projects/_project.html.haml
View file @
d155b3e7
%li
%h4
.project-title
.project-access-icon
=
visibility_level_icon
(
project
.
visibility_level
)
=
link_to
project
.
name_with_namespace
,
project
.project-access-icon
=
visibility_level_icon
(
project
.
visibility_level
)
-
if
current_page?
(
starred_explore_projects_path
)
%strong
.pull-right
=
pluralize
project
.
star_count
,
'star'
.project-description
%h4
.project-title
=
link_to
project
.
name_with_namespace
,
project
-
if
project
.
description
.
present?
%p
.project-description.str-truncated
=
project
.
description
-
if
current_page?
(
starred_explore_projects_path
)
%strong
.pull-right
=
pluralize
project
.
star_count
,
'star'
.repo-info
-
unless
project
.
empty_repo?
=
link_to
pluralize
(
project
.
repository
.
round_commit_count
,
'commit'
),
project_commits_path
(
project
,
project
.
default_branch
)
·
=
link_to
pluralize
(
project
.
repository
.
branch_names
.
count
,
'branch'
),
project_branches_path
(
project
)
·
=
link_to
pluralize
(
project
.
repository
.
tag_names
.
count
,
'tag'
),
project_tags_path
(
project
)
-
else
%i
.icon-warning-sign
Empty repository
-
if
project
.
description
.
present?
%p
.project-description.str-truncated
=
project
.
description
.repo-info
-
unless
project
.
empty_repo?
=
link_to
pluralize
(
project
.
repository
.
round_commit_count
,
'commit'
),
project_commits_path
(
project
,
project
.
default_branch
)
·
=
link_to
pluralize
(
project
.
repository
.
branch_names
.
count
,
'branch'
),
project_branches_path
(
project
)
·
=
link_to
pluralize
(
project
.
repository
.
tag_names
.
count
,
'tag'
),
project_tags_path
(
project
)
-
else
%i
.icon-warning-sign
Empty repository
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