Closed
Bug 186920
Opened 22 years ago
Closed 22 years ago
Loosen checking for Windows ME user-agent
Categories
(Bugzilla :: Creating/Changing Bugs, defect)
Tracking
()
VERIFIED
FIXED
Bugzilla 2.18
People
(Reporter: bk039, Assigned: gerv)
References
()
Details
Attachments
(1 file)
834 bytes,
patch
|
justdave
:
review+
|
Details | Diff | Splinter Review |
User-Agent: Mozilla/5.0 (Windows; U; Win 9x 4.90; en-US; rv:1.3a) Gecko/20021212
Build Identifier: Mozilla/5.0 (Windows; U; Win 9x 4.90; en-US; rv:1.3a) Gecko/20021212
In Bugzilla deployment found on mozilla.org:
The "advanced" bug report form does not appear to include Windows ME. However,
it is still possible to set the operating system from the bug report after it
has been submitted to the database (although it spams all on the CC list.)
Reproducible: Always
Steps to Reproduce:
1. Open http://bugzilla.mozilla.org/
2. Select the "Enter a new bug report" link, which is tagged with "(Advanced)".
3. Select any product.
4. Scroll down to "Operating System", and attempt to select "Windows ME".
Actual Results:
Windows Me is not available in the list.
Expected Results:
Windows ME should be in the listing for the advanced bug report page.
Comment 1•22 years ago
|
||
That's not the advanced bug report page, that's the guided page. The advanced
link goes to the guided one anyway if you don't have editbugs privs. (try both
links, I bet they go to the same place).
Are you using Windows ME when you file it? If so, that's a bug, because the OS
you're using is always supposed to show up on the list in the guided form (and
not much else)
The guided form is Gerv's baby, reassigning...
Assignee: endico → gerv
Assignee | ||
Comment 2•22 years ago
|
||
bk039@freenet.carleton.ca: I need to know if you were using Windows ME when you
attempted to file the bug.
Gerv
Yes, I was submitting it with Mozilla 1.3a under Windows ME at the time (as
shown in the build identifier). The same problem does not occurr under IE 5.5,
thus it seems to be Mozilla specific.
Hardware: PC → All
Assignee | ||
Comment 4•22 years ago
|
||
Here's the bug, on enter_bug.cgi, line 183:
/\(.*Win.*98.*4\.9.*\)/ && do {return "Windows ME";};
That should probably read:
/\(.*Win.*9x.*4\.9.*\)/ && do {return "Windows ME";};
Does anyone know for certain the details of User Agents on ME?
Gerv
Comment 5•22 years ago
|
||
According to comment 3, it works in IE currently, so probably both lines need to
be there.
Assignee | ||
Comment 6•22 years ago
|
||
OK; this checks for 98 or 9x.
Gerv
Assignee | ||
Comment 7•22 years ago
|
||
Moving to Bugzilla product.
Gerv
Severity: trivial → minor
Component: Bugzilla: Other moz.org Issues → Creating/Changing Bugs
Product: mozilla.org → Bugzilla
Target Milestone: --- → Bugzilla 2.18
Version: other → 2.17.2
Assignee | ||
Updated•22 years ago
|
Attachment #110757 -
Flags: review?(justdave)
Comment 8•22 years ago
|
||
Comment on attachment 110757 [details] [diff] [review]
Patch v.1
I don't have Windows ME to test this. :-)
Check it in, and let's have the reporter test it on landfill after landfill
picks this up... (cron job updates it from cvs hourly on bugzilla-tip)
Attachment #110757 -
Flags: review?(justdave) → review+
Updated•22 years ago
|
Flags: approval+
Assignee | ||
Comment 9•22 years ago
|
||
Fixed.
Checking in enter_bug.cgi;
/cvsroot/mozilla/webtools/bugzilla/enter_bug.cgi,v <-- enter_bug.cgi
new revision: 1.79; previous revision: 1.78
done
Gerv
Status: NEW → RESOLVED
Closed: 22 years ago
Resolution: --- → FIXED
Summary: Windows ME missing in list of Operating Systems → Loosen checking for Windows ME user-agent
Reporter | ||
Comment 10•22 years ago
|
||
Just verified that this bug is fixed - appears to work in Mozilla for Win98/ME.
Testing bugzilla-tip and bugzilla-devel on landslide with IE6 (Version
6.0.2800.1106) under Windows 98 does not work (same issue as above). However,
this is probably a seperate issue worthy of another report.
Status: RESOLVED → VERIFIED
Comment 11•22 years ago
|
||
This must be reopened. For some reason, I lost privileges to do so. The
testcase in the original report fails. all I want is for "Windows ME" to be in
the dropdown box. It would be nice if it detected correctly.. (right now it
detects as windows 98.)
Comment 12•22 years ago
|
||
Sam, what is your user agent string? Also, are you saying it doesn't work on
bugzilla.mozilla.org or your own installation?
Comment 13•22 years ago
|
||
http://bugzilla.mozilla.org/enter_bug.cgi?product=Browser
Does not list or detect windows me. it detects it as other.
sorry--I knew this, but wanted to test it absolutely first.
windows me.. version: 4.90.3000 (standard.)
Comment 14•22 years ago
|
||
Mozilla/5.0 (Windows; U; Win 9x 4.90; en-US; rv:1.4a) Gecko/20030411 Phoenix/0.5+
Forgot the browser string ;-)
Note that its never worked for me, I just got around to complaining on
mozillazine, but I don't think this is a regression.
Reporter | ||
Comment 15•22 years ago
|
||
For the record, the bug was fixed at:
http://landfill.bugzilla.org/bugzilla-tip/enter_bug.cgi?product=WorldControl
The problem was actually a bug in Bugzilla, as opposed to a Mozilla.org
configuration (and hence the bug is flagged as fixed). You can verify the fix
by opening above link to test the latest development code.
All that's left is to bribe the Mozilla.org webmaster to update Bugzilla to
verstion 2.17.3.
Comment 16•22 years ago
|
||
There are plans to upgrade to 2.17.4 when it comes out. Which is meant to be RSN.
Assignee | ||
Comment 17•21 years ago
|
||
*** Bug 214556 has been marked as a duplicate of this bug. ***
Updated•12 years ago
|
QA Contact: myk → default-qa
You need to log in
before you can comment on or make changes to this bug.
Description
•