Closed
Bug 448482
Opened 17 years ago
Closed 13 years ago
No Proxy For: port Bug 311779 (map IE's ";" into ",") into "pref-proxies.js"
Categories
(SeaMonkey :: Preferences, defect)
SeaMonkey
Preferences
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: benc, Assigned: ewong)
Details
Attachments
(1 file, 2 obsolete files)
1.60 KB,
patch
|
iannbugzilla
:
review+
|
Details | Diff | Splinter Review |
No proxy for appears in:
/suite/common/pref/pref-proxies.js
In FF and Calendar, connection.js was modified to allow cut-and-paste IE no proxy configs to work auto-magically.
Updated•17 years ago
|
Version: unspecified → Trunk
Comment 1•17 years ago
|
||
This was just fixed for Thunderbird, too (bug 448479). SeaMonkey seems to take a more general approach for changing prefs, at least I couldn't find anything concerning actually changing prefs in pref-proxies.js. I guess oncommand and onChange, both used in pref-proxies.xul, are the wrong handlers for implementing this (the former fires on activating, the latter on changing an element).
![]() |
Assignee | |
Comment 2•13 years ago
|
||
Comment 3•13 years ago
|
||
Comment on attachment 604046 [details] [diff] [review]
Port Bug 311779 : Map IE's ";" into ",". (v1)
Review of attachment 604046 [details] [diff] [review]:
-----------------------------------------------------------------
::: suite/common/pref/pref-proxies.js
@@ +218,5 @@
> +
> +function UpdateProxies()
> +{
> + var noProxiesPref = document.getElementById("network.proxy.no_proxies_on");
> + noProxiesPref.value = noProxiesPref.value.replace(/[;]/g,',');
Nit: I think this can/should be
.replace(/;/g, ",");
(the brackets are unnecessary, we usually have a space after a comma, and use double quotes).
![]() |
Assignee | |
Comment 4•13 years ago
|
||
Fixed nit from comment #3.
Attachment #604046 -
Attachment is obsolete: true
Attachment #604372 -
Flags: review?(iann_bugzilla)
Attachment #604046 -
Flags: review?(iann_bugzilla)
Comment 5•13 years ago
|
||
Comment on attachment 604372 [details] [diff] [review]
Port Bug 311779 : Map IE's ";" into ",". (v2)
Review of attachment 604372 [details] [diff] [review]:
-----------------------------------------------------------------
::: suite/common/pref/pref-proxies.js
@@ +218,5 @@
> +
> +function UpdateProxies()
> +{
> + var noProxiesPref = document.getElementById("network.proxy.no_proxies_on");
> + noProxiesPref.value = noProxiesPref.value.replace(/;/g,', ');
Sorry for confusing you. I meant space after a comma /in code/, not /in a string/. ;-) See my example, which you could/should have copied 1:1.
![]() |
Assignee | |
Comment 6•13 years ago
|
||
Attachment #604372 -
Attachment is obsolete: true
Attachment #604824 -
Flags: review?(iann_bugzilla)
Attachment #604372 -
Flags: review?(iann_bugzilla)
Attachment #604824 -
Flags: review?(iann_bugzilla) → review+
![]() |
Assignee | |
Comment 7•13 years ago
|
||
Pushed to comm-central:
http://hg.mozilla.org/comm-central/rev/5df4e53682a2
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•