mirror of https://github.com/roytam1/UXP
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
@ -0,0 +1,6 @@
|
||||
[source.crates-io] |
||||
registry = 'https://github.com/rust-lang/crates.io-index' |
||||
replace-with = 'vendored-sources' |
||||
|
||||
[source.vendored-sources] |
||||
directory = '@top_srcdir@/third_party/rust' |
@ -0,0 +1,4 @@
|
||||
BasedOnStyle: Mozilla |
||||
|
||||
# Ignore all comments because they aren't reflowed properly. |
||||
CommentPragmas: "^" |
@ -0,0 +1,14 @@
|
||||
"use strict"; |
||||
|
||||
module.exports = { |
||||
// When adding items to this file please check for effects on sub-directories.
|
||||
"plugins": [ |
||||
"mozilla" |
||||
], |
||||
"rules": { |
||||
"mozilla/import-globals": "warn", |
||||
}, |
||||
"env": { |
||||
"es6": true |
||||
}, |
||||
}; |
@ -0,0 +1,5 @@
|
||||
[flake8] |
||||
# See http://pep8.readthedocs.io/en/latest/intro.html#configuration |
||||
ignore = E121, E123, E126, E133, E226, E241, E242, E704, W503, E402 |
||||
max-line-length = 99 |
||||
filename = *.py, +.lint |
@ -0,0 +1,189 @@
|
||||
# .gdbinit file for debugging Mozilla |
||||
|
||||
# You may need to put an 'add-auto-load-safe-path' command in your |
||||
# $HOME/.gdbinit file to get GDB to trust this file. If your builds are |
||||
# generally in $HOME/moz, then you can say: |
||||
# |
||||
# add-auto-load-safe-path ~/moz |
||||
|
||||
# Don't stop for the SIG32/33/etc signals that Flash produces |
||||
handle SIG32 noprint nostop pass |
||||
handle SIG33 noprint nostop pass |
||||
handle SIGPIPE noprint nostop pass |
||||
|
||||
# Don't stop for certain other signals where it's not useful, |
||||
# such as the SIG64 signals triggered by the Linux |
||||
# sandboxing code on older kernels. |
||||
handle SIG38 noprint nostop pass |
||||
handle SIG64 noprint nostop pass |
||||
|
||||
# Show the concrete types behind nsIFoo |
||||
set print object on |
||||
|
||||
# run when using the auto-solib-add trick |
||||
def prun |
||||
tbreak main |
||||
run |
||||
set auto-solib-add 0 |
||||
cont |
||||
end |
||||
|
||||
# run -mail, when using the auto-solib-add trick |
||||
def pmail |
||||
tbreak main |
||||
run -mail |
||||
set auto-solib-add 0 |
||||
cont |
||||
end |
||||
|
||||
# Define a "pu" command to display PRUnichar * strings (100 chars max) |
||||
# Also allows an optional argument for how many chars to print as long as |
||||
# it's less than 100. |
||||
def pu |
||||
set $uni = $arg0 |
||||
if $argc == 2 |
||||
set $limit = $arg1 |
||||
if $limit > 100 |
||||
set $limit = 100 |
||||
end |
||||
else |
||||
set $limit = 100 |
||||
end |
||||
# scratch array with space for 100 chars plus null terminator. Make |
||||
# sure to not use ' ' as the char so this copy/pastes well. |
||||
set $scratch = "____________________________________________________________________________________________________" |
||||
set $i = 0 |
||||
set $scratch_idx = 0 |
||||
while (*$uni && $i++ < $limit) |
||||
if (*$uni < 0x80) |
||||
set $scratch[$scratch_idx++] = *(char*)$uni++ |
||||
else |
||||
if ($scratch_idx > 0) |
||||
set $scratch[$scratch_idx] = '\0' |
||||
print $scratch |
||||
set $scratch_idx = 0 |
||||
end |
||||
print /x *(short*)$uni++ |
||||
end |
||||
end |
||||
if ($scratch_idx > 0) |
||||
set $scratch[$scratch_idx] = '\0' |
||||
print $scratch |
||||
end |
||||
end |
||||
|
||||
# Define a "ps" command to display subclasses of nsAC?String. Note that |
||||
# this assumes strings as of Gecko 1.9 (well, and probably a few |
||||
# releases before that as well); going back far enough will get you |
||||
# to string classes that this function doesn't work for. |
||||
def ps |
||||
set $str = $arg0 |
||||
if (sizeof(*$str.mData) == 1 && ($str.mFlags & 1) != 0) |
||||
print $str.mData |
||||
else |
||||
pu $str.mData $str.mLength |
||||
end |
||||
end |
||||
|
||||
# Define a "pa" command to display the string value for an nsIAtom |
||||
def pa |
||||
set $atom = $arg0 |
||||
if (sizeof(*((&*$atom)->mString)) == 2) |
||||
pu (&*$atom)->mString |
||||
end |
||||
end |
||||
|
||||
# define a "pxul" command to display the type of a XUL element from |
||||
# an nsXULElement* pointer. |
||||
def pxul |
||||
set $p = $arg0 |
||||
print $p->mNodeInfo.mRawPtr->mInner.mName->mStaticAtom->mString |
||||
end |
||||
|
||||
# define a "prefcnt" command to display the refcount of an XPCOM obj |
||||
def prefcnt |
||||
set $p = $arg0 |
||||
print ((nsPurpleBufferEntry*)$p->mRefCnt.mTagged)->mRefCnt |
||||
end |
||||
|
||||
# define a "ptag" command to display the tag name of a content node |
||||
def ptag |
||||
set $p = $arg0 |
||||
pa $p->mNodeInfo.mRawPtr->mInner.mName |
||||
end |
||||
|
||||
## |
||||
## nsTArray |
||||
## |
||||
define ptarray |
||||
if $argc == 0 |
||||
help ptarray |
||||
else |
||||
set $size = $arg0.mHdr->mLength |
||||
set $capacity = $arg0.mHdr->mCapacity |
||||
set $size_max = $size - 1 |
||||
set $elts = $arg0.Elements() |
||||
end |
||||
if $argc == 1 |
||||
set $i = 0 |
||||
while $i < $size |
||||
printf "elem[%u]: ", $i |
||||
p *($elts + $i) |
||||
set $i++ |
||||
end |
||||
end |
||||
if $argc == 2 |
||||
set $idx = $arg1 |
||||
if $idx < 0 || $idx > $size_max |
||||
printf "idx1, idx2 are not in acceptable range: [0..%u].\n", $size_max |
||||
else |
||||
printf "elem[%u]: ", $idx |
||||
p *($elts + $idx) |
||||
end |
||||
end |
||||
if $argc == 3 |
||||
set $start_idx = $arg1 |
||||
set $stop_idx = $arg2 |
||||
if $start_idx > $stop_idx |
||||
set $tmp_idx = $start_idx |
||||
set $start_idx = $stop_idx |
||||
set $stop_idx = $tmp_idx |
||||
end |
||||
if $start_idx < 0 || $stop_idx < 0 || $start_idx > $size_max || $stop_idx > $size_max |
||||
printf "idx1, idx2 are not in acceptable range: [0..%u].\n", $size_max |
||||
else |
||||
set $i = $start_idx |
||||
while $i <= $stop_idx |
||||
printf "elem[%u]: ", $i |
||||
p *($elts + $i) |
||||
set $i++ |
||||
end |
||||
end |
||||
end |
||||
if $argc > 0 |
||||
printf "nsTArray length = %u\n", $size |
||||
printf "nsTArray capacity = %u\n", $capacity |
||||
printf "Element " |
||||
whatis *$elts |
||||
end |
||||
end |
||||
|
||||
document ptarray |
||||
Prints nsTArray information. |
||||
Syntax: ptarray |
||||
Note: idx, idx1 and idx2 must be in acceptable range [0...size()-1]. |
||||
Examples: |
||||
ptarray a - Prints tarray content, size, capacity and T typedef |
||||
ptarray a 0 - Prints element[idx] from tarray |
||||
ptarray a 1 2 - Prints elements in range [idx1..idx2] from tarray |
||||
end |
||||
|
||||
def js |
||||
call DumpJSStack() |
||||
end |
||||
|
||||
def ft |
||||
call $arg0->DumpFrameTree() |
||||
end |
||||
|
||||
source .gdbinit_python |
@ -0,0 +1,5 @@
|
||||
python |
||||
import sys |
||||
sys.path.append('python/gdbpp/') |
||||
import gdbpp |
||||
end |
@ -0,0 +1,124 @@
|
||||
# .gitignore - List of filenames git should ignore |
||||
|
||||
# Filenames that should be ignored wherever they appear |
||||
*~ |
||||
*.pyc |
||||
*.pyo |
||||
TAGS |
||||
tags |
||||
ID |
||||
.DS_Store* |
||||
*.pdb |
||||
*.egg-info |
||||
|
||||
# Vim swap files. |
||||
.*.sw[a-z] |
||||
|
||||
# Emacs directory variable files. |
||||
**/.dir-locals.el |
||||
|
||||
# User files that may appear at the root |
||||
/.mozconfig* |
||||
/mozconfig |
||||
/configure |
||||
/old-configure |
||||
/config.cache |
||||
/config.log |
||||
/.clang_complete |
||||
/machrc |
||||
/.machrc |
||||
|
||||
# Empty marker file that's generated when we check out NSS |
||||
security/manager/.nss.checkout |
||||
|
||||
# Build directories |
||||
/obj*/ |
||||
|
||||
# Build directories for js shell |
||||
_DBG.OBJ/ |
||||
_OPT.OBJ/ |
||||
|
||||
# SpiderMonkey configury |
||||
js/src/configure |
||||
js/src/old-configure |
||||
js/src/autom4te.cache |
||||
# SpiderMonkey test result logs |
||||
js/src/tests/results-*.html |
||||
js/src/tests/results-*.txt |
||||
|
||||
# Java HTML5 parser classes |
||||
parser/html/java/htmlparser/ |
||||
parser/html/java/javaparser/ |
||||
|
||||
# Ignore the files and directory that Eclipse IDE creates |
||||
.project |
||||
.cproject |
||||
.settings/ |
||||
|
||||
# Ignore the files and directory that JetBrains IDEs create. |
||||
/.idea/ |
||||
*.iml |
||||
|
||||
# Gradle cache. |
||||
/.gradle/ |
||||
|
||||
# Local Gradle configuration properties. |
||||
/local.properties |
||||
|
||||
# Python virtualenv artifacts. |
||||
python/psutil/**/*.so |
||||
python/psutil/**/*.pyd |
||||
python/psutil/build/ |
||||
|
||||
# Ignore chrome.manifest files from the devtools loader |
||||
devtools/client/chrome.manifest |
||||
devtools/shared/chrome.manifest |
||||
|
||||
# Ignore node_modules directories in devtools |
||||
devtools/**/node_modules |
||||
|
||||
# Tag files generated by GNU Global |
||||
GTAGS |
||||
GRTAGS |
||||
GSYMS |
||||
GPATH |
||||
|
||||
# Git clone directory for updating web-platform-tests |
||||
testing/web-platform/sync/ |
||||
|
||||
# Android Gradle artifacts. |
||||
mobile/android/gradle/.gradle |
||||
|
||||
# XCode project cruft |
||||
embedding/ios/GeckoEmbed/GeckoEmbed.xcodeproj/project.xcworkspace/xcuserdata |
||||
embedding/ios/GeckoEmbed/GeckoEmbed.xcodeproj/xcuserdata |
||||
|
||||
# Ignore mozharness execution files |
||||
testing/mozharness/.tox/ |
||||
testing/mozharness/build/ |
||||
testing/mozharness/logs/ |
||||
testing/mozharness/.coverage |
||||
testing/mozharness/nosetests.xml |
||||
|
||||
# Ignore node_modules |
||||
tools/lint/eslint/node_modules/ |
||||
|
||||
# Ignore talos virtualenv and tp5n files. |
||||
# The tp5n set is supposed to be decompressed at |
||||
# testing/talos/talos/page_load_test/tp5n in order to run tests like tps |
||||
# locally. Similarly, running talos requires a Python package virtual |
||||
# environment. Both the virtual environment and tp5n files end up littering |
||||
# the status command, so we ignore them. |
||||
testing/talos/.Python |
||||
testing/talos/bin/ |
||||
testing/talos/include/ |
||||
testing/talos/lib/ |
||||
testing/talos/talos/tests/tp5n.zip |
||||
testing/talos/talos/tests/tp5n |
||||
testing/talos/talos/tests/devtools/damp.manifest.develop |
||||
|
||||
# Ignore files created when running a reftest. |
||||
lextab.py |
||||
|
||||
# tup database |
||||
/.tup |
@ -0,0 +1,5 @@
|
||||
repo: 8ba995b74e18334ab3707f27e9eb8f4e37ba3d29 |
||||
node: a7c8e85285e290fdb1325edfb37e905a3779f3cd |
||||
branch: default |
||||
tag: FIREFOX_52_6_0esr_BUILD2 |
||||
tag: FIREFOX_52_6_0esr_RELEASE |
@ -0,0 +1,134 @@
|
||||
# .hgignore - List of filenames hg should ignore |
||||
|
||||
# Filenames that should be ignored wherever they appear |
||||
~$ |
||||
\.py(c|o)$ |
||||
(?i)(^|/)TAGS$ |
||||
(^|/)ID$ |
||||
(^|/)\.DS_Store$ |
||||
\.pdb |
||||
\.egg-info |
||||
|
||||
# Vim swap files. |
||||
^\.sw.$ |
||||
.[^/]*\.sw.$ |
||||
|
||||
# Emacs directory variable files. |
||||
\.dir-locals\.el |
||||
|
||||
# User files that may appear at the root |
||||
^\.mozconfig |
||||
^mozconfig* |
||||
^configure$ |
||||
^old-configure$ |
||||
^config\.cache$ |
||||
^config\.log$ |
||||
^\.clang_complete |
||||
^\.?machrc$ |
||||
|
||||
# Empty marker file that's generated when we check out NSS |
||||
^security/manager/\.nss\.checkout$ |
||||
|
||||
# Build directories |
||||
^obj |
||||
|
||||
# Build directories for js shell |
||||
_DBG\.OBJ/ |
||||
_OPT\.OBJ/ |
||||
^js/src/.*-obj/ |
||||
|
||||
# SpiderMonkey configury |
||||
^js/src/configure$ |
||||
^js/src/old-configure$ |
||||
^js/src/autom4te.cache$ |
||||
# SpiderMonkey test result logs |
||||
^js/src/tests/results-.*\.(html|txt)$ |
||||
^js/src/devtools/rootAnalysis/t/out |
||||
|
||||
# Java HTML5 parser classes |
||||
^parser/html/java/(html|java)parser/ |
||||
|
||||
# SVN directories |
||||
\.svn/ |
||||
|
||||
# Ignore the files and directory that Eclipse IDE creates |
||||
\.project$ |
||||
\.cproject$ |
||||
\.settings/ |
||||
|
||||
# Ignore the files and directory that JetBrains IDEs create. |
||||
\.idea/ |
||||
\.iml$ |
||||
|
||||
# Gradle cache. |
||||
^.gradle/ |
||||
|
||||
# Local Gradle configuration properties. |
||||
^local.properties$ |
||||
|
||||
# Python stuff installed at build time. |
||||
^python/psutil/.*\.so |
||||
^python/psutil/.*\.pyd |
||||
^python/psutil/build/ |
||||
|
||||
# Git repositories |
||||
.git/ |
||||
|
||||
# Ignore chrome.manifest files from the devtools loader |
||||
^devtools/client/chrome.manifest$ |
||||
^devtools/shared/chrome.manifest$ |
||||
|
||||
# Ignore node_modules directories in devtools |
||||
^devtools/.*/node_modules/ |
||||
|
||||
# git checkout of libstagefright |
||||
^media/libstagefright/android$ |
||||
|
||||
# Tag files generated by GNU Global |
||||
GTAGS |
||||
GRTAGS |
||||
GSYMS |
||||
GPATH |
||||
|
||||
# Git clone directory for updating web-platform-tests |
||||
^testing/web-platform/sync/ |
||||
|
||||
# Android Gradle artifacts. |
||||
^mobile/android/gradle/.gradle |
||||
|
||||
# XCode project cruft |
||||
^embedding/ios/GeckoEmbed/GeckoEmbed.xcodeproj/project.xcworkspace/xcuserdata |
||||
^embedding/ios/GeckoEmbed/GeckoEmbed.xcodeproj/xcuserdata |
||||
|
||||
# Ignore mozharness execution files |
||||
^testing/mozharness/.tox/ |
||||
^testing/mozharness/build/ |
||||
^testing/mozharness/logs/ |
||||
^testing/mozharness/.coverage |
||||
^testing/mozharness/nosetests.xml |
||||
|
||||
# Ignore tox generated dir |
||||
.tox/ |
||||
|
||||
# Ignore node_modules |
||||
^tools/lint/eslint/node_modules/ |
||||
|
||||
# Ignore talos virtualenv and tp5n files. |
||||
# The tp5n set is supposed to be decompressed at |
||||
# testing/talos/talos/page_load_test/tp5n in order to run tests like tps |
||||
# locally. Similarly, running talos requires a Python package virtual |
||||
# environment. Both the virtual environment and tp5n files end up littering |
||||
# the status command, so we ignore them. |
||||
^testing/talos/.Python |
||||
^testing/talos/bin/ |
||||
^testing/talos/include/ |
||||
^testing/talos/lib/ |
||||
^testing/talos/talos/tests/tp5n.zip |
||||
^testing/talos/talos/tests/tp5n |
||||
^testing/talos/talos/tests/devtools/damp.manifest.develop |
||||
|
||||
# Ignore files created when running a reftest. |
||||
^lextab.py$ |
||||
|
||||
# tup database |
||||
^\.tup |
@ -0,0 +1,489 @@
|
||||
df7a3c8ffeeaba229067efee5a20e21dae0dd877 MOZILLA_1_9_a4_BASE |
||||
4209e16b58411750ac73f761023e46b76b793e2c MOZILLA_1_9_a6_BASE |
||||
66a5c7bce7ee86a820d3c0d54fa07cb719be751c MOZILLA_1_9_a7_BASE |
||||
caeba7562e495a9f604984df0b48b6f99bec3e2e FENNEC_M4 |
||||
9d9941eacb14827fdab4716710042fdde84eb60d FIREFOX_3_1a1_RELEASE |
||||
9d9941eacb14827fdab4716710042fdde84eb60d FIREFOX_3_1a1_BUILD1 |
||||
c1d7e318a27574c995631fec166ad42672475702 FIREFOX_3_1a1_BUILD2 |
||||
c1d7e318a27574c995631fec166ad42672475702 FIREFOX_3_1a1_RELEASE |
||||
afc4ee509d9ca3bb4031015c3c22963dcb4b7e7f FIREFOX_3_1a1_RELEASE |
||||
afc4ee509d9ca3bb4031015c3c22963dcb4b7e7f FIREFOX_3_1a1_BUILD2 |
||||
f197b51bbc29a30860e750ee87fd0a047a024f2e FIREFOX_3_1a2_BUILD1 |
||||
f197b51bbc29a30860e750ee87fd0a047a024f2e FIREFOX_3_1a2_RELEASE |
||||
269af1ed75649989575d41f53a12048015c6d50e FENNEC_M8 |
||||
920a4326d1087b174c2fa2b9a8358e12c697022c SEAMONKEY_2_0a1_BUILD1 |
||||
920a4326d1087b174c2fa2b9a8358e12c697022c SEAMONKEY_2_0a1_RELEASE |
||||
f197b51bbc29a30860e750ee87fd0a047a024f2e UPDATE_PACKAGING_R5 |
||||
f197b51bbc29a30860e750ee87fd0a047a024f2e -m |
||||
f197b51bbc29a30860e750ee87fd0a047a024f2e Adding UPDATE_PACKAGING_R5 tag in order to make patcher work. |
||||
15cb5d25db054d2d0b56869a2f6351388bfcddcd THUNDERBIRD_3_0a3_RELEASE |
||||
15cb5d25db054d2d0b56869a2f6351388bfcddcd THUNDERBIRD_3_0a3_BUILD1 |
||||
0000000000000000000000000000000000000000 -m |
||||
0000000000000000000000000000000000000000 Adding UPDATE_PACKAGING_R5 tag in order to make patcher work. |
||||
f197b51bbc29a30860e750ee87fd0a047a024f2e UPDATE_PACKAGING_R6 |
||||
d7d64f68423b68a671f623f123e90057ebc49dac UPDATE_PACKAGING_R6 |
||||
0000000000000000000000000000000000000000 THUNDERBIRD_3_0a3_BUILD1 |
||||
0000000000000000000000000000000000000000 THUNDERBIRD_3_0a3_RELEASE |
||||
0cd41f5990807fb6ab52cb59ba3c8e8247281045 GECKO_1_9_1_BASE |
||||
8df5a90281cd4d75835e4b7696da200555eed15f GECKO_1_9_1_BASE |
||||
8a601ed6bc4c7b3d1e35aa9e81f257512d984bd5 FENNEC_A2 |
||||
d7d64f68423b68a671f623f123e90057ebc49dac UPDATE_PACKAGING_R7 |
||||
fb32f6e1859c07846a01b4478a7b1678019e0b45 UPDATE_PACKAGING_R7 |
||||
f817a4378f32b1ad0a7c4b5a9949586dba816da5 FENNEC_M11 |
||||
5c1e7c779b6edc8ff912001990edc579f80597f4 FENNEC_B1 |
||||
fe9cc55b8db7f56f7e68a246acba363743854979 UPDATE_PACKAGING_R8 |
||||
6fd4bb500d425c406c1b52f66e5b195b20ae5e0a chromium-import-r15462 |
||||
6fd4bb500d425c406c1b52f66e5b195b20ae5e0a chromium-import-latest |
||||
376b78fc72230aaf2ca4e279a8f4ef1efd4a1d9f GECKO_1_9_2_BASE |
||||
941ad9d7d079246481f365c3cfbfc75a5bbefc94 last-mozilla-central |
||||
2bae3bbf866e7de2a4b2377e7c2f52cc9ac14a22 last-mozilla-central |
||||
2bae3bbf866e7de2a4b2377e7c2f52cc9ac14a22 last-mozilla-central |
||||
65c1582465efe99899189519fccaf7b2826fcb2e last-mozilla-central |
||||
65c1582465efe99899189519fccaf7b2826fcb2e last-mozilla-central |
||||
27937722da69ad0e8fd140a00671413068226a5b last-mozilla-central |
||||
27937722da69ad0e8fd140a00671413068226a5b last-mozilla-central |
||||
a732c6d3c078f80635255c78bfaadffa5828a8a5 last-mozilla-central |
||||
a732c6d3c078f80635255c78bfaadffa5828a8a5 last-mozilla-central |
||||
925595f3c08634cc42e33158ea6858bb55623ef7 last-mozilla-central |
||||
dba2abb7db57078c5a4810884834d3056a5d56c2 last-mozilla-central |
||||
138f593553b66c9f815e8f57870c19d6347f7702 UPDATE_PACKAGING_R9 |
||||
138f593553b66c9f815e8f57870c19d6347f7702 UPDATE_PACKAGING_R10 |
||||
138f593553b66c9f815e8f57870c19d6347f7702 UPDATE_PACKAGING_R11 |
||||
0327e126ea245112c0aa7283fee154e084866fb5 bsmedberg-static-xpcom-registration-base |
||||
0327e126ea245112c0aa7283fee154e084866fb5 bsmedberg-static-xpcom-registration-base |
||||
2f83edbbeef0de7dd901411d270da61106c8afae bsmedberg-static-xpcom-registration-base |
||||
138f593553b66c9f815e8f57870c19d6347f7702 UPDATE_PACKAGING_R12 |
||||
138f593553b66c9f815e8f57870c19d6347f7702 UPDATE_PACKAGING_R13 |
||||
138f593553b66c9f815e8f57870c19d6347f7702 UPDATE_PACKAGING_R11_1_MU |
||||
e56ecd8b3a68c158025207c5fd081d043e28f5ce GECKO_2_0_BASE |
||||
e273946b74c8d631ed86bd74ba9afe0e67b12378 GECKO_2_1_BASE |
||||
b70744835d94e54eec97b8fd186c96da5708a506 PRE_MOBILE_MERGE |
||||
b70744835d94e54eec97b8fd186c96da5708a506 PRE_MOBILE_MERGE_20110406 |
||||
a71bd564ebf5bf4f93d13e84114f759c263130b0 MOBILE_MERGE_DONE |
||||
a71bd564ebf5bf4f93d13e84114f759c263130b0 MOBILE_MERGE_DONE_20110406 |
||||
a95d426422816513477e5863add1b00ac7041dcb AURORA_BASE_20110412 |
||||
138f593553b66c9f815e8f57870c19d6347f7702 UPDATE_PACKAGING_R14 |
||||
9eae975b3d6fb7748fe5a3c0113d449b1c7cc0b2 AURORA_BASE_20110524 |
||||
138f593553b66c9f815e8f57870c19d6347f7702 UPDATE_PACKAGING_R14 |
||||
462c726144bc1fb45b61e774f64ac5d61b4e047c UPDATE_PACKAGING_R14 |
||||
5eb553dd2ceae5f88d80f27afc5ef3935c5d43b0 AURORA_BASE_20110705 |
||||
41b84b87c816403e1b74963d8094cff0406c989e AURORA_BASE_20110816 |
||||
c0983049bcaa9551e5f276d5a77ce154c151e0b0 AURORA_BASE_20110927 |
||||
462c726144bc1fb45b61e774f64ac5d61b4e047c UPDATE_PACKAGING_R15 |
||||
54bfd8bf682e295ffd7f22fa921ca343957b6c1c AURORA_BASE_20111108 |
||||
a8506ab2c65480cf2f85f54e203ea746522c62bb AURORA_BASE_20111220 |
||||
462c726144bc1fb45b61e774f64ac5d61b4e047c UPDATE_PACKAGING_R16 |
||||
bbc7014db2de49e2301680d2a86be8a53108a88a AURORA_BASE_20120131 |
||||
bbc7014db2de49e2301680d2a86be8a53108a88a AURORA_BASE_20120131 |
||||
0000000000000000000000000000000000000000 AURORA_BASE_20120131 |
||||
0000000000000000000000000000000000000000 AURORA_BASE_20120131 |
||||
bbc7014db2de49e2301680d2a86be8a53108a88a AURORA_BASE_20120131 |
||||
b6627f28b7ec17e1b46a594df0f780d3a40847e4 FIREFOX_AURORA_13_BASE |
||||
357da346ceb705d196a46574804c7c4ec44ac186 FIREFOX_AURORA_14_BASE |
||||
26dcd1b1a20893ad99341c61c6b1239ff1523858 FIREFOX_AURORA_15_BASE |
||||
0accd12a8e7e217836ea3f1ee7c411913fc75d8e FIREFOX_AURORA_16_BASE |
||||
0000000000000000000000000000000000000000 FIREFOX_AURORA_16_BASE |
||||
9697eadafa13b4e9233b39aaeecfeac79503cb54 FIREFOX_AURORA_16_BASE |
||||
9697eadafa13b4e9233b39aaeecfeac79503cb54 FIREFOX_AURORA_16_BASE |
||||
6fdf9985acfe6f939da584b2559464ab22264fe7 FIREFOX_AURORA_16_BASE |
||||
fd72dbbd692012224145be1bf13df1d7675fd277 FIREFOX_AURORA_17_BASE |
||||
2704e441363fe2a48e992dfac694482dfd82664a FIREFOX_AURORA_18_BASE |
||||
cf8750abee06cde395c659f8ecd8ae019d7512e3 FIREFOX_AURORA_19_BASE |
||||
5bb309998e7050c9ee80b0147de1e473f008e221 FIREFOX_AURORA_20_BASE |
||||
cc37417e2c284aed960f98ffa479de4ccdd5c7c3 FIREFOX_AURORA_21_BASE |
||||
1c070ab0f9db59f13423b9c1db60419f7a9098f9 FIREFOX_AURORA_22_BASE |
||||
d7ce9089999719d5186595d160f25123a4e63e39 FIREFOX_AURORA_23_BASE |
||||
8d3810543edccf4fbe458178b88dd4a6e420b010 FIREFOX_AURORA_24_BASE |
||||
ad0ae007aa9e03cd74e9005cd6652e544139b3b5 FIREFOX_AURORA_25_BASE |
||||
2520866d58740851d862c7c59246a4e3f8b4a176 FIREFOX_AURORA_26_BASE |
||||
05025f4889a0bf4dc99ce0c244c750adc002f015 FIREFOX_AURORA_27_BASE |
||||
ba2cc1eda988a1614d8986ae145d28e1268409b9 FIREFOX_AURORA_29_BASE-m |
||||
ba2cc1eda988a1614d8986ae145d28e1268409b9 Tagging for mozilla-central version bumps CLOSED TREE DONTBUILD |
||||
ba2cc1eda988a1614d8986ae145d28e1268409b9 Tagging for mozilla-central version bumps CLOSED TREE DONTBUILD |
||||
0000000000000000000000000000000000000000 Tagging for mozilla-central version bumps CLOSED TREE DONTBUILD |
||||
ba2cc1eda988a1614d8986ae145d28e1268409b9 FIREFOX_AURORA_29_BASE-m |
||||
0000000000000000000000000000000000000000 FIREFOX_AURORA_29_BASE-m |
||||
ba2cc1eda988a1614d8986ae145d28e1268409b9 FIREFOX_AURORA_29_BASE |
||||
9f12a9fab080f2d363d7424e25b9ffe85ebc3414 FIREFOX_AURORA_28_BASE |
||||
07f5580d8a54e8311fa7641c907065a88de19e08 FIREFOX_AURORA_29_END |
||||
3776f72f1967a7068879501eb7c08920032785b8 B2G_1_4_20140317_MERGEDAY |
||||
aa70a6ce178a6839cd9e55761c4ac31d43ee7bd9 FIREFOX_BETA_29_END |
||||
ba4a8f81efdcf000414f192342ccbd14c9626c36 RELEASE_BASE_20140602 |
||||
9f12a9fab080f2d363d7424e25b9ffe85ebc3414 FIREFOX_AURORA_28_BASE |
||||
83c9853e136451474dfa6d1aaa60a7fca7d2d83a FIREFOX_AURORA_30_BASE |
||||
cfde3603b0206e119abea76fdd6e134b634348f1 FIREFOX_AURORA_31_BASE |
||||
ab25447610b532eb4c32524a7dbc56a21eeaabb8 FIREFOX_BETA_30_BASE |
||||
ab25447610b532eb4c32524a7dbc56a21eeaabb8 FIREFOX_AURORA_30_END |
||||
6c18811bcd1b319801fd97aeb09c41b963863968 FIREFOX_BETA_30_END |
||||
1772e55568e420f8c7fbf7b9434157e9f419c8f1 FIREFOX_RELEASE_31_BASE |
||||
40b1b0712d7b53219a0404e78eec4e6a2796423e FIREFOX_RELEASE_30_END |
||||
9f12a9fab080f2d363d7424e25b9ffe85ebc3414 FIREFOX_AURORA_28_BASE |
||||
16f3cac5e8fe471e12f76d6a94a477b14e78df7c FIREFOX_AURORA_32_BASE |
||||
f11b164d75442617c4f046177d2ab913ed03a318 FIREFOX_BETA_31_BASE |
||||
f11b164d75442617c4f046177d2ab913ed03a318 FIREFOX_AURORA_31_END |
||||
dc2fd26b301375f15c935f00fe6283d3e3bc1efc B2G_2_0_20140609_MERGEDAY |
||||
d69cd84b6824e018e0906cab0464e11e97a9bdca FIREFOX_BETA_32_BASE |
||||
d69cd84b6824e018e0906cab0464e11e97a9bdca FIREFOX_BETA_32_BASE |
||||
0000000000000000000000000000000000000000 FIREFOX_BETA_32_BASE |
||||
0000000000000000000000000000000000000000 FIREFOX_BETA_32_BASE |
||||
ac396ad5a32d60ae5b7eebe5416fdd46e9e12be1 FIREFOX_BETA_32_BASE |
||||
6befadcaa68524d24960d8342e00503e4edc1869 FIREFOX_BETA_31_END |
||||
92ad4cfa9435fbe136c61071041812f90bc8d89e FIREFOX_RELEASE_32_BASE |
||||
cd52a7f8954809fd893196dc857f81b0cb61717c FIREFOX_RELEASE_31_END |
||||
9f12a9fab080f2d363d7424e25b9ffe85ebc3414 FIREFOX_AURORA_28_BASE |
||||
dc23164ba2a289a8b22902e30990c77d9677c214 FIREFOX_AURORA_33_BASE |
||||
a104ddcd4cdbf950f1755dfaf5a278d53570655f FIREFOX_AURORA_32_END |
||||
114b010b6bf1a0efee03f003e54ed6fa00909972 FIREFOX_BETA_33_BASE |
||||
ebd0ee3e97dc2756d979261b29f173638fe6aeb6 FIREFOX_BETA_32_END |
||||
e8360a0c7d7483491e064c7cd445a94004af0a83 FIREFOX_RELEASE_33_BASE |
||||
4641475ee1f3ec3e723e932e0f4f3f3fa7c55a5c FIREFOX_RELEASE_32_END |
||||
9f12a9fab080f2d363d7424e25b9ffe85ebc3414 FIREFOX_AURORA_28_BASE |
||||
c360f3d1c00d73b0c1fb0a2c0da525cb55e58b83 FIREFOX_AURORA_34_BASE |
||||
9f1aad8e807cc283aafbc14caa3d4775e8d0535c FIREFOX_AURORA_33_END |
||||
5b8210dcf52a795646bf0c8a32082a2ed7c4f537 B2G_2_1_20140902_MERGEDAY |
||||
e85828ce78a80e2ccda98972d69d5f750335c4ab FIREFOX_BETA_34_BASE |
||||
8574e35b517785acc905327f4994e96576218fa8 FIREFOX_BETA_33_END |
||||
e247a7f7c43842941bdb4207ca1b9d8881798997 FIREFOX_RELEASE_34_BASE |
||||
a47b1b720b67b018a9cb106178de53a363641392 FIREFOX_RELEASE_33_END |
||||
9f12a9fab080f2d363d7424e25b9ffe85ebc3414 FIREFOX_AURORA_28_BASE |
||||
cec1a116c4f9a3e887d52e9a26e8bbec200fe162 FIREFOX_AURORA_35_BASE |
||||
2608561c091ae83cc85e38740feffa5bfc6b5ed4 FIREFOX_AURORA_34_END |
||||
390a34a40ea4e7f4d24b3ed83778e0f408411fcc FIREFOX_BETA_35_BASE |
||||
a3cc435fd3c315e5dfe9329d03d5943bb893cced FIREFOX_BETA_34_END |
||||
fb06fa0600ab95db48212a237c79b650cac213c5 FIREFOX_RELEASE_35_BASE |
||||
f4217563f1568c478c1ddf1647098946e51bc7f8 FIREFOX_RELEASE_34_END |
||||
9f12a9fab080f2d363d7424e25b9ffe85ebc3414 FIREFOX_AURORA_28_BASE |
||||
ca89fe55717059e4e43040d16d260765ffa9dca7 FIREFOX_AURORA_36_BASE |
||||
6047f510fb73c7dbe9866066fb01ddda3c170c9c FIREFOX_AURORA_37_BASE |
||||
ca89fe55717059e4e43040d16d260765ffa9dca7 FIREFOX_AURORA_36_BASE |
||||
0000000000000000000000000000000000000000 FIREFOX_AURORA_36_BASE |
||||
6047f510fb73c7dbe9866066fb01ddda3c170c9c FIREFOX_AURORA_37_BASE |
||||
0000000000000000000000000000000000000000 FIREFOX_AURORA_37_BASE |
||||
0000000000000000000000000000000000000000 FIREFOX_AURORA_36_BASE |
||||
b297a6727acfd21e757ddd38cd61894812666265 FIREFOX_AURORA_36_BASE |
||||
0cf828669d5a0911b6f2b83d501eeef5bdf9905e FIREFOX_AURORA_35_END |
||||
75177371cb85baaa9d623f56d849a5c21d18040f FIREFOX_BETA_36_BASE |
||||
137baee3dda45c6a3b38be74f5709c24f7c7701a FIREFOX_BETA_35_END |
||||
948a2c2e31d4b7eaa282ddeb327708605e3cc7fa FIREFOX_RELEASE_36_BASE |
||||
d57ff45ca4fd7ccf1cb924030abf6c7d108eaab0 FIREFOX_RELEASE_35_END |
||||
9f12a9fab080f2d363d7424e25b9ffe85ebc3414 FIREFOX_AURORA_28_BASE |
||||
0000000000000000000000000000000000000000 FIREFOX_AURORA_37_BASE |
||||
2c951493eef5b50b8085ef78ffe0d7902ff3d593 FIREFOX_AURORA_37_BASE |
||||
1bc9beda018a42bdd5f63fc9fc46facf0c6f37ec FIREFOX_AURORA_36_END |
||||
030fa1665346dfa94d1f72a1c7830644664ecf08 FIREFOX_BETA_37_BASE |
||||
7d4016a05dd32bf2d726975ba9175bb13fc9ea97 FIREFOX_BETA_36_END |
||||
196c6575593d6e8997402fb458bf8ed2f954fa4a FIREFOX_RELEASE_37_BASE |
||||
58fe203296af528cc711dc314e4769a902e3852f FIREFOX_RELEASE_36_END |
||||
9f12a9fab080f2d363d7424e25b9ffe85ebc3414 FIREFOX_AURORA_28_BASE |
||||
98086da94ccdc88f6de86774ce3d1fa258dc7c44 FIREFOX_AURORA_38_BASE |
||||
d55b99e8010728b0c802e75e967d2a853122dd30 FIREFOX_AURORA_37_END |
||||
8bc9656cad94db48cd44f3947f1b3b1d8c57768a FIREFOX_BETA_38_BASE |
||||
b41c57eefd69242fc9664a3e5c2dcaa46840051c FIREFOX_BETA_37_END |
||||
fc98815acf5f041c6269fd256a68af8a92ba222a FIREFOX_RELEASE_38_BASE |
||||
b95583c8e7e7a7ce629b4d4551747e818367d0a0 FIREFOX_RELEASE_37_END |
||||
f33925facceefe32f6347faed2d805551d82e60b FIREFOX_RELEASE_38_END |
||||
9f12a9fab080f2d363d7424e25b9ffe85ebc3414 FIREFOX_AURORA_28_BASE |
||||
1b6bf6612c0f4d4fee81d18bf18016e692f874e1 FIREFOX_AURORA_39_BASE |
||||
d92bf011e305a4a4ad6bb98192a53b86bd64b813 FIREFOX_AURORA_38_END |
||||
5e851d50fb9b8d5a28e4fcd4731dd0f17e8fb4b9 FIREFOX_BETA_39_BASE |
||||
85229fbaf01713caa9ad26c7d3afec271494113c FIREFOX_BETA_38_END |
||||
5fecfbec2e3c934d4646a739bea60d3c93a35f9e FIREFOX_RELEASE_39_BASE |
||||
f33925facceefe32f6347faed2d805551d82e60b FIREFOX_RELEASE_38_END |
||||
971ab60e21d340e0407d2b9eb82fca67a4a9f1cb FIREFOX_RELEASE_38_END |
||||
9f12a9fab080f2d363d7424e25b9ffe85ebc3414 FIREFOX_AURORA_28_BASE |
||||
66a95a483d2c77dfc387019336d18093acd6aac2 FIREFOX_AURORA_40_BASE |
||||
eead3ccdf2d11feefc12907467cebbe07aa91ea9 FIREFOX_AURORA_39_END |
||||
d77cf39268848f8a7e9b38082348b6cd4d1f3b5e FIREFOX_BETA_40_BASE |
||||
0b0822cabbb95d8509852f90c0b7df5da0a4cabc FIREFOX_BETA_39_END |
||||
34e00eb800c52e33059d37f6e41fb255b4bae6b8 FIREFOX_RELEASE_40_BASE |
||||
ec21f96665f7d3fdd5d7944c90373938390096d7 FIREFOX_RELEASE_39_END |
||||
9f12a9fab080f2d363d7424e25b9ffe85ebc3414 FIREFOX_AURORA_28_BASE |
||||
312c68b16549de9cea1557f461d5d234bd5e0a7d FIREFOX_AURORA_41_BASE |
||||
9d83ab013ab61c7f6e987bf0e7cbab1a1aed1ca8 FIREFOX_AURORA_40_END |
||||
a019592053c4d93fbbafab8d0bd709529e3746de FIREFOX_BETA_41_BASE |
||||
f147014ff61a12480d377c8bde1f90891772540f FIREFOX_BETA_40_END |
||||
6c0329aacb73ab0510c6f1026ef066dfaed9139c FIREFOX_RELEASE_41_BASE |
||||
9c898cde2175e9e98b916d996ed286a9dff0c853 FIREFOX_RELEASE_40_END |
||||
9f12a9fab080f2d363d7424e25b9ffe85ebc3414 FIREFOX_AURORA_28_BASE |
||||
7a19194812eb767bee7cdf8fc36ba9a383c1bead FIREFOX_AURORA_42_BASE |
||||
d561dc208e61b2f2b4e82ab61710e14f56da4ddb FIREFOX_AURORA_41_END |
||||
61bbc30704aa104e9929c719c0fd7957f96f00ea FIREFOX_BETA_42_BASE |
||||
a5bf9cf6777519663e8e1db553727e59d3ad5681 FIREFOX_BETA_41_END |
||||
3f2ff85b2f16c1fd161dc5ba77a5f3f2c52fd127 FIREFOX_RELEASE_42_BASE |
||||
dc3a2ec52077a5cea772cdb267380f7debc3080b FIREFOX_RELEASE_41_END |
||||
9f12a9fab080f2d363d7424e25b9ffe85ebc3414 FIREFOX_AURORA_28_BASE |
||||
fcef8ded82219c89298b4e376cfbdfba79a1d35a FIREFOX_AURORA_43_BASE |
||||
b0e20ff87b175424edec414215b325918ccb4792 FIREFOX_AURORA_42_END |
||||
41fdefd640f368bccdeafe6446d42c0a5ad22797 FIREFOX_BETA_43_BASE |
||||
0ec8472a93ac0c7ef0e98ebb91ac780bde12d5a5 FIREFOX_BETA_42_END |
||||
38ffeba26f3e420312e04cb3afb408f4c66a6f2e FIREFOX_RELEASE_43_BASE |
||||
56320bc06404b926b475051ba643950bd78cf221 FIREFOX_RELEASE_42_END |
||||
9f12a9fab080f2d363d7424e25b9ffe85ebc3414 FIREFOX_AURORA_28_BASE |
||||
67a788db9f07822cfef52351bbbe3745dff8bd7f FIREFOX_AURORA_44_BASE |
||||
9d3bc275a924a84ab5f34df58c566af0f87479d0 FIREFOX_AURORA_43_END |
||||
b717b80eec62a7ba9b8842487f157b68c1419edd FIREFOX_BETA_44_BASE |
||||
366dd290472633b06f0942d7737c34e942e0916a FIREFOX_BETA_43_END |
||||
ef3cfadfccb97588653ae06eefdac28ec447c1f6 FIREFOX_RELEASE_44_BASE |
||||
af39a90c443c2fda798c2797e196eeb5a8b5cedd FIREFOX_RELEASE_43_END |
||||
9f12a9fab080f2d363d7424e25b9ffe85ebc3414 FIREFOX_AURORA_28_BASE |
||||
99137d6d4061f408ae0869122649d8bdf489cc30 FIREFOX_AURORA_45_BASE |
||||
4fbd53613240c431522521b953d5a62692909e65 FIREFOX_AURORA_44_END |
||||
3bfa5bc61b626761d487b45c170b115259f69d6b FIREFOX_BETA_45_BASE |
||||
6a7547e4a0f0e213bb8487c773e16543cbea8c73 FIREFOX_BETA_44_END |
||||
3a9789adadcd0de9ee31b16a89a11985822c6a11 FENNEC_45_0b1_RELEASE |
||||
6c0fd1f666e70f2b11f7083f9e7bf4c844a3716a FENNEC_45_0b1_RELEASE |
||||
3a9789adadcd0de9ee31b16a89a11985822c6a11 FENNEC_45_0b1_BUILD1 |
||||
6c0fd1f666e70f2b11f7083f9e7bf4c844a3716a FENNEC_45_0b1_BUILD1 |
||||
5e1da6523e97d7f8b01004bbe33118ac784b40ea FIREFOX_45_0b1_RELEASE |
||||
6c0fd1f666e70f2b11f7083f9e7bf4c844a3716a FIREFOX_45_0b1_RELEASE |
||||
5e1da6523e97d7f8b01004bbe33118ac784b40ea FIREFOX_45_0b1_BUILD1 |
||||
6c0fd1f666e70f2b11f7083f9e7bf4c844a3716a FIREFOX_45_0b1_BUILD1 |
||||
bbe048ab30ad3321a6505697703e5fee20e91343 FIREFOX_RELEASE_45_BASE |
||||
5fe8de3ca9bbf8bc18259c3490aca55c97e31979 FIREFOX_RELEASE_44_END |
||||
9f12a9fab080f2d363d7424e25b9ffe85ebc3414 FIREFOX_AURORA_28_BASE |
||||
67c66c2878aed17ae3096d7db483ddbb2293c503 FIREFOX_AURORA_46_BASE |
||||
d82221ba4219e4ac04ecfe2a5301703411e176fa FIREFOX_AURORA_45_END |
||||
89effb961712d4a5f84e90bcdd4e421ed6645eea FIREFOX_BETA_46_BASE |
||||
78fe98c670fcc9a1548ac655ae9a488d940fd9c8 FIREFOX_BETA_45_END |
||||
fb3494d06dfb73e26df72ca7a4bc4ef5ebf8795c FIREFOX_46_0b1_RELEASE |
||||
5904e3eb711dd263a6d2deb63b14e0c44e577054 FIREFOX_46_0b2_BUILD3 |
||||
5904e3eb711dd263a6d2deb63b14e0c44e577054 FIREFOX_46_0b2_RELEASE |
||||
2f6f69a19150e03ad68062f2ac92342afb1ef787 FIREFOX_46_0b4_BUILD2 |
||||
2f6f69a19150e03ad68062f2ac92342afb1ef787 FIREFOX_46_0b4_RELEASE |
||||
53d6e6648f97402a740687a82a297c66f5396548 FIREFOX_46_0b5_BUILD2 |
||||
53d6e6648f97402a740687a82a297c66f5396548 FIREFOX_46_0b5_RELEASE |
||||
97b81104ac035d6a8f6ed59a1aad63fcc23e73c8 FIREFOX_46_0b6_BUILD1 |
||||
97b81104ac035d6a8f6ed59a1aad63fcc23e73c8 FIREFOX_46_0b6_RELEASE |
||||
191f5eb4cbd72590277296cdb90d355adb347d45 FIREFOX_46_0b7_BUILD2 |
||||
191f5eb4cbd72590277296cdb90d355adb347d45 FIREFOX_46_0b7_RELEASE |
||||
0334bcac4033f4f163476677165acd406e08fed8 FIREFOX_46_0b8_BUILD1 |
||||
0334bcac4033f4f163476677165acd406e08fed8 FIREFOX_46_0b8_RELEASE |
||||
b007110e90053e58946b59765605bfca766c30d1 FIREFOX_46_0b9_BUILD1 |
||||
b007110e90053e58946b59765605bfca766c30d1 FIREFOX_46_0b9_RELEASE |
||||
9ea83990839bd513869018e57bcbedb3454b63bb FIREFOX_46_0b10_BUILD1 |
||||
9ea83990839bd513869018e57bcbedb3454b63bb FIREFOX_46_0b10_RELEASE |
||||
6c4646c7a6d6506e744c92a8170310191904c98e FIREFOX_RELEASE_46_BASE |
||||
64b6b8afb34bf8a4416b1d167b48177d0e30bde9 FIREFOX_RELEASE_45_END |
||||
078baf501b55eaa47f3b189fda4dd28dae1fa257 FIREFOX_46_0_BUILD5 |
||||
078baf501b55eaa47f3b189fda4dd28dae1fa257 FIREFOX_46_0_RELEASE |
||||
0b8492c110bec959b94e3d54d5bd5ca7f7f97f6c FIREFOX_46_0_1_BUILD1 |
||||
0b8492c110bec959b94e3d54d5bd5ca7f7f97f6c FIREFOX_46_0_1_RELEASE |
||||
076bf6a0ac85ec6a4f3ee7c3efe653964d92b9f2 FIREFOX_46_0b11_BUILD1 |
||||
076bf6a0ac85ec6a4f3ee7c3efe653964d92b9f2 FIREFOX_46_0b11_RELEASE |
||||
9f12a9fab080f2d363d7424e25b9ffe85ebc3414 FIREFOX_AURORA_28_BASE |
||||
68d3781deda0d4d58ec9877862830db89669b3a5 FIREFOX_AURORA_47_BASE |
||||
43d92f7052e7bab870c9b994d4b0a0f42d26b7a7 FIREFOX_AURORA_46_END |
||||
8551b253f4061db31e4be7829c2f70c2610caf42 FIREFOX_BETA_47_BASE |
||||
a2290938ee6cf794896a9347980bcb00ebb24c68 FIREFOX_BETA_46_END |
||||
5bbf2e7c2fc6ff9010b1948e2f11477f48ee36e2 FIREFOX_47_0b1_BUILD2 |
||||
5bbf2e7c2fc6ff9010b1948e2f11477f48ee36e2 FIREFOX_47_0b1_RELEASE |
||||
6f82d30fe05e1412e744cb76af86f0c9ffe509d4 FIREFOX_47_0b2_BUILD1 |
||||
6f82d30fe05e1412e744cb76af86f0c9ffe509d4 FIREFOX_47_0b2_RELEASE |
||||
609000bcc11211d7c27ceea36fa2d2262fa0523f FIREFOX_47_0b3_BUILD1 |
||||
609000bcc11211d7c27ceea36fa2d2262fa0523f FIREFOX_47_0b3_RELEASE |
||||
2991f214d4f4d8a3c5cfd95e6223f0660006767d FIREFOX_47_0b4_BUILD1 |
||||
2991f214d4f4d8a3c5cfd95e6223f0660006767d FIREFOX_47_0b4_RELEASE |
||||
93a53170dedffdff45bf9eb8dac6e5ef7a13c4ba FIREFOX_47_0b5_BUILD1 |
||||
93a53170dedffdff45bf9eb8dac6e5ef7a13c4ba FIREFOX_47_0b5_RELEASE |
||||
7d1f3450acc47025876964c1eca854ae027934f3 FIREFOX_47_0b6_BUILD1 |
||||
7d1f3450acc47025876964c1eca854ae027934f3 FIREFOX_47_0b6_RELEASE |
||||
0723a0212f5e0b30d7532d4e35eba7759fb54507 FIREFOX_47_0b7_BUILD1 |
||||
0723a0212f5e0b30d7532d4e35eba7759fb54507 FIREFOX_47_0b7_RELEASE |
||||
cb27eacbe04abc5f91a0379c23617715aab432ec FIREFOX_47_0b8_BUILD1 |
||||
cb27eacbe04abc5f91a0379c23617715aab432ec FIREFOX_47_0b8_RELEASE |
||||
2ee4473c729acb2ba7dc723e7affe79ce14bff85 FIREFOX_47_0b9_BUILD1 |
||||
2ee4473c729acb2ba7dc723e7affe79ce14bff85 FIREFOX_47_0b9_RELEASE |
||||
cf6ec12bd62001b93387ffb184a8841644255b5e FIREFOX_RELEASE_47_BASE |
||||
32d716995e14ae1e8eb128fde0881b121b7b53d0 FIREFOX_RELEASE_46_END |
||||
b0310cb90fd0158abd0e92850a47768649ba3d77 FIREFOX_47_0_BUILD3 |
||||
b0310cb90fd0158abd0e92850a47768649ba3d77 FIREFOX_47_0_RELEASE |
||||
7f5abf95991bda0bc2b8e0d774a8866b726b312b FIREFOX_47_0_1_BUILD1 |
||||
7f5abf95991bda0bc2b8e0d774a8866b726b312b FIREFOX_47_0_1_RELEASE |
||||
9f12a9fab080f2d363d7424e25b9ffe85ebc3414 FIREFOX_AURORA_28_BASE |
||||
1c6385ae1fe7e37d8f23f958ce14582f07af729e FIREFOX_AURORA_48_BASE |
||||
037f67a2d6c87e32f60b2753f19e4bed69cb60b3 FIREFOX_AURORA_47_END |
||||
961e7105e527f5b44e2b3cb6e24f6da33756f6ab FIREFOX_BETA_48_BASE |
||||
a86835580095325bf5c85483fad952f5c99d973e FIREFOX_BETA_47_END |
||||
55124c7343021091a61fdddac9f22628ca09642a FIREFOX_48_0b1_BUILD2 |
||||
55124c7343021091a61fdddac9f22628ca09642a FIREFOX_48_0b1_RELEASE |
||||
9798772706750302d87a689cbbf056ae04244f80 FIREFOX_48_0b2_BUILD2 |
||||
9798772706750302d87a689cbbf056ae04244f80 FIREFOX_48_0b2_RELEASE |
||||
13b02b96281e550c3cdbdf4eaed034aa1edefd69 FIREFOX_48_0b3_BUILD1 |
||||
13b02b96281e550c3cdbdf4eaed034aa1edefd69 FIREFOX_48_0b3_RELEASE |
||||
676a32cdd41fd372f4c6df3a4954939f73a6ef02 FIREFOX_48_0b4_BUILD1 |
||||
676a32cdd41fd372f4c6df3a4954939f73a6ef02 FIREFOX_48_0b4_RELEASE |
||||
dd7af1fa4ece1cb3158d08c80dfcbf1c6ca830fb FIREFOX_48_0b5_BUILD1 |
||||
dd7af1fa4ece1cb3158d08c80dfcbf1c6ca830fb FIREFOX_48_0b5_RELEASE |
||||
d142c49033c015f67272562b37dbe2912cfc7f14 FIREFOX_48_0b6_BUILD1 |
||||
d142c49033c015f67272562b37dbe2912cfc7f14 FIREFOX_48_0b6_RELEASE |
||||
9d734024ed35d74449601cc04917b327e0973c0d FIREFOX_48_0b7_BUILD1 |
||||
9d734024ed35d74449601cc04917b327e0973c0d FIREFOX_48_0b7_RELEASE |
||||
d2ab9c39bd1059d74acb3d9ac87dbfbba913427b FIREFOX_48_0b9_BUILD1 |
||||
d2ab9c39bd1059d74acb3d9ac87dbfbba913427b FIREFOX_48_0b9_RELEASE |
||||
05853bb06a8739b77c2937f418cdf4e1610d0d9f FIREFOX_48_0b10_BUILD1 |
||||
05853bb06a8739b77c2937f418cdf4e1610d0d9f FIREFOX_48_0b10_RELEASE |
||||
f3d7abb885c267a7657e3b8ea06c18f76eb69641 FIREFOX_RELEASE_48_BASE |
||||
2366ae84e268c386a292185bddb0e4a24c2e1d07 FIREFOX_RELEASE_47_END |
||||
c1de04f39fa956cfce83f6065b0e709369215ed5 FIREFOX_48_0_BUILD2 |
||||
c1de04f39fa956cfce83f6065b0e709369215ed5 FIREFOX_48_0_RELEASE |
||||
f36f7ace6f487e06f315f343d560b205fa8bd736 FIREFOX_48_0_1_BUILD3 |
||||
f36f7ace6f487e06f315f343d560b205fa8bd736 FIREFOX_48_0_1_RELEASE |
||||
d4af0671004007e58d316b3e49679b66879c205a FIREFOX_48_0_2_BUILD1 |
||||
d4af0671004007e58d316b3e49679b66879c205a FIREFOX_48_0_2_RELEASE |
||||
9f12a9fab080f2d363d7424e25b9ffe85ebc3414 FIREFOX_AURORA_28_BASE |
||||
a8fe75f38163d0af067fea60e951a844fb328db9 FIREFOX_AURORA_48_END |
||||
d2f65d99fd51e5ee2f34d892115cc5d6c39a8ea9 FIREFOX_BETA_49_BASE |
||||
958cee08361af9ed370be06695973bcda3d3aa46 FIREFOX_BETA_48_END |
||||
c14631e328bbbd3aabaf06b51597060b55938ba8 FIREFOX_49_0b1_BUILD3 |
||||
c14631e328bbbd3aabaf06b51597060b55938ba8 FIREFOX_49_0b1_RELEASE |
||||
b1bdd0f3482ae07d38a2ec5fbf190a2c4f2310ee FIREFOX_49_0b2_BUILD1 |
||||
b1bdd0f3482ae07d38a2ec5fbf190a2c4f2310ee FIREFOX_49_0b2_RELEASE |
||||
36af692196a1c92cc935cf6569e03fdf5dc5e426 FIREFOX_49_0b3_BUILD1 |
||||
36af692196a1c92cc935cf6569e03fdf5dc5e426 FIREFOX_49_0b3_RELEASE |
||||
ab7b68014a1e20c423aa9b50ca76fd8edccb272c FIREFOX_49_0b4_BUILD1 |
||||
ab7b68014a1e20c423aa9b50ca76fd8edccb272c FIREFOX_49_0b4_RELEASE |
||||
91505c2a68fb868bcab1e3dc03ffc2e89bf71cac FIREFOX_49_0b5_BUILD1 |
||||
91505c2a68fb868bcab1e3dc03ffc2e89bf71cac FIREFOX_49_0b5_RELEASE |
||||
e6d6eb0ce3c42b4ebca91b1b1b64b716b2acb9fd FIREFOX_49_0b6_BUILD1 |
||||
e6d6eb0ce3c42b4ebca91b1b1b64b716b2acb9fd FIREFOX_49_0b6_RELEASE |
||||
b44c72b85a800d9c6e719579d480bb2c3a87a753 FIREFOX_49_0b7_BUILD1 |
||||
b44c72b85a800d9c6e719579d480bb2c3a87a753 FIREFOX_49_0b7_RELEASE |
||||
68d24e6f784c7e375cf6c84c5c92496464d4f7e0 FIREFOX_49_0b8_BUILD1 |
||||
68d24e6f784c7e375cf6c84c5c92496464d4f7e0 FIREFOX_49_0b8_RELEASE |
||||
e3cc699ccef2abb7075c39e7b9a081718eb9c159 FIREFOX_49_0b9_BUILD1 |
||||
e3cc699ccef2abb7075c39e7b9a081718eb9c159 FIREFOX_49_0b9_RELEASE |
||||
77a60bbacb97c2f36815b2c395958a354aa581c9 FIREFOX_49_0b10_BUILD1 |
||||
77a60bbacb97c2f36815b2c395958a354aa581c9 FIREFOX_49_0b10_RELEASE |
||||
5d1f8216843a6374f3bd2bd74ab2532da67d74ee FIREFOX_RELEASE_49_BASE |
||||
31ca1b4c28a9f64e49d59ed01d08469a9af41951 FIREFOX_RELEASE_48_END |
||||
416dc3163a1f27b8783ed14660d1b373e830df2f FIREFOX_49_0_BUILD4 |
||||
416dc3163a1f27b8783ed14660d1b373e830df2f FIREFOX_49_0_RELEASE |
||||
2d931a5eaf8aeee925eca2aea42582a1fb9793c8 FIREFOX_49_0_1_BUILD3 |
||||
2d931a5eaf8aeee925eca2aea42582a1fb9793c8 FIREFOX_49_0_1_RELEASE |
||||
7356baae8e736a6c9444bdd21562df806a39766b FIREFOX_49_0_2_BUILD2 |
||||
7356baae8e736a6c9444bdd21562df806a39766b FIREFOX_49_0_2_RELEASE |
||||
9f12a9fab080f2d363d7424e25b9ffe85ebc3414 FIREFOX_AURORA_28_BASE |
||||
d98f20c25feeac4dd7ebbd1c022957df1ef58af4 FIREFOX_AURORA_49_BASE |
||||
465d150bc8be5bbf9f02a8607d4552b6a5e1697c FIREFOX_AURORA_50_BASE |
||||
fa80a27f26dfc653d23392c71f562b1827d82174 FIREFOX_AURORA_49_END |
||||
c174d0c3195371011b3bf8044512c06c26f5c741 FIREFOX_BETA_50_BASE |
||||
ddeb7907bc1e854738b164bab5ff71c3dcf1d786 FIREFOX_BETA_49_END |
||||
91faf7ec36cd18a8ebdc0e2edac966e5bbb15da2 FIREFOX_50_0b1_BUILD2 |
||||
91faf7ec36cd18a8ebdc0e2edac966e5bbb15da2 FIREFOX_50_0b1_RELEASE |
||||
865939f4946d80fa532aaa168515a2fe69f9a774 FIREFOX_50_0b2_BUILD1 |
||||
865939f4946d80fa532aaa168515a2fe69f9a774 FIREFOX_50_0b2_RELEASE |
||||
6a7c1c8db5548d077c7fa36bce41af629ba52bd8 FIREFOX_50_0b3_BUILD1 |
||||
6a7c1c8db5548d077c7fa36bce41af629ba52bd8 FIREFOX_50_0b3_RELEASE |
||||
f4b45ea3c0c836e5a457c8009bff423447e54803 FIREFOX_50_0b4_BUILD1 |
||||
f4b45ea3c0c836e5a457c8009bff423447e54803 FIREFOX_50_0b4_RELEASE |
||||
49776d31766dd130969f9ec4ea3354a43e8e6d9d FIREFOX_50_0b5_BUILD1 |
||||
49776d31766dd130969f9ec4ea3354a43e8e6d9d FIREFOX_50_0b5_RELEASE |
||||
70abfe99097824fd510544b188f24c588fd6d5a0 FIREFOX_50_0b6_BUILD1 |
||||
70abfe99097824fd510544b188f24c588fd6d5a0 FIREFOX_50_0b6_RELEASE |
||||
6efc0964ec62bc4abfdc4cb1dc7cc461c3238634 FIREFOX_50_0b7_BUILD1 |
||||
6efc0964ec62bc4abfdc4cb1dc7cc461c3238634 FIREFOX_50_0b7_RELEASE |
||||
b7adb2f10487f6f886e047670ba720a248edcb44 FIREFOX_50_0b8_BUILD1 |
||||
b7adb2f10487f6f886e047670ba720a248edcb44 FIREFOX_50_0b8_RELEASE |
||||
2bb6dc758711c00d84246d74b57e5aa6cae4b447 FIREFOX_50_0b9_BUILD1 |
||||
2bb6dc758711c00d84246d74b57e5aa6cae4b447 FIREFOX_50_0b9_RELEASE |
||||
38cfded1705240c5d20baff4aef99bdd0a13bcec FIREFOX_50_0b10_BUILD1 |
||||
38cfded1705240c5d20baff4aef99bdd0a13bcec FIREFOX_50_0b10_RELEASE |
||||
829a3f99f2606759305e3db204185242566a4ca6 FIREFOX_50_0b11_BUILD1 |
||||
829a3f99f2606759305e3db204185242566a4ca6 FIREFOX_50_0b11_RELEASE |
||||
d7598ee90bc6085d430b2e9e75c13358ef00a5f4 FIREFOX_RELEASE_50_BASE |
||||
dd6c8d2be972cbf8729c01292639b8a03ce94728 FIREFOX_RELEASE_49_END |
||||
dc617d65c9f0cdbbe4351cc1e5c288b05f25f8f7 FIREFOX_50_0_BUILD2 |
||||
dc617d65c9f0cdbbe4351cc1e5c288b05f25f8f7 FIREFOX_50_0_RELEASE |
||||
8612c3320053b796678921f8f23358e3e9df997e FIREFOX_50_1_0_BUILD2 |
||||
8612c3320053b796678921f8f23358e3e9df997e FIREFOX_50_1_0_RELEASE |
||||
9f12a9fab080f2d363d7424e25b9ffe85ebc3414 FIREFOX_AURORA_28_BASE |
||||
fc69febcbf6c0dcc4b3dfc7a346d8d348798a65f FIREFOX_AURORA_51_BASE |
||||
3fdfaaed6e0fad2d81fc28e49903ff6f0a43b12e FIREFOX_AURORA_50_END |
||||
2d9b6132e7d75327e063a15d8e5e279077adf987 FIREFOX_BETA_51_BASE |
||||
24b8f08f77565f859898b45f62d2132ccc64c6d8 FIREFOX_BETA_50_END |
||||
749a8d32b74eae516b9427f28aad4ec1c11e0a54 FIREFOX_51_0b1_BUILD2 |
||||
749a8d32b74eae516b9427f28aad4ec1c11e0a54 FIREFOX_51_0b1_RELEASE |
||||
6296ed3dbefd133bba324230ec4f5a07d37041e1 FIREFOX_51_0b2_BUILD1 |
||||
6296ed3dbefd133bba324230ec4f5a07d37041e1 FIREFOX_51_0b2_RELEASE |
||||
f37e99ebc6e0c682003b52573f415e5fd78d425a FIREFOX_51_0b3_BUILD1 |
||||
f37e99ebc6e0c682003b52573f415e5fd78d425a FIREFOX_51_0b3_RELEASE |
||||
1b954c82dd04faf1926804d89c0d130dc6b9ab93 FIREFOX_51_0b4_BUILD1 |
||||
1b954c82dd04faf1926804d89c0d130dc6b9ab93 FIREFOX_51_0b4_RELEASE |
||||
9afe68360fa82c16b760b448b2156230a90caf11 FIREFOX_51_0b5_BUILD1 |
||||
9afe68360fa82c16b760b448b2156230a90caf11 FIREFOX_51_0b5_RELEASE |
||||
2dec3c6c7c90e2e27093b8a3512c1b32a8263a8f FIREFOX_51_0b6_BUILD1 |
||||
2dec3c6c7c90e2e27093b8a3512c1b32a8263a8f FIREFOX_51_0b6_RELEASE |
||||
829fcc7f60f04dffff4d29b007ef8015a1cd2c99 FIREFOX_51_0b7_BUILD1 |
||||
829fcc7f60f04dffff4d29b007ef8015a1cd2c99 FIREFOX_51_0b7_RELEASE |
||||
ae5275b8c53ba76cb98576e4e2a3031b0d659ba3 FIREFOX_51_0b8_BUILD1 |
||||
ae5275b8c53ba76cb98576e4e2a3031b0d659ba3 FIREFOX_51_0b8_RELEASE |
||||
6e4843d1510be426212d31fec03ad4f2d70b1977 FIREFOX_51_0b9_BUILD1 |
||||
6e4843d1510be426212d31fec03ad4f2d70b1977 FIREFOX_51_0b9_RELEASE |
||||
4fbf5d14ce92bd45e0c7881dad20a66896402683 FIREFOX_51_0b10_BUILD1 |
||||
4fbf5d14ce92bd45e0c7881dad20a66896402683 FIREFOX_51_0b10_RELEASE |
||||
0a17d39220700e742bf37a960967480b2f8159f1 FIREFOX_51_0b11_BUILD1 |
||||
0a17d39220700e742bf37a960967480b2f8159f1 FIREFOX_51_0b11_RELEASE |
||||
9ddd4fee07842e72ba49f1583ec5f596f6e60e72 FIREFOX_51_0b12_BUILD1 |
||||
9ddd4fee07842e72ba49f1583ec5f596f6e60e72 FIREFOX_51_0b12_RELEASE |
||||
ce55e4d276031458f0730d481acff05d7c797038 FIREFOX_51_0b13_BUILD1 |
||||
ce55e4d276031458f0730d481acff05d7c797038 FIREFOX_51_0b13_RELEASE |
||||
09142d07fd735e375fc1ae46886a52d6aef43b60 FIREFOX_51_0b14_BUILD1 |
||||
09142d07fd735e375fc1ae46886a52d6aef43b60 FIREFOX_51_0b14_RELEASE |
||||
15467610e733e3549ea86cdf940b0fccd87eff89 FIREFOX_RELEASE_51_BASE |
||||
b1e53b9be6d4834f5b3a58c132dfc5f5c73d2bcd FIREFOX_RELEASE_50_END |
||||
ea82b5e20cbbd103f8fa65f0df0386ee4135cc47 FIREFOX_51_0_BUILD2 |
||||
ea82b5e20cbbd103f8fa65f0df0386ee4135cc47 FIREFOX_51_0_RELEASE |
||||
327e081221b064b05a302d7877c6e4be2949a617 FIREFOX_51_0_1_BUILD3 |
||||
327e081221b064b05a302d7877c6e4be2949a617 FIREFOX_51_0_1_RELEASE |
||||
9f12a9fab080f2d363d7424e25b9ffe85ebc3414 FIREFOX_AURORA_28_BASE |
||||
1196bf3032e1bce1fb07a01fd9082a767426c5fb FIREFOX_AURORA_52_BASE |
||||
3223a6411d8c8b9ec8bcbc607c990bf099ade099 FIREFOX_AURORA_51_END |
||||
24a81d93e07cc96300f8e1f5c69034dd4743bd63 FIREFOX_BETA_52_BASE |
||||
8e692dd4176cba81ce020b29ae8b352dc1db724a FIREFOX_BETA_51_END |
||||
78ae21055d9f303be257abe155ba9dee466c0651 FIREFOX_52_0b1_BUILD2 |
||||
78ae21055d9f303be257abe155ba9dee466c0651 FIREFOX_52_0b1_RELEASE |
||||
0f339c1e154f75c484fe2fac507a9a225990d212 FIREFOX_52_0b2_BUILD1 |
||||
0f339c1e154f75c484fe2fac507a9a225990d212 FIREFOX_52_0b2_RELEASE |
||||
d171c36d484800b1bb00db1612460a7120dd2fdf FIREFOX_52_0b3_BUILD1 |
||||
d171c36d484800b1bb00db1612460a7120dd2fdf FIREFOX_52_0b3_RELEASE |
||||
501a3fa83897af9598adfd6f794b5d5ea82fe237 FIREFOX_52_0b4_BUILD1 |
||||
501a3fa83897af9598adfd6f794b5d5ea82fe237 FIREFOX_52_0b4_RELEASE |
||||
49b3ad9f467d48194dab8121f82e4c938b70b484 FIREFOX_52_0b5_BUILD1 |
||||
49b3ad9f467d48194dab8121f82e4c938b70b484 FIREFOX_52_0b5_RELEASE |
||||
7b8aa893944b94d35e47314e52e0abff576c5ce2 FIREFOX_52_0b6_BUILD1 |
||||
7b8aa893944b94d35e47314e52e0abff576c5ce2 FIREFOX_52_0b6_RELEASE |
||||
820bc5bd3120853d611af1056f4a2b35528bb927 FIREFOX_52_0b7_BUILD1 |
||||
820bc5bd3120853d611af1056f4a2b35528bb927 FIREFOX_52_0b7_RELEASE |
||||
3b31bcb88fe341172e93cc8b1143e617c0988694 FIREFOX_52_0b8_BUILD1 |
||||
3b31bcb88fe341172e93cc8b1143e617c0988694 FIREFOX_52_0b8_RELEASE |
||||
61519976b35f2947eeaabefcad83186b7e004167 FIREFOX_52_0b9_BUILD2 |
||||
61519976b35f2947eeaabefcad83186b7e004167 FIREFOX_52_0b9_RELEASE |
||||
4bd2e5d2ac0d0b15b4446fca5647bfa821b52d46 FIREFOX_RELEASE_52_BASE |
||||
1f0fc9316e65cd171b03d4382b4c0f7443a258dc FIREFOX_RELEASE_51_END |
||||
2183f7cb4f886e5f0b619dcff101bee72210ef38 FIREFOX_ESR_52_BASE |
||||
15d9d940341f02ef6dcad96899d284619d3d48db FIREFOX_52_0esr_BUILD4 |
||||
15d9d940341f02ef6dcad96899d284619d3d48db FIREFOX_52_0esr_RELEASE |
||||
3462b933db3cac9b994b32dfc6350f3d549bf2de FIREFOX_52_0_1esr_BUILD2 |
||||
3462b933db3cac9b994b32dfc6350f3d549bf2de FIREFOX_52_0_1esr_RELEASE |
||||
afa66bcf9203e691f164e5e8a9cc8fad783ccddc FIREFOX_52_0_2esr_BUILD1 |
||||
afa66bcf9203e691f164e5e8a9cc8fad783ccddc FIREFOX_52_0_2esr_RELEASE |
||||
3ea0e075203185d7f2d42f439455e97735bd1b20 FIREFOX_52_1_0esr_BUILD3 |
||||
3ea0e075203185d7f2d42f439455e97735bd1b20 FIREFOX_52_1_0esr_RELEASE |
||||
120111e65bc4e9b99da97e9d046765de95fbac8c FIREFOX_52_1_1esr_BUILD1 |
||||
120111e65bc4e9b99da97e9d046765de95fbac8c FIREFOX_52_1_1esr_RELEASE |
||||
0dc7c28f20648d597b11b60e90be9a15687656aa FIREFOX_52_1_2esr_BUILD1 |
||||
0dc7c28f20648d597b11b60e90be9a15687656aa FIREFOX_52_1_2esr_RELEASE |
||||
f68e0d98a22a4712a3710998081fd0ea5cd00ccb FIREFOX_52_2_0esr_BUILD1 |
||||
f68e0d98a22a4712a3710998081fd0ea5cd00ccb FIREFOX_52_2_0esr_RELEASE |
||||
512efd480dac58acf9eebd5f25a76b32917ab56d FIREFOX_52_2_1esr_BUILD2 |
||||
512efd480dac58acf9eebd5f25a76b32917ab56d FIREFOX_52_2_1esr_RELEASE |
||||
20a1a6ad46d5a4ec83d9800614fc288bf79e14a8 FIREFOX_52_3_0esr_BUILD2 |
||||
20a1a6ad46d5a4ec83d9800614fc288bf79e14a8 FIREFOX_52_3_0esr_RELEASE |
||||
285cde3988335103bd8d60cc09d6fa36db3c4d78 FIREFOX_52_4_0esr_BUILD2 |
||||
285cde3988335103bd8d60cc09d6fa36db3c4d78 FIREFOX_52_4_0esr_RELEASE |
||||
e4fec62e5347a77a9a313d6019a2b372e8011a74 FIREFOX_52_4_1esr_BUILD1 |
||||
e4fec62e5347a77a9a313d6019a2b372e8011a74 FIREFOX_52_4_1esr_RELEASE |
||||
cf34a0574e585fab44fbec1718aca5375790cd97 FIREFOX_52_5_0esr_BUILD2 |
||||
cf34a0574e585fab44fbec1718aca5375790cd97 FIREFOX_52_5_0esr_RELEASE |
||||
b0a57c57b5ef0150e8afc3219bceadb1d6f1584e FIREFOX_52_5_2esr_BUILD2 |
||||
b0a57c57b5ef0150e8afc3219bceadb1d6f1584e FIREFOX_52_5_2esr_RELEASE |
@ -0,0 +1,31 @@
|
||||
# .lldbinit file for debugging Mozilla |
||||
|
||||
# ----------------------------------------------------------------------------- |
||||
# For documentation on all of the commands and type summaries defined here |
||||
# and in the accompanying Python scripts, see python/lldbutils/README.txt. |
||||
# ----------------------------------------------------------------------------- |
||||
|
||||
# Import the module that defines complex Gecko debugging commands. This assumes |
||||
# you are either running lldb from the top level source directory, the objdir, |
||||
# or the dist/bin directory. (.lldbinit files in the objdir and dist/bin set |
||||
# topsrcdir appropriately.) |
||||
script topsrcdir = topsrcdir if locals().has_key("topsrcdir") else os.getcwd(); sys.path.append(os.path.join(topsrcdir, "python/lldbutils")); import lldbutils; lldbutils.init() |
||||
|
||||
# Mozilla's use of UNIFIED_SOURCES to include multiple source files into a |
||||
# single compiled file breaks lldb breakpoint setting. This works around that. |
||||
# See http://lldb.llvm.org/troubleshooting.html for more info. |
||||
settings set target.inline-breakpoint-strategy always |
||||
|
||||
# Show the dynamic type of an object when using "expr". This, for example, |
||||
# will show a variable declared as "nsIFrame *" that points to an nsBlockFrame |
||||
# object as being of type "nsBlockFrame *" rather than "nsIFrame *". |
||||
settings set target.prefer-dynamic-value run-target |
||||
|
||||
# Show the string value in atoms. |
||||
type summary add nsIAtom --summary-string "${var.mString}" |
||||
|
||||
# Show the value of text nodes. |
||||
type summary add nsTextNode --summary-string "${var.mText}" |
||||
|
||||
# Dump the current JS stack. |
||||
command alias js expr DumpJSStack() |
@ -0,0 +1,125 @@
|
||||
--- |
||||
version: 0 |
||||
metadata: |
||||
name: 'Taskcluster tasks for Gecko' |
||||
description: "The taskcluster task graph for Gecko trees" |
||||
owner: mozilla-taskcluster-maintenance@mozilla.com |
||||
source: {{{source}}} |
||||
|
||||
scopes: |
||||
# Note the below scopes are insecure however these get overriden on the server |
||||
# side to whatever scopes are set by mozilla-taskcluster. |
||||
- queue:* |
||||
- docker-worker:* |
||||
- scheduler:* |
||||
|
||||
# Available mustache parameters (see the mozilla-taskcluster source): |
||||
# |
||||
# - owner: push user (email address) |
||||
# - source: URL of this YAML file |
||||
# - url: repository URL |
||||
# - project: alias for the destination repository (basename of |
||||
# the repo url) |
||||
# - level: SCM level of the destination repository |
||||
# (1 = try, 3 = core) |
||||
# - revision: (short) hg revision of the head of the push |
||||
# - revision_hash: (long) hg revision of the head of the push |
||||
# - comment: comment of the push |
||||
# - pushlog_id: id in the pushlog table of the repository |
||||
# |
||||
# and functions: |
||||
# - as_slugid: convert a label into a slugId |
||||
# - from_now: generate a timestamp at a fixed offset from now |
||||
|
||||
# The resulting tasks' taskGroupId will be equal to the taskId of the first |
||||
# task listed here, which should be the decision task. This gives other tools |
||||
# an easy way to determine the ID of the decision task that created a |
||||
# particular group. |
||||
|
||||
tasks: |
||||
- taskId: '{{#as_slugid}}decision task{{/as_slugid}}' |
||||
task: |
||||
created: '{{now}}' |
||||
deadline: '{{#from_now}}1 day{{/from_now}}' |
||||
expires: '{{#from_now}}365 day{{/from_now}}' |
||||
metadata: |
||||
owner: mozilla-taskcluster-maintenance@mozilla.com |
||||
source: {{{source}}} |
||||
name: "Gecko Decision Task" |
||||
description: | |
||||
The task that creates all of the other tasks in the task graph |
||||
|
||||
workerType: "gecko-decision" |
||||
provisionerId: "aws-provisioner-v1" |
||||
|
||||
tags: |
||||
createdForUser: {{owner}} |
||||
|
||||
scopes: |
||||
# Bug 1269443: cache scopes, etc. must be listed explicitly |
||||
- "docker-worker:cache:level-{{level}}-*" |
||||
- "docker-worker:cache:tooltool-cache" |
||||
# mozilla-taskcluster will append the appropriate assume:repo:<repo> |
||||
# scope here. |
||||
|
||||
routes: |
||||
- "index.gecko.v2.{{project}}.latest.firefox.decision" |
||||
- "tc-treeherder.v2.{{project}}.{{revision}}.{{pushlog_id}}" |
||||
- "tc-treeherder-stage.v2.{{project}}.{{revision}}.{{pushlog_id}}" |
||||
|
||||
payload: |
||||
env: |
||||
# checkout-gecko uses these to check out the source; the inputs |
||||
# to `mach taskgraph decision` are all on the command line. |
||||
GECKO_BASE_REPOSITORY: 'https://hg.mozilla.org/mozilla-unified' |
||||
GECKO_HEAD_REPOSITORY: '{{{url}}}' |
||||
GECKO_HEAD_REF: '{{revision}}' |
||||
GECKO_HEAD_REV: '{{revision}}' |
||||
HG_STORE_PATH: /home/worker/checkouts/hg-store |
||||
|
||||
cache: |
||||
level-{{level}}-checkouts: /home/worker/checkouts |
||||
|
||||
features: |
||||
taskclusterProxy: true |
||||
chainOfTrust: true |
||||
|
||||
# Note: This task is built server side without the context or tooling that |
||||
# exist in tree so we must hard code the version |
||||
image: 'taskcluster/decision:0.1.7' |
||||
|
||||
maxRunTime: 1800 |
||||
|
||||
# TODO use mozilla-unified for the base repository once the tc-vcs |
||||
# tar.gz archives are created or tc-vcs isn't being used. |
||||
command: |
||||
- /home/worker/bin/run-task |
||||
- '--vcs-checkout=/home/worker/checkouts/gecko' |
||||
- '--' |
||||
- bash |
||||
- -cx |
||||
- > |
||||
cd /home/worker/checkouts/gecko && |
||||
ln -s /home/worker/artifacts artifacts && |
||||
./mach --log-no-times taskgraph decision |
||||
--pushlog-id='{{pushlog_id}}' |
||||
--pushdate='{{pushdate}}' |
||||
--project='{{project}}' |
||||
--message={{#shellquote}}{{{comment}}}{{/shellquote}} |
||||
--owner='{{owner}}' |
||||
--level='{{level}}' |
||||
--base-repository='https://hg.mozilla.org/mozilla-central' |
||||
--head-repository='{{{url}}}' |
||||
--head-ref='{{revision}}' |
||||
--head-rev='{{revision}}' |
||||
--revision-hash='{{revision_hash}}' |
||||
|
||||
artifacts: |
||||
'public': |
||||
type: 'directory' |
||||
path: '/home/worker/artifacts' |
||||
expires: '{{#from_now}}364 days{{/from_now}}' |
||||
|
||||
extra: |
||||
treeherder: |
||||
symbol: D |
@ -0,0 +1,47 @@
|
||||
# This Source Code Form is subject to the terms of the Mozilla Public |
||||
# License, v. 2.0. If a copy of the MPL was not distributed with this |
||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/. |
||||
|
||||
import imp |
||||
import os |
||||
import shlex |
||||
import sys |
||||
try: |
||||
from StringIO import StringIO |
||||
except ImportError: |
||||
from io import StringIO |
||||
|
||||
old_bytecode = sys.dont_write_bytecode |
||||
sys.dont_write_bytecode = True |
||||
|
||||
path = os.path.join(os.path.dirname(__file__), 'mach') |
||||
|
||||
if not os.path.exists(path): |
||||
path = os.path.join(os.path.dirname(__file__), 'config.status') |
||||
config = imp.load_module('_buildconfig', open(path), path, ('', 'r', imp.PY_SOURCE)) |
||||
path = os.path.join(config.topsrcdir, 'mach') |
||||
mach_module = imp.load_module('_mach', open(path), path, ('', 'r', imp.PY_SOURCE)) |
||||
|
||||
sys.dont_write_bytecode = old_bytecode |
||||
|
||||
def FlagsForFile(filename): |
||||
mach = mach_module.get_mach() |
||||
out = StringIO() |
||||
|
||||
# Mach calls sys.stdout.fileno(), so we need to fake it when capturing it. |
||||
# Returning an invalid file descriptor does the trick. |
||||
out.fileno = lambda: -1 |
||||
out.encoding = None |
||||
mach.run(['compileflags', filename], stdout=out, stderr=out) |
||||
|
||||
flag_list = shlex.split(out.getvalue()) |
||||
|
||||
# This flag is added by Fennec for android build and causes ycmd to fail to parse the file. |
||||
# Removing this flag is a workaround until ycmd starts to handle this flag properly. |
||||
# https://github.com/Valloric/YouCompleteMe/issues/1490 |
||||
final_flags = [x for x in flag_list if not x.startswith('-march=armv')] |
||||
|
||||
return { |
||||
'flags': final_flags, |
||||
'do_cache': True |
||||
} |
@ -0,0 +1,5 @@
|
||||
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
# empty file to block B2G/Gonk from trying to build anything inside mozilla-central
|
@ -0,0 +1,25 @@
|
||||
# To trigger a clobber replace ALL of the textual description below, |
||||
# giving a bug number and a one line description of why a clobber is |
||||
# required. Modifying this file will make configure check that a |
||||
# clobber has been performed before the build can continue. |
||||
# |
||||
# MERGE NOTE: When merging two branches that require a CLOBBER, you should |
||||
# merge both CLOBBER descriptions, to ensure that users on |
||||
# both branches correctly see the clobber warning. |
||||
# |
||||
# O <-- Users coming from both parents need to Clobber |
||||
# / \ |
||||
# O O |
||||
# | | |
||||
# O <-- Clobber O <-- Clobber |
||||
# |
||||
# Note: The description below will be part of the error message shown to users. |
||||
# |
||||
# Modifying this file will now automatically clobber the buildbot machines \o/ |
||||
# |
||||
|
||||
# Are you updating CLOBBER because you think it's needed for your WebIDL |
||||
# changes to stick? As of bug 928195, this shouldn't be necessary! Please |
||||
# don't change CLOBBER for WebIDL changes any more. |
||||
|
||||
Merge day clobber |
@ -0,0 +1,14 @@
|
||||
# This Makefile is used as a shim to aid people with muscle memory
|
||||
# so that they can type "make".
|
||||
#
|
||||
# This file and all of its targets should not be used by anything important.
|
||||
|
||||
all: build |
||||
|
||||
build: |
||||
./mach build
|
||||
|
||||
clean: |
||||
./mach clobber
|
||||
|
||||
.PHONY: all build clean |
@ -0,0 +1,43 @@
|
||||
Please be apprised of the following Legal Notices: |
||||
|
||||
A) The U.S. District Court for the Eastern District of Virginia has |
||||
ruled that the Netscape Navigator code does not infringe Wang's U.S. |
||||
Patent No. 4,751,669 ("the '669 Patent") because: 1) HTML is not |
||||
Videotex as defined by the '669 patent; 2) web servers are not central |
||||
suppliers; and 3) Navigator does not "connect," as defined by the '669 |
||||
Patent, to web servers on the Internet. Wang may appeal this decision to |
||||
the Federal Circuit. Wang contended that its Patent disclosing a |
||||
"Videotex" system, is infringed by the following functionality in the |
||||
Netscape Navigator code: 1) the animated logo and status line indicators |
||||
--See Claims 1,8 and 9; 2) the "File Save As" function --See Claims |
||||
23-27; 3) Bookmarks and Rename Bookmarks in the Properties window --See |
||||
Claims 20-22; 4) storing HTML, GIF, and JPEG files and adding filename |
||||
extensions --See Claim 38 |
||||
|
||||
B) Intermind owns pending U.S. patent applications on communications |
||||
systems which employ metadata ("channel objects") to define a control |
||||
structure for information transfer. The Netscape code does not infringe |
||||
as released; however, modifications which utilize channel objects as |
||||
described by Intermind should be considered carefully. The following is |
||||
a statement from Intermind: "Intermind's claims fundamentally involve |
||||
the use of a control structure to automate communications. ...The |
||||
essence of Intermind's top claim is that two devices sender and receiver |
||||
have persistent storage, communicate over a network, and exchange a |
||||
control structure including metadata which describes: 1) what |
||||
information is to be updated, 2) when to update this information, and 3) |
||||
how to transfer the updated information. In addition, at least the |
||||
receiving device must be able to process the metadata in order to |
||||
perform the update determination and transfer. Any digital |
||||
communications system which incorporates all of these elements will be |
||||
covered by Intermind's patents." See Intermind.com. |
||||
|
||||
C) Stac, Inc., and its licensing agent Hi/fn, own several patents which |
||||
disclose data compression methods implementing an LZS compression |
||||
algorithm, including U.S. Patent Nos. 4,701,745 and 5,016, 009 ("the |
||||
Stac Patents"). The Netscape Communicator code does not perform |
||||
compression. If you modify the Netscape source code to perform |
||||
compression, please take notice of the Stac Patents. |
||||
|
||||
D) Netscape Communications Corporation ("Netscape") does not guarantee |
||||
that any source code or executable code available from the mozilla.org |
||||
domain is Year 2000 compliant. |