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
Jérome Perrin
gitlab-ce
Commits
1a7c293c
Commit
1a7c293c
authored
Aug 22, 2016
by
Sean McGivern
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix file links on project page Files view
parent
f633f7db
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
41 additions
and
3 deletions
+41
-3
CHANGELOG
CHANGELOG
+4
-2
app/controllers/projects_controller.rb
app/controllers/projects_controller.rb
+8
-1
spec/features/projects_spec.rb
spec/features/projects_spec.rb
+29
-0
No files found.
CHANGELOG
View file @
1a7c293c
Please view this file on the master branch, on stable branches it's out of date.
v 8.12.0 (unreleased)
- Optimistic locking for Issues and Merge Requests (title and description overriding prevention)
v 8.11.1 (unreleased)
- Fix file links on project page when default view is Files !5933
v 8.11.0
- Use test coverage value from the latest successful pipeline in badge. !5862
- Add test coverage report badge. !5708
...
...
@@ -198,8 +202,6 @@ v 8.10.3
- Trim extra displayed carriage returns in diffs and files with CRLFs. !5588
- Fix label already exist error message in the right sidebar.
v 8.10.3 (unreleased)
v 8.10.2
- User can now search branches by name. !5144
- Page is now properly rendered after committing the first file and creating the first branch. !5399
...
...
app/controllers/projects_controller.rb
View file @
1a7c293c
...
...
@@ -5,7 +5,7 @@ class ProjectsController < Projects::ApplicationController
before_action
:project
,
except:
[
:new
,
:create
]
before_action
:repository
,
except:
[
:new
,
:create
]
before_action
:assign_ref_vars
,
only:
[
:show
],
if: :repo_exists?
before_action
:
tree
,
only:
[
:show
],
if:
[
:repo_exists?
,
:project_view_files?
]
before_action
:
assign_tree_vars
,
only:
[
:show
],
if:
[
:repo_exists?
,
:project_view_files?
]
# Authorize
before_action
:authorize_admin_project!
,
only:
[
:edit
,
:update
,
:housekeeping
,
:download_export
,
:export
,
:remove_export
,
:generate_new_export
]
...
...
@@ -332,4 +332,11 @@ class ProjectsController < Projects::ApplicationController
def
get_id
project
.
repository
.
root_ref
end
# ExtractsPath will set @id = project.path on the show route, but it has to be the
# branch name for the tree view to work correctly.
def
assign_tree_vars
@id
=
get_id
tree
end
end
spec/features/projects_spec.rb
View file @
1a7c293c
...
...
@@ -115,6 +115,35 @@ feature 'Project', feature: true do
end
end
describe
'tree view (default view is set to Files)'
do
let
(
:user
)
{
create
(
:user
,
project_view:
'files'
)
}
let
(
:project
)
{
create
(
:forked_project_with_submodules
)
}
before
do
project
.
team
<<
[
user
,
:master
]
login_as
user
visit
namespace_project_path
(
project
.
namespace
,
project
)
end
it
'has working links to files'
do
click_link
(
'PROCESS.md'
)
expect
(
page
.
status_code
).
to
eq
(
200
)
end
it
'has working links to directories'
do
click_link
(
'encoding'
)
expect
(
page
.
status_code
).
to
eq
(
200
)
end
it
'has working links to submodules'
do
click_link
(
'645f6c4c'
)
expect
(
page
.
status_code
).
to
eq
(
200
)
end
end
def
remove_with_confirm
(
button_text
,
confirm_with
)
click_button
button_text
fill_in
'confirm_name_input'
,
with:
confirm_with
...
...
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