It would be

def makepdf():
    from reportlab.pdfgen import canvas
    import gluon.contrib.pyrtf as q
    print ('--')
    c=canvas.Canvas("primer.pdf")
    c.drawString(150,400, "REPORTLAB")
    c.showPage()
    c.save()
    response.headers['Content-Type']='application/pdf'
    response.headers['Content-Disposition'] =
'attachment;filename=solicitud.pdf'
    return response.stream(open("primer.pdf", 'rb'))


thank you very much.

On 2 jul, 10:35, Álvaro Justen [Turicas] <alvarojus...@gmail.com>
wrote:
> On Thu, Jul 2, 2009 at 11:55, __Kyo__<iacastil...@gmail.com> wrote:
> > thanks, and here it is a part of my code, i do not know what to write
> > in to me return.
>
> Try this:
>
> > def makepdf():
> >    from reportlab.pdfgen import canvas
> >    import gluon.contrib.pyrtf as q
>
>       filename = "/home/.../primer.pdf" #we do not recommend to use
> other path instead of web2py/app path to save files.>    
> c=canvas.Canvas(filename)
> >    c.drawString(150,400, "REPORTLAB")
> >    c.showPage()
> >    c.save()
> >    response.headers['Content-Type']='application/pdf'
> >    response.headers['Content-Disposition'] =
> > 'attachment;filename=solicitud.pdf'
>
>     return response.stream(open(filename, 'rb'))
>
> --
>  Álvaro Justen
>  Peta5 - Telecomunicações e Software Livre
>  21 3021-6001 / 9898-0141
>  http://www.peta5.com.br/
--~--~---------~--~----~------------~-------~--~----~
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