- Disable issues on GitHub/PhoneGap
- Mirror issues from GitHub/Callback to JIRA
- Typical issue gardening (culling, assign, prioritize, and update)
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 test | |
| > [email protected] test /Users/mwbrooks/Dropbox/Development/lib/cordova-client | |
| > node test_bootstrap.js && ./node_modules/jasmine-node/bin/jasmine-node --color spec | |
| .shell.js: internal error | |
| Error: ENOENT, no such file or directory '/Users/mwbrooks/Dropbox/Development/lib/cordova-client/temp/platforms/android/assets/www' | |
| at Object.fs.mkdirSync (fs.js:483:18) | |
| at /Users/mwbrooks/Dropbox/Development/lib/cordova-client/node_modules/shelljs/shell.js:297:14 | |
| at Array.forEach (native) |
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
| my-app:mwbrooks $ ./cordova/build qnx | |
| Buildfile: /Users/mwbrooks/Dropbox/Development/lib/cordova-cli/lib/cordova-blackberry/my-app/build.xml | |
| qnx: | |
| build: | |
| generate-cod-name: | |
| [echo] Generated name: __NAME__.bar |
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
| /*! | |
| * Module dependencies. | |
| */ | |
| var connect = require('connect'), | |
| http = require('http'), | |
| app = connect(); | |
| /** | |
| * Middleware #1 |
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
| function readFile(filepath, callback) { | |
| window.requestFileSystem( | |
| LocalFileSystem.PERSISTENT, | |
| 0, | |
| function(fileSystem) { | |
| fileSystem.root.getFile( | |
| filepath, | |
| null, | |
| function gotFileEntry(fileEntry) { | |
| fileEntry.file( |
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
| /* | |
| * Licensed to the Apache Software Foundation (ASF) under one | |
| * or more contributor license agreements. See the NOTICE file | |
| * distributed with this work for additional information | |
| * regarding copyright ownership. The ASF licenses this file | |
| * to you under the Apache License, Version 2.0 (the | |
| * "License"); you may not use this file except in compliance | |
| * with the License. You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 |
I hereby claim:
- I am mwbrooks on github.
- I am mwbrooks (https://keybase.io/mwbrooks) on keybase.
- I have a public key whose fingerprint is C28F 5906 C202 EAE7 3CC0 1230 CD57 9760 B735 6299
To claim this, I am signing this object:
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
| @app.action("button_click") | |
| def action_button_click(body, ack, say): | |
| # Acknowledge the action | |
| ack() | |
| say(f"<@{body['user']['id']}> clicked the button") |
OlderNewer