So I took a slightly different route than planned this week. My day job steered me towards looking into mojo (http://mojo.bt.com). This is an implementation of the BT SDK (http://web21c.bt.com/) that allows you to create gadgets that utilise Web21C and can be easily be added to your website (or application).
So in keeping of all things TiddyWiki (http://tiddlywiki.com/) I created a plugin for TiddlyWiki that allows you to send a SMS and make a call from within your TiddlyWiki.
You can view a sample of it at:
http://www.craigcook.co.uk/samples/TiddlyMojo.html
Or you can just download the scriptfile directly:
http://www.craigcook.co.uk/samples/MojoPlugin.js
Please note that you will also need the following file for encryption:
Tags: BT, BT mojo, BT SDK, TiddlyMojo, TiddlyWiki, Web21C
October 5, 2007 at 10:42 pm
Nice work Craig.
A quick tip: TiddlyWiki has some built in code for SHA-1 that you might be able to use. Just look at the Crypto functions.
http://svn.tiddlywiki.org/Trunk/core/js/Crypto.js
You can also shave off a few lines of code using the getXMLHttpRequest function
http://svn.tiddlywiki.org/Trunk/core/js/Http.js
I realize that since this is a demo these things dont really matter, but it’s good to know whats already available in the core.
Cheers.
October 6, 2007 at 10:59 am
Cheers for the pointers. I’ll change the code to use the existing TiddlyWiki functionality.