[web2py] Re: Installing web2py in IIS 8.5 wwwroot subfolder

2018-03-27 Thread Edwood
I just ended installing in a different folder outside of Inetpub an it worked. On Friday, March 23, 2018 at 7:05:37 PM UTC-4, Edwood wrote: > > I have been successful installing web2py inside "\Inetpub\wwwroot" as the > web2py deployment recipe and other resources instr

[web2py] Installing web2py in IIS 8.5 wwwroot subfolder

2018-03-23 Thread Edwood
I have been successful installing web2py inside "\Inetpub\wwwroot" as the web2py deployment recipe and other resources instruct. But what I am trying to accomplish is to run it from "\Inetpub\wwwroot\web2py". What I am trying to avoid is too fill wwwroot with python files since there are many

Re: [web2py] Re: FPDF

2017-01-06 Thread Edwood
l', 'I', 10) > Useratual=auth.user > Useratual = Useratual.first_name + ' ' + Useratual.last_name > Useratual = Useratual.decode("utf-8") > data = datetime.now().strftime('%d/%m/%Y - %H:%M') > self.cell(0, 20, 'Impresso por: %s

Re: [web2py] Re: FPDF

2017-01-02 Thread Edwood
Happy new year to you too! Can you post the code? It will be easier to understand the problem. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You rece

[web2py] Re: FPDF

2016-12-31 Thread Edwood
Hi! If you are using FPDF's templates you can treat each page as a different template and then use the PyPDF2 library and its objects PdfFileMerger and PdfFileReader to merge all the pages in a single document. On Wednesday, December 28, 2016 at 9:30:05 PM UTC-4, Áureo Dias Neto wrote: > > Go

[web2py] Re: Reportlab add image to pdf

2016-03-18 Thread Edwood
The error message suggests the script cannot find the image in that folder. Using pyFPDF this is how I will build the path using "os.path.join": os.path.join(request.folder,'static/images', 'logounca.png') On Friday, March 18, 2016 at 8:53:11 PM UTC-4, Winter Kryz wrote: > > I tried the os.

[web2py] Re: Problems with fpdf

2015-11-28 Thread Edwood
I am not having that problem when testing your code with pyfpdf 1.7.2, using the same font. I noticed web2py 2.12.3 is still using pyfpdf 1.7.1. I recommend temporarily replacing pyfpdf folder with new version an try again. On Saturday, November 28, 2015 at 1:46:12 PM UTC-4, mweissen wrote: >

[web2py] Re: pypfdf - how to make text wrap table cells?

2015-09-05 Thread Edwood
Hi. Wrapping inside table columns is not currently supported by "write_html", nor are CSS properties. One way to render wrapped text inside tables is to build the table using lines and then use "multi_cell" to wrap text inside the columns. This technique will require you to maintain careful

[web2py] Re: Add field with button on SQLFORM

2015-04-20 Thread Edwood
You may start looking at this code http://www.web2pyslices.com/slice/show/1616/widget-select-or-add-option-ng and build your solution from there. On Friday, April 17, 2015 at 10:50:40 PM UTC-4, KevC wrote: > > Hi community! > Good afternoon, my name is Kevin. > I want to know if you could hel