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
iv
gitlab-ce
Commits
10489172
Commit
10489172
authored
Sep 25, 2012
by
Robert Speicher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update usages of project_commit[s] route helpers
parent
99d39133
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
9 additions
and
9 deletions
+9
-9
app/controllers/refs_controller.rb
app/controllers/refs_controller.rb
+1
-1
app/decorators/event_decorator.rb
app/decorators/event_decorator.rb
+1
-1
app/decorators/tree_decorator.rb
app/decorators/tree_decorator.rb
+1
-1
app/views/commits/_commit_box.html.haml
app/views/commits/_commit_box.html.haml
+1
-1
app/views/commits/_diffs.html.haml
app/views/commits/_diffs.html.haml
+1
-1
app/views/layouts/_head.html.haml
app/views/layouts/_head.html.haml
+2
-2
app/views/layouts/_project_menu.html.haml
app/views/layouts/_project_menu.html.haml
+1
-1
features/steps/shared/paths.rb
features/steps/shared/paths.rb
+1
-1
No files found.
app/controllers/refs_controller.rb
View file @
10489172
...
...
@@ -19,7 +19,7 @@ class RefsController < ApplicationController
new_path
=
if
params
[
:destination
]
==
"tree"
project_tree_path
(
@project
,
@ref
)
else
project_commits_path
(
@project
,
ref:
@ref
)
project_commits_path
(
@project
,
@ref
)
end
redirect_to
new_path
...
...
app/decorators/event_decorator.rb
View file @
10489172
...
...
@@ -21,7 +21,7 @@ class EventDecorator < ApplicationDecorator
elsif
self
.
merge_request?
h
.
project_merge_request_url
(
self
.
project
,
self
.
merge_request
)
elsif
self
.
push?
h
.
project_commits_url
(
self
.
project
,
ref:
self
.
ref_name
)
h
.
project_commits_url
(
self
.
project
,
self
.
ref_name
)
end
end
end
app/decorators/tree_decorator.rb
View file @
10489172
...
...
@@ -30,7 +30,7 @@ class TreeDecorator < ApplicationDecorator
end
def
history_path
h
.
project_commits_path
(
project
,
path:
path
,
ref:
ref
)
h
.
project_commits_path
(
project
,
h
.
tree_join
(
ref
,
path
)
)
end
def
mb_size
...
...
app/views/commits/_commit_box.html.haml
View file @
10489172
...
...
@@ -5,7 +5,7 @@
%span
.btn.disabled.grouped
%i
.icon-comment
=
@notes_count
=
link_to
p
atch_project_commit_path
(
@project
,
@commit
.
id
),
class:
"btn small grouped"
do
=
link_to
p
roject_commit_path
(
@project
,
@commit
,
format: :patch
),
class:
"btn small grouped"
do
%i
.icon-download-alt
Get Patch
=
link_to
project_tree_path
(
@project
,
@commit
),
class:
"browse-button primary grouped"
do
...
...
app/views/commits/_diffs.html.haml
View file @
10489172
...
...
@@ -5,7 +5,7 @@
%p
To prevent performance issue we rejected diff information.
%p
But if you still want to see diff
=
link_to
"click this link"
,
project_commit_path
(
@project
,
@commit
.
id
,
force_show_diff:
true
),
class:
"dark"
=
link_to
"click this link"
,
project_commit_path
(
@project
,
@commit
,
force_show_diff:
true
),
class:
"dark"
%p
.cgray
Showing
#{
pluralize
(
diffs
.
count
,
"changed file"
)
}
...
...
app/views/layouts/_head.html.haml
View file @
10489172
...
...
@@ -10,8 +10,8 @@
-
if
controller_name
==
'projects'
&&
action_name
==
'index'
=
auto_discovery_link_tag
:atom
,
projects_url
(
:atom
,
private_token:
current_user
.
private_token
),
title:
"Dashboard feed"
-
if
@project
&&
!
@project
.
new_record?
-
if
current_page?
(
project_tree_path
(
@project
,
@
project
.
root_ref
))
||
current_page?
(
project_commits_path
(
@project
))
=
auto_discovery_link_tag
(
:atom
,
project_commits_url
(
@project
,
:atom
,
ref:
@ref
,
private_token:
current_user
.
private_token
),
title:
"Recent commits to
#{
@project
.
name
}
:
#{
@ref
}
"
)
-
if
current_page?
(
project_tree_path
(
@project
,
@
ref
))
||
current_page?
(
project_commits_path
(
@project
,
@ref
))
=
auto_discovery_link_tag
(
:atom
,
project_commits_url
(
@project
,
@ref
,
format: :atom
,
private_token:
current_user
.
private_token
),
title:
"Recent commits to
#{
@project
.
name
}
:
#{
@ref
}
"
)
-
if
request
.
path
==
project_issues_path
(
@project
)
=
auto_discovery_link_tag
(
:atom
,
project_issues_url
(
@project
,
:atom
,
private_token:
current_user
.
private_token
),
title:
"
#{
@project
.
name
}
issues"
)
=
csrf_meta_tags
app/views/layouts/_project_menu.html.haml
View file @
10489172
...
...
@@ -8,7 +8,7 @@
=
link_to
project_tree_path
(
@project
,
@project
.
root_ref
)
do
Files
%li
{
class:
commit_tab_class
}
=
link_to
"Commits"
,
project_
history
_path
(
@project
,
@project
.
root_ref
)
=
link_to
"Commits"
,
project_
commits
_path
(
@project
,
@project
.
root_ref
)
%li
{
class:
tab_class
(
:network
)}
=
link_to
"Network"
,
graph_project_path
(
@project
)
...
...
features/steps/shared/paths.rb
View file @
10489172
...
...
@@ -47,7 +47,7 @@ module SharedPaths
end
Given
'I visit project commits page'
do
visit
project_commits_path
(
@project
)
visit
project_commits_path
(
@project
,
@project
.
root_ref
)
end
Given
'I visit project source page'
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