[web2py] Re: web2py meetup with Massimo in north Bay Area

2014-09-26 Thread Richard Warg
I'm in. -- 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 received this message because you are subscribed to the Google Groups "web2py-users" group. T

[web2py] mssql legacy tables reference

2014-09-26 Thread Richard Warg
Try just using the table name without the field. -- 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 received this message because you are subscribed to t

[web2py] Apostrophe causes new column in PYFPDF

2014-10-06 Thread Richard Warg
I am using the sample report from *https://code.google.com/p/pyfpdf/wiki/Web2Py#Sample_Report.* It works as expected until I have an apostrophe or ampersand in the string. ORIGINAL # create several rows: rows = [] for i in range(1000): col = i % 2 and "#F0F0F0" or "#FF"

[web2py] Apostrophe causes new column in PYFPDF

2014-10-10 Thread Richard Warg
Here are some additional observations- it only fails in tables, either inside a or TD (). the actual application is using text from a database column. RTF and CSV output conversions work as expected with the same data. I suspect an issue with the pdf table conversion code. -- Resources: - h

Re: [web2py] Re: Apostrophe causes new column in PYFPDF

2014-10-13 Thread Richard Warg
e this is a pyfpdf issue and you should report it to the > maintainers. > > On Friday, 10 October 2014 08:00:49 UTC-5, Richard Warg wrote: >> >> Here are some additional observations- >> it only fails in tables, either inside a or TD (). >> the actual application i

Re: [web2py] Re: Apostrophe causes new column in PYFPDF

2014-10-18 Thread Richard Warg
I haven't had time to dig into this myself, but the solution needs to also handle the following case: {{mytext=" a is < than b & c is > b"}} {{=mytext}}This goes in column 2 The '&', '<', and '>' should not start a new colu

[web2py] RSVP: Massimo @ Bay Area web2py meetup (refreshments) -- 12/5/2014, 6:30PM - 9:00PM -- BE THERE!!!

2014-11-10 Thread Richard Warg
I'll be there. I have a projector but it is VGA only. It will run off my Chromebook, MacBook, or antique Linux laptop. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Rep

Re: [web2py] Re: RSVP: Massimo @ Bay Area web2py meetup (refreshments) -- 12/5/2014, 6:30PM - 9:00PM -- BE THERE!!!

2014-11-11 Thread Richard Warg
https://groups.google.com/d/topic/web2py/C2gkf6K9Kyo/unsubscribe. > To unsubscribe from this group and all its topics, send an email to > web2py+unsubscr...@googlegroups.com. > For more options, visit https://groups.google.com/d/optout. > -- Richard Warg -- Resources: - http://web2py.

Re: [web2py] Re: UPDATED AGENDA! Bay Area web2py meetup (refreshments) -- 12/5/2014, 6:30PM - 9:00PM -- BE THERE!!!

2014-12-06 Thread Richard Warg
oup. > To unsubscribe from this topic, visit > https://groups.google.com/d/topic/web2py/C2gkf6K9Kyo/unsubscribe. > To unsubscribe from this group and all its topics, send an email to > web2py+unsubscr...@googlegroups.com. > For more options, visit https://groups.google.com/d/optout. > -- Ric

[web2py] Empty text field throws an error in fpdf.py

2015-01-29 Thread Richard Warg
There is a possible problem in gluon/contrib/fpsf/fpdf.py when the user leaves an entry blank. What is the process for submitting this issue in the new reporting procedure? 51.filler = False 52.for row in db_rows: 53.pdf.cell(25,5,row.case_number,1, fill=filler) 54. 55.