My guess is that Titanium Mobile isn't running a new enough version of Javascript to cover the date format you're using.
If you look up the specification for the Date object, it takes a date as defined in RFC 1123 which gets it's date defintion from RFC 822 which does not look to me like it supports the exact format you're using. Starting in Javascript 1.8.5, it also accepts dates in the form of ISO 8601 which looks like it might cover what you have.
I'd suggest modifying your date strings to work like the older specification if you can. See here on MDN for more info.
An example of a valid RFC822 date time is this:
02 Oct 2002 15:00:00 +0200
If your dates are always in exactly the format you show in your question, then you can do a simple conversion like this:
function ConvertDate(dateIn) {
var monthStr = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
// desired format "02 Oct 2002 15:00:00 +0200"
var dateOut = dateIn;
var matches = dateIn.match(/(\d+)\D+(\d+)\D+(\d+)T(.*)Z$/);
if (matches) {
dateOut = matches[3] + " " +
monthStr[parseInt(matches[2] - 1, 10)] + " " +
matches[1] + " " +
matches[4] + " GMT";
}
return(dateOut);
}
Demo here: http://jsfiddle.net/jfriend00/APxN7/.
Note: this simple function assumes your dates are always in the exact format you show in your question and always valid as it will not handle any arbitrary ISO 8601 date as input, only exactly the form you show.
To get the current date into a javascript object, you can just do this:
var now = Date();
You can then use any of the methods defined for the Date object on the now object, include methods to get any part of the date or convert it to a string, etc....
To get the internet form of the date that ConvertDate outputs, you would use:
now.toUTCString();