This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Adding meeting section | |
var data0 = {"id":id, "title":title, "start_time":start_time, "end_time":end_time, "userlist":userlist}; | |
var data = JSON.stringify(data0); | |
$.ajax({ | |
type:"POST", | |
url:'http://............', | |
data:data, | |
dataType: "text", | |
contentType: "application/json; charset=UTF-8", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import cherrypy | |
import ConfigParser | |
import time | |
import json | |
from cherrypy.lib import static | |
import os | |
import cherrypy_cors | |
class Coordinator(object): |