-
This is for the OS-X version.
What happens:
* Check the "minimize to tray on quit/close" button.
* Close the KeePassX window.
* Switch to another app.
* Run KeePassX (clicking on Dock, double clicking Application Icon, or using QuickSilver)
* Note how the main window isn't re-opened.
I expect it to re-open the keepassx window.
This is a usability flow issue. I like having...
2009-07-06 15:12:43 UTC in KeePassX
-
This makes getting the passwords out of keepassx into other things, like PDAs, phones, etc. really difficult.
2009-02-06 14:45:53 UTC in KeePassX
-
What happens:
Create an email. To: yourself, Bcc: Some other address (without a known PGP key).
Note that the encryption checkbox is auto-checked.
If you send this, it'll be encrypted to yourself but not for the other addresses (it can't be, there is no known PGP key).
What I expected:
The encryption checkbox shouldn't be checked if any of the account (To, CC, or Bcc) do not have...
2009-01-07 19:29:40 UTC in GPGMail
-
The reason for this bug is that this breaks a lot of input fields. It requires either: patching the back-end code or writing some javascript to try to fix this.
I've been using YUI on code where I don't control the back-end code at all.
I'm fixing it using this "plugin":
YAHOO.widget.AutoComplete.prototype.pluginNoDelim = function () {
var that = this, el = this._elTextbox, func;...
2008-10-24 13:04:30 UTC in YUI Library
-
I tried it both ways.
The error isn't actually caught in the code itself, so it can't be passed into the subscriber. Not for JSON errors.
2008-10-23 01:19:15 UTC in YUI Library
-
How has this been resolved?
Which version of YUI was it included or will be included in?
How about a little more info?.
2008-10-17 14:49:34 UTC in YUI Library
-
It'd be nice if there was a busy class (added when the autocomplete is getting results) and a focused class (added when the element is focused) to the wrapping div in the autocomplete. I think it should just be built in. I certainly expected it to be built in.
I've attached a plugin version of the same. Just initialize it by calleding acobject.pluginBusyFocus();
Ciao!
2008-10-10 18:03:18 UTC in YUI Library
-
If you enable delimChar then values submitted will include the delimChar added to the end of the value.
Example:
delimChar = ';'
Type "foo", autocomplete "foobar", the value is now "foobar;"
If you submit the form at this point, the value is "foobar;" but I expect "foobar", not "foobar;".
Ciao!
2008-10-10 16:06:28 UTC in YUI Library
-
This is not fixed in 2.6.0.
A simple test case:
Create an autocomplete. Point the 'source' at a static file with JSON. Verify that it works correctly. Now replace the 'source' with something invalid, such as '{ blah'.
This *should* return a dataErrorEvent of some kind.
2008-10-08 15:07:34 UTC in YUI Library
-
You can only override it on the prototype. You cannot override it on an existing instance because it pulls it into a private namespace.
That is, once the class is turned into an object instance, it ignores _getNextY on the object.
The documentation should probably also be changed, based on the comments below.
Ciao!
2008-09-10 18:32:49 UTC in YUI Library