http://bugzilla.mozilla.org/show_bug.cgi?id=214259
Firebird Download System Upgrades.
base/content/browser.js
- Check for Plugin Overrides for various MIME Types as the browser starts
- Make Save Link to Disk... obey download preferences, not showing the pick-file
dialog when the user has selected the 'always download to folder x' option.
http://bugzilla.mozilla.org/show_bug.cgi?id=214259
Firebird Download System Upgrades.
content/nsWidgetStateManager.js
- reindent the indentation mess in the file
- support saving data of panels that are sub-dialogs of iframe dialogs that are
using WSM.
r=torgo sr=manos
http://bugzilla.mozilla.org/show_bug.cgi?id=214259
Firebird Download System Upgrades.
exthandler/nsExternalHelperAppService.cpp
- update EHAS to use updated version of PromptForSaveToFile
- make the EHAS not set the MIME Info object's alwaysAskBeforeHandling flag
to false to make the UCT dialog's show behaviour consistent
bug 214985, r= sr=hyatt
Hacks to work around Bug #213538. By removing the ifdef in docshell, and managing this stuff in nsMsgWindow::OnStartURI,
we have lost the context as to whether the url originated from a link click (in which case thunderbird wants to kick it out
to the OS) or if it the url is something we are internally trying to load into the message pane.
Temporarily work around this issue by allowing chrome, jar and about:blank to be loaded.
a send options dialog.
Make the prefs dialog taller to fix some vertical cropping issues.
thanks to Stephen Walker for doing most of the work in this patch.
selects a completion from the popup.
- Listen for DOMAutoComplete and Blur events instead of Change events to
trigger prefilling the password field.
- Fix an off-by-one error in the multi-user password change confirmation
(the stored password was being changed for the wrong entry).
- Fix skipping multiple logins when reading the signon file.
- Add missing license for Makefile.in.
- Enable multiple username support by listening to change events for the username field when there is more than one stored login for the form.
- Make the signon hashtable store a SignonHashEntry, which has a pointer to the first SignonDataEntry. This lets us adjust the head of the linked list without a hashtable operation, and also fixes a case where we would continue using a deleted entry, leading to a crash.
- Change FindPasswordEntryFromSignonData to FnidPasswordEntryInternal, and refactor it a bit.
- Clean up prefill logic so that multiple forms on a page could be prefilled.
- Fix bug where the last input was used as the username field, instead of the input just before the password.
- Make sure we write out all entries for each realm.
- Make sure we include all entries in each realm when returning an enumerator.
- Remove some form manager cruft I missed in passwordManager.js.