Questions tagged [odf]

The Open Document Format for Office Applications, also known as OpenDocument.

The Open Document Format for Office Applications (ODF), also known as OpenDocument (OD), is an XML-based file format for spreadsheets, charts, presentations and word processing documents. It was developed with the aim of providing a universal document format that could be used with any office software suite.

111 questions
0
votes
1 answer

How do I override ODF Root RSID using the API

I am generating ODT documents using the openoffice/libreoffice API, and I want the files to come out to be 100% identical every time (by MD5 comparison). At this point I can unzip the two files generated at different times and check all the files…
Tommy G.
  • 355
  • 2
  • 9
0
votes
2 answers

ODFToolkit - recalculate all formulas

I have two files: 1.ods in C:\ 2.ods in Z:\ In 1.ods - cell A1 I've typed 10, saved, closed. In 2.ods - cell A1 I've typed formula: ='file:///Z:/1.ods'#$Sheet1.A1, saved, closed. Now I want to recalculate value in 2.ods cell A1 programmatically…
Xeon
  • 5,949
  • 5
  • 31
  • 52
0
votes
1 answer

Export & import ODS files in Appengine app

I am developing an application in java using gwt and Appengine. One feature my app should have is to import data from .ods files and also to export data in .ods format. I know about the jOpenDocument jar but it cannot work with Appengine apps as it…
0
votes
1 answer

JAVA ODFDOM: How to get integer values from ODF sheet

I am using this code to get maximum row count from a sheet in ODF public int getRowCount(String sheetName) throws XPathExpressionException, Exception { //reset rowCount to zero rowCount=0; //xpath to reach Nodes of cell in first row …
Abhinav Garg
  • 1,642
  • 3
  • 22
  • 41
-1
votes
1 answer

Rails, odf-report: all images replaced bij same picture?

Following the instructions at: sandrods/odf-report: In my odt-file I have four mock-images, with four different names (graph1, graph2, graph3, graph4). In my controller I wish to replace them by four different images: r.add_image :graphd1,…
BerryGJS
  • 97
  • 1
  • 13
-2
votes
1 answer

I would like to edit an odt document using python. Just a simple swap of keywords. Is this possible?

1)I would like to swap certain keywords in an odf document programmatically. For example, the sample lease has TENANT_NAME, and my program would insert the actual name of the tenant. I have tried a code snippet from this website that works on…
1 2 3 4 5 6 7
8