[Prototype-core] Re: IE6: This page contains both secure and nonsecure items.

2009-06-30 Thread YaoXing Zhang





Diodeus,
Maybe you would like to try YUI Compressor which will reduce the size
even more.
I'm using prototype 1.6.2 and after compressing it becomes from 127Kb
to 74Kb.


Regards,
YX
MSN: zhangyaox...@live.cn
Skype: yaoxing.zhang


Diodeus wrote:

  Ryan, thank you for this fix. I've modified my copy of rc3.

On a side note: I think the library would lose about 10k if tabs were
used for indentation rather than multiple spaces.



On Jun 30, 11:52am, "Ryan Holliday (wrh2)" ryan.holli...@gmail.com
wrote:
  
  
I filed a bug on this issue with a suggested fix (https://
prototype.lighthouseapp.com/projects/8886/tickets/648-ssl-error-on-ie6-
with-161_rc2). I'm not sure what the status is for getting this
resolved for 1.6.1, although we've been running successfully with the
proposed fix for several months in a production environment.



  2009/6/29 Diodeus diod...@gmail.com
  


  Hi gang,
  


  When testing with 1.6.1_rc2 and 1.6.1_rc3 I got complaints from some
corporate clients that they're getting the following dialog on IE6.
  


  "This page contains both secure and nonsecure items."
  


  I managed to test this, and confirmed this is the case. Older versions
of Prototype do not cause this problem. I'm not sure why it's
happening. I searched through rc3 and other than comments I didn't
find any obvious culprits.
  


  So I cannot concurrently support both IE8 and IE6 users.
  

  
  
  


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Prototype: Core group.
  To post to this group, send email to prototype-core@googlegroups.com
  To unsubscribe from this group, send email to prototype-core-unsubscr...@googlegroups.com
  For more options, visit this group at http://groups.google.com/group/prototype-core?hl=en
-~--~~~~--~~--~--~---





[Prototype-core] Re: Help! How to get document.body height using Element.getDimensions

2009-05-05 Thread Yaoxing Zhang
I think what you want is not the height of body, but client height. try:
document.documentElement.clientHeight;

On Wed, May 6, 2009 at 12:09 AM, kimbaudi kimba...@gmail.com wrote:


 Hi, I am unable to get the height of the body tag using
 Element.getDimensions although I can get the width of the body tag
 fine. How can I get the height of the body tag? I have my simple
 code pasted at http://pastie.org/468828. Here is the snippet of code
 below as well:

 function alertBodyDim() {
   /* $('main') refers to body id=main */
var dimensions = $('main').getDimensions();
alert(dimensions.width);
alert(dimensions.height);
 }

 - Paul K
 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype: Core group.
To post to this group, send email to prototype-core@googlegroups.com
To unsubscribe from this group, send email to 
prototype-core-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-core?hl=en
-~--~~~~--~~--~--~---