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
040062cc
Commit
040062cc
authored
Apr 18, 2017
by
David Turner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
submodule_links: handle urls that don't end with .git
Signed-off-by:
David Turner
<
novalis@novalis.org
>
parent
bbd83376
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
9 deletions
+19
-9
app/helpers/submodule_helper.rb
app/helpers/submodule_helper.rb
+7
-5
changelogs/unreleased/submodules-no-dotgit.yml
changelogs/unreleased/submodules-no-dotgit.yml
+4
-0
spec/helpers/submodule_helper_spec.rb
spec/helpers/submodule_helper_spec.rb
+8
-4
No files found.
app/helpers/submodule_helper.rb
View file @
040062cc
...
...
@@ -5,7 +5,7 @@ module SubmoduleHelper
def
submodule_links
(
submodule_item
,
ref
=
nil
,
repository
=
@repository
)
url
=
repository
.
submodule_url_for
(
ref
,
submodule_item
.
path
)
return
url
,
nil
unless
url
=~
/([^\/:]+)\/([^\/]+
\.git
)\Z/
return
url
,
nil
unless
url
=~
/([^\/:]+)\/([^\/]+
(?:\.git)?
)\Z/
namespace
=
$1
project
=
$2
...
...
@@ -37,14 +37,16 @@ module SubmoduleHelper
end
def
self_url?
(
url
,
namespace
,
project
)
return
true
if
url
==
[
Gitlab
.
config
.
gitlab
.
url
,
'/'
,
namespace
,
'/'
,
project
,
'.git'
].
join
(
''
)
url
==
gitlab_shell
.
url_to_repo
([
namespace
,
'/'
,
project
].
join
(
''
))
url_no_dotgit
=
url
.
chomp
(
'.git'
)
return
true
if
url_no_dotgit
==
[
Gitlab
.
config
.
gitlab
.
url
,
'/'
,
namespace
,
'/'
,
project
].
join
(
''
)
url_with_dotgit
=
url_no_dotgit
+
'.git'
url_with_dotgit
==
gitlab_shell
.
url_to_repo
([
namespace
,
'/'
,
project
].
join
(
''
))
end
def
relative_self_url?
(
url
)
# (./)?(../repo.git) || (./)?(../../project/repo.git) )
url
=~
/\A((\.\/)?(\.\.\/))(?!(\.\.)|(.*\/)).*
\.git\z/
||
url
=~
/\A((\.\/)?(\.\.\/){2})(?!(\.\.))([^\/]*)\/(?!(\.\.)|(.*\/)).*\.git
\z/
url
=~
/\A((\.\/)?(\.\.\/))(?!(\.\.)|(.*\/)).*
(\.git)?\z/
||
url
=~
/\A((\.\/)?(\.\.\/){2})(?!(\.\.))([^\/]*)\/(?!(\.\.)|(.*\/)).*(\.git)?
\z/
end
def
standard_links
(
host
,
namespace
,
project
,
commit
)
...
...
changelogs/unreleased/submodules-no-dotgit.yml
0 → 100644
View file @
040062cc
---
title
:
'
repository
browser:
handle
submodule
urls
that
don'
'
t
end
with
.git'
merge_request
:
author
:
David Turner
spec/helpers/submodule_helper_spec.rb
View file @
040062cc
...
...
@@ -70,10 +70,12 @@ describe SubmoduleHelper do
expect
(
submodule_links
(
submodule_item
)).
to
eq
([
'https://github.com/gitlab-org/gitlab-ce'
,
'https://github.com/gitlab-org/gitlab-ce/tree/hash'
])
end
it
'
returns original with non-standard url
'
do
it
'
handles urls with no .git on the end
'
do
stub_url
(
'http://github.com/gitlab-org/gitlab-ce'
)
expect
(
submodule_links
(
submodule_item
)).
to
eq
([
repo
.
submodule_url_for
,
nil
])
expect
(
submodule_links
(
submodule_item
)).
to
eq
([
'https://github.com/gitlab-org/gitlab-ce'
,
'https://github.com/gitlab-org/gitlab-ce/tree/hash'
])
end
it
'returns original with non-standard url'
do
stub_url
(
'http://github.com/another/gitlab-org/gitlab-ce.git'
)
expect
(
submodule_links
(
submodule_item
)).
to
eq
([
repo
.
submodule_url_for
,
nil
])
end
...
...
@@ -95,10 +97,12 @@ describe SubmoduleHelper do
expect
(
submodule_links
(
submodule_item
)).
to
eq
([
'https://gitlab.com/gitlab-org/gitlab-ce'
,
'https://gitlab.com/gitlab-org/gitlab-ce/tree/hash'
])
end
it
'
returns original with non-standard url
'
do
it
'
handles urls with no .git on the end
'
do
stub_url
(
'http://gitlab.com/gitlab-org/gitlab-ce'
)
expect
(
submodule_links
(
submodule_item
)).
to
eq
([
repo
.
submodule_url_for
,
nil
])
expect
(
submodule_links
(
submodule_item
)).
to
eq
([
'https://gitlab.com/gitlab-org/gitlab-ce'
,
'https://gitlab.com/gitlab-org/gitlab-ce/tree/hash'
])
end
it
'returns original with non-standard url'
do
stub_url
(
'http://gitlab.com/another/gitlab-org/gitlab-ce.git'
)
expect
(
submodule_links
(
submodule_item
)).
to
eq
([
repo
.
submodule_url_for
,
nil
])
end
...
...
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