I think there is one remaining typo from the latest trunk push in examples/views/default/examples.html:
-serice = Service(globals()) +service = Service(globals()) (patch attached) On Tue, Sep 15, 2009 at 12:17 AM, mdipierro <mdipie...@cs.depaul.edu> wrote: > > I tried to upgrade to wsgiserver 3.2.0 but I found some issues. I > fixed them (I think) and emailed a patch to the author. Meanwhile I > have included my patched version in web2py trunk. > > Please give it a try. 3.2.0 may have fixed the problem with truncated > downloads in webkit. The same file is behind web2py.com now. > > Please report any issue. > > Massimo > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "web2py-users" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~----------~----~----~----~------~----~------~--~---
=== modified file 'applications/examples/views/default/examples.html' --- applications/examples/views/default/examples.html 2009-09-15 05:15:31 +0000 +++ applications/examples/views/default/examples.html 2009-09-15 05:42:12 +0000 @@ -657,7 +657,7 @@ <p>Web2py has native support for the XMLRPC protocol. Below is a controller function "handler" that exposes two functions, "add" and "sub" via XMLRPC. The controller "tester" executes the two function remotely via xmlrpc.</p> {{=CODE(""" from gluon.tools import Service -serice = Service(globals()) +service = Service(globals()) @service.xmlrpc def add(a,b): return a+b