473,397 Members | 2,099 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,397 software developers and data experts.

Cross-frame location.reload()

I'm having a hell of a job getting this to work in Safari: the only
thing I can think of is that one can't use reload() across to another
frame for security reasons. Does anyone have a concrete answer or
solution for this? I'm trying to do this:

top.frames["mainContent"].location.reload();

Thanks
Mark Howells
www.permanenttourist.ch

Mar 14 '06 #1
9 5409
pe***************@gmail.com wrote:
^^^^^^^^^^^^^^^^^^^^^^^^^^^
Your name would be appreciated here.
I'm having a hell of a job getting this to work in Safari: the only
thing I can think of is that one can't use reload() across to another
frame for security reasons.
One usually can if the second-level domain of both resources is the same.
This security measure is not restricted to Safari. Search the archives for
"Same Origin Policy".
Does anyone have a concrete answer or solution for this?
Use `document.domain' if both resources are within the same second-level
domain. Use server-side redirection if they do not, or if `document.domain'
does not help for other reasons.
I'm trying to do this:

top.frames["mainContent"].location.reload();
A line of code that is syntactically and semantically correct (lacking
feature tests, but these are features of DOM Level 0, and therefore testing
them is maybe negligible), yet completely useless for problem analysis as
you are not saying what resource tries to access what other resource.
[...]


No ads, please.
PointedEars
Mar 14 '06 #2
Thomas 'PointedEars' Lahn said the following on 3/14/2006 6:26 AM:
pe***************@gmail.com wrote:
^^^^^^^^^^^^^^^^^^^^^^^^^^^
Your name would be appreciated here.


So you have changed from being pedantic about valid email addresses to
requesting/requiring a name? There is *nothing* that says anything about
giving a name.
[...]


No ads, please.


That wasn't an ad, it was a signature. Sheesh.
But go ahead, say the same thing about mine.
--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Mar 14 '06 #3
Randy Webb wrote:
Thomas 'PointedEars' Lahn said the following on 3/14/2006 6:26 AM:
[...]

No ads, please.


That wasn't an ad, it was a signature. Sheesh.
But go ahead, say the same thing about mine.


You silly sod, there was no signature in his posting, in contrast to yours.
That is why I saw your signature delimited from the rest by a nice grey
line when reading, and it "magically" disappeared from your posting when
the editor window for this followup opened ...

May Ctrl+U be with you.
HTH & HAND

PointedEars
Mar 14 '06 #4
> Your name would be appreciated here.

I updated my profile after writing, apologies to all.
I'm having a hell of a job getting this to work in Safari: the only
thing I can think of is that one can't use reload() across to another
frame for security reasons.


One usually can if the second-level domain of both resources is the same.
This security measure is not restricted to Safari. Search the archives for
"Same Origin Policy".


It has nothing to do with cross-domain scripting, it's just accessing
one frame from another. The problem is only evident in Safari and is
almost certainly to do with client-side security (connected to remote
window blocking and so forth?).
Does anyone have a concrete answer or solution for this?
[snip]
I'm trying to do this:

top.frames["mainContent"].location.reload();


I've received a suggestion directly off-group in the meantime, which is
a bit of a hack but which seems to work cross-browser and
cross-platform:

top.frames['mainContent'].location.search +=
(top.frames['mainContent'].location.search ? '&' : '?' ) + 'rand=' +
Math.random();

Regards
Mark Howells
www.permanenttourist.ch

Mar 14 '06 #5
So, what's the difference between Randy's signature line and mine.
(Apart from the lyrics!)

Regards
Mark Howells
www.permanenttourist.ch

Mar 14 '06 #6
Mark Howells wrote:

Please provide attribution of quoted material.
In Google Groups: show options, Reply.
vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
Your name would be appreciated here.
> I'm having a hell of a job getting this to work in Safari: the only
> thing I can think of is that one can't use reload() across to another
> frame for security reasons. One usually can if the second-level domain of both resources is the same.
This security measure is not restricted to Safari. Search the archives
for "Same Origin Policy".


It has nothing to do with cross-domain scripting, it's just accessing
one frame from another. The problem is only evident in Safari and is
almost certainly to do with client-side security (connected to remote
window blocking and so forth?).


Is there a setting for another security measure regarding window-to-window
access in Safari one should be aware of, or is this merely your assumption?
If the former, is there any error message if you attempt the former, is
there any documentation about this feature? Because I have never heard of
this before.
> Does anyone have a concrete answer or solution for this?
> I'm trying to do this:
>
> top.frames["mainContent"].location.reload();


I've received a suggestion directly off-group in the meantime,
which is a bit of a hack but which seems to work cross-browser
and cross-platform:


And eating away local cache space.
top.frames['mainContent'].location.search +=
(top.frames['mainContent'].location.search ? '&' : '?' ) + 'rand=' +
Math.random();


I think you ran into a caching problem instead, which is "solved" by this
nonsense. If that is the case, it would be better solved with using
cache-controlling headers.
PointedEars
Mar 14 '06 #7
Mark Howells said the following on 3/14/2006 7:39 AM:

Please quote what you are replying to.

If you want to post a followup via groups.google.com, don't use the
"Reply" link at the bottom of the article. Click on "show options" at
the top of the article, then click on the "Reply" at the bottom of the
article headers.

<URL: http://www.safalra.com/special/googlegroupsreply/ >
So, what's the difference between Randy's signature line and mine.
(Apart from the lyrics!)
The major difference? Mine starts dash dash space followed by the
signature. The impact? When most decent newsreaders quote a post, it
will strip off a delimited signature starting with the dash dash space.
So, when Thomas replies to me, it removes my signature automatically.
When he, or I, reply to yours, it quotes it instead without removing it.

The minor difference? Thomas decided yours didn't fit his "requirements"
so he got pedantic about it. Ignore his pedantics.
Regards
Mark Howells
www.permanenttourist.ch


I am not sure if Google Groups allows you to save a signature line. If
it does, simply add -- followed by a space on a line of it's own and
save it.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Mar 14 '06 #8
Thomas 'PointedEars' Lahn said the following on 3/14/2006 6:43 AM:
Randy Webb wrote:
Thomas 'PointedEars' Lahn said the following on 3/14/2006 6:26 AM:
[...]
No ads, please. That wasn't an ad, it was a signature. Sheesh.
But go ahead, say the same thing about mine.


You silly sod, there was no signature in his posting, in contrast to yours.


Yes there was. It may not be a "properly delimited signature" but it's
still a signature.
That is why I saw your signature delimited from the rest by a nice grey
line when reading, and it "magically" disappeared from your posting when
the editor window for this followup opened ...
Nice grey line? Where? I see no grey line and didn't put it there. But
for what it's worth, I see signatures as bright blue not grey.
May Ctrl+U be with you.


Nah, Ctrl+K is more fun.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Mar 14 '06 #9

Thomas 'PointedEars' Lahn wrote:
Mark Howells wrote:

Please provide attribution of quoted material.
In Google Groups: show options, Reply.
vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
Your name would be appreciated here.
> I'm having a hell of a job getting this to work in Safari: the only
> thing I can think of is that one can't use reload() across to another
> frame for security reasons.
One usually can if the second-level domain of both resources is the same.
This security measure is not restricted to Safari. Search the archives
for "Same Origin Policy".


It has nothing to do with cross-domain scripting, it's just accessing
one frame from another. The problem is only evident in Safari and is
almost certainly to do with client-side security (connected to remote
window blocking and so forth?).


Is there a setting for another security measure regarding window-to-window
access in Safari one should be aware of, or is this merely your assumption?
If the former, is there any error message if you attempt the former, is
there any documentation about this feature? Because I have never heard of
this before.
> Does anyone have a concrete answer or solution for this?
> I'm trying to do this:
>
> top.frames["mainContent"].location.reload();


I've received a suggestion directly off-group in the meantime,
which is a bit of a hack but which seems to work cross-browser
and cross-platform:


And eating away local cache space.
top.frames['mainContent'].location.search +=
(top.frames['mainContent'].location.search ? '&' : '?' ) + 'rand=' +
Math.random();


I think you ran into a caching problem instead, which is "solved" by this
nonsense. If that is the case, it would be better solved with using
cache-controlling headers.
PointedEars


No, there are no further settings for cross-frame security in Safari,
but there are a huge amount of Javascript issues that I run into every
day in this browser, which have to be worked around or accepted as
errors or bad decisions in the browser JS implementation. A particular
problem is over-aggressive caching of pages and Javascript variable
values, which have been a problem since the first betas were released.

In this case, it's not possible that the problem is due to caching, as
the reload() function is never even activated by the browser, despite
being called. That means, to be clear, that the page I'm trying to
reload doesn't get reloaded, not that it's aggressively cached. It
doesn't get re-requested at all unless I use the location.search method
indicated above. Perhaps my previous emails weren't clear enough for
you to understand the problem; in which case, I apologize.

As to the flood of "how-to" replies in this thread: is this usual for a
Usenet group? I've never come across so many rules and regulations
before!

--
Regards
Mark Howells
www.permanenttourist.ch

Mar 14 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Web Science | last post by:
Site and Features: http://www.eigensearch.com Search engine, eigenMethod, eigenvector, mathematical, manifolds, science, technical, search tools, eigenmath, Jacobian, quantum, mechanics,...
12
by: * ProteanThread * | last post by:
but depends upon the clique: ...
3
by: rollasoc | last post by:
Hi, Doing a bit of system testing on a Windows 98 laptop. (.Net 1.1 app). Did a bit of testing. Loaded a previously saved file. A gray box appeared with the text and buttons all white...
0
by: Web Science | last post by:
Site and Features: http://www.eigensearch.com Search engine, eigenMethod, eigenvector, mathematical, manifolds, science, technical, search tools, eigenmath, Jacobian, quantum, mechanics,...
23
by: Jeff Rodriguez | last post by:
Here's what I want do: Have a main daemon which starts up several threads in a Boss-Queue structure. From those threads, I want them all to sit and watch a queue. Once an entry goes into the...
0
by: Web Science | last post by:
Site and Features: http://www.eigensearch.com Search engine, eigenMethod, eigenvector, mathematical, manifolds, science, technical, search tools, eigenmath, Jacobian, quantum, mechanics,...
1
by: Rob Woodworth | last post by:
Hi, I'm having serious problems getting my report to work. I need to generate a timesheet report which will contain info for one employee between certain dates (one week's worth of dates). I...
6
by: Simon | last post by:
Hi All, An experiment i'm doing requires requires a synchronous cross-domain request, without using a proxy. I wondered if anyone had any ideas to help me achieve this. Below is what I have...
6
by: Bart Van der Donck | last post by:
Hello, I'm presenting my new library 'AJAX Cross Domain' - a javascript extension that allows to perform cross-domain AJAX requests. http://www.ajax-cross-domain.com/ Any comments or...
6
by: ampo | last post by:
Hello. Can anyone help with cross-domain problem? I have HTML page from server1 that send xmlHTTPRequest to server2. How can I do it? Thanks.
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.