Hi,
using pyrtf i created a new controller called printings.py.
In it i have a function:
def myPrint():
    myDict = request.args[0]
    ...
    ...
    return q.dumps(doc)

from my default controller i want to call that function passing to it
a dictionary. After it finishes printing i want to get back to my
controller.
How can i do that?

i tried from default controller to call that function in this way:
redirect(URL(r=request,c='printings',f='lprProvv',args=[myDict]))

but i get no result: "Invalid request"

where am i wrong?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web2py Web Framework" 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
-~----------~----~----~----~------~----~------~--~---

Reply via email to