openoffice.org

Open Office and subversion compatibility

纵然是瞬间 提交于 2019-12-08 12:24:46
问题 Does anyone have any experience placing OpenOffice documents under source control using Subversion? In particular, does Subversion merge documents correctly/efficiently etc.? 回答1: You have this project, an extension to openoffice that allows you to handle subversion stuff inside OpenOffice. Yet, it seems a little outdated :( On the other hand, you have the odfsvn project that provides tools to handle OpenOffice document in subversion (but seems limited to Mac and Linux systems) And last but

Problem using PHP exec command to execute a batch file

ぃ、小莉子 提交于 2019-12-08 11:29:30
问题 I'm attempting to get PHP to call a batch file which will take an RTF file and convert it to a PDF using an OpenOffice macro. I've tested the batch file on the command line and it works fine, but I'm not having any luck calling and using the same batch file from PHP. My machine OS is XP professional SP 3. I'm running IIS 6 and PHP version 5.2.9. I've granted execute permissions to the internet user on c:\windows\system32\cmd.exe. I specified the full path to the batch file being executed and

LibreOffice: a XSLT stylesheet to generate a slideshow?

我的未来我决定 提交于 2019-12-08 08:24:25
问题 A libreoffice document is a zip file containing (among other thing) some XML files. s$ unzip -t test.odp Archive: test.odp testing: mimetype OK testing: Configurations2/statusbar/ OK testing: Configurations2/accelerator/current.xml OK testing: Configurations2/floater/ OK testing: Configurations2/popupmenu/ OK testing: Configurations2/progressbar/ OK testing: Configurations2/menubar/ OK testing: Configurations2/toolbar/ OK testing: Configurations2/images/Bitmaps/ OK testing: content.xml OK

How to find (and maybe extend) the list of available field names for reports in the OpenERP server sourcecode?

别说谁变了你拦得住时间么 提交于 2019-12-07 20:06:33
问题 I am looking for a reliable way to get names of available data fields when creating or extending OpenOffice/LibreOffice report files. I already do know many field names from the existing reports. I also can lookup the field names in the module definitions. For example in the file addons\base\res\partner\partner.py I find a field list for the partner model: class res_partner(osv.osv): _columns = { 'name': fields.char('Name', size=128, required=True, select=True), 'date': fields.date('Date',

How to get field lists using the OpenERP Report Designer Addon for OpenOffice / LibreOffice

空扰寡人 提交于 2019-12-07 18:01:59
问题 I want to add fields to the reports and use them in python functions and do some coding inside the reports. I am using version 6.0.3 of OpenERP, I keep getting an empty field list. This is what the "add field" command on the addon should look like: I am using the "OpenERP Report Designer" addon for OpenOffice / LibreOffice. The "Add a field" command in the OpenOffice addon does not work for me. It shows an empty field list. I tried in 6.0.3 on a linux and a windows server and also 6.0.2 on a

Doc file editing in iPhone app [closed]

自古美人都是妖i 提交于 2019-12-07 16:42:55
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . Would anyone please suggest me how can we edit word document in iphone/iPad application. I wont to open word document in my app and change font style and color and save it again. Is there any paid or free API or document for this which can help me for this. I don't understand why you guys close this question.

How to insert an image in to an openoffice writer document with java?

耗尽温柔 提交于 2019-12-07 05:31:47
问题 I'm trying to create an openoffice writer document from a template. I can replace text parts of report with this code private static void searchAndReplace(final String search, final String replace, final XTextDocument mxDoc) { XReplaceable xReplaceable = (XReplaceable) UnoRuntime.queryInterface( XReplaceable.class, mxDoc); XReplaceDescriptor xRepDesc = xReplaceable.createReplaceDescriptor(); xRepDesc.setSearchString(search); xRepDesc.setReplaceString(replace); xReplaceable.replaceAll(xRepDesc

OpenOffice pyuno “select all”

断了今生、忘了曾经 提交于 2019-12-07 05:15:19
问题 Does anyone know how to use the OO uno bridge api to "select all" in a Calc sheet? Alternatively, finding the maximum used row and column number would work. What I want to do is apply a format to all the cells in the spreadsheet. (The reason being that I'm saving the sheet as csv, so numbers are not accurately saved unless the format provides enough decimal places.) 回答1: Assuming you have already connected to OpenOffice and document is a spreadsheet that has been opened or created. #get the

openoffice: duplicating rows of a table in writer

回眸只為那壹抹淺笑 提交于 2019-12-07 03:12:25
I need to programmatically duplicate rows of a Table in openoffice writer. It's not difficult to add rows via table.Rows.insertByIndex(idx, count) , that adds empty rows and it's easy to add text in that row assigning DataArray to the CellRange . Doing this way you loose control on the style of the cells and specifically if a cell has words with different style (bold/italic) they get flattened to the same face. What I need is to duplicate a row in a way that preserves the style of each word in the cell/row. This is the last step of a Python template system that uses openoffice ( http:/

OpenERP - Report Creation

大城市里の小女人 提交于 2019-12-06 13:54:24
问题 I am trying to create a new report with report plugin and openoffice but I don't know how to assign it in the OpenERP system. Is there someone who can give me exact steps for creation of new report and integration with openerp? Thanks in advance! 回答1: Here are the steps to create the OpenERP RML report. open open-office.org tools menu extension manager go to - base_report_designer plugin →openerp_report_designer.zip restart open-office open a new report add a loop ( select your DB) add loop