Commit Graph

78 Commits

Author SHA1 Message Date
Birunthan Mohanathas
fe337d7c5e Bug 1166840 - Remove unused document argument in uses of nsIClipboardHelper.copyString. r=ehsan 2015-05-21 21:49:30 +01:00
Paolo Amadini
7f184b5c46 Bug 1148026 - Add a skeleton of the login fill doorhanger. r=MattN 2015-05-08 13:13:54 +01:00
Matthew Noorenberghe
8fe8e33506 Bug 1124472 - Add telemetry for the Saved Passwords dialog. r=dolske 2015-03-28 21:50:40 -07:00
Deepak Koli
71196aaee7 Bug 1039540 - In-content preferences: Disable the sorting of rows of sub-dialogs when right clicking; r=MattN
Review comments applied by MattN
2015-03-26 18:02:49 -07:00
YFdyh000
891e5e6ea7 Bug 771215 - Add an accesskey to the "Copy Username" menu item in the Saved Passwords dialog. r=MattN 2014-10-16 00:12:01 -07:00
Jon Morton
4a98f87acc Bug 979835: Port BoxObject and its subclasses to WebIDL. r=khuey sr=bz 2014-10-14 13:15:21 -07:00
Jared Wein
06f47636a0 Bug 1037049 - In-content preference subdialogs that contain a <resizer> need to have their <resizer> removed and passed in as a "resizable" window opening parameter. r=Gijs 2014-08-20 17:22:55 -04:00
Jim Blandy
39dc0c6097 Bug 914753: Make Emacs file variable header lines correct, or at least consistent. DONTBUILD r=ehsan
The -*- file variable lines -*- establish per-file settings that Emacs will
pick up. This patch makes the following changes to those lines (and touches
nothing else):

 - Never set the buffer's mode.

   Years ago, Emacs did not have a good JavaScript mode, so it made sense
   to use Java or C++ mode in .js files. However, Emacs has had js-mode for
   years now; it's perfectly serviceable, and is available and enabled by
   default in all major Emacs packagings.

   Selecting a mode in the -*- file variable line -*- is almost always the
   wrong thing to do anyway. It overrides Emacs's default choice, which is
   (now) reasonable; and even worse, it overrides settings the user might
   have made in their '.emacs' file for that file extension. It's only
   useful when there's something specific about that particular file that
   makes a particular mode appropriate.

 - Correctly propagate settings that establish the correct indentation
   level for this file: c-basic-offset and js2-basic-offset should be
   js-indent-level. Whatever value they're given should be preserved;
   different parts of our tree use different indentation styles.

 - We don't use tabs in Mozilla JS code. Always set indent-tabs-mode: nil.
   Remove tab-width: settings, at least in files that don't contain tab
   characters.

 - Remove js2-mode settings that belong in the user's .emacs file, like
   js2-skip-preprocessor-directives.
2014-06-24 22:12:07 -07:00
Justin Dolske
4d620fdfa8 Bug 998081 - Show login metadata in password manager UI. r=mattn 2014-05-22 12:18:36 -07:00
Michael Pruett
e4b3983d54 Bug 431901 - Update preference dialogs to treat backspace and delete equivalently on Mac OS X. r=MattN 2014-05-12 23:11:19 -05:00
Michael Pruett
9b631e0ffb Bug 1004881 - Fix key press handling in saved passwords exceptions dialog. r=MattN 2014-05-05 18:16:21 -05:00
Nochum Sossonko
f9f8cee7bf Bug 668903 - Pressing escape should close the saved passwords dialog. r=MattN 2014-04-07 16:01:35 -04:00
Trevor Saunders
fdf2a869ea bug 407956 - make nsITreeView not take a nsISupportsArray* r=neil, bz sr=neil 2013-01-06 19:54:42 -05:00
Andres Hernandez
5389a4a424 Bug 834000 - Removing passwords in Firefox/Thunderbird 18.* always randomly reorders list of passwords in password manager. r=MattN 2013-02-01 11:53:28 -06:00
Andres Hernandez
26970d4999 Bug 395681 - Password manager dialogs observe topics that are never fired r=MattN 2012-09-25 10:00:46 -06:00
Sankha Narayan Guria
9e0b351b84 Bug 656011 - Password Manager now allows to copy username; r=MattN 2012-07-04 13:14:00 -07:00
Ehsan Akhgari
f4bd388765 Bug 722872 - Part 1: Add nsITransferable::Init(nsILoadContext*), enforce that it's called in debug builds, and add nsIDOMDocument* arguments to nsIClipboardHelper methods; r=roc
This patch does the following:

* It adds nsITransferable::Init(nsILoadContext*).  The load context
  might be null, which means that the transferable is non-private, but
  if it's non-null, we extract the boolean value for the privacy mode
  and store it in the transferable.
* It adds checks in debug builds to make sure that Init is always
  called, in form of fatal assertions.
* It adds nsIDOMDocument* agruments to nsIClipboardHelper methods which
  represent the document that the string is coming from.
  nsIClipboardHelper implementation internally gets the nsILoadContext
  from that and passes it on to the transferable upon creation.  The
  reason that I did this was that nsIClipboardHelper is supposed to be a
  high-level helper, and in most of its call sites, we have easy access
  to a document object.
* It modifies all of the call sites of the above interfaces according to
  this change.
* It adds a GetLoadContext helper to nsIDocument to help with changing
  the call sites.
2012-04-16 22:14:01 -04:00
Neil Rashbrook
3f194429dd Bug 758354 Stop unnecessarily preprocessing chrome r=dolske 2012-06-26 00:11:16 +01:00
Ed Morley
4bd90ea948 Backout ec9451e9e830 (bug 758354) for PGO linux permaorange in browser_bug422590.js and friends 2012-06-25 19:14:43 +01:00
Neil Rashbrook
d9a10be7eb Bug 758354 Stop unnecessarily preprocessing chrome r=dolske 2012-06-25 09:24:49 +01:00
Gervase Markham
cb6a072c2a Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
Ed Morley
75515b4939 Bug 689884 - Deleted the now unused Makefiles from the tree; r=khuey 2011-10-06 17:15:07 +01:00
Marco Zehe
ed591fb32f Bug 668192 - Improve screen reader reading of password manager intro text, r=gavin 2011-07-01 10:37:44 +02:00
Paul O’Shannessy
a741979d09 Bug 571997 - Copy Password doesn't ask for master password while Show Passwords does [r=dolske] 2011-06-21 10:44:09 -07:00
Neil Deakin
d2db89aa97 Bug 556645, extra resizer in some dialogs, r=dao 2010-07-08 08:27:47 -07:00
Frank Yan
afdcd3f2cd Bug 568287 - Expand test for 'Copy Password' context menu item in Password Manager [r=dolske] 2010-06-09 13:55:46 -07:00
Frank Yan
9a3ddaf20d Bug 566910 - 'copy password' context menu item for password manager. r=dolske 2010-05-25 21:35:09 -07:00
Dão Gottwald
f0e9c778e4 Bug 5265285 - getAllLogins, getAllDisabledHosts and getAllEncryptedLogins count out params should be optional. r=dolske 2009-11-08 10:22:11 +01:00
Jens Hatlak
e7ba1c6dc1 Bug 485701 - Add sort markers/arrows to Password Manager and keep sort direction when clearing filter. r=dolske 2009-08-20 15:17:30 -07:00
Matt Noorenberghe
fa7a453054 Bug 482232 - Using search field in saved password window changes width of search field. r=dolske 2009-05-12 12:09:19 -07:00
Ehsan Akhgari
4b2e8ae388 Bug 491898 - Random Test Failure (browser_passwordmgrdlg.js); r=dolske 2009-05-12 22:23:36 +04:30
Ehsan Akhgari
8c370909e6 Bug 451352 - Further fixes to pwmgr search filtering UI; r=dolske 2009-04-23 10:27:10 +04:30
Dão Gottwald
1b0e61a8e5 Bug 483370 - Buttons on Security tab are broken when windows are already open. r=mconnor 2009-03-17 14:08:07 +01:00
Dão Gottwald
9fc922ee13 cookies.js whitespace cleanup 2009-03-14 14:32:36 +01:00
Ehsan Akhgari
50cd89c8bb Bug 478430 - [RTL] URLs in exceptions dialogs are right-to-left; r=gavin 2009-03-01 20:03:52 +04:30
Marco Zehe
36c91bafeb bug 469367 - Add ARIA semantics to those search widget types that don't have a Search button, r=dao, r=surkov 2009-02-02 10:38:53 +01:00
Justin Dolske
3ac2ed1dfd Backout changeset 8dd2e82503cd (bug 451352), it broke password manager. 2009-01-30 12:01:46 -08:00
Ehsan Akhgari
3fc2c85d45 Bug 451352 - Further fixes to pwmgr search filtering UI; r=dolske 2009-01-30 11:43:16 +03:30
Kai Liu
a1d374de00 Bug 240536 - resizer direction is to the right, when interface is RTL; r=roc,mano sr=roc 2009-01-18 13:58:19 +03:30
Dão Gottwald
4d42e6fdf3 Bug 449661 – Use the new search textbox binding in the password manager. r=mconnor 2008-08-15 04:27:54 +02:00
Paul O'Shannessy
69a08d6b76 Bug 449810 – legacy storage module should throw on canceled master password entry in getAllLogins. r=dolske 2008-08-08 16:04:27 -07:00
beaaec1a0f Bug 423461 Warning: assignment to undeclared variable syncNeeded r=dolske a=dsicore 2008-03-19 14:12:15 -07:00
898b9fccc5 Bug 382447 - "Show passwords" button in preferences should be renamed. r=gavin, a1.9=beltzner, ui-r=beltzner 2008-03-07 16:27:27 -08:00
74f4b3e92f Bug 404014 - "The Password Manager dialog's label changes when clearing the Search box" [p=ehsan.akhgari@gmail.com (Ehsan Akhgari [ehsan]) r=dolske r=gavin a1.9=damons] 2008-02-26 02:03:36 -08:00
f479000cf3 Bug 404015 - "The Password Manager dialog's list selection changes when pressing Escape" [p=ehsan.akhgari@gmail.com (Ehsan Akhgari) r=Mano a1.9=schrep] 2008-01-17 02:26:14 -08:00
c12418e896 Bug 381692 - "Page Info Security section should show site-specific saved passwords" [p=ehsan.akhgari@gmail.com (Ehsan Akhgari) r=Mano ui-r=johnath a1.9=schrep] 2008-01-04 22:06:30 -08:00
91d2a571b2 Bug 408550 - Saved password filter text box is case sensitive when it should not be. r=gavin, a1.9=beltzner 2007-12-28 14:05:49 -08:00
edf4810d1e Bug 408359 - Password Manager dialog's Show/Hide Passwords button does not have an access key. p=ehsan.akhgari@gmail.com, r=mano, a1.9=beltzner 2007-12-14 15:38:39 -08:00
f058b66a17 Bug 405389 - "Passwords reappear after being deleted, when using the search" [p=ehsan.akhgari@gmail.com (Ehsan Akhgari) r=mconnor a=blocking-firefox3+] 2007-12-12 05:24:39 -08:00
49a89078f0 Bug 327048 - "support filtering in password manager via Search field" [p=ehsan.akhgari@gmail.com (Ehsan Akhgari) r+a1.9=mconnor] 2007-10-19 00:57:53 -07:00