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
2 answers

python odfpy AttributeError: Text instance has no attribute encode

I'm trying to read from an ods (Opendocument spreadsheet) document with the odfpy modules. So far I've been able to extract some data but whenever a cell contains non-standard input the script errors out with: Traceback (most recent call last): File…
0
votes
1 answer

Alternative Syntax for an XPath in nokogiri, parsing an ODF

I have a pretty straightforward ODF document that I want to parse with nokogiri. The XML looks like this: ...
Toshe
  • 766
  • 4
  • 15
0
votes
1 answer

Openshift Online/ownCloud 7 quickstart is missing .ODF support

I installed the ownCloud 7 app (Git URL: https://github.com/openshift/owncloud-openshift-quickstart.git) via we OpenShift Online web-console and it is running fine. I even managed to get the URL-forwarding working so that users can get to this…
0
votes
1 answer

Use ODF File as Template Input and Output With phpdocx

I would like to load an ODF file as a template, do a variable (string) replacement on the document, and output a new ODF file with the replaced strings. Is this possible with phpdocx or should I be looking for another tool? Here's what I currently…
Getterac7
  • 3
  • 3
0
votes
1 answer

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…
Yes - that Jake.
  • 16,725
  • 14
  • 70
  • 96
0
votes
3 answers

How to store documents like google docs?

I'm interested how does google docs store documents on server side because I need to create similar application. Does it use pure RTF/ODF files or own database? How do they make possible versioning and undo/redo feature? If anybody have knowing…
Erik
  • 14,060
  • 49
  • 132
  • 218
0
votes
1 answer

Is it possible to export data directly from R to ODF?

I know there is odfWeave. But as far as I know, odfWeave expects you to have your code in the OpenOffice file and R will then process that file. Is there a way to export directly from R to an ODF file? The idea is to generate an ODF file from R that…
R-obert
  • 999
  • 3
  • 10
  • 17
0
votes
1 answer

open ODF file for editing in PHP

I am developing a Document Management System and want to enable user to open a document for editing. I have used PHPWord and it does not open a document which user wants to edit. Currently I am trying with OpenTBS and also found no solution to edit…
Umair Ayub
  • 19,358
  • 14
  • 72
  • 146
0
votes
1 answer

Downloading Open Document Format files with XMLHTTP and ADO

I am attempting to download 'Open Document Format' files from a node.js application which is being converted/exported through Open Office on the server (HTML to various formats). This works great for PDF, Text, HTML, Word etc. but does not work with…
0
votes
0 answers

How to print ODF files using java print API

How do i print an ODF file using the java print api framework? i can't seem to find any info on printing odf file using the java print api. java accept postscript and convert it into doc for printing. FileInputStream fis = new…
0
votes
1 answer

How to read an ODS document?

My goal is to simply read an ODS file that was created with Libre Office - Calc. Using org.apache.odftoolkit:odfdom-java:0.8.8-incubating I open the ODS file and convert the content to scala xml as follows: val doc =…
axiopisty
  • 4,972
  • 8
  • 44
  • 73
0
votes
1 answer

Extracting text from Open Document file generates UnicodeEncodeError

I'm trying to convert the notes attached to an Open Document Presentation file to text, using odfpy. I managed to open the file, make a list of 'notes' objects, managed to extract from that what I believe are paragraphs, and it somehow works, until…
mcenno
  • 509
  • 5
  • 18
0
votes
4 answers

Office web apps alternative for asp.net

Is there a asp.net component to allow in browser editing of doc, xls, ppt files alternative of Office web apps? Note for bounty: as i wrote in a comment i would like to write an app (not necessarily asp.net) in which the end user can edit MS Office…
UnDiUdin
  • 14,924
  • 39
  • 151
  • 249
0
votes
2 answers

How to read paged rows from an excel or ods file?

We are using java and ODF Toolkit for reading rows from ods and excel files. The problem is that , even if you want to read only 1 row ,the whole document is loaded and the memory usage for a 50.000 rows of ods file is around 350 MBs . So im…
kommradHomer
  • 4,127
  • 5
  • 51
  • 68
0
votes
1 answer

Getting java.lang.NoClassDefFoundError: org/apache/xerces/dom/ElementNSImpl with Apache ODF Toolkit

I am trying to read an ods file using Apache ODF Toolkit. I am getting java.lang.NoClassDefFoundError error while while trying to load the Spreadsheet using below code- SpreadsheetDocument data = SpreadsheetDocument.loadDocument(file); Below is the…
ravi
  • 6,140
  • 18
  • 77
  • 154