Ray,
Maybe a bit of help. We just had a site whose tree broke with IE 6.
What I found in _treesettings.cfm was the following line of code:
if (cgi.user_agent contains "MSIE 4" or cgi.user_agent contains "MSIE 5")
Aha say, I and changed it to
if (cgi.user_agent contains "MSIE 4" or cgi.user_agent contains "MSIE 5"
OR cgi.user_agent contains "MSIE 6")
only to find that the problem was still there. Closer inspection of the CGI
scope shows that there is no CGI.user_agent variable but there is a
CGI.http_user_agent. At this point I got worried that IE 6 had changed the
name of the CGI variable. A bit of testing with IE4 and IE5 showed they
all produced http_user_agent. Now I am really confused as to how this
code ever worked. I tried Netscape and it also return http_user_agent.
So unless something mucks with CGI scope this code looks wrong.
In the end I just tweaked the site code to
if (cgi.user_agent contains "MSIE 4" or cgi.user_agent contains "MSIE 5"
OR cgi.http_user_agent contains "MSIE 6")
which is a copout to make IE6 work and not disturb anything else because
IE 5 and 5.5 were running OK.
A recursive grep of of spectra for "MSIE 5" show both fields being used (See
below).
A more general grep on user_agent shows frequent use of both name variants.
It looks to me like cgi.user_agent is not being delivered by clients (I
tried IE4, IE5, and NS 4.5).
Can anyone else shed any light on this? Surely things can't be this screwed
up.
Rich
/customtags/nolo/_NOLOsettings.cfm:11:<cfparam name="request.IE5"
default="#iif(Find("MSIE 5",CGI.user_agent),DE("true"
),DE("false"))#">
/customtags/restorenet/_rnetsettings.cfm:11:<cfparam name="request.IE5"
default="#iif(Find("MSIE 5",CGI.user_agent),DE(
"true"),DE("false"))#">
/customtags/system/tier1/ui/button/cfa_button.000:138: bIE =
iif(cgi.user_agent contains "MSIE 4" or cgi.user_agent con
tains "MSIE 5", TRUE, FALSE);
/customtags/system/tier1/ui/button/cfa_imagebutton.cfm:142: bIE4 =
iif(cgi.user_agent contains "MSIE 4" or cgi.user_
agent contains "MSIE 5", TRUE, FALSE);
/customtags/system/tier1/ui/button/cfa_linkbutton.cfm:142: bIE4 =
iif(cgi.user_agent contains "MSIE 4" or cgi.user_
agent contains "MSIE 5", TRUE, FALSE);
/customtags/system/tier1/ui/cfa_controlset.cfm:15: <cfset bIE = iif(
(cgi.http_user_agent contains "MSIE 4" or cgi.
http_user_agent contains "MSIE 5") and cgi.http_user_agent contains "Win",
TRUE, FALSE )>
/customtags/system/tier1/ui/cfa_tabarea.cfm:67: <cfset bIE = iif(
cgi.user_agent contains "MSIE 4" or cgi.user_a
gent contains "MSIE 5", TRUE, FALSE )>
/customtags/system/tier1/ui/menu/cfa_menuitem.cfm:118: bIE4 =
iif(cgi.user_agent contains "MSIE 4" or cgi.user_agent co
ntains "MSIE 5", TRUE, FALSE);
/customtags/system/tier1/ui/tree/_treesettings.000:74: if (cgi.user_agent
contains "MSIE 4" or cgi.user_agent contains
"MSIE 5")
/handlers/system/datasheet/display.000:30:<cfif cgi.user_agent contains
"MSIE 4" or cgi.user_agent contains "MSIE 5">
/webtop/initwebtop/_left.000:213: bIE =
iif(cgi.user_agent contains "MSIE 4" or cgi.user_agent con
tains "MSIE 5", TRUE, FALSE);
----- Original Message -----
From: "Raymond Camden" <[EMAIL PROTECTED]>
To: "Spectra-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, January 22, 2002 8:30 AM
Subject: RE: 1.01 webtop and IE6
> Allen, I'll take a look at this soon. Neo has me pretty swamped now, but
> I'll put this in my queue to check.
>
> =======================================================================
> Raymond Camden, Principal Spectra Compliance Engineer for Macromedia
>
> Email : [EMAIL PROTECTED]
> Yahoo IM : morpheus
>
> "My ally is the Force, and a powerful ally it is." - Yoda
>
> > -----Original Message-----
> > From: allen manning [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, January 22, 2002 11:22 AM
> > To: Spectra-Talk
> > Subject: RE: 1.01 webtop and IE6
> >
> >
> > We are running latest source build and IE6 and here are the
> > UI issues that
> > I've noticed:
> >
> > 1. The Webtop tree by default is left open. I think this
> > may be due to
> > hard coded browser checking in the cfa_tree tag. Only a
> > cosmetic issue...
> >
> > 2. cfa_datasheet pagination arrows work, but have strange
> > white background
> > colour tweakage. Now and then the background to the arrows
> > is white. Once
> > again only a cosmetic issue...
> >
> > allen
> >
> > ______________________________________________
> >
> > - p r i s m i x -
> >
> > allen manning, web architect
> >
> > t: +44 (0) 7712 894458 w: http://prismix.com
> > f: +44 (0) 7092 097115 e: [EMAIL PROTECTED]
> >
> > ______________________________________________
> >
> >
> >
> >
> >
> >
> >
> > > -----Original Message-----
> > > From: Seth Hodgson [mailto:[EMAIL PROTECTED]]
> > > Sent: 17 January 2002 23:08
> > > To: Spectra-Talk
> > > Subject: Re: 1.01 webtop and IE6
> > >
> > >
> > > We're running 1.5.1 with IE 6 and our arrows are working as
> > > well. Cheers, Seth
> > >
> > > ----- Original Message -----
> > > From: "Richard Ragan" <[EMAIL PROTECTED]>
> > > To: "Spectra-Talk" <[EMAIL PROTECTED]>
> > > Sent: Thursday, January 17, 2002 7:28 AM
> > > Subject: Re: 1.01 webtop and IE6
> > >
> > >
> > > > I did an IE6 upgrade this week and the arrows in the 1.5.1 webtop
> > > > still work fine with IE6
> > > >
> > > > Rich
> > > >
> > > > ----- Original Message -----
> > > > From: "Bob Connolly" <[EMAIL PROTECTED]>
> > > > To: "Spectra-Talk" <[EMAIL PROTECTED]>
> > > > Sent: Thursday, January 17, 2002 6:28 AM
> > > > Subject: RE: 1.01 webtop and IE6
> > > >
> > > >
> > > > > Go back to 5.5 and all should be well.
> > > > >
> > > > > -----Original Message-----
> > > > > From: Bryan Williams [mailto:[EMAIL PROTECTED]]
> > > > > Sent: Wednesday, January 16, 2002 1:40 PM
> > > > > To: Spectra-Talk
> > > > > Subject: Re: 1.01 webtop and IE6
> > > > >
> > > > >
> > > > > You're the only other person I've seen with this
> > problem. I also
> > > > > posted
> > > it
> > > > > in the Allaire forums and nobody else had reported it.
> > > > > I'm using 1.51 and when I click on any of column headers or the
> > > back/next
> > > > > arrows on the types screen, the "Edit" and "View" icons
> > > disappear.
> > > > > At least the latest upgrade allows more items to display
> > > per page,
> > > > > so I'm actually able to edit types that were previously on the
> > > > > second page. But if I add a few types so that there
> > > are
> > > > > mutliple pages, I cannot edit anything past the first
> > > > > page because those action buttons disappear when changing pages.
> > > > >
> > > > > One other problem that has just popped up is that there
> > > are a lot of
> > > > > 404 errors generated by the Webtop in the web logs,
> > > looking for the
> > > > > file:
> > > /allaire/spectra/webtop/images/projecttardis/loadingspinner.gif.
> > > > >
> > > > >
> > > > > ----- Original Message -----
> > > > > From: "Derek Westfall" <[EMAIL PROTECTED]>
> > > > > To: "Spectra-Talk" <[EMAIL PROTECTED]>
> > > > > Sent: Wednesday, January 16, 2002 12:42 PM
> > > > > Subject: 1.01 webtop and IE6
> > > > >
> > > > >
> > > > > > I am getting lots of JS errors in the 1.01 webtop after
> > > upgrading
> > > > > > to
> > > IE6.
> > > > > > Specifically, the sorting functionality and the
> > little back/next
> > > arrows in
> > > > > > the datasheet.
> > > > >
> > > > >
> > > > >
> > > > >
> > > >
> > >
> >
>
______________________________________________________________________
Get the mailserver that powers this list at http://www.coolfusion.com
------------------------------------------------------------------------------
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/spectra_talk or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.