Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
9answers
799 views

How do I get files in my own file format to have its own dynamic icon?

Our application has a file format similar to the OpenDocument file format (see http://en.wikipedia.org/wiki/OpenDocument) - i.e. zipped with a manifest file, a thumbnail image, etc. I notice that ...
6
votes
3answers
464 views

Background image dark or light?

I'm doing a ODP->HTML conversion with PHP. I have problems with the following: Use the style:use-window-font-color property to specify whether or not the window foreground color should be as ...
5
votes
2answers
1k views

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 ...
4
votes
2answers
108 views

org-mode zip needed, how to over come?

I have an org-mode document that I want to convert to open Document format. When I try to do this (ctrl+c+e+o) I get an error message: Executeable "zip" needed for creating OpenDocument files. ...
4
votes
3answers
974 views

Generate ODT documents with dynamic images in PHP

I maintain a couple of web databases based on PHP and mySQL on a shared hosting package. The databases have a mechanism for the user to upload OpenOffice documents with placeholders: [person.name] ...
3
votes
3answers
395 views

reading odt files in php

How would you go about reading odt files in PHP? I know you can use QueryPath, but that seems a bit of an overkill,.. I just want to read the file.
3
votes
1answer
427 views

How do I write a Microsoft Word/Office Open XML document using Perl?

I have written a Perl script that reads some data and generates an OpenOffice Writer/OpenDocument file for that data. Can I also construct a Microsoft Word/Office Open XML document?
2
votes
1answer
61 views

using jopendocument with coldfusion/railo, how to add table row?

I'm using jopendocument 1.2 with Railo 3.3.1.000 from http://www.jopendocument.org/start_text_2.html List<Map<String, String>> months = new ArrayList<Map<String, String>>(); ...
2
votes
1answer
62 views

The Open Document Specification about the manifest.xml file

The "Oasis Open Document Specification" says in Page 709 "17.1 Introduction" the Information stored inside the Manifest.xml file should be: A list of all of the files in the package. The media type ...
1
vote
3answers
113 views

Relationship between standards DocBook DITA OpenDocument and CMIS, MoReq2

Can anybody explain /for dummies :)/ relationship between these (mostly oasis) standards? DocBook, DITA, OpenDocument CMIS MoReq2 As i understand yet: DITA, DocBook and OpenDocument - are ...
1
vote
3answers
454 views

How does Open Office compress its files?

I'm trying to create an Open Office spreadsheet programmatically but for some reason simply compressing a folder with all the necessary files makes Open Office flag the file as corrupted. How did I ...
1
vote
1answer
478 views

Populate a QTextDocument from a .odt file

I am writing a rich text editor using C++ and Qt. For now, I would like it to support (at least) the .odt format. I found QTextDocumentWriter for writing the contents of the QTextDocument to a file, ...
1
vote
2answers
878 views

exporting mysql data to ODF with php

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 ...
0
votes
0answers
47 views

Dynamically adding images to a Word XML / Open XML / Word ML document

I'm trying to dynamically create XML documents from a VBScript ASP page. No matter what I do, I can't seem to get the images to embed. Even copying and pasting the code from a Word created one ...
0
votes
1answer
40 views

Add Section to OpenDocument Text file with ODFpy

I am using Python2.7 and ODFpy to write an OpenDocument Text (ODT) file. Is there a way using the existing ODFpy API to add sections (a la Format->Sections...) to the document? Is there a way to ...
0
votes
1answer
85 views

How to open a document located on a WebDAV server from a Java applet on MAC OS X?

I need to open a document for editing with associated application on MAC OS X from Java applet. The document is located on a WebDAV server. What command should I use to open a document? Is it ...
0
votes
0answers
45 views

XSD for OpenDocument

Is there some xsd to validate OpenDocument XML? I mean, what is the xsd we use to generate valid OpenDocument like odt and ods files of OpenOffice?
0
votes
1answer
82 views

Using $.couch.db(“dir”).openDoc() to fetch a Json string

Is it possible to fetch a Json string from a couch server using code such as $.couch.db(getDir).openDoc(getDoc, { success: function(data) { console.log(data); var myJson = ...
0
votes
1answer
778 views

how to pass multiple parameters in an open doc url for a webi report in repository?

i want to pass multiple parameters like year,month,week etc to a webi report in repository.. how can i achieve this.. Thanx
0
votes
1answer
85 views

Document creation libraries and formats?

I am going to start my final project for spring semester at school and looking at feasibility before I put my leg in it. One of my potential projects requires me to make an archiveable document of web ...
0
votes
2answers
164 views

How to generate ODF charts with Perl

How to create Open Document Format spreadsheet with charts using Perl?
0
votes
1answer
130 views

I want to write multiple images to an odt file either in python or php

I want to write multiple image files to a odt file. I will be specifying a dir and the script will take it from there thru a loop. But where do i start? I have never done anything like this before! I ...
0
votes
1answer
78 views

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 ...
0
votes
1answer
25 views

Insights on how to get celltext with linebreaks from a spreadsheet to a XML

So, I'm trying to get the content from a cell in an ODS spreadsheet. I'm doing something like: <xsl:value-of select="./table:table-cell[6]/text:p/text()" disable-output-escaping="yes"/> The ...