//TODO: ping chatDriver with nickname //TODO: chatDriver must delete the nickname after X seconds without answering //TODO: old files should be removed after X hours //TODO: lastPost becomes undefined somewhere somehow; can't pinpoint var lastPost = "0000-00-00 00:00:00"; var reloadChat = function(){ // Workflow: //- Chatroom requests info starting from lastPost (default to 0) //- Server receives lastPost and returns two arrays //- First array contains latest lastPost //- Second array contains a subarray with all posts from last update $.getJSON("http://localhost/~csolisr/web/Proyecto/php/chatDriver.php", {"lastPost": lastPost}, function(data) { //Render the received data var renderedData = ""; if (data["messageArray"]){ for (var i=0; i"; renderedData += current["content"]; renderedData += " (at "+timeDisplay+")"; renderedData += "\n"; $("#chatlog").append(renderedData); } } lastPost = data["lastPost"]; }); } var postMsg = function(msg){ //Draw the user name from your cookie var usr = ""; if (document.cookie) { var cookieList = document.cookie.split(";"); for (var i=0; i