JD wrote:
Arnie Goetchius wrote:
 clay wrote:
 Stanimir Stamenkov wrote:
 Mon, 09 Nov 2009 22:52:43 +0200, /Stanimir Stamenkov/:

 I've noticed saved passwords are not pre-filled into transformed
 documents using Firefox 3.5 and SeaMonkey 2.0, while this worked just
 fine with the Password Manager of SeaMonkey 1.1 (and I guess with
 Firefox 2). I've encountered this with my bank's online banking
 service:

 https://remote.bank.allianz.bg/EBank/

 They serve up XML content providing an XSLT xml-stylesheet which
 generates the HTML output in the browser (client-side).

 Is anyone aware of Bugzilla entry or something regarding this issue?

 Thinking more, Firefox 2.0 already had a reworked password manager and
 short search into the Mozilla Bugzilla appeared:

 Logins not filled in on XML+XSLT page
 <https://bugzilla.mozilla.org/show_bug.cgi?id=354706>

 is initially reported against Firefox 2.0 (two years ago). Too bad
 SeaMonkey 2 has to inherit such longstanding Firefox bugs.


 fwiw, this hack:
 <http://cybernetnews.com/firefox-remember-passwords/>
 Made Firefox remember my bank's (Wells Fargo) login/pw.
 No idea if it's a 'transformed' document...

 Great hack! Also works in Seamonkey 2 particularly for financial
 institution log-ins.

Did I set it up correctly?

_isAutocompleteDisabled :  function (element) {
          if (element&&  element.hasAttribute("autocomplete")&&
              element.getAttribute("autocomplete").toLowerCase() == "off")
              return false;

         return false;


I ask because it doesn't work for the PNC signon:

https://www.pnccardservicesonline.com/default.aspx

I saved the file with the change and restarted SM2.

I did it just by commenting out the entire "if" statement, like this:

_isAutocompleteDisabled :  function (element) {
        /*
        if (element && element.hasAttribute("autocomplete") &&
            element.getAttribute("autocomplete").toLowerCase() == "off")
            return true;
        */

        return false;

The idea is to always return "false". You could also just _delete_ the entire "if" statement, but I was going for minimal and reversible. -JW
_______________________________________________
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey

Reply via email to