Confirmed users
4,293
edits
(→AUS itself: - bring up to date) |
|||
Line 146: | Line 146: | ||
==AUS itself== | ==AUS itself== | ||
To provide this content, AUS maps the client version (%VERSION%) from the request to $update_version of snippet store. This was the mapping on | To provide this content, AUS maps the client version (%VERSION%) from the request to $update_version of snippet store. This was the mapping on Oct 02 2007, which uses wildcard matches since [https://bugzilla.mozilla.org/show_bug.cgi?id=364628 bug 364628]: | ||
'Firefox' => array( | |||
'1.5.0.*' => '1.5.0.x', | |||
'2.0*' => '2.0', | |||
'3.0a*' => 'trunk' | |||
'1.5.0. | ), | ||
'Thunderbird' => array( | |||
'1.5.0.*' => '1.5.0.x', | |||
( | '2.0*' => '2.0', | ||
'3.0a*' => 'trunk' | |||
), | |||
'Sunbird' => array( | |||
'0.7*' => 'branch', | |||
'0.6a1' => 'trunk' | |||
) | |||
This is an abbreviated version with only the versions still in use (except Firefox 1.5.0.x, which is beyond end-of-life), the current config is [http://lxr.mozilla.org/mozilla/source/webtools/aus/xml/inc/config-dist.php#83 here]. | |||
So there is a many to one relationship between application versions from a code branch to an AUS disk location. Eg: The Mozilla1.8 branch is being used for | So there is a many to one relationship between application versions from a code branch to an AUS disk location. Eg: The Mozilla1.8 branch is being used for development of v2.0 and will have versions 2.0a1, a2, a3, b1,b2, RC1, 2.0 final and then the 2.0.0.x security releases. |