Closed
Bug 181306
Opened 23 years ago
Closed 23 years ago
ClearQuest (Rational) has a specific setup for table layout on Netscape 6 browsers
Categories
(Core :: Layout: Tables, defect)
Core
Layout: Tables
Tracking
()
RESOLVED
INVALID
People
(Reporter: sfergus, Unassigned)
References
()
Details
Attachments
(7 files)
User-Agent: Mozilla/5.0 (X11; U; SunOS sun4u; en-US; rv:1.0.1) Gecko/20020920 Netscape/7.0
Build Identifier: Mozilla/5.0 (X11; U; SunOS sun4u; en-US; rv:1.0.1) Gecko/20020920 Netscape/7.0 AND 20020827 rv 1.1
At the above web site, choose sample hooks database. Then All Hooks. Then choose
the 1st defect, then Hook Information. There seems to be an error with the way
that Mozilla is displaying the asp pages for this website. The information
should be in a tabular format not the way Mozilla displays this.
Reproducible: Always
Steps to Reproduce:
At the above web site, choose sample hooks database. Then All Hooks. Then choose
the 1st defect, then Hook Information.
Actual Results:
Mozilla displays:
Field Value
Field Value
etc...
Now do this with I.E. and Netscape 4.x, it displays:
Field Value Field Value Field Value
Field Value Field Value ....etc.
Expected Results:
Format the defect information like that of a table, how Netscape 4.x and I.E.
display the information.
Rational ClearQuest web server runs on IIS only and uses asp pages for
displaying its code.
This bug is preventing users from going from 4.x to 7.x.
Comment 1•23 years ago
|
||
Comment 2•23 years ago
|
||
OK. Looking at the source in NS4, I see this:
<table bgcolor="#ffffcc" border=0 cellspacing=0>
<tr>
<td colspan=29> </td>
<td nowrap valign=middle align=left colspan=51 rowspan=1><b>Submit Date:</b></td>
<td colspan=5> </td>
<td colspan=93 rowspan=1 nowrap>9/10/99 2:41:23 AM</td>
<td colspan=23> </td>
<td nowrap valign=middle align=left colspan=46 rowspan=1><b>Hook Type:</b></td>
<td colspan=1> </td>
<td colspan=105 rowspan=1 nowrap>Action</td>
</tr>
.... [and so on]
In Mozilla, I see this:
<table bgcolor="#ffffcc" border=1 cellspacing=0 cellpadding=4>
<tr><th bgcolor="#ffcc33" nowrap><font size=+1>Hook
Information </font></th></tr>
<tr>
<td>
<table bgcolor="#ffffcc" border=1 cellpadding=4 cellspacing=0><tr>
<td nowrap valign=middle align=right><b>Submit Date:</b></td><td colspan=1
rowspan=1>9/10/99 2:41:23 AM</td>
</tr><tr>
<td nowrap valign=middle align=right><b>Hook Type:</b></td><td colspan=1
rowspan=1>Action</td>
</tr>
Notice the presence of the <th> tags which were missing with NS4 and the totally
different formatting of the data (into one-table-row-per-item).
So the server is just sending NS4 and Mozilla different HTML, plain ans simple.
It could be doing that because it's not getting some sort of cookies right or
just because the ASP checks the user-agent and does different strings depending
on that value. Someone who has access to the ASP should check this.
| Reporter | ||
Comment 3•23 years ago
|
||
This is how Netscape 7, Mozilla 1.0.1 and Mozilla 1.1 sees the defect.
(Sorry, I meant to attach this earlier).
| Reporter | ||
Comment 4•23 years ago
|
||
This is the correct way that it should be shown. This is how most of the
UNIX Solaris users see it.
| Reporter | ||
Comment 5•23 years ago
|
||
This is how it is shown correctly through Internet Explorer 6.0
Comment 6•23 years ago
|
||
This is the table, it'll show the same within NS4.8 and Mozilla so there's
maybe some DOM/JS that manipulate the HTML code after it's loaded.
Investigating.
Comment 7•23 years ago
|
||
Boris was right, the table code generated by ClearQuest is slightly different.
This is the table as seen by NS4.8, it'll load exactly the same with Mozilla.
So, it should rather be a Tech Evangelism bug, why is Rational sending
different data to browser other than NS4.x and IE.
Updated•23 years ago
|
Attachment #107119 -
Attachment description: Table excerpt from site → Table HTML code from ClearQuest when using Mozila.
Updated•23 years ago
|
Attachment #107121 -
Attachment description: Table as seen by NS4.8 → Table HTML code generated by ClearQuest when using NS4.8
| Reporter | ||
Comment 8•23 years ago
|
||
Comment 9•23 years ago
|
||
Fun... Good luck with changing those setups!
Status: UNCONFIRMED → RESOLVED
Closed: 23 years ago
Resolution: --- → INVALID
Comment 10•23 years ago
|
||
Changing the summary so that we can easily find this one next time, for this
particular product.
btw, shall we ask Rational why there's this specific setup and thus move it to
Tech Evangelism ?
OS: SunOS → All
Hardware: Sun → All
Summary: Mozilla does not render "sample hooks database" asp pages like Netscape 4.x and I.E. do. → ClearQuest (Rational) has a specific setup for table layout on Netscape 6 browsers
You need to log in
before you can comment on or make changes to this bug.
Description
•