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)

x86
Windows 2000
defect
Not set
normal

Tracking

(Not tracked)

VERIFIED FIXED
mozilla1.2alpha

People

(Reporter: TucsonTester1, Assigned: cmanske)

Details

Attachments

(1 file, 1 obsolete file)

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.
Status: UNCONFIRMED → NEW
Ever confirmed: true
Reassigning
Assignee: morse → syd
Component: Password Manager → Editor: Composer
QA Contact: tpreston → sujay
--> cmanske
Assignee: syd → cmanske
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
Yes, it's signon.rememberSignons
Keywords: nsbeta1, patch, review
Whiteboard: publish → publish[FIX IN HAND]need r=,sr=
Target Milestone: mozilla1.2beta → mozilla1.2alpha
Attached patch patch v1 (obsolete) — Splinter Review
Use password mananager prefs to set disable state of "Save Password" checkbox and don't save if it is turned off.
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+
Keywords: nsbeta1nsbeta1+
Attached patch patch v2Splinter Review
Added a couple of "get prefs" utilities as requested by reviewer
Attachment #95260 - Attachment is obsolete: true
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 on attachment 95438 [details] [diff] [review] patch v2 sr=hewitt
Attachment #95438 - Flags: superreview+
checked into 1.2 trunk
Status: ASSIGNED → RESOLVED
Closed: 23 years ago
Keywords: patch, review
Resolution: --- → FIXED
Whiteboard: publish[FIX IN HAND]need r=,sr=
"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
Product: Browser → Seamonkey
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Creator:
Created:
Updated:
Size: