Closed
Bug 157038
Opened 23 years ago
Closed 23 years ago
Password Manager dialog not being updated
Categories
(SeaMonkey :: Passwords & Permissions, defect, P2)
Tracking
(Not tracked)
RESOLVED
FIXED
mozilla1.1beta
People
(Reporter: morse, Assigned: morse)
Details
Attachments
(1 file, 1 obsolete file)
18.99 KB,
patch
|
samir_bugzilla
:
review+
morse
:
superreview+
|
Details | Diff | Splinter Review |
Now that password manager dialog has been changed from modal to non-modal, the
display needs to be updated dynamically whenever the password list changes
(e.g., when new logins are accepted).
See bug 156922 for similar problem with cookie manager.
Assignee | ||
Updated•23 years ago
|
Priority: -- → P2
Target Milestone: --- → mozilla1.1beta
Assignee | ||
Updated•23 years ago
|
Status: NEW → ASSIGNED
Assignee | ||
Comment 1•23 years ago
|
||
Comment 2•23 years ago
|
||
Comment on attachment 91559 [details] [diff] [review]
dynamically update password-manager display
sr=jag
Same thing applies here, use NS_LITERAL_STRING("...") instead of
NS_ConvertASCIItoUCS2("...").
Attachment #91559 -
Flags: superreview+
Assignee | ||
Comment 3•23 years ago
|
||
Attachment #91559 -
Attachment is obsolete: true
Assignee | ||
Comment 4•23 years ago
|
||
Comment on attachment 91588 [details] [diff] [review]
NS_ConvertASCIItoUCS2 changed to NS_LITERAL_STRING
r=jag (brought forward)
Attachment #91588 -
Flags: review+
Assignee | ||
Comment 5•23 years ago
|
||
Comment on attachment 91588 [details] [diff] [review]
NS_ConvertASCIItoUCS2 changed to NS_LITERAL_STRING
oops, I meant sr=jag (brought forward)
Attachment #91588 -
Flags: review+ → superreview+
Comment 6•23 years ago
|
||
Comment on attachment 91588 [details] [diff] [review]
NS_ConvertASCIItoUCS2 changed to NS_LITERAL_STRING
r=sgehani
Attachment #91588 -
Flags: review+
Assignee | ||
Comment 7•23 years ago
|
||
One clarification. Line 1907 in singsign.cpp which in the latest patch reads
os->NotifyObservers
(nsnull, "signonChanged", NS_LITERAL_STRING(state).get());
should instead read
os->NotifyObservers
(nsnull, "signonChanged", NS_ConvertASCIItoUCS2(state).get());
I got a little too overzelous in interpreting jag's comments when I converted
the patch in comment 1 to the patch in comment 3.
Assignee | ||
Comment 8•23 years ago
|
||
One more minor correction. In nsPasswordManager.cpp the patch shows:
return ::SINGSIGN_RemoveUser(PromiseFlatCString(aHost).get(),
- PromiseFlatString(aUser).get());
+ PromiseFlatString(aUser).get(), PR_FALSE);
The added parameter should be PR_TRUE instead of PR_FALSE. This controls
whether or not update notifications get sent when the password manager is
directed to remove a user. Without a PR_TRUE here, the dialog will not get
updated.
Assignee | ||
Comment 9•23 years ago
|
||
Fix checked in on trunk
Status: ASSIGNED → RESOLVED
Closed: 23 years ago
Resolution: --- → FIXED
Updated•21 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•