Hi,

i am encountering problem with an SSL enabled T5 Application under Internetexplorer 6 (various versions).

On every page load under SSL, IE6 announces that the page is secure, but contains insecure items. I checked our complete source code for references to insecure content, without success.

Finally i figured out, that blackbird is causing this behaviour. If i remove the blackbird code in the /assets/virtual/XXXXXX==.js file, everything is okay. I assume, that this lines of code ar causing the message:

<snip>
    function backgroundImage()
    {
      //(IE6 only) change <BODY> tag's background to resolve
      // {position:fixed} support
        var bodyTag = $(document.body);

        if (bodyTag.currentStyle && IE6_POSITION_FIXED)
        {
            if (bodyTag.currentStyle.backgroundImage == 'none')
            {
                bodyTag.style.backgroundImage = 'url(about:blank)';
            }
            if (bodyTag.currentStyle.backgroundAttachment == 'scroll')
            {
                bodyTag.style.backgroundAttachment = 'fixed';
            }
        }
    }
</snip>

I believe, that the background Image 'about:blank' is treated as non-secured content.

We are using the current snapshot of Tapestry 5.1.0.4

Finally, my questions:

- Can i disable blackbird completely? (as we are not using it at all)
- Shall i file a jira bug?



Felix

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to