14 Apr
2002
14 Apr
'02
9:58 p.m.
Noel Duffy writes:
* create a request object with authentication information, perform a "traverse" on this object (this will set the user) and then call "manage_pasteObjects" on the traverse to object.
Thanks for the quick reply.
Do you have an example of how one would do this, as I cannot quite picture in my head how this should be approached? Attached...
You would use it in the form: from request import getAuthRequest R=getAuthRequest() # your authenticated request object (sure, you modified USER and PASSWORD!) o= R.traverse(URL) # the (site relative) URL of the object you want to reach # whatever you want to do with "o" Dieter