/usr/share/org.gnome.Weather.Application/package.js is in gnome-weather 3.10.1-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 | // Copyright 2012 Giovanni Campagna
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to
// deal in the Software without restriction, including without limitation the
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
// sell copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
// IN THE SOFTWARE.
/**
* This module provides a set of convenience APIs for building packaged
* applications.
*/
const GLib = imports.gi.GLib;
const GIRepository = imports.gi.GIRepository;
const Gio = imports.gi.Gio;
const System = imports.system;
const Gettext = imports.gettext;
/*< public >*/
var name;
var version;
var prefix;
var datadir;
var libdir;
var pkgdatadir;
var pkglibdir;
var moduledir;
var localedir;
/*< private >*/
let _base;
let _requires;
function _runningFromSource(name) {
if (System.version >= 13600) {
let fileName = System.programInvocationName;
let binary = Gio.File.new_for_path(fileName);
let sourceBinary = Gio.File.new_for_path('./src/' + name);
return binary.equal(sourceBinary);
} else {
return GLib.file_test(name + '.doap',
GLib.FileTest.EXISTS);
}
}
/**
* init:
* @params: package parameters
*
* Initialize directories and global variables. Must be called
* before any of other API in Package is used.
* @params must be an object with at least the following keys:
* - name: the package name ($(PACKAGE_NAME) in autotools)
* - version: the package version
* - prefix: the installation prefix
*
* init() will take care to check if the program is running from
* the source directory or not, by looking for a 'src' directory.
*
* At the end, the global variable 'pkg' will contain the
* Package module (imports.package). Additionally, the following
* module variables will be available:
* - name, version: same as in @params
* - prefix: the installation prefix (as passed in @params)
* - datadir, libdir: the final datadir and libdir when installed;
* usually, these would be prefix + '/share' and
* and prefix + '/lib' (or '/lib64')
* - pkgdatadir: the directory to look for private data files, such as
* images, stylesheets and UI definitions;
* this will be datadir + name when installed and
* './data' when running from the source tree
* - pkglibdir: the directory to look for private typelibs and C
* libraries;
* this will be libdir + name when installed and
* './lib' when running from the source tree
* - moduledir: the directory to look for JS modules;
* this will be pkglibdir when installed and
* './src' when running from the source tree
* - localedir: the directory containing gettext translation files;
* this will be datadir + '/locale' when installed
* and './po' in the source tree
*
* All paths are absolute and will not end with '/'.
*
* As a side effect, init() calls GLib.set_prgname().
*/
function init(params) {
window.pkg = imports.package;
name = params.name;
version = params.version;
// Must call it first, because it can only be called
// once, and other library calls might have it as a
// side effect
GLib.set_prgname(name);
prefix = params.prefix;
libdir = params.libdir;
datadir = GLib.build_filenamev([prefix, 'share']);
let libpath, girpath;
if (_runningFromSource(name)) {
log('Running from source tree, using local files');
// Running from source directory
_base = GLib.get_current_dir();
pkglibdir = GLib.build_filenamev([_base, 'lib']);
libpath = GLib.build_filenamev([pkglibdir, '.libs']);
girpath = pkglibdir;
pkgdatadir = GLib.build_filenamev([_base, 'data']);
localedir = GLib.build_filenamev([_base, 'po']);
moduledir = GLib.build_filenamev([_base, 'src']);
} else {
_base = prefix;
pkglibdir = GLib.build_filenamev([libdir, name]);
libpath = pkglibdir;
girpath = GLib.build_filenamev([pkglibdir, 'girepository-1.0']);
pkgdatadir = GLib.build_filenamev([datadir, name]);
localedir = GLib.build_filenamev([datadir, 'locale']);
moduledir = pkgdatadir;
}
imports.searchPath.unshift(moduledir);
GIRepository.Repository.prepend_search_path(girpath);
GIRepository.Repository.prepend_library_path(libpath);
}
/**
* start:
* @params: see init()
*
* This is a convenience function if your package has a
* single entry point.
* You must define a main(ARGV) function inside a main.js
* module in moduledir.
*/
function start(params) {
init(params);
return imports.main.main(ARGV);
}
function _checkVersion(required, current) {
if (required == '') {
// No requirement
return true;
}
// Major version must match, it's used for API
// incompatible changes.
// The rest just needs to be less or equal to
// current. The code is generic, but gjs modules
// should use only [major, minor]
if (required[0] != current[0])
return false;
for (let i = 1; i < Math.min(current.length, required.length); i++) {
if (required[i] > current[i])
return false;
if (required[i] < current[i])
return true;
// else they're equal, go on
}
return true;
}
function _isGjsModule(name, version) {
// This is a subset of the JS modules we offer,
// it includes only those that makes sense to use
// standalone and in a general app.
//
// You will not find Gettext or Format here, use
// the package functions instead. And Package, obviously,
// because it's available as window.package.
//
// cairo is also a JS module, but the version checking
// differs, see _isForeignModule()
//
// FIXME: Mainloop might be better as a GLib override?
// FIXME: Signals should be an extension to Lang
const RECOGNIZED_MODULE_NAMES = ['Lang',
'Mainloop',
'Signals',
'System',
'Params'];
for (let i = 0; i < RECOGNIZED_MODULE_NAMES.length; i++) {
let module = RECOGNIZED_MODULE_NAMES[i];
if (module == name) {
let actualModule = imports[module.toLowerCase()];
let required = version.split('.');
if (!_checkVersion(required, actualModule.$API_VERSION)) {
printerr('Unsatisfied dependency: requested GJS module at version '
+ version + ', but only ' + (actualModule.$API_VERSION.join('.'))
+ ' is available');
System.exit(1);
} else {
window[module] = actualModule;
return true;
}
}
}
return false;
}
/**
* require:
* @libs: the external dependencies to import
*
* Mark a dependency on a specific version of one or more
* external GI typelibs.
* @libs must be an object whose keys are a typelib name,
* and values are the respective version. The empty string
* indicates any version.
*
* If dependencies are statisfied, require() will make
* the module objects available as global names.
*/
function require(libs) {
_requires = libs;
for (let l in libs) {
let version = libs[l];
if (_isGjsModule(l, version))
continue;
if (version != '')
imports.gi.versions[l] = version;
try {
if (name == 'cairo') {
// Import the GI package to check the version,
// but then load the JS one
imports.gi.cairo;
window.cairo = imports.cairo;
} else {
window[l] = imports.gi[l];
}
} catch(e) {
printerr('Unsatisfied dependency: ' + e.message);
System.exit(1);
}
}
}
function dumpRequires() {
print(JSON.stringify(_requires));
}
function initGettext() {
Gettext.bindtextdomain(name, localedir);
Gettext.textdomain(name);
let gettext = imports.gettext;
window._ = gettext.gettext;
window.C_ = gettext.pgettext;
window.N_ = function(x) { return x; }
}
function initFormat() {
let format = imports.format;
String.prototype.format = format.format;
}
function initSubmodule(name) {
if (moduledir != pkgdatadir) {
// Running from source tree, add './name' to search paths
let submoduledir = GLib.build_filenamev([_base, name]);
let libpath = GLib.build_filenamev([submoduledir, '.libs']);
GIRepository.Repository.prepend_search_path(submoduledir);
GIRepository.Repository.prepend_library_path(libpath);
} else {
// Running installed, submodule is in $(pkglibdir), nothing to do
}
}
function initResources() {
let resource = Gio.Resource.load(GLib.build_filenamev([pkg.pkgdatadir,
pkg.name + '.gresource']));
resource._register();
}
function launch(params) {
params.flags = params.flags || 0;
let app = new Gio.Application({ application_id: params.name,
flags: (Gio.ApplicationFlags.IS_LAUNCHER |
params.flags),
});
return app.run(ARGV);
}
|