Spider 28 Aug 2006 01:47 am

YASU 0.0.1.23

Minor update to fix Help link, race and other issues with automatic dialog closing and to add file:// as a supported scheme. See news for the details.

Mozilla & Testing 22 Aug 2006 04:03 pm

A little help please

DANGER! Will Robinson! DANGER!

If you are not comfortable using beta software, do not know how to back up your profile or don’t know what bugzilla is, then please do not download nightly builds for testing!

Every little bit helps…

One of the strengths of the Mozilla community which has helped make Firefox such a success are the people who love Firefox who also help to make it better. Many people have filed bugs on issues they have discovered and I would like to ask those people for a little bit of help.

Mozilla developers have been working hard to fix bugs for the releases of Firefox 2 and Thunderbird 2 later this year. So far, there have been 3331 bugs fixed on the 1.8 branch from which Firefox 2 and Thunderbird 2 will be released. Unfortunately, only 341 have been verified as fixed so far.

Crashes and Hangs

211 bugs which cause crashes or hangs have been fixed but not verified.

Regressions

327 bugs which cause regressions have been fixed but not verified.

If you filed one of the bugs on these lists, it would be very helpful if you could download a nightly build of Firefox 2 or Thunderbird 2 and verify that the bug you filed is actually fixed. Please comment in the bug and add me (bclary at bclary dot com) to the cc list.

Tip: You can easily find the bugs you filed by clicking on one of the above links and after the query loads, clicking the “Edit Search” link at the bottom of the page. Then under Email and Numbering, click the reporter check box under Any of of: and add your bugzilla email address to the field below the contains select box.

Thanks to Brian J Polidoro for bringing this to my attention.

Better now than never!

If you are a developer for a commercial web site or web application and Firefox compatibility is important to you, your employer and your customers, please begin testing your content and applications with the nightly builds of Firefox 2! The code is very quickly being locked down so that it is becoming increasingly difficult to get changes made before the release of Firefox 2. If you don’t report a problem with your site or application soon, it may be impossible to get the fix into the next release. The most important things to look for are regressions where something that worked in Firefox 1.5 is now broken in Firefox 2. This month marks the sixth year I have been a member of the Mozilla Community and it has never failed that someone from a major web site or application developer waits until the last minute to test their content with the upcoming release. Don’t be the grasshopper! Test today not tomorrow!

Spider 02 Aug 2006 12:52 am

YASU 0.0.1.22

Minor update to add a fallback to collectGarbage. See news for the details.

Spider 01 Aug 2006 01:38 am

YASU 0.0.1.21

Spider 0.0.1.21 includes the ability to automatically close alerts, prompts, confirms and other common dialogs through the use of calls to registerDialogCloser() and unregisterDialogCloser() in userhook functions.

For an example, see closedialoghooks.js where registerDialogCloser() is called in the userhook userOnBeforePage() and unregisterDialogCloser() is called in the userhook userOnAfterPage.

General & Mozilla 26 Jul 2006 06:18 pm

Firefox 1.5.0.5 released!

Firefox 1.5.0.5 was released today and every Firefox user should update today.

I have updated the ua sidebar to include the new user agent strings for those of you who are still doing user agent string browser detection.

I have also blocked access to this site and the archive for users of out of date versions of Firefox (who have JavaScript enabled). If you notice that an up to date Gecko-based browser is incorrectly blocked, please contact me and let me know the details including the user agent string.

/bc

Mozilla & Testing 20 Jul 2006 03:01 pm

pipefail - testing pipeline exit codes

The problem

In bash, running test programs which indicate their pass or fail status via an exit code can be problematic when they are run as part of a pipeline in Linux, Mac OS X or Cygwin since the reported exit code of a pipeline is normally the exit code of the last program in the pipeline. If the test program is not the last program in the pipeline, then its exit code will be hidden by the exit code of the last program.

The solution

bash version 3 introduced an option which changes the exit code behavior of pipelines and reports the exit code of the pipeline as the exit code of the last program to return a non-zero exit code. So long as none of the programs following the test program report a non-zero exit code, the pipeline will report its exit code to be that of the test program. To enable this option, simply execute:

set -o pipefail

in the shell where the test program will execute.

Caveat Emptor

The pipefail option was introduced in bash version 3 which is supported in current Linux and Cygwin releases of bash but is not supported by the default bash shipped on Mac OS X.

To work around this lagging version on Mac OS X, you can simply download, build and install the latest version of bash from http://ftp.gnu.org/gnu/bash/ into your /usr/local/bin directory. Then code your shell scripts to use the shebang !#/usr/local/bin/bash instead of the normal /bin/bash. For systems such as Linux or Cygwin which already provide a pipefail capable version of bash, simply create a hard link from /usr/local/bin/bash to the system version /bin/bash.

ln /bin/bash /usr/local/bin/bash

Mozilla & Testing 01 Jun 2006 08:24 pm

User Agent String Sidebar updated

The ua sidebar has been updated to include user agent strings for Firefox 1.5.0.4

If you already have the sidebar installed, you will automatically see the changes.

Spider 01 Jun 2006 08:12 pm

YASU 0.0.1.18

Yet Another Spider Update which adds a new function loadScript() which can be used by user hook functions to load external scripts (Example).

Spider 24 May 2006 09:25 am

YASU 0.0.1.17

Yet Another Spider Update which fixes a minor permission problem when run using the chrome url but not as a chrome application. See What’s New for the details.

This is a minor update and you probably don’t need to update unless you were bit by this minor bug

Evangelism & General & Mozilla 16 May 2006 09:27 pm

Yahoo! and the evils of Vendor/Version Browser Detection

Vendor/Version browser detection strikes again!

When attempting to view the new Yahoo! home page in the development version of of Firefox 2 (also known as Bon Echo), I was presented with the following lovely page:

New Yahoo! Homepage in Bon Echo

If Yahoo! had made the requirement to be any Gecko-based browser based on branch 1.8 or later (which includes Firefox 1.5), then I would have been able to see their new design without having to fudge my user agent.

If you must restrict access to specific Gecko versions, use something like getGeckoRv() which can be used to detect the version of a Gecko-based browser independently of its branding or vendor/version.

/bc

« Previous PageNext Page »