[Proto-Scripty] Re: IE 7 Enhanced Security

2009-03-08 Thread jdeighan

Unfortunately, this problem causes our web application to be totally
unusable under IE 7. Since I don't see anything on the prototype.js
web site about getting this fixed soon, could you suggest a way to
just disable this so that we can continue to use prototype.js until
there's a fix out? Honestly, we currently use very little from
prototype.js, but I'm hoping to use more and more of it. But, at the
moment, users who use IE 7 are totally out of luck.

On Feb 4, 2:27 am, T.J. Crowder t...@crowdersoftware.com wrote:
 Hi John,

 I was hoping someone with a link would chime in here fairly quickly,
 but in the absense of that...

 This is a known problem.  OnIE, to implement the dom:loaded event,
 Prototype uses a deferred script tag:

 * * * *
     document.write(script id=__onDOMContentLoaded defer src=//:\/
 script);
     $(__onDOMContentLoaded).onreadystatechange = function() {
       if (this.readyState == complete) {
         this.onreadystatechange = null;
         fireContentLoadedEvent();
       }
     };
 * * * *

 I believe there's an effort under way to change how dom:loaded is
 fired onIEso it doesn't do that, as this isn't the only problem it
 causes.

 HTH,
 --
 T.J. Crowder
 tj / crowder software / com
 Independent Software Engineer, consulting services available

 On Feb 3, 4:43 pm, john.deig...@gmail.com john.deig...@gmail.com
 wrote:

  When loading a page that includes the prototype.js library (I've tried
  both 1.6.0.2 and 1.6.0.3),IE7pops up a dialog box that says
  Content from the Web site below is being blocked by Internet Explorer
  Enhanced Security Configuration and lists the URL http://;. That's
  right - no IP Name, 'localhost' or anything. Any attempt to add this
  toIE'sallowed URLs fails since it's not a valid URL. A web page as
  simple as the one below exhibits this sympton. If I remove the link to
  prototype.js, the behavior goes away.

  html
  head
          titletesting/title
          script language=javascript type=text/javascript 
  src=/javascript/
  prototype.js/script
  /head

  body
  ptesting/p

  /body/html

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



[Proto-Scripty] Re: IE 7 Enhanced Security

2009-03-08 Thread Tobie Langel

You should use trunk, where that issue's been fixed, and which should
be released asap.

Best,

Tobie

On Mar 8, 7:09 pm, jdeighan john.deig...@gmail.com wrote:
 Unfortunately, this problem causes our web application to be totally
 unusable under IE 7. Since I don't see anything on the prototype.js
 web site about getting this fixed soon, could you suggest a way to
 just disable this so that we can continue to use prototype.js until
 there's a fix out? Honestly, we currently use very little from
 prototype.js, but I'm hoping to use more and more of it. But, at the
 moment, users who use IE 7 are totally out of luck.

 On Feb 4, 2:27 am, T.J. Crowder t...@crowdersoftware.com wrote:

  Hi John,

  I was hoping someone with a link would chime in here fairly quickly,
  but in the absense of that...

  This is a known problem.  OnIE, to implement the dom:loaded event,
  Prototype uses a deferred script tag:

  * * * *
      document.write(script id=__onDOMContentLoaded defer src=//:\/
  script);
      $(__onDOMContentLoaded).onreadystatechange = function() {
        if (this.readyState == complete) {
          this.onreadystatechange = null;
          fireContentLoadedEvent();
        }
      };
  * * * *

  I believe there's an effort under way to change how dom:loaded is
  fired onIEso it doesn't do that, as this isn't the only problem it
  causes.

  HTH,
  --
  T.J. Crowder
  tj / crowder software / com
  Independent Software Engineer, consulting services available

  On Feb 3, 4:43 pm, john.deig...@gmail.com john.deig...@gmail.com
  wrote:

   When loading a page that includes the prototype.js library (I've tried
   both 1.6.0.2 and 1.6.0.3),IE7pops up a dialog box that says
   Content from the Web site below is being blocked by Internet Explorer
   Enhanced Security Configuration and lists the URL http://;. That's
   right - no IP Name, 'localhost' or anything. Any attempt to add this
   toIE'sallowed URLs fails since it's not a valid URL. A web page as
   simple as the one below exhibits this sympton. If I remove the link to
   prototype.js, the behavior goes away.

   html
   head
           titletesting/title
           script language=javascript type=text/javascript 
   src=/javascript/
   prototype.js/script
   /head

   body
   ptesting/p

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



[Proto-Scripty] Re: IE 7 Enhanced Security

2009-02-03 Thread david

Hi john,
If I understand the problem (if there is a problem), IE security model
is applied to each window, so if a window should go to internet
(defined for exemple in the start page), you haver this message if you
try to load a loacl page WITH javascript.
And I think the oppposite is still true.

IE has a strong security behaviour :))

--
david

On 3 fév, 17:43, john.deig...@gmail.com john.deig...@gmail.com
wrote:
 When loading a page that includes the prototype.js library (I've tried
 both 1.6.0.2 and 1.6.0.3), IE 7 pops up a dialog box that says
 Content from the Web site below is being blocked by Internet Explorer
 Enhanced Security Configuration and lists the URL http://;. That's
 right - no IP Name, 'localhost' or anything. Any attempt to add this
 to IE's allowed URLs fails since it's not a valid URL. A web page as
 simple as the one below exhibits this sympton. If I remove the link to
 prototype.js, the behavior goes away.

 html
 head
         titletesting/title
         script language=javascript type=text/javascript src=/javascript/
 prototype.js/script
 /head

 body
 ptesting/p

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



[Proto-Scripty] Re: IE 7 Enhanced Security

2009-02-03 Thread T.J. Crowder

Hi John,

I was hoping someone with a link would chime in here fairly quickly,
but in the absense of that...

This is a known problem.  On IE, to implement the dom:loaded event,
Prototype uses a deferred script tag:

* * * *
document.write(script id=__onDOMContentLoaded defer src=//:\/
script);
$(__onDOMContentLoaded).onreadystatechange = function() {
  if (this.readyState == complete) {
this.onreadystatechange = null;
fireContentLoadedEvent();
  }
};
* * * *

I believe there's an effort under way to change how dom:loaded is
fired on IE so it doesn't do that, as this isn't the only problem it
causes.

HTH,
--
T.J. Crowder
tj / crowder software / com
Independent Software Engineer, consulting services available


On Feb 3, 4:43 pm, john.deig...@gmail.com john.deig...@gmail.com
wrote:
 When loading a page that includes the prototype.js library (I've tried
 both 1.6.0.2 and 1.6.0.3), IE 7 pops up a dialog box that says
 Content from the Web site below is being blocked by Internet Explorer
 Enhanced Security Configuration and lists the URL http://;. That's
 right - no IP Name, 'localhost' or anything. Any attempt to add this
 to IE's allowed URLs fails since it's not a valid URL. A web page as
 simple as the one below exhibits this sympton. If I remove the link to
 prototype.js, the behavior goes away.

 html
 head
         titletesting/title
         script language=javascript type=text/javascript src=/javascript/
 prototype.js/script
 /head

 body
 ptesting/p

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