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
c0744e5b
Commit
c0744e5b
authored
Feb 28, 2014
by
Timm Drevensek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
simplify link url
parent
e9356356
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
app/helpers/submodule_helper.rb
app/helpers/submodule_helper.rb
+3
-4
No files found.
app/helpers/submodule_helper.rb
View file @
c0744e5b
...
@@ -50,11 +50,10 @@ module SubmoduleHelper
...
@@ -50,11 +50,10 @@ module SubmoduleHelper
def
relative_self_links
(
url
,
commit
)
def
relative_self_links
(
url
,
commit
)
if
url
.
scan
(
/(\.\.\/)/
).
size
==
2
if
url
.
scan
(
/(\.\.\/)/
).
size
==
2
base
=
[
Gitlab
.
config
.
gitlab
.
url
,
'/'
,
url
[
/.*\/(.*)\/.*\.git/
,
1
]
].
join
(
''
)
base
=
url
[
/([^\/]*\/[^\/]*)\.git/
,
1
]
else
else
base
=
[
Gitlab
.
config
.
gitlab
.
url
,
'/'
,
@project
.
group
.
path
].
join
(
''
)
base
=
[
@project
.
group
.
path
,
'/'
,
url
[
/([^\/]*)\.git/
,
1
]
].
join
(
''
)
end
end
base
=
[
base
,
'/'
,
url
[
/.*\/(.*)\.git/
,
1
]
].
join
(
''
)
return
project_path
(
base
),
project_tree_path
(
base
,
commit
)
return
base
,
[
base
,
'/tree/'
,
commit
].
join
(
''
)
end
end
end
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