This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Buildfile: /home/matej/archiv/knihovna/repos/tmp/GpodRoid/build.xml | |
[setup] Android SDK Tools Revision 13 | |
[setup] Project Target: Android 2.3.3 | |
[setup] API level: 10 | |
[setup] | |
[setup] ------------------ | |
[setup] Resolving library dependencies: | |
[setup] No library dependencies. | |
[setup] | |
[setup] ------------------ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
info it worked if it ends with ok | |
verbose cli [ 'node', '/usr/bin/npm', 'install', '-g', '[email protected]' ] | |
info using [email protected] | |
info using [email protected] | |
verbose /usr/bin/node node symlink | |
verbose config file /root/.npmrc | |
verbose config file /usr/etc/npmrc | |
silly exec /usr/bin/node "/usr/lib/nodejs/npm/bin/npm-get-uid-gid.js" "nobody" 0 | |
silly output from getuid/gid {"uid":99,"gid":0} | |
silly output from getuid/gid |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root@bradford ~]# npm install -g libxml-to-js |&tee /tmp/npm-install-log.txt | |
> [email protected] preinstall /usr/lib/node_modules/libxml-to-js/node_modules/libxmljs | |
> make node | |
scons: Reading SConscript files ... | |
Checking for node.js ...(cached) yes | |
True | |
Checking for C++ library xml2... yes | |
Checking for node.js ...(cached) yes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CmdUtils.CreateCommand({ | |
names: ["demand"], | |
description: "Demand OpenID to be used for the current page", | |
author: { | |
name: "Matej Cepl", | |
email: "[email protected]" | |
}, | |
license: "MIT/X11", | |
icon: "http://www.mozilla.com/favicon.ico", | |
arguments: [{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
function getShortURL(which, args) { | |
var baseURL = ""; var params = {}; | |
if (which == "is.gd") { | |
baseURL = "http://is.gd/create.php"; | |
params = { | |
format: "simple", | |
url: encodeURIComponent(args.object.text) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Response = require('ringo/webapp/response').Response; | |
var log = require('ringo/logging').getLogger(module.id); | |
var config = require("config"); | |
function matchesREkey (obj, path) { | |
log.info("obj = " + obj.toSource()); | |
log.info("path = " + path); | |
for (var key in obj) { | |
if (new RegExp(key).test(path)) { | |
return true; |
NewerOlder