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
Tatuya Kamada
gitlab-ce
Commits
52c521ff
Commit
52c521ff
authored
Sep 05, 2012
by
Robert Speicher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use GitHub::Markup to parse markup files
Closes #1382
parent
b78fd0c1
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
8 deletions
+28
-8
app/helpers/tree_helper.rb
app/helpers/tree_helper.rb
+10
-0
app/views/refs/_tree.html.haml
app/views/refs/_tree.html.haml
+1
-5
app/views/refs/_tree_file.html.haml
app/views/refs/_tree_file.html.haml
+2
-3
spec/helpers/tree_helper_spec.rb
spec/helpers/tree_helper_spec.rb
+15
-0
No files found.
app/helpers/tree_helper.rb
View file @
52c521ff
...
...
@@ -24,4 +24,14 @@ module TreeHelper
content
.
name
end
end
# Public: Determines if a given filename is compatible with GitHub::Markup.
#
# filename - Filename string to check
#
# Returns boolean
def
markup?
(
filename
)
filename
.
end_with?
(
*
%w(.mdown .md .markdown .textile .rdoc .org .creole
.mediawiki .rst .asciidoc .pod)
)
end
end
app/views/refs/_tree.html.haml
View file @
52c521ff
...
...
@@ -43,11 +43,7 @@
%i
.icon-file
=
content
.
name
.file_content.wiki
-
if
content
.
name
=~
/\.(md|markdown)$/i
=
preserve
do
=
markdown
(
content
.
data
)
-
else
=
simple_format
(
content
.
data
)
=
raw
GitHub
::
Markup
.
render
(
content
.
name
,
content
.
data
)
:javascript
$
(
function
(){
...
...
app/views/refs/_tree_file.html.haml
View file @
52c521ff
...
...
@@ -9,10 +9,9 @@
=
link_to
"history"
,
project_commits_path
(
@project
,
path:
params
[
:path
],
ref:
@ref
),
class:
"btn very_small"
=
link_to
"blame"
,
blame_file_project_ref_path
(
@project
,
@ref
,
path:
params
[
:path
]),
class:
"btn very_small"
-
if
file
.
text?
-
if
name
=~
/\.(md|markdown)$/i
-
if
markup?
(
name
)
.file_content.wiki
=
preserve
do
=
markdown
(
file
.
data
)
=
raw
GitHub
::
Markup
.
render
(
name
,
file
.
data
)
-
else
.file_content.code
-
unless
file
.
empty?
...
...
spec/helpers/tree_helper_spec.rb
0 → 100644
View file @
52c521ff
require
'spec_helper'
describe
TreeHelper
do
describe
'#markup?'
do
%w(mdown md markdown textile rdoc org creole mediawiki rst asciidoc pod)
.
each
do
|
type
|
it
"returns true for
#{
type
}
files"
do
markup?
(
"README.
#{
type
}
"
).
should
be_true
end
end
it
"returns false when given a non-markup filename"
do
markup?
(
'README.rb'
).
should_not
be_true
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