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
e130e2f6
Commit
e130e2f6
authored
Nov 08, 2013
by
Marin Jankovski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Check on fs.
parent
979ca7d6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
5 deletions
+9
-5
app/helpers/gitlab_markdown_helper.rb
app/helpers/gitlab_markdown_helper.rb
+9
-5
No files found.
app/helpers/gitlab_markdown_helper.rb
View file @
e130e2f6
...
...
@@ -145,16 +145,20 @@ module GitlabMarkdownHelper
end
end
def
file_exists?
(
document_path
)
return
false
if
document_path
.
nil?
||
document_path
.
empty?
full_path
=
[
@path_to_satellite
,
document_path
].
join
(
"/"
)
File
.
exists?
(
full_path
)
def
file_exists?
(
path
)
return
false
if
path
.
nil?
||
path
.
empty?
File
.
exists?
(
path_on_fs
(
path
))
end
# Check if the path is pointing to a directory(tree) or a file(blob)
# eg. doc/api is directory and doc/README.md is file
def
local_path
(
path
)
File
.
directory?
(
Rails
.
root
.
join
(
path
))
?
"tree"
:
"blob"
File
.
directory?
(
path_on_fs
(
path
))
?
"tree"
:
"blob"
end
# Path to the file in the satellites repository on the filesystem
def
path_on_fs
(
path
)
[
@path_to_satellite
,
path
].
join
(
"/"
)
end
# We will assume that if no ref exists we can point to master
...
...
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