Created
May 28, 2010 18:12
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
def ajaxsubmit(request): | |
new_msg = Message(msg = request.POST['msg'], | |
posted_by = request.POST['posted_by']) | |
new_msg.save() | |
# Again, we're just going to assume this always works | |
cmd = [{'cmd': 'inlinepush', | |
'params': { | |
'password': settings.APE_PASSWORD, | |
'raw': 'postmsg', | |
'channel': 'messages', | |
'data': { | |
'msg': new_msg.msg, | |
'posted_by': new_msg.posted_by, | |
'timestamp': new_msg.timestamp | |
} | |
} | |
}] | |
url = settings.APE_SERVER + urllib2.quote(json.dumps(cmd)) | |
response = urllib2.urlopen(url) | |
# Updating the message is handled by APE, so just return an empty 200 | |
return HttpResponse() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment