Community Page
- britg.com Jump to website »
-
Subscribe -
Community
-
Top Commenters
-
Popular Threads
-
Recent Comments
- You may also want to look at the open source M/DB:X which is an HTTP-interfaced hybrid JSON/Native XML Database. JSON objects are converted to and stored as XML DOMs which can be analysed,...
- Very cool, will watch its progress on github :) I like the Sinatra-esque lightweight approach.
- check out http://github.com/visionmedia/express/tree/master might like ;), I just started it but contribution would be great, building a framework on node.js is sexxxxy
- True, I plan to make some updates, the first of which is to use POST on the /join URL and enforce it. Also, I will implement a reaper process to clear stale joins.
- Nice article! But a very bad idea to show HTTP example code completely ignoring request verbs. People will copy that :-/ And don't make people join on GET, use PUT to join, DELETE to unjoin.
10 months ago
10 months ago
10 months ago
10 months ago
If you can pastie your javascript code, maybe I can weed out the issue.
10 months ago
*************
var Device = {
available: false,
model: "",
version: "",
isIPhone: null,
isIPod: null,
init: function(model, version) {
try {
Device.available = __gap;
Device.model = __gap_device_model;
Device.version = __gap_device_version;
Device.gapVersion = __gap_version;
Device.uniqueIdentifier = __gap_device_uniqueid;
} catch(e) {
alert("GAP is not supported!")
}
},
*************
and in my page i have :
*************
window.onload = function()
{
Device.init();
$('infomodel').innerHTML = Device.model;
$('infoversion').innerHTML = Device.version;
$('infouniqueid').innerHTML = Device.uniqueIdentifier;
Device.Location.callback = updateLocationCallback;
Device.Image.callback = 'image.lasso?data=';
}
....
*************
10 months ago
10 months ago
10 months ago
and ipod touches. I can't find a case in my limited searching where the
first gen iphones done return a unique Identifier, but I don't have one
myself.
10 months ago
Maybe you need to explain this to Sintaxi, so he can build it in in the next master.
L.
10 months ago
problems you're running into as I didn't see those. If you can pastebin
your code somewhere I will try to find some time to look at it in the next
couple days.
10 months ago
10 months ago
solution here:
http://britg.com/2008/08/23/fixing-the-keyboard...
Hope that helps!