Closed
Bug 825191
Opened 12 years ago
Closed 12 years ago
Remove nsContentUtils::EqualsLiteralIgnoreASCIICase
Categories
(Core :: DOM: Core & HTML, defect)
Core
DOM: Core & HTML
Tracking
()
RESOLVED
FIXED
mozilla21
People
(Reporter: Ms2ger, Assigned: badanomaly)
References
Details
(Whiteboard: [good first bug][mentor=Ms2ger][lang=c++])
Attachments
(1 file, 1 obsolete file)
5.05 KB,
patch
|
mounir
:
review+
|
Details | Diff | Splinter Review |
This can simply use str.LowerCaseEqualsLiteral().
See <http://mxr.mozilla.org/mozilla-central/ident?i=EqualsLiteralIgnoreASCIICase> for the places where this is used.
Comment 1•12 years ago
|
||
Hi :) So if I wanna modify it, should I replace all codes like EqualsLiteralIgnoreASCIICase(str) with str.LowerCaseEqualsLiteral() ?
Comment 2•12 years ago
|
||
Oh and how should I get something like :Seven_Hong on top of my comment box, like you guys have :Somename ? Many thanks! :D
Reporter | ||
Comment 3•12 years ago
|
||
(In reply to sir.seven.hong from comment #1)
> Hi :) So if I wanna modify it, should I replace all codes like
> EqualsLiteralIgnoreASCIICase(str) with str.LowerCaseEqualsLiteral() ?
Correct.
Comment 4•12 years ago
|
||
Hi , can I be assigned this bug ??
Assignee | ||
Comment 5•12 years ago
|
||
Attachment #696960 -
Flags: review?
Assignee | ||
Comment 6•12 years ago
|
||
Hi !! I have attached a patch. What should be my next step ?
![]() |
||
Comment 7•12 years ago
|
||
(In reply to Mohit Gahlot ( :mgahlot ) from comment #6)
> Hi !! I have attached a patch. What should be my next step ?
Wait for the review to be done; but you need to specify the right
person
Assignee: nobody → mohit.www
Status: NEW → ASSIGNED
![]() |
||
Updated•12 years ago
|
Attachment #696960 -
Flags: review? → review?(Ms2ger)
Assignee | ||
Comment 8•12 years ago
|
||
(In reply to Edmund Wong (:ewong) from comment #7)
> (In reply to Mohit Gahlot ( :mgahlot ) from comment #6)
> > Hi !! I have attached a patch. What should be my next step ?
>
> Wait for the review to be done; but you need to specify the right
> person
Where do I need to specify ? and how am I supposed to know who is the right person ?
Reporter | ||
Comment 9•12 years ago
|
||
Comment on attachment 696960 [details] [diff] [review]
Diff created from the mozilla-central directory for bug 825191
Review of attachment 696960 [details] [diff] [review]:
-----------------------------------------------------------------
Thanks for taking this on! You patch looks good. One thing, though: we use
if (foo)
not
if ( foo )
(Note the spaces.) Could you just change that and request review from ':mounir'?
Attachment #696960 -
Flags: review?(Ms2ger) → feedback+
Assignee | ||
Comment 10•12 years ago
|
||
Attachment #696960 -
Attachment is obsolete: true
Attachment #696961 -
Flags: review?(mounir)
Assignee | ||
Comment 11•12 years ago
|
||
(In reply to :Ms2ger from comment #9)
> Comment on attachment 696960 [details] [diff] [review]
> Diff created from the mozilla-central directory for bug 825191
>
> Review of attachment 696960 [details] [diff] [review]:
> -----------------------------------------------------------------
>
> Thanks for taking this on! You patch looks good. One thing, though: we use
>
> if (foo)
>
> not
>
> if ( foo )
>
> (Note the spaces.) Could you just change that and request review from
> ':mounir'?
Done. I think.
Reporter | ||
Comment 12•12 years ago
|
||
(In reply to Mohit Gahlot ( :mgahlot ) from comment #8)
> (In reply to Edmund Wong (:ewong) from comment #7)
> > (In reply to Mohit Gahlot ( :mgahlot ) from comment #6)
> > > Hi !! I have attached a patch. What should be my next step ?
> >
> > Wait for the review to be done; but you need to specify the right
> > person
>
> Where do I need to specify ? and how am I supposed to know who is the right
> person ?
Look for a module owner or peer for the code you changed on <https://wiki.mozilla.org/Modules/All> (or just ask someone).
Comment 13•12 years ago
|
||
Comment on attachment 696961 [details] [diff] [review]
Patch 2
Review of attachment 696961 [details] [diff] [review]:
-----------------------------------------------------------------
r=me
Thank you for this patch :)
Attachment #696961 -
Flags: review?(mounir) → review+
Reporter | ||
Updated•12 years ago
|
Keywords: checkin-needed
Comment 14•12 years ago
|
||
Keywords: checkin-needed
Comment 15•12 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla21
Updated•6 years ago
|
Component: DOM → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•