# Example code:

# Import a standard function, and get the HTML request and response objects.
from Products.PythonScripts.standard import html_quote
request = container.REQUEST
response =  request.response

# Return a string identifying this script.
print ("This is the", script.meta_type, '"%s"' % script.getId(), end=' ')
if script.title:
    print ("(%s)" % html_quote(script.title), end=' ')
print ("in", container.absolute_url())
return printed
