You cannot post messages because only members can post, and you are not currently a member.
Description:
Python web server and tools from FriendFeed
|
|
|
Officially supported Python versions
|
| |
The README file looks out of date. Which versions of Python are officially supported at this point? I think it's 2.5, 2.6, 2.7, and 3.2, which the README should be updated to reflect. Are we planning on 3.3 support when it's finalized in August, and can we definitively say we'll never support 3.0 or 3.1?... more »
|
|
Facebook Canvas App - Circular Login Redirect
|
| |
Hey Tornado team - I'm using the Tornado based Social Cookbook<[link]>template to create a Facebook App, but I'm having a problem with Canvas support which does a POST instead of a GET. The example doesn't include how to handle this. Based on reading and looking at the Run With Friends<[link]>example, I'm able to get the signed request, read the data (user id,... more »
|
|
Announcing Tornado 2.3
|
| |
We are pleased to announce the release of Tornado 2.3, available from
[link]
Release notes:
[link]
Many thanks to everyone who contributed patches, bug reports, and
feedback that went into... more »
|
|
redirect after POST problem
|
| |
Hi, in one of my RequestHandlers I want to do a redirect after POST. class CategoryHandler(tornado.web.Re questHandler): def post(self, *args, **kwargs): # some logic here left out self.redirect("/admin/", permanent=True) Currently Iam running this code from a AsyncHTTPTestCase. The redirect is... more »
|
|
is this ab test for nginx and tornado normal ?
|
| |
server : 16cores CPU + 16GB mem Dell server
I also want to know : *how to deploy Tornado with nginx as the load balance
server*, thanks
*Nginx (the default welcome page):*
[root@report ~]# ab -c 1000 -n 10000 report:8247/
This is ApacheBench, Version 2.0.40-dev <$Revision: 1.146 $> apache-2.0... more »
|
|
thread safe dict manipulation
|
| |
Hello together, i have a dict that holds all channels for my chat application. If a user joins a channel, i check if this channel exists in my dict, if not => create. [...] channels = dict() def join_user(request, channel) if channel not in self.channels: self.channels[channel] = set() self.channels[channel].add(req uest)... more »
|
|
Tornado 2.3 release candidate
|
| |
It's been a while since our last release, so I'm getting ready to ship
Tornado 2.3. There aren't a lot of major new features in this
release; it's mainly just a few months' worth of accumulated bug
fixes. The release notes are at
[link]
If you want to check it out, just pull the master branch from github.... more »
|
|
|