Open
Bug 1139414
Opened 11 years ago
Updated 6 years ago
Replace Bugzilla::Util::url_quote() by URI::Escape::uri_escape_utf8()
Categories
(Bugzilla :: Bugzilla-General, enhancement)
Tracking
()
NEW
People
(Reporter: LpSolit, Unassigned)
References
Details
Since Bugzilla 3.4, the URI module is a required module. So we no longer need our own Bugzilla::Util::url_quote() subroutine which is simply a clone of URI::Escape::uri_escape_utf8(). You use it as follow:
use URI::Escape;
my $escaped_string = uri_escape_utf8($string);
URI 1.55 and newer follows RFC 3986 by default, which is what we want, see bug 970283.
| Reporter | ||
Updated•10 years ago
|
Whiteboard: [good first bug]
I would like to work on this as my first bug. I was trying to search for the call sites of the function in question using Mozilla Cross reference but could not find any results. Could someone please provide some pointers on how to begin?
| Reporter | ||
Comment 2•10 years ago
|
||
The source code is here: http://git.mozilla.org/?p=bugzilla/bugzilla.git;a=tree [github]. To work on this bug, I suggest you install Bugzilla: http://bugzilla.readthedocs.org/en/latest/installing/index.html
Flags: needinfo?(LpSolit)
Comment 3•10 years ago
|
||
Can I work on this bug or somebody already doing it?
Flags: needinfo?(LpSolit)
Comment 4•10 years ago
|
||
"Assigned To" says "Nobody", hence working on this task is welcome :)
Flags: needinfo?(LpSolit)
Comment 5•10 years ago
|
||
Hello Andre, any tips to help me get started?
I am newbie so I would appreciate it. Thanks.
Comment 6•10 years ago
|
||
@Akshay: Sure, happy to help! Do you have a specific question? :)
(Also see http://catb.org/~esr/faqs/smart-questions.html#explicit - thanks!)
Updated•8 years ago
|
Keywords: good-first-bug
Comment 7•8 years ago
|
||
Is this bug solved or i can work on this?
Comment 8•7 years ago
|
||
Removing good-first-bug keyword because team does not have bandwidth to mentor at the moment.
Keywords: good-first-bug
Updated•6 years ago
|
Whiteboard: [good first bug]
You need to log in
before you can comment on or make changes to this bug.
Description
•