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
602c3198
Commit
602c3198
authored
Nov 22, 2016
by
http://jneen.net/
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
allow empty-quotes
parent
017579fe
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
6 deletions
+17
-6
lib/gitlab/email/reply_parser.rb
lib/gitlab/email/reply_parser.rb
+0
-4
spec/fixtures/emails/empty_quote.eml
spec/fixtures/emails/empty_quote.eml
+0
-0
spec/lib/gitlab/email/reply_parser_spec.rb
spec/lib/gitlab/email/reply_parser_spec.rb
+17
-2
No files found.
lib/gitlab/email/reply_parser.rb
View file @
602c3198
...
@@ -18,10 +18,6 @@ module Gitlab
...
@@ -18,10 +18,6 @@ module Gitlab
# [jneen] not using /\s+$/ here because that deletes empty lines
# [jneen] not using /\s+$/ here because that deletes empty lines
body
=
body
.
gsub
(
/[ \t]$/
,
''
)
body
=
body
.
gsub
(
/[ \t]$/
,
''
)
# TODO [jneen]: do we want to allow empty-quoting? (replies only containing a blockquote)
# EmailReplyTrimmer allows this as a special case, so we detect it manually here.
return
""
if
body
.
lines
.
all?
{
|
l
|
l
.
strip
.
empty?
||
l
.
start_with?
(
'>'
)
}
body
.
force_encoding
(
encoding
).
encode
(
"UTF-8"
)
body
.
force_encoding
(
encoding
).
encode
(
"UTF-8"
)
end
end
...
...
spec/fixtures/emails/
no_content_reply
.eml
→
spec/fixtures/emails/
empty_quote
.eml
View file @
602c3198
File moved
spec/lib/gitlab/email/reply_parser_spec.rb
View file @
602c3198
...
@@ -15,8 +15,23 @@ describe Gitlab::Email::ReplyParser, lib: true do
...
@@ -15,8 +15,23 @@ describe Gitlab::Email::ReplyParser, lib: true do
expect
(
test_parse_body
(
"asdf"
*
30
)).
to
eq
(
""
)
expect
(
test_parse_body
(
"asdf"
*
30
)).
to
eq
(
""
)
end
end
it
"returns an empty string if there is no reply content"
do
it
"returns the quote for an empty-quoted comment"
do
expect
(
test_parse_body
(
fixture_file
(
"emails/no_content_reply.eml"
))).
to
eq
(
""
)
expect
(
test_parse_body
(
fixture_file
(
"emails/empty_quote.eml"
)))
.
to
eq
(
<<-
BODY
.
strip_heredoc
.
chomp
)
>
>
>
> eviltrout posted in 'Adventure Time Sux' on Discourse Meta:
>
> ---
> hey guys everyone knows adventure time sucks!
>
> ---
> Please visit this link to respond: http://localhost:3000/t/adventure-time-sux/1234/3
>
> To unsubscribe from these emails, visit your [user preferences](http://localhost:3000/user_preferences).
>
BODY
end
end
it
"properly renders plaintext-only email"
do
it
"properly renders plaintext-only email"
do
...
...
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