~ubuntu-branches/ubuntu/utopic/ubufox/utopic-proposed

« back to all changes in this revision

Viewing changes to modules/Distro.jsm

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-07-24 17:36:04 UTC
  • mfrom: (1.2.1) (67.1.4 quantal)
  • Revision ID: package-import@ubuntu.com-20120724173604-cr3egnecgs7t3b2n
Tags: 2.3-0ubuntu1
* New upstream release
  - Make the startpage work again in Firefox 17

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- Mode: javascript; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2
 
/* ***** BEGIN LICENSE BLOCK *****
3
 
 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4
 
 *
5
 
 * The contents of this file are subject to the Mozilla Public License Version
6
 
 * 1.1 (the "License"); you may not use this file except in compliance with
7
 
 * the License. You may obtain a copy of the License at
8
 
 * http://www.mozilla.org/MPL/
9
 
 *
10
 
 * Software distributed under the License is distributed on an "AS IS" basis,
11
 
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12
 
 * for the specific language governing rights and limitations under the
13
 
 * License.
14
 
 *
15
 
 * The Original Code is ubufox.
16
 
 *
17
 
 * The Initial Developer of the Original Code is
18
 
 * Canonical Ltd.
19
 
 * Portions created by the Initial Developer are Copyright (C) 2011
20
 
 * the Initial Developer. All Rights Reserved.
21
 
 *
22
 
 * Contributor(s):
23
 
 *   Chris Coulson <chris.coulson@canonical.com>
24
 
 *
25
 
 * Alternatively, the contents of this file may be used under the terms of
26
 
 * either the GNU General Public License Version 2 or later (the "GPL"), or
27
 
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28
 
 * in which case the provisions of the GPL or the LGPL are applicable instead
29
 
 * of those above. If you wish to allow use of your version of this file only
30
 
 * under the terms of either the GPL or the LGPL, and not to allow others to
31
 
 * use your version of this file under the terms of the MPL, indicate your
32
 
 * decision by deleting the provisions above and replace them with the notice
33
 
 * and other provisions required by the GPL or the LGPL. If you do not delete
34
 
 * the provisions above, a recipient may use your version of this file under
35
 
 * the terms of any one of the MPL, the GPL or the LGPL.
36
 
 *
37
 
 * ***** END LICENSE BLOCK ***** */
38
 
 
39
 
const { utils: Cu } = Components;
40
 
 
41
 
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
42
 
Cu.import("resource://gre/modules/Services.jsm");
43
 
 
44
 
var EXPORTED_SYMBOLS = [ "distro" ];
45
 
 
46
 
XPCOMUtils.defineLazyGetter(this, "impl", function() {
47
 
  function distroModuleImport(aResource) {
48
 
    let tmp = {};
49
 
    Cu.import(aResource, tmp);
50
 
    return tmp["DistroImpl"];
51
 
  }
52
 
 
53
 
  let distrib;
54
 
  try {
55
 
    distrib = Services.prefs.getCharPref("distribution.id");
56
 
  } catch(e) { };
57
 
 
58
 
  try {
59
 
    if (distrib == "canonical") {
60
 
      return distroModuleImport("resource://ubufox/distributions/Ubuntu.jsm");
61
 
    }
62
 
  } catch(e) {
63
 
    Cu.reportError("Failed to import distribution module: " + e);
64
 
  }
65
 
 
66
 
  return NullDistro;
67
 
});
68
 
 
69
 
var NullDistro = {
70
 
  get canReportBug() {
71
 
    return false;
72
 
  },
73
 
 
74
 
  reportBug: function Null_reportBug() {
75
 
    throw new Error("Don't know how to report a bug on this system");
76
 
  },
77
 
 
78
 
  get helpURL() {
79
 
    return null;
80
 
  },
81
 
 
82
 
  get PFSProviders() {
83
 
    return [];
84
 
  },
85
 
 
86
 
  get PFSInstallers() {
87
 
    return [];
88
 
  },
89
 
 
90
 
  get PFSURI() {
91
 
    return null;
92
 
  },
93
 
 
94
 
  get startpageURI() {
95
 
    return Services.io.newURI("about:blank", null, null);
96
 
  },
97
 
 
98
 
  get updateStampFilePath() {
99
 
    return null;
100
 
  }
101
 
};
102
 
 
103
 
var distro = {
104
 
  get canReportBug() {
105
 
    let channel = "default";
106
 
    try {
107
 
      channel = Services.prefs.getCharPref("app.update.channel");
108
 
    } catch(e) { };
109
 
 
110
 
    return impl.canReportBug && channel != "release";
111
 
  },
112
 
 
113
 
  reportBug: function D_reportBug() {
114
 
    impl.reportBug();
115
 
  },
116
 
 
117
 
  get helpURL() {
118
 
    return impl.helpURL;
119
 
  },
120
 
 
121
 
  get PFSProviders() {
122
 
    return impl.PFSProviders;
123
 
  },
124
 
 
125
 
  get PFSInstallers() {
126
 
    return impl.PFSInstallers;
127
 
  },
128
 
 
129
 
  get PFSURI() {
130
 
    return impl.PFSURI;
131
 
  },
132
 
 
133
 
  get startpageURI() {
134
 
    return impl.startpageURI;
135
 
  },
136
 
 
137
 
  get updateStampFilePath() {
138
 
    return impl.updateStampFilePath;
139
 
  }
140
 
};