From: Robin B. <ro...@re...> - 2004-03-06 13:39:19
|
I notice that as soon as I use an IOElement to obtain dynamic data I get an extra level of history in Firefox, but not in IE 6. Is this related to not using location.replace()? As an example open a new tab or browser and go straight to file:///c:/temp/dynapi3x/examples/dynapi.util.datasource.html or wherever you have the examples. In IE my about:blank start page is replaced and there's no back button, but in Firefox I can return to an earlier instance of the page. -- Robin Becker |
From: Bruce T. <blu...@ya...> - 2004-03-06 17:34:45
|
Ok, stupid question, but is FireFox? I use the IOElement with IE6 and Mozilla (1.3 to 1.6) and I don't think I've ever seen an extra history entry. --- Robin Becker <ro...@re...> wrote: > I notice that as soon as I use an IOElement to obtain dynamic data I > get > an extra level of history in Firefox, but not in IE 6. Is this > related > to not using location.replace()? > > As an example open a new tab or browser and go straight to > > file:///c:/temp/dynapi3x/examples/dynapi.util.datasource.html > > or wherever you have the examples. In IE my about:blank start page is > replaced and there's no back button, but in Firefox I can return to > an > earlier instance of the page. > -- > Robin Becker > > > ------------------------------------------------------- > This SF.Net email is sponsored by: IBM Linux Tutorials > Free Linux tutorial presented by Daniel Robbins, President and CEO of > GenToo technologies. Learn everything from fundamentals to system > administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help ===== www.bluewolverine.com __________________________________ Do you Yahoo!? Yahoo! Search - Find what youre looking for faster http://search.yahoo.com |
From: Leif W <war...@us...> - 2004-03-06 17:46:32
|
Heh, I asked the same question on a forum, and found the answer myself when I went to upgrade Mozilla Firebird a few days later. They changed the name again. Mozilla Phoenity / Firebird / Firefox, what will it be next, and how many revisions will they keep it? Wish they'd just pick a single name and icon and use it already instead of changing it every 6 months. By the way, it does leave a history in Mozilla (1.6a, 1.7a / Win32). Not sure why it does this, I'd have to look at the source and see what it's doing. Have you tried that yet? Leif ----- Original Message ----- From: "Bruce Tennant" <blu...@ya...> To: <dyn...@li...> Sent: Saturday, March 06, 2004 12:19 PM Subject: Re: [Dynapi-Help] IE 6 vs Firefox difference > Ok, stupid question, but is FireFox? > > I use the IOElement with IE6 and Mozilla (1.3 to 1.6) and I don't think > I've ever seen an extra history entry. > > --- Robin Becker <ro...@re...> wrote: > > I notice that as soon as I use an IOElement to obtain dynamic data I > > get > > an extra level of history in Firefox, but not in IE 6. Is this > > related > > to not using location.replace()? > > > > As an example open a new tab or browser and go straight to > > > > file:///c:/temp/dynapi3x/examples/dynapi.util.datasource.html > > > > or wherever you have the examples. In IE my about:blank start page is > > replaced and there's no back button, but in Firefox I can return to > > an > > earlier instance of the page. > > -- > > Robin Becker > > > > > > ------------------------------------------------------- > > This SF.Net email is sponsored by: IBM Linux Tutorials > > Free Linux tutorial presented by Daniel Robbins, President and CEO of > > GenToo technologies. Learn everything from fundamentals to system > > administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > ===== > www.bluewolverine.com > > __________________________________ > Do you Yahoo!? > Yahoo! Search - Find what you're looking for faster > http://search.yahoo.com > > > ------------------------------------------------------- > This SF.Net email is sponsored by: IBM Linux Tutorials > Free Linux tutorial presented by Daniel Robbins, President and CEO of > GenToo technologies. Learn everything from fundamentals to system > administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > |
From: Robin B. <ro...@re...> - 2004-03-06 19:25:00
|
In article <089d01c403a0$debdae00$6701a8c0@enterprise>, Leif W <warp- 9....@us...> writes >Heh, I asked the same question on a forum, and found the answer myself when >I went to upgrade Mozilla Firebird a few days later. They changed the name >again. Mozilla Phoenity / Firebird / Firefox, what will it be next, and how >many revisions will they keep it? Wish they'd just pick a single name and >icon and use it already instead of changing it every 6 months. > >By the way, it does leave a history in Mozilla (1.6a, 1.7a / Win32). > >Not sure why it does this, I'd have to look at the source and see what it's >doing. Have you tried that yet? > >Leif > I've tried, but my DOM/Javascript isn't actually good enough. I think that the IFrame is hung off of the main window and it seems that an event is percolating up the tree somehow. Certainly in my JS book it claims that using location.replace(newurl) should not alter the history and I tried doing the appropriate changes in the 3 beta, but that didn't seem to help. -- Robin Becker |
From: Robin B. <ro...@re...> - 2004-03-06 21:37:08
|
In article <UGw...@je...>, Robin Becker <ro...@re...> writes >In article <089d01c403a0$debdae00$6701a8c0@enterprise>, Leif W <warp- >9....@us...> writes >>Heh, I asked the same question on a forum, and found the answer myself when >>I went to upgrade Mozilla Firebird a few days later. They changed the name >>again. Mozilla Phoenity / Firebird / Firefox, what will it be next, and how >>many revisions will they keep it? Wish they'd just pick a single name and >>icon and use it already instead of changing it every 6 months. >> >>By the way, it does leave a history in Mozilla (1.6a, 1.7a / Win32). >> >>Not sure why it does this, I'd have to look at the source and see what it's >>doing. Have you tried that yet? >> >>Leif >> I tried a bit harder & at least for win32 it seems that I can get the correct behaviour for GET requests using the IFRAME's contentWindow.location.replace() method. Seems to work for IE 6, Mozilla 1.6 & Firefox. -- Robin Becker |