Pocoo - Python forum

Pocoo is a forum developed in Python. I know there are lots of forums out there, but the Pocoo guys are really accelerating, and their code looks really beautiful.

Pocoo has a philosophy really close to Skeletonz - for instance, we both have created our own frameworks and we both have a plugin architecture.

When Pocoo gets a bit more mature I am going to make a Pocoo plugin so a forum for a Skeletonz driven site is a few clicks away.

Check out the Pocoo demo for a little teaser. Remember that this is very early in their development.

They are also using my AJS JavaScript library. For instance, check out their JSON RPC, that runs on top of AJS.

Code · Python 5. Sep 2006
3 comments so far

You can check out the JSON-RPC specification for more info. In AJS JSON-RPC can implemented like this:

var d = AJS.getRequest(this.url, null, "POST")
var args = [];
for (var i = 1; i < arguments.length; i++)
  args.push(arguments[i]);
var data = AJS.serializeJSON({
  method: method,
  params: args,
  id: null
});
d.addCallback( function(res_txt, req) { alert(res_txt) } );
d.sendReq(data);

This is the old specification. By now jsonrpc1.1 is ready for usage and there isn't an id attribute any more.

After jsonrpc1.1 is finished and the error codes are published i'll try to implement that directly for AJS as an addon module.

Regards,
Armin

Hi Armin

That would be pretty nice :)
I haven't used JSON-RPC myself (directly), but I use something very similar.

Keep up the great work on Pocoo!

Post a comment
Commenting on this post has expired.
© 2000-2009 amix. Powered by Skeletonz.