WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
Bug 73869
BlackBerry PlayBook doesn't sniff mime types
https://bugs.webkit.org/show_bug.cgi?id=73869
Summary
BlackBerry PlayBook doesn't sniff mime types
tabbott
Reported
2011-12-05 15:09:29 PST
Need to hook up the mime type sniffer.
Attachments
hook up MIMESniffer
(6.16 KB, patch)
2011-12-06 07:12 PST
,
tabbott
rwlbuis
: review-
Details
Formatted Diff
Diff
cleaned up some style, added changelog entry
(6.74 KB, patch)
2011-12-06 12:36 PST
,
tabbott
rwlbuis
: review-
Details
Formatted Diff
Diff
correct changelog format
(7.34 KB, patch)
2011-12-06 12:51 PST
,
tabbott
no flags
Details
Formatted Diff
Diff
previous patch introduced unwanted changes
(6.80 KB, patch)
2011-12-06 12:55 PST
,
tabbott
no flags
Details
Formatted Diff
Diff
better commit message
(6.81 KB, patch)
2011-12-06 13:36 PST
,
tabbott
eric
: review-
webkit.review.bot
: commit-queue-
Details
Formatted Diff
Diff
The old patch was stale, here is a fresh one.
(6.80 KB, patch)
2012-03-09 14:12 PST
,
tabbott
no flags
Details
Formatted Diff
Diff
Show Obsolete
(5)
View All
Add attachment
proposed patch, testcase, etc.
tabbott
Comment 1
2011-12-06 07:12:56 PST
Created
attachment 118046
[details]
hook up MIMESniffer
Rob Buis
Comment 2
2011-12-06 08:05:38 PST
Comment on
attachment 118046
[details]
hook up MIMESniffer View in context:
https://bugs.webkit.org/attachment.cgi?id=118046&action=review
This really needs a ChangeLog! Looks quite good otherwise.
> Source/WebCore/platform/network/MIMESniffing.cpp:28 > +using std::strlen;
This should not be needed. Also it may be better to do this in a seperate bug.
> Source/WebCore/platform/network/blackberry/NetworkJob.cpp:364 > + if (pos != -1) {
pos variable can be introduced in the if
> Source/WebCore/platform/network/blackberry/NetworkJob.cpp:374 > + const char* type = sniffer.sniff(buf, len);
Can be included in if.
> Source/WebCore/platform/network/blackberry/NetworkJob.cpp:376 > + m_sniffedMimeType = WTF::String(type);
Wrong indentation.
tabbott
Comment 3
2011-12-06 12:36:15 PST
Created
attachment 118092
[details]
cleaned up some style, added changelog entry
Rob Buis
Comment 4
2011-12-06 12:41:53 PST
Comment on
attachment 118092
[details]
cleaned up some style, added changelog entry View in context:
https://bugs.webkit.org/attachment.cgi?id=118092&action=review
The code looks great to me, but ChangeLog does not follow the required format. Probably last round but r1 for now.
> Source/WebCore/ChangeLog:19 > +
The ChangeLog is not quite right, it goes: bug title bug url reviewed by Description of the solution Tests, or why there are no tests.
tabbott
Comment 5
2011-12-06 12:51:59 PST
Created
attachment 118096
[details]
correct changelog format
tabbott
Comment 6
2011-12-06 12:55:32 PST
Created
attachment 118099
[details]
previous patch introduced unwanted changes
Rob Buis
Comment 7
2011-12-06 13:09:11 PST
Comment on
attachment 118099
[details]
previous patch introduced unwanted changes View in context:
https://bugs.webkit.org/attachment.cgi?id=118099&action=review
> Source/WebCore/ChangeLog:1 > +2011-12-06 Tyler Abbott <
tabbott@rim.com
>
needs an empty line before the bug title
> Source/WebCore/ChangeLog:7 > + Hook up MIMESniffing. Override Content-Types will
I'd say "Hook up MIMESniffing for the BlackBerry port.
tabbott
Comment 8
2011-12-06 13:36:44 PST
Created
attachment 118102
[details]
better commit message
Rob Buis
Comment 9
2011-12-06 13:38:07 PST
Comment on
attachment 118102
[details]
better commit message LGTM
WebKit Review Bot
Comment 10
2011-12-06 14:39:07 PST
Comment on
attachment 118102
[details]
better commit message Rejecting
attachment 118102
[details]
from commit-queue. Failed to run "['/mnt/git/webkit-commit-queue/Tools/Scripts/webkit-patch', '--status-host=queues.webkit.org', '-..." exit_code: 2 Last 500 characters of output: ED at 346. Hunk #5 FAILED at 551. 5 out of 5 hunks FAILED -- saving rejects to file Source/WebCore/platform/network/blackberry/NetworkJob.cpp.rej patching file Source/WebCore/platform/network/blackberry/NetworkJob.h Hunk #1 FAILED at 152. Hunk #2 FAILED at 177. 2 out of 2 hunks FAILED -- saving rejects to file Source/WebCore/platform/network/blackberry/NetworkJob.h.rej Failed to run "[u'/mnt/git/webkit-commit-queue/Tools/Scripts/svn-apply', u'--reviewer', u'Rob Buis', u'--force']" exit_code: 1 Full output:
http://queues.webkit.org/results/10736865
tabbott
Comment 11
2011-12-06 14:52:44 PST
(In reply to
comment #10
)
> (From update of
attachment 118102
[details]
) > Rejecting
attachment 118102
[details]
from commit-queue. > > Failed to run "['/mnt/git/webkit-commit-queue/Tools/Scripts/webkit-patch', '--status-host=queues.webkit.org', '-..." exit_code: 2 > > Last 500 characters of output: > ED at 346. > Hunk #5 FAILED at 551. > 5 out of 5 hunks FAILED -- saving rejects to file Source/WebCore/platform/network/blackberry/NetworkJob.cpp.rej > patching file Source/WebCore/platform/network/blackberry/NetworkJob.h > Hunk #1 FAILED at 152. > Hunk #2 FAILED at 177. > 2 out of 2 hunks FAILED -- saving rejects to file Source/WebCore/platform/network/blackberry/NetworkJob.h.rej > > Failed to run "[u'/mnt/git/webkit-commit-queue/Tools/Scripts/svn-apply', u'--reviewer', u'Rob Buis', u'--force']" exit_code: 1 > > Full output:
http://queues.webkit.org/results/10736865
Looks like these files haven't been pushed upstream yet. Thanks for the review Rob.
Leo Yang
Comment 12
2011-12-06 16:34:35 PST
A nit: remove WTF:: before String because it's unnecessary and you need to keep the same style with other usage of String in the same file.
Eric Seidel (no email)
Comment 13
2011-12-21 15:06:05 PST
Comment on
attachment 118102
[details]
better commit message He's not a committer, so this might as well be r-.
Antonio Gomes
Comment 14
2012-02-05 21:44:24 PST
(In reply to
comment #13
)
> (From update of
attachment 118102
[details]
) > He's not a committer, so this might as well be r-.
tyler, please move on here :-)
tabbott
Comment 15
2012-02-06 07:17:21 PST
(In reply to
comment #14
)
> (In reply to
comment #13
) > > (From update of
attachment 118102
[details]
[details]) > > He's not a committer, so this might as well be r-. > > tyler, please move on here :-)
This is on my TODO list :-)
tabbott
Comment 16
2012-03-09 14:12:32 PST
Created
attachment 131105
[details]
The old patch was stale, here is a fresh one.
Rob Buis
Comment 17
2012-03-09 14:24:20 PST
Comment on
attachment 131105
[details]
The old patch was stale, here is a fresh one. LGTM.
WebKit Review Bot
Comment 18
2012-03-09 18:56:09 PST
Comment on
attachment 131105
[details]
The old patch was stale, here is a fresh one. Clearing flags on attachment: 131105 Committed
r110361
: <
http://trac.webkit.org/changeset/110361
>
WebKit Review Bot
Comment 19
2012-03-09 18:56:15 PST
All reviewed patches have been landed. Closing bug.
Charles Wei
Comment 20
2012-03-26 23:39:02 PDT
***
Bug 75340
has been marked as a duplicate of this bug. ***
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug