Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
html-pipeline-linuxfr
Manage
Activity
Members
Labels
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
linuxfr
html-pipeline-linuxfr
Commits
fe7557ba
Commit
fe7557ba
authored
12 years ago
by
Corey Donohoe
Browse files
Options
Downloads
Plain Diff
Merge pull request #9 from github/required-contexts
Ensure required context values are present
parents
b11d22bf
c9ebc626
No related branches found
Branches containing commit
Tags
v0.0.3
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
lib/html/pipeline/emoji_filter.rb
+9
-1
9 additions, 1 deletion
lib/html/pipeline/emoji_filter.rb
lib/html/pipeline/version.rb
+1
-1
1 addition, 1 deletion
lib/html/pipeline/version.rb
test/html/pipeline/emoji_filter_test.rb
+7
-0
7 additions, 0 deletions
test/html/pipeline/emoji_filter_test.rb
with
17 additions
and
2 deletions
lib/html/pipeline/emoji_filter.rb
+
9
−
1
View file @
fe7557ba
...
...
@@ -31,8 +31,16 @@ module HTML::Pipeline
text
.
gsub
EmojiPattern
do
|
match
|
name
=
$1
"<img class='emoji' title=':
#{
name
}
:' alt=':
#{
name
}
:' src='
#{
File
.
join
(
context
[
:
asset_root
]
,
"emoji"
,
"
#{
name
}
.png"
)
}
' height='20' width='20' align='absmiddle' />"
"<img class='emoji' title=':
#{
name
}
:' alt=':
#{
name
}
:' src='
#{
File
.
join
(
asset_root
,
"emoji"
,
"
#{
name
}
.png"
)
}
' height='20' width='20' align='absmiddle' />"
end
end
# The base url to link emoji sprites
#
# Raises ArgumentError if context option has not been provided.
# Returns the context's asset_root.
def
asset_root
context
[
:asset_root
]
or
raise
ArgumentError
,
"Missing context :asset_root"
end
end
end
This diff is collapsed.
Click to expand it.
lib/html/pipeline/version.rb
+
1
−
1
View file @
fe7557ba
module
HTML
module
Pipeline
VERSION
=
"0.0.
2
"
VERSION
=
"0.0.
3
"
end
end
This diff is collapsed.
Click to expand it.
test/html/pipeline/emoji_filter_test.rb
+
7
−
0
View file @
fe7557ba
...
...
@@ -6,4 +6,11 @@ class HTML::Pipeline::EmojiFilterTest < Test::Unit::TestCase
doc
=
filter
.
call
assert_match
"https://foo.com/emoji/shipit.png"
,
doc
.
search
(
'img'
).
attr
(
'src'
).
value
end
def
test_missing_context
filter
=
HTML
::
Pipeline
::
EmojiFilter
.
new
(
"<p>:shipit:</p>"
,
{})
assert_raises
ArgumentError
do
filter
.
call
end
end
end
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment