This file contains hidden or 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 jsDump = require('jsDump'), | |
| settings = require('settings/root'); | |
| var logger = exports.logger = { | |
| levels: {silent:0, error:1, info:2, debug:2}, | |
| log: function(obj) { | |
| if (typeof log !== 'undefined') | |
| log(jsDump.parse(obj)); | |
| if (typeof console !== 'undefined') | |
| console.log(obj); |
This file contains hidden or 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
| // http request that does a callback request | |
| var req = function(options) { | |
| var r = http.request(options, function(res) { | |
| var resBody = ''; | |
| res.setEncoding('utf8'); | |
| res.on('data', function (chunk) { | |
| resBody += chunk; | |
| }); | |
| res.on('end', function() { | |
| var resJSON = JSON.parse(resBody); |
This file contains hidden or 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
| $ kanso push | |
| loading . | |
| loading packages/modules | |
| Error: Error: Cannot find module 'kanso/modules' | |
| at Function._resolveFilename (module.js:334:11) | |
| at Function._load (module.js:279:25) | |
| at Module.require (module.js:357:17) | |
| at require (module.js:368:17) | |
| at Object.<anonymous> (/Users/mandric/dev/kujua-export/packages/modules/build/add.js:1:77) | |
| at Module._compile (module.js:432:26) |
This file contains hidden or 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
| $ npm install -g kanso | |
| npm ERR! error installing [email protected] Error: Unsupported | |
| npm ERR! error installing [email protected] at checkEngine (/Users/mandric/local/node/lib/node_modules/npm/lib/install.js:570:14) | |
| npm ERR! error installing [email protected] at Array.0 (/Users/mandric/local/node/lib/node_modules/npm/node_modules/slide/lib/bind-actor.js:15:8) | |
| npm ERR! error installing [email protected] at LOOP (/Users/mandric/local/node/lib/node_modules/npm/node_modules/slide/lib/chain.js:15:13) | |
| npm ERR! error installing [email protected] at chain (/Users/mandric/local/node/lib/node_modules/npm/node_modules/slide/lib/chain.js:20:4) | |
| npm ERR! error installing [email protected] at installOne_ (/Users/mandric/local/node/lib/node_modules/npm/lib/install.js:548:3) | |
| npm ERR! error installing [email protected] at installOne (/Users/mandric/local/node/lib/node_modules/npm/lib/install.js:488:3) | |
| npm ERR! error installing [email protected] at /Users/mandric/local/node/lib/node_modules/npm/lib/install.js:425:9 | |
| npm ERR! error installing kanso@ |
This file contains hidden or 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
| // passes in couchbase single server, you can test in Futon by pasting into Custom Test | |
| couchTests.custom_test = function(debug) { | |
| var db = new CouchDB("test_suite_db", {"X-Couch-Full-Commit":"false"}); | |
| db.deleteDb(); | |
| db.createDb(); | |
| if (debug) debugger; | |
| var testregexDoc = { | |
| _id: "_design/testregex", |
This file contains hidden or 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
| "Person Name","Ward","Ward Phone","E-mail","Web Site","Ward Office","City","State","Zip","City HallPhone","Web Site 2" | |
| "Arena, John","45","(773) 286-4545","[email protected]","http://ward45.org","4754 N. Milwaukee Ave.","Chicago","IL","60630","(312) 744-6841" | |
| "Austin, Carrie M.","34","(773) 928-6961","[email protected]","507 W. 111th St. ", "Chicago","IL","60628","(312)744-6820","Budget Committee: http://committeeonthebudget.cityofchicago.org/index.html" | |
| "Balcer, James","11","(773) 254-6677","[email protected]","http://www.11thward.com/","3659 S. Halsted St. ","Chicago","IL","60609","(312) 744-6663" | |
| "Beale, Anthony","09","(773) 785-1100","[email protected]","http://www.ward09.cityofchicago.org/","34 East 112th Place ","Chicago","IL","60628","(312) 744-6838" | |
| "Brookins, Jr."," Howard","21","(773) 881-9300","[email protected]","9011 S. Ashland Ave."," Unit B ","Chicago","IL","60620","(312) 744-4810" | |
| "Burke, Edward M.","14","(773) 471-1414","[email protected]","2650 W. |
This file contains hidden or 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
| // fails in couchbase single server, you can test in Futon by pasting into Custom Test | |
| couchTests.custom_test = function(debug) { | |
| var db = new CouchDB("test_suite_db", {"X-Couch-Full-Commit":"false"}); | |
| db.deleteDb(); | |
| db.createDb(); | |
| if (debug) debugger; | |
| var testregexDoc = { | |
| _id: "_design/testregex", |
This file contains hidden or 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
| { | |
| "payload": { | |
| "task": "send", | |
| "secret": "secret_key", | |
| "messages": [ | |
| { | |
| "to": "+000-000-0000", | |
| "message": "the message goes here", | |
| "callback": "POST http://server/url?id=123¶m=true" | |
| }, |
This file contains hidden or 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
| /** | |
| * Update functions to be exported from the design doc. | |
| */ | |
| var _ = require('underscore')._ | |
| exports.add_sms = function (doc, req) { | |
| // add validation | |
| var new_doc = _.extend(req.form, {_id: req.uuid}); | |
| // support Ushahidi response protocol |
This file contains hidden or 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
| <receiver android:name="StartupReceiver"> | |
| <intent-filter> | |
| <action android:name="android.intent.action.PACKAGE_REPLACED"/> | |
| <action android:name="android.intent.action.MY_PACKAGE_REPLACED"/> | |
| <action android:name="android.intent.action.PACKAGE_ADDED"/> | |
| <action android:name="android.intent.action.BOOT_COMPLETED"/> | |
| <category android:name="android.intent.category.HOME"/> | |
| </intent-filter> | |
| </receiver> |