~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/plugins/launchpad/lp_registration.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-11-11 08:45:19 UTC
  • mfrom: (4597.9.22 reports-conflict-resolved)
  • Revision ID: pqm@pqm.ubuntu.com-20101111084519-bmk1zmblp7kex41a
(vila) More feedback about the conflicts just resolved and the remaining
 ones. (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
 
87
87
    LAUNCHPAD_DOMAINS = {
88
88
        'production': 'launchpad.net',
 
89
        'edge': 'edge.launchpad.net',
89
90
        'staging': 'staging.launchpad.net',
90
91
        'demo': 'demo.launchpad.net',
91
92
        'dev': 'launchpad.dev',
97
98
    for instance, domain in LAUNCHPAD_DOMAINS.iteritems():
98
99
        LAUNCHPAD_INSTANCE[instance] = 'https://xmlrpc.%s/bazaar/' % domain
99
100
 
100
 
    # We use production as the default because edge has been deprecated circa
101
 
    # 2010-11 (see bug https://bugs.launchpad.net/bzr/+bug/583667)
 
101
    # Previously 'edge' was used to avoid a launchpad bug with redirection
102
102
    DEFAULT_INSTANCE = 'production'
103
103
    DEFAULT_SERVICE_URL = LAUNCHPAD_INSTANCE[DEFAULT_INSTANCE]
104
104