I believe I found a bug, when trying to save a post i get an exception.
The exception is in Oxite.Mvc.NameValueCollectionExtensions line 142.
<BR> post.Published = DateTime.Parse(collection["publishDate"].IsRequired());<BR>
I believe it is because the javascript creates a US date. However it seems that the this.getDay() returns a 0 when it should return a 7...
Date.prototype.toShortString = function() { <BR>var y = this.getYear(); <BR>var year = y % 100; <BR>year += (year < 38) ? 2000 : 1900; <BR>return (this.getMonth() + 1).toString() + "/" + this.getDay() + "/" + year + " " + this.toLocaleTimeString(); }; <BR>