odf

exporting mysql data to ODF with php

Hello, I would like to know if someone triend exporting data from MySQL to an ODF format ? Any information / documentation would be very much appreciated. I am going to try to export a MySQL result set to ODF spreadsheet if possible. ...

How can I access spreadsheets in the open document format (.ods) with java?

I want to read, write and create Spreadsheets in the Open Document Format with Java. And I want the resulting Java-program running on a computer without OpenOffice.org or other ODS-capable programs installed. Exists a library to access this format? ...

ODFPy documentation

I need to manipulate the ODF file format (open document format, the open office's internal format), and I need to do it in Python. It seem's ODFPy is a wonderful library for this porpouse. Unfortunately the official documentation is very poor, almost unuseful. And I can't find almost anything online (maybe it is not so popular?). Is th...

How to convert OpenOffice ODF files to HTML

I have some ODF files with math formulas and I need to render them...or else the boss will fire me (lol). Please, is there any way to do this ? or they can only be rendered in OpenOffice ? ...

How to identify an ODF file?

I need to be able to identify that a given file is an ODF file based on the contents of the file, and not on the file's extension. ODF files are really a collection of XML files in a zip container, which means that I cannot use the file's magic number as it will just indicate that it is a zip file. So what I'm really asking is are ther...

Generate ODT/DOC(X) and convert to PDF, without OO.o/MS

I have a WSGI application that generates invoices and stores them as PDF. So far I have solved similar problems with FPDF (or equivalents), generating the PDF from scratch like a GUI. Sadly this means the entire formatting logic (positioning headers, footers and content, styling) is in the application, where it really shouldn't be. As ...

C++ Library to render ODF documents ?

Hi, I am unable to find any open source libraries to render ODF documents using C++. I found ODKit suporting Java and AODL for .NET C#. Does any one have any idea or provide me any pointers. Thanks man, AiWee ...

Possible to output to .doc format using Qt?

I am writing a program using Qt. I want it to output to .doc to preserve formatting but all that is supported by Qt is plain text, ODF and HTML formats. ODF and HTML will preserve the formatting but then I would have to copy and paste this to a .doc file. I want to be able to save a .doc file and not have to worry about doing this. I hav...

Supporting a subset of ODF in a .net application.

I'm building a simple CMS for an ASP.net-based website and would like to store the site content in files that use a subset of the ODF file format. Ideally, the site should be able to save the content created in a format that any ODF-compliant editor can open and edit. It should also be able to open any ODF compliant file and load it if...

Library to edit odt documents in php

I try to edit ODT-documents programmaticly in PHP. In fact I just want to do some text replacement and adding new rows in a table. I know that a normal ODF document is an archive containing XML-files. But before I reinvent the wheel: is there any library which does most of the tasks? Or should I just parse the XML-file in a DOM-parser a...

ODFDOM (the OpenDocument API) compatible with Goope App Engine?

Has anybody already checked if ODFDOM (http://odftoolkit.org/projects/odfdom/pages/Home) only uses "white" Java APIs so I can use this lib on the GAE/J? ...

[php] ODF document load

Is there any quick way to read/write an ODF file from PHP? ---- edit ----- I needed this for an ODS(spreadsheet) file http://www.opendocumentphp.org/ seems to be unmaintained so i didn't even bother. http://www.phpcraparchive.org/browse/package/4398.html (ods-php) gives an fatal error(tries to allocate more than 512Mb) when opening t...

Generating word documents (.doc/.odt) through C++/Qt

Hi, I am using Qt 4.5.3 and Windows XP. I need my application to generate documents that contains the information that is being used and generated. The information that is being used will be just strings (QString to be more specific) and the information that is being generated will be strings and images as well. I want documents to be ...

MS Word/ ODF Automation in Qt

Hi All, How can I perform automation of MS Word documents (.doc) or ODF documents (.odt) in Qt 4.5? I know using the QAxWidget, QAxObject. I have data (QString) and few images as well. I have to add them into the document. I googled but I couldn't find any commands for MS- Word/ ODF. But I want the specific commands that should be pas...

How to generate ODF charts with Perl

How to create Open Document Format spreadsheet with charts using Perl? ...

How to set cell style using OpenOffice::OODoc?

How to apply a style to cell using OpenOffice::OODoc module in Perl? I tried: my $container = odfContainer("report1.ods", create => 'spreadsheet'); my $doc = odfDocument ( container => $container, part => 'content' ); # Styles my $styles = odfDocument ( ...

Copy a whole ODT (Openoffice Writer) document section to other document with Openoffice Java API (UNO API)

Dear all, I need to use the OpenOffice Java API to copy a document section and paste it over another document section. So far I have managed to copy the text of the section of the source document and paste it over the section at the target document (see the example below). However, the problem is that non-text elements (graphics, form...

Linux utility to convert opendocument to csv

Does anyone know of a Linux command line utility to convert OpenDocument Spreadsheets (e.g. oocalc files) into a csv file? Preferably without dependency to OpenOffice. ...

How to convert ODT to DOC/RTF without openoffice.org

Is there any way to convert odt documents to doc or rtf on linux without openoffice or any library that relies on having openoffice installed ? ...

How to convert plain text to ODF?

Hi everybody! I am searching for C/C++ library for txt -> odf conversion. I've already checked http://odftoolkit.org but it has only Java version. Main criterion is a ease of use. ...