Closed
Bug 143154
Opened 23 years ago
Closed 23 years ago
Password manager is OFF but the option to save password is still ON in publishing setup in Composer
Categories
(SeaMonkey :: Composer, defect)
Tracking
(Not tracked)
VERIFIED
FIXED
mozilla1.2alpha
People
(Reporter: TucsonTester1, Assigned: cmanske)
Details
Attachments
(1 file, 1 obsolete file)
|
6.84 KB,
patch
|
Brade
:
review+
hewitt
:
superreview+
|
Details | Diff | Splinter Review |
If password manager is OFF the Save Password option in Publish Page > settings
should not be active or should give a prompt to turn password manager ON.
Navigator does not prompt to save password if password manager is OFF, so not
sure why it is an option for publishing when it is OFF. Help > Using privacy
features > Using the Password manager > Turning on and off > "Password Manager
is on by default." it is off when I installed on WIN2000.
Updated•23 years ago
|
Status: UNCONFIRMED → NEW
Ever confirmed: true
Comment 1•23 years ago
|
||
Reassigning
Assignee: morse → syd
Component: Password Manager → Editor: Composer
QA Contact: tpreston → sujay
| Assignee | ||
Comment 3•23 years ago
|
||
Steve: Is there a pref I can check to tell if Password manager is turned off?
Status: NEW → ASSIGNED
Whiteboard: publish
Target Milestone: --- → mozilla1.2beta
Comment 4•23 years ago
|
||
Yes, it's signon.rememberSignons
| Assignee | ||
Updated•23 years ago
|
| Assignee | ||
Comment 5•23 years ago
|
||
Use password mananager prefs to set disable state of "Save Password" checkbox
and don't save if it is turned off.
Comment 6•23 years ago
|
||
Comment on attachment 95260 [details] [diff] [review]
patch v1
I don't understand why gPasswordManagerOn needs to be global; can't you just
make that a function and call it the one or two places that you need it?
I would prefer to see this made into a utility function (or something similar):
+ var prefs = GetPrefs();
+ if (prefs)
+ {
+ try {
+ gPasswordManagerOn = prefs.getBoolPref("signon.rememberSignons");
+ gDialog.SavePassword.disabled = !gPasswordManagerOn;
+ } catch (e) {}
+ }
Attachment #95260 -
Flags: needs-work+
Updated•23 years ago
|
| Assignee | ||
Comment 7•23 years ago
|
||
Added a couple of "get prefs" utilities as requested by reviewer
Attachment #95260 -
Attachment is obsolete: true
Comment 8•23 years ago
|
||
Comment on attachment 95438 [details] [diff] [review]
patch v2
r=brade
but I don't see much point in having a local var "prefs" inside the various
pref calls; this should be equivalent:
function GetBoolPref(name)
{
if (name) // is this needed?
{
try {
return GetPrefs().getBoolPref(name);
} catch (e) {}
}
return "";
}
Attachment #95438 -
Flags: review+
Comment 9•23 years ago
|
||
Comment on attachment 95438 [details] [diff] [review]
patch v2
sr=hewitt
Attachment #95438 -
Flags: superreview+
| Assignee | ||
Comment 10•23 years ago
|
||
checked into 1.2 trunk
Comment 11•23 years ago
|
||
"save password" checkbox is disabled when passwd mgr is disabled.
vrfy'd fixed with 2003.02.19 comm trunk on win2k and linux rh8.0.
Status: RESOLVED → VERIFIED
Updated•21 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•