Re: [web2py] export data to OOO and Excel

2011-07-29 Thread Philippe ENTZMANN
Another solution : You can simply link data to a Excel/OOo spreadsheet. From web2Py, you only need a view with a HTML table of your data. In Excel or OOo you link your spreadsheet to your URL. Advantages : - you don't have to build your Excel file in w2p (no extra module) - you can link your data

Re: [web2py] export data to OOO and Excel

2011-07-21 Thread Dave
This works great, but when i download the file it is missing the extension. Is there an easy way to add '.xls' to the file name? Thanks, Dave

Re: [web2py] export data to OOO and Excel

2011-07-21 Thread Joaquin Orbe
On Thu, Jul 21, 2011 at 3:40 PM, Dave davidramsayreinh...@gmail.com wrote: This works great, but when i download the file it is missing the extension. Is there an easy way to add '.xls' to the file name? Thanks, Dave Hi Dave, how do you download the file? This method is an action in one

[web2py] export data to OOO and Excel

2011-07-20 Thread Vineet
I was looking for a library to export data to OpenOffice Excel. I found 2 such open source projects. For OOO --- http://ooolib.sourceforge.net/ For Excel --- http://www.python-excel.org/ What I intend to do is, keep the classes in web2py folder, import the classes in controller, then parse the

Re: [web2py] export data to OOO and Excel

2011-07-20 Thread Joaquin Orbe
On Wed, Jul 20, 2011 at 5:45 AM, Vineet vineet.deod...@gmail.com wrote: I was looking for a library to export data to OpenOffice Excel. I found 2 such open source projects. For OOO --- http://ooolib.sourceforge.net/ For Excel --- http://www.python-excel.org/ What I intend to do is, keep