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
Kazuhiko Shiozaki
gitlab-ce
Commits
0c8f0777
Commit
0c8f0777
authored
Sep 14, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add page titles to header for group and project
Signed-off-by:
Dmitriy Zaporozhets
<
dmitriy.zaporozhets@gmail.com
>
parent
b35d5a6a
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
67 additions
and
20 deletions
+67
-20
app/helpers/gitlab_routing_helper.rb
app/helpers/gitlab_routing_helper.rb
+8
-0
app/helpers/projects_helper.rb
app/helpers/projects_helper.rb
+52
-17
app/views/groups/edit.html.haml
app/views/groups/edit.html.haml
+2
-0
app/views/groups/projects.html.haml
app/views/groups/projects.html.haml
+2
-0
app/views/layouts/nav/_project.html.haml
app/views/layouts/nav/_project.html.haml
+2
-2
app/views/layouts/project.html.haml
app/views/layouts/project.html.haml
+1
-1
No files found.
app/helpers/gitlab_routing_helper.rb
View file @
0c8f0777
...
...
@@ -17,6 +17,14 @@ module GitlabRoutingHelper
namespace_project_path
(
project
.
namespace
,
project
,
*
args
)
end
def
project_files_path
(
project
,
*
args
)
namespace_project_tree_path
(
project
.
namespace
,
project
,
@ref
||
project
.
repository
.
root_ref
)
end
def
project_commits_path
(
project
,
*
args
)
namespace_project_commits_path
(
project
.
namespace
,
project
,
@ref
||
project
.
repository
.
root_ref
)
end
def
activity_project_path
(
project
,
*
args
)
activity_namespace_project_path
(
project
.
namespace
,
project
,
*
args
)
end
...
...
app/helpers/projects_helper.rb
View file @
0c8f0777
...
...
@@ -43,24 +43,22 @@ module ProjectsHelper
end
end
def
project_title
(
project
)
def
project_title
(
project
,
name
=
nil
,
url
=
nil
)
namespace_link
=
if
project
.
group
content_tag
:span
do
link_to
(
simple_sanitize
(
project
.
group
.
name
),
group_path
(
project
.
group
)
)
+
' / '
+
link_to
(
simple_sanitize
(
project
.
name
),
project_path
(
project
))
end
link_to
(
simple_sanitize
(
project
.
group
.
name
),
group_path
(
project
.
group
))
else
owner
=
project
.
namespace
.
owner
content_tag
:span
do
link_to
(
simple_sanitize
(
owner
.
name
),
user_path
(
owner
)
)
+
' / '
+
link_to
(
simple_sanitize
(
project
.
name
),
project_path
(
project
))
link_to
(
simple_sanitize
(
owner
.
name
),
user_path
(
owner
))
end
project_link
=
link_to
(
simple_sanitize
(
project
.
name
),
project_path
(
project
))
full_title
=
namespace_link
+
' / '
+
project_link
full_title
+=
' · '
.
html_safe
+
link_to
(
simple_sanitize
(
name
),
url
)
if
name
content_tag
:span
do
full_title
end
end
...
...
@@ -315,6 +313,43 @@ module ProjectsHelper
end
end
def
detect_project_title
(
project
)
current_ref
=
@ref
||
project
.
repository
.
root_ref
name
,
url
=
if
current_controller?
'wikis'
[
'Wiki'
,
get_project_wiki_path
(
project
)]
elsif
current_controller?
'project_members'
[
'Members'
,
namespace_project_project_members_path
(
project
.
namespace
,
project
)]
elsif
current_controller?
'labels'
[
'Labels'
,
namespace_project_labels_path
(
project
.
namespace
,
project
)]
elsif
current_controller?
'members'
[
'Members'
,
project_files_path
(
project
)]
elsif
current_controller?
'commits'
[
'Commits'
,
project_commits_path
(
project
)]
elsif
current_controller?
'graphs'
[
'Graphs'
,
namespace_project_graph_path
(
project
.
namespace
,
project
,
current_ref
)]
elsif
current_controller?
'network'
[
'Network'
,
namespace_project_network_path
(
project
.
namespace
,
project
,
current_ref
)]
elsif
current_controller?
'milestones'
[
'Milestones'
,
namespace_project_milestones_path
(
project
.
namespace
,
project
)]
elsif
current_controller?
'snippets'
[
'Snippets'
,
namespace_project_snippets_path
(
project
.
namespace
,
project
)]
elsif
current_controller?
'issues'
[
'Issues'
,
namespace_project_issues_path
(
project
.
namespace
,
project
)]
elsif
current_controller?
'merge_requests'
[
'Merge Requests'
,
namespace_project_merge_requests_path
(
project
.
namespace
,
project
)]
elsif
current_controller?
'tree'
,
'blob'
[
'Files'
,
project_files_path
(
project
)]
elsif
current_path?
'projects#activity'
[
'Activity'
,
activity_project_path
(
project
)]
else
[
nil
,
nil
]
end
project_title
(
project
,
name
,
url
)
end
private
def
filename_path
(
project
,
filename
)
...
...
app/views/groups/edit.html.haml
View file @
0c8f0777
-
header_title
group_title
(
@group
,
"Settings"
,
edit_group_path
(
@group
))
-
@blank_container
=
true
.panel.panel-default
.panel-heading
%strong
=
@group
.
name
...
...
app/views/groups/projects.html.haml
View file @
0c8f0777
-
page_title
"Projects"
-
header_title
group_title
(
@group
,
"Projects"
,
projects_group_path
(
@group
))
.panel.panel-default
.panel-heading
%strong
=
@group
.
name
...
...
app/views/layouts/nav/_project.html.haml
View file @
0c8f0777
...
...
@@ -26,14 +26,14 @@
Activity
-
if
project_nav_tab?
:files
=
nav_link
(
controller:
%w(tree blob blame edit_tree new_tree)
)
do
=
link_to
namespace_project_tree_path
(
@project
.
namespace
,
@project
,
@ref
||
@repository
.
root_ref
),
title:
'Files'
,
class:
'shortcuts-tree'
,
data:
{
placement:
'right'
}
do
=
link_to
project_files_path
(
@project
),
title:
'Files'
,
class:
'shortcuts-tree'
,
data:
{
placement:
'right'
}
do
=
icon
(
'files-o fw'
)
%span
Files
-
if
project_nav_tab?
:commits
=
nav_link
(
controller:
%w(commit commits compare repositories tags branches)
)
do
=
link_to
namespace_project_commits_path
(
@project
.
namespace
,
@project
,
@ref
||
@repository
.
root_ref
),
title:
'Commits'
,
class:
'shortcuts-commits'
,
data:
{
placement:
'right'
}
do
=
link_to
project_commits_path
(
@project
),
title:
'Commits'
,
class:
'shortcuts-commits'
,
data:
{
placement:
'right'
}
do
=
icon
(
'history fw'
)
%span
Commits
...
...
app/views/layouts/project.html.haml
View file @
0c8f0777
-
page_title
@project
.
name_with_namespace
-
header_title
project_title
(
@project
)
-
header_title
detect_
project_title
(
@project
)
-
sidebar
"project"
unless
sidebar
-
content_for
:scripts_body_top
do
...
...
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