backout 2061:6fcaf32e4036 - adapt default tags of client.py to pull THUNDERBIRD_3_0b2_RELEASE, tracked by
bug 477103
--- a/client.py
+++ b/client.py
@@ -1,33 +1,33 @@
#!/usr/bin/python
-EXTENSION_CO_TAG = 'THUNDERBIRD_3_0b2_RELEASE'
+EXTENSION_CO_TAG = 'SEAMONKEY_2_0a3_RELEASE'
LDAPCSDK_CO_TAG = 'LDAPCSDK_6_0_6_RTM'
-CHATZILLA_CO_TAG = 'THUNDERBIRD_3_0b2_RELEASE'
-VENKMAN_CO_TAG = 'THUNDERBIRD_3_0b2_RELEASE'
+CHATZILLA_CO_TAG = 'SEAMONKEY_2_0a3_RELEASE'
+VENKMAN_CO_TAG = 'SEAMONKEY_2_0a3_RELEASE'
LDAPCSDK_DIRS = ('directory/c-sdk',)
CHATZILLA_DIRS = ('extensions/irc',)
VENKMAN_DIRS = ('extensions/venkman',)
-DEFAULT_COMM_REV = "THUNDERBIRD_3_0b2_RELEASE"
+DEFAULT_COMM_REV = "SEAMONKEY_2_0a3_RELEASE"
# URL of the default hg repository to clone for Mozilla.
DEFAULT_MOZILLA_REPO = 'http://hg.mozilla.org/releases/mozilla-1.9.1/'
-DEFAULT_MOZILLA_REV = "THUNDERBIRD_3_0b2_RELEASE"
+DEFAULT_MOZILLA_REV = "SEAMONKEY_2_0a3_RELEASE"
# REGEX to match against, $1 should refer to protocol scheme
MOZILLA_TRUNK_REPO_REGEXP = "(ssh|http|https):\/\/hg\.mozilla\.org\/mozilla-central\/?$"
MOZILLA_BASE_REV = "GECKO_1_9_1_BASE"
# URL of the default hg repository to clone for inspector.
DEFAULT_INSPECTOR_REPO = 'http://hg.mozilla.org/dom-inspector/'
-DEFAULT_INSPECTOR_REV = "THUNDERBIRD_3_0b2_RELEASE"
+DEFAULT_INSPECTOR_REV = "SEAMONKEY_2_0a3_RELEASE"
import os
import sys
import datetime
from optparse import OptionParser
topsrcdir = os.path.dirname(__file__)
if topsrcdir == '':