91 questions
0
votes
0
answers
102
views
Writing into ODS file with AODL C#
My goal is to export information to a table in .ods format. I can't use any commercial libraries (in other words, I'm very limited to free software), so I tried using the AODL 1.2.0.1 library. ...
2
votes
0
answers
71
views
How to add XML to an odt file using OdfPy and Pandoc?
I'm working on a project generating ODT files with Python.
I'm parsing user input (markdown) using Pandoc to convert it into pieces of OpenDocument content. Then, I want to merge this content to an ...
0
votes
2
answers
427
views
How to install and set up the ODF-DOM API
I am having troubles with the installation and set-up if the odf-toolkit.
I tried to follow this instruction but don't understand how to set up the dependencies since some of the instruction-links ...
0
votes
1
answer
687
views
How to generrate odt files from templates in Python
I'm working on a Python program that takes in input data from a database and open document templates (either .ott or .odt files directly) with anchors.
I would like the program to be able to generate ...
0
votes
1
answer
51
views
Memory leak using editor Open and close document (Codetools.matlab.desktop.editor)
Programmatically opening and closing files in the Matlab editor results in a memory leak. The following code illustrates the problem:
function TestEditorMemoryLeak(filepaths)
for i = 1 : numel(...
1
vote
1
answer
505
views
How to save base64 images in ODT opendocument/ODT files?
I am trying to create an ODT file from xml. I have been trying to add an image using <office:binary-data>, it is a base64 image.
After trying to do as it is told in documentation, the image is ...
2
votes
0
answers
285
views
How to merge multiple ODP (Open Document Presentation) files into a single ODP?
I'm doing some modular presentations divided into several sections.
Each section have it own file.
At the moment when I prepare a presentation I copy manually each section onto a new file.
What I'm ...
1
vote
2
answers
1k
views
Add line in Writer (odt) document using odfpy
I am trying to insert an horizontal line in a LibreOffice Writer (odt) document using odfpy.
(In Writer: Menu->Insert->Horizontal line)
This is my attempt (adapting this example):
from odf import ...
1
vote
1
answer
6k
views
ERR_RESPONSE_HEADERS_MULTIPLE_CONTENT_DISPOSITION - unable to find out why
I'm getting ERR_RESPONSE_HEADERS_MULTIPLE_CONTENT_DISPOSITION when returning my docx file, however I'm not sure where in my header the error comes from. I've tried my best to remove anything that is ...
0
votes
2
answers
112
views
How to issue file permission on AWS
Perhaps I'm on the wrong approach, however here is what I'm trying to do on AWS: I have a collection of OpenDocument files (calc, base) and I need to share those to other people; each user should ...
1
vote
1
answer
437
views
Simple ODT in Android Studio
I would like to try to create an OpenDocument with my Android app.
I've already added the simple-odf-0.8.2-incubating-jar-with-dependencies, but I get an error.
Are there other methods to recommend ...
-1
votes
1
answer
64
views
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 ...
0
votes
1
answer
756
views
New line in field with jOpenDocument in ODT document
I'm trying to fill out a template from java with jOpenDocument library.
I want to start a new line in a field.
The normal new line sign (\n) does not work.
When I do this manually in a document and ...
0
votes
1
answer
754
views
How to create opendocument ods files with optimal row height
Application creates OpenDocument spreadsheets (ods file) in code.
Some rows contains caption with bigger font sized.
They are only partially visible if opened in LibreOffice.
All rows have same style ...
0
votes
1
answer
1k
views
send my intent to a app chooser to open ms word doc
please see this code bellow as you can see my FilePath only gets this path /document/1393, so how do i get my absolute path like /sdcard/document/test.docx ?
// Get Result Back
@Override
public ...
0
votes
2
answers
888
views
JOpenDocument: problems with blank rows and cells
I have a problem when I parse .ods file with JOpenDocument . There are three rows and four columns in my file, but when I parse this file I get 1024 columns and too many rows. There are many blank ...
0
votes
1
answer
691
views
Retrieving PDF report from BO 4.1 Webservice
I am trying to migrate my web service client from BO 3.x to BO 4.1 RESTful.
The existing implementation of BO 3.x uses BO Java SDK to get CUID and doc properties to get the PDF report by using below ...
19
votes
1
answer
21k
views
What is correct mimetype with Apache OpenOffice files like (*.odt, *.ods, *.odp)?
I want *.ods and *.odt files on a website to open in openoffice when clicked, not get saved on desktop, or get opened embedded in a browser etc. Now obviously it all depends on how everything is ...
4
votes
0
answers
493
views
MS Excel and Power Point cannot properly open local hosted file through WebDAV
I am currently making a project with WebDAV to make some kind of Document Management System. It is an ASP .NET Web Application, hosted in IIS. (Although it's not using IIS WebDAV, but a modification ...
1
vote
1
answer
3k
views
Setting style on a paragraph using ODF toolkit
I'm trying to generate a well structured OpenDocument Text file with Apache's ODF tookit. I hope to achieve this by using styles for different portions of data. So I generated a template file that ...
0
votes
0
answers
76
views
How to Apply Insert key action for all opened Documents
I want to apply Insert key Action(Available in keyboard as "Insert" key) for all the opened Documents.By default It didn't work for any document.I write the code for Insert key.But,In my program ...
2
votes
0
answers
1k
views
Python convert ODS to xlsx in memory
I have a Django app that generates reports using relatorio ODS templates. The output rendered file is also in ODS format. I would like to be able to convert the output ODS to PDF, XLS, XLSX ..etc.
...
-1
votes
1
answer
1k
views
Is it possible to embed ODP (OpenDocument) in html page?
In my html, I have the following object tag.
<object type="application/vnd.oasis.opendocument.presentation" data="/Media/4/4/slides.odp"
width="800"
height="600">
<param name="...
4
votes
1
answer
230
views
Is there RefEdit control equivalent in Libre Calc?
Does anyone know what is Libre Calc’s equivalent for Excel’s RefEdit control? All other Excel UserForm controls seem to have corresponding controls for Libre Dialog forms. If there isn’t one, is it ...
0
votes
0
answers
152
views
Opening existing .odt file using OLE Automation
I want to open OpenDocument Text some file using COM OLE automation.
IDispatch *pSm; //XMultiServiceFactory
hr = CoCreateInstance(clsid, NULL, CLSCTX_LOCAL_SERVER, IID_IDispatch, (void **)&pSm); ...