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
// setting up postal and machina to work together | |
/* | |
1. Download underscore.js and the node versions of postal.js, machina.js, and machina-postal.js | |
from http://github.com/ifandelse | |
2. Change the location of underscore in the require() statements of the postal.js and machina.js | |
3. Connect machina to postal as follows: | |
*/ | |
var postal = require('lib/ifandelse/postal'), |
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
<!-- xpathFilterWithNamespace.xml from existing camel-spring test case; works fine --> | |
<beans xmlns="http://www.springframework.org/schema/beans" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:foo="http://example.com/person" | |
xsi:schemaLocation=" | |
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd | |
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd | |
"> |
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
// module code | |
// assets/Resources/foogle.js | |
exports.client = { | |
test: function() { | |
var modules = ["Accelerometer","Analytics","Android","App","Contacts","Database","Facebook","Filesystem","Geolocation", | |
"Gesture","Locale","Map","Media","Network","Platform","UI","Utils","XML","Yahoo"]; | |
for (var i = 0; i < modules.length; i++) { | |
Titanium.API.info(modules[i]+ "? "+Titanium[modules[i]]); | |
} | |
} |
NewerOlder