<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.openoffice.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Fernand</id>
	<title>Apache OpenOffice Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.openoffice.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Fernand"/>
	<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/wiki/Special:Contributions/Fernand"/>
	<updated>2026-06-21T11:29:06Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.14</generator>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Writer/ToDo/PDF_Import&amp;diff=60086</id>
		<title>Writer/ToDo/PDF Import</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Writer/ToDo/PDF_Import&amp;diff=60086"/>
		<updated>2008-01-11T13:51:33Z</updated>

		<summary type="html">&lt;p&gt;Fernand: /* Motivation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Motivation==&lt;br /&gt;
&lt;br /&gt;
PDF is a widely used format to exchange documents containing text and graphics between different applications and different platforms. OpenOffice.org is currently able to create such PDF documents via export filters that are already available within every major OpenOffice.org application. Unfortunately, OpenOffice.org is not able to import PDF documents back again, although this is one of the more often requested features.&lt;br /&gt;
&lt;br /&gt;
See [http://www.openoffice.org/issues/show_bug.cgi?id=10384 issue 10384] for further details.&lt;br /&gt;
&lt;br /&gt;
Most Professional Editing tools as QuarkExpress etc.. offers the posibility to place a PDF-Page as a graphic. For now we uses a workaround making from the PDF-page a EPS with tiff-preview who can now be placed in a OO-doc.&lt;br /&gt;
The previeuw is low-resolution but the EPS is printed in its original resolution and also in de wanted CMYK colorspace because the PS-print drivers do not alter the EPS to RGB&lt;br /&gt;
There are many reasons why this feature would be usefull, but placing fuly layouted tables (made in Calc) into WriterDocs is one of the most important.&lt;br /&gt;
In Quark you can select a PDF, choose the pagenr and place it as a normal graphic.&lt;br /&gt;
When it can bedone then it will be importand that the CMYK is preserved&lt;br /&gt;
&lt;br /&gt;
==Goals for a PDF import==&lt;br /&gt;
&lt;br /&gt;
The document created by importing a PDF file should resemble the original as close as possible; nevertheless PDF per se does not lend itself to that end easily: most PDF files contain no information about layout or document structure at all. Therefore a PDF file will never be able to be imported on a 1:1 basis. We have to define goals to define what level of similarity must be achieved on a basis of feasibility.&lt;br /&gt;
&lt;br /&gt;
These goals should be treated as paramount:&lt;br /&gt;
* all text that is visible in the original PDF document should be imported&lt;br /&gt;
* text attributes: font family, font size, weight (bold, not bold), style (italic, not italic) should be imported together with the respective text.&lt;br /&gt;
* all drawing elements (images, vector graphics) should be imported.&lt;br /&gt;
* if the implementation has to choose between layout fidelity and editability, lean towards layout.&lt;br /&gt;
&lt;br /&gt;
Additionally there are some goals that would greatly enhance the import result, all of these features can by their nature only be implemented with heuristic methods since PDF (unless the file uses tagged PDF) does not contain structural information. The following text features should be detected (sequence in descending importance):&lt;br /&gt;
* Paragraphs&lt;br /&gt;
* Enumerations&lt;br /&gt;
* Titles&lt;br /&gt;
* Underlined text&lt;br /&gt;
* subscript/superscript&lt;br /&gt;
&lt;br /&gt;
=== Use-Cases===&lt;br /&gt;
There are 3 use cases for a PDF-input filter. To better understand what should be developed, I will separately address these use cases:&lt;br /&gt;
&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Text-Stream Import&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Text + Layout Import&amp;#039;&amp;#039;&amp;#039; (non-editable)&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Text + Layout Import&amp;#039;&amp;#039;&amp;#039; (fully editable)&lt;br /&gt;
 [[User:Discoleo|Discoleo]] 18:37, 7 October 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
=== Text-Stream Import ===&lt;br /&gt;
&lt;br /&gt;
Sometimes, people want to import mainly the &amp;#039;&amp;#039;&amp;#039;text-stream&amp;#039;&amp;#039;&amp;#039; to edit it in their preferred program and use it in their &amp;#039;&amp;#039;&amp;#039;own work&amp;#039;&amp;#039;&amp;#039;. In these instances, the exact layout is not that important, and what the import filter should do is:&lt;br /&gt;
* generate a continuous text stream [i.e. NOT just every line terminated by CR/LF, like the current Adobe Acrobat select tool]&lt;br /&gt;
* optimally detect some text-structure:&lt;br /&gt;
** like sub-/super-script&lt;br /&gt;
** paragraphs&lt;br /&gt;
** tables&lt;br /&gt;
** underlined text&lt;br /&gt;
&lt;br /&gt;
=== Text + Layout (as background) ===&lt;br /&gt;
&lt;br /&gt;
Users need sometimes to complete a document/form. Often, governments and other institutions publish official documents in pdf-format (simple PDFs, NOT pdf-forms), BUT one cannot add/write any text to these simple pdf documents.&lt;br /&gt;
&lt;br /&gt;
The import-filter should therefore:&lt;br /&gt;
* import the pdf (both text-streams and layout) as a &amp;#039;&amp;#039;&amp;#039;background&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* users shall be able to write new text in the foreground, overlaid over the background document&lt;br /&gt;
** however, this should be handled better than pasting the pdf-document as an image and writing over the image&lt;br /&gt;
** images create bigger size; poor zooming; difficulty accurately positioning new text to fit the existing text line, ...&lt;br /&gt;
** it should be possible to position the cursor on the baseline of an existing text-line, so that newly written text fits the existing text&lt;br /&gt;
** the tool should detect existing text-box boundaries, so that one can write new text extending from those boundaries&lt;br /&gt;
* optimally, some minimal &amp;#039;pdf-editing&amp;#039; features should be possible&lt;br /&gt;
** move whole sections (text+graphic+layout from the remaining document) downwards, e.g. if the new text does NOT fit in the existing free space&lt;br /&gt;
&lt;br /&gt;
=== Text + Layout (fully editable) ===&lt;br /&gt;
&lt;br /&gt;
Of course, this would be a nice feature, BUT - considering the pdf format -, this seems a little bit elusive.&lt;br /&gt;
&lt;br /&gt;
However, pdf-documents saved by OOo should contain additional information, that should allow importing them in OOo in a fully editable state. At least OOo-generated documents shall allow this editing mode.&lt;br /&gt;
&lt;br /&gt;
Another approach could be to allow importing PDF to Impress or Draw to edit the complete layout, by treating it as a poster instead of a document (which may be repaginated etc).&lt;br /&gt;
&lt;br /&gt;
==Implementation==&lt;br /&gt;
&lt;br /&gt;
We will try to come up with a first prototype soon, most probably using an out-of-process xpdf instance to do the parsing (due to license issues). Here&amp;#039;s a list of things to do:&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:#efefef;&amp;quot; &lt;br /&gt;
! Area !! Title !! State !! [[CWS]]&lt;br /&gt;
|-&lt;br /&gt;
| Parser || Wrap pdf parser with UNO ||  style=&amp;quot;background:lightgreen;&amp;quot; | 100% || picom&lt;br /&gt;
|-&lt;br /&gt;
| Parser || Connect to xpdf out-of-process ||  style=&amp;quot;background:lightgreen;&amp;quot; | 100% || picom&lt;br /&gt;
|-&lt;br /&gt;
| Tooling || Enhance rendering API to provide truly generic bitmap access ||  style=&amp;quot;background:lightgreen;&amp;quot; | 100% || picom&lt;br /&gt;
|-&lt;br /&gt;
| Canvas || Adapt Canvas implementations to the new API ||  style=&amp;quot;background:lightgreen;&amp;quot; | 100% || picom&lt;br /&gt;
|-&lt;br /&gt;
| Tooling || Adapt VCL&amp;#039;s canvastools to be able to import XBitmap generically to VCL bitmap ||  style=&amp;quot;background:lightgreen;&amp;quot; | 100% || picom&lt;br /&gt;
|-&lt;br /&gt;
| Tooling || Enable GraphicImporter to use rendering::XBitmap ||  style=&amp;quot;background:lightyellow;&amp;quot; | 90% || picom&lt;br /&gt;
|-&lt;br /&gt;
| Import || Read content via UNO ||  style=&amp;quot;background:lightgreen;&amp;quot; | 100% || picom&lt;br /&gt;
|-&lt;br /&gt;
| Import || Combine low-level structure (like stroke and fill) ||  style=&amp;quot;background:lightyellow;&amp;quot; | 90% || picom&lt;br /&gt;
|-&lt;br /&gt;
| Import || Generate SAX events ||  style=&amp;quot;background:lightgreen;&amp;quot; | 100% || picom&lt;br /&gt;
|-&lt;br /&gt;
| Import || Generate ODF stream ||  style=&amp;quot;background:lightgreen;&amp;quot; | 100% || picom&lt;br /&gt;
|-&lt;br /&gt;
| Import || Detect text flow: portions ||  style=&amp;quot;background:red;&amp;quot; | 0% || picom&lt;br /&gt;
|-&lt;br /&gt;
| Import || Detect text flow: lines ||  style=&amp;quot;background:red;&amp;quot; | 0% || picom&lt;br /&gt;
|-&lt;br /&gt;
| Import || Detect text flow: paragraphs ||  style=&amp;quot;background:red;&amp;quot; | 0% || picom&lt;br /&gt;
|-&lt;br /&gt;
| Import || Detect text style ||  style=&amp;quot;background:red;&amp;quot; | 0% || picom&lt;br /&gt;
|-&lt;br /&gt;
| Import || Detect shape style (e.g. shadow) ||  style=&amp;quot;background:red;&amp;quot; | 0% || picom&lt;br /&gt;
|-&lt;br /&gt;
| Parser || Replacement for xpdf ||  style=&amp;quot;background:red;&amp;quot; | 0% || picom&lt;br /&gt;
|-&lt;br /&gt;
| CVS || Move pdf import to OOo CVS ||  style=&amp;quot;background:lightyellow;&amp;quot; | 90% || picom&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Writer|PDF Import]]&lt;br /&gt;
[[Category:To-Do|Writer/PDF Import]]&lt;br /&gt;
[[Category:PDF|Import Filter]]&lt;/div&gt;</summary>
		<author><name>Fernand</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Xml/Filters&amp;diff=23883</id>
		<title>Xml/Filters</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Xml/Filters&amp;diff=23883"/>
		<updated>2007-01-26T14:52:39Z</updated>

		<summary type="html">&lt;p&gt;Fernand: /* Filters and Conversions based on OpenDocument/OpenOffice.org XML */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Filters and Conversions based on OpenDocument/OpenOffice.org XML =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;th colspan=&amp;quot;2&amp;quot;&amp;gt;Filters and Conversions based on OpenDocument/OpenOffice.org XML&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;th&amp;gt;Document&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;th&amp;gt;Summary&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;[http://xml.openoffice.org/xmerge/docbook/ OpenOffice.org&amp;#039;s DocBook filter]&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Allows you to load and save DocBook files with OpenOffice.org through   XSLT. The filter is meant as proof of concept and does not support all DocBook elements. Community support is appreciated.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;[http://www.chez.com/ebellot/ooo2sdbk/ Eric Bellot&amp;#039;s DocBook converter]&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;This is another approach at translating between OpenOffice.org XML and DocBook. Eric Bellot uses Python and XSLT to perform the transformation. With examples and description.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;[http://xml.openoffice.org/xmerge/docbook/sx2ml/ OpenOffice.org XML export to strict XHTML 1.0]&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Svante Schubert&amp;#039;s XSL transformation for the creation of strict XHTML 1.0 from OpenOffice.org XML. Used for the online version of the [http://api.openoffice.org/docs/DevelopersGuide/DevelopersGuide.xhtml Developers&amp;#039;s Guide]. Delivered with StarOffice/OpenOffice.org as optional sample filter&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;[http://www.hj-gym.dk/~hj/writer2latex Writer2LaTeX]&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Henrik Just&amp;#039;s Writer2LaTeX converter is a command line utility and also a OO-exportfilter which converts OpenOffice.org documents to LaTeX and HTML. It is written in Java.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;[http://xml.openoffice.org/source/browse/api/odk/examples/cpp/GenericXMLFilter/ Flat XML Filter]&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The &amp;#039;flat&amp;#039; XML filter lets you read and write office documents in plain XML files, i.e. without ZIP packages.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;[http://ooo2txt.fr.st/ OOO2txt]&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Frederic Labbe&amp;#039;s OOO2txt tool generates a plain text representation of OpenOffice.or documents.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;[http://libwpd.sourceforge.net/ libwpd]&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;William Lachance&amp;#039;s libwpd and WordPerfect filter for OpenOffice.org Writer&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;[http://freshmeat.net/projects/soffice2html/ OOo to HTML]&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Steve Slaven&amp;#039;s StarOffice/OpenOffice.org to HTML converter. Uses XSLTproc and ImageMagick.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;[http://openshore.cvs.sourceforge.net/*checkout*/openshore/openshore/parser/src/smrl/RELEASE.html OpenSHORE SMRL Metaparser Filter Package]&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A [https://sourceforge.net/project/showfiles.php?group_id=65882&amp;amp;package_id=195645 JAR filter package] that reads &amp;quot;[http://openshore.sourceforge.net/pdf/OpenSHORE-SMRL-Tutorial.pdf Semantic Markup Rule Language]&amp;quot; (SMRL) specifications and creates [http://OpenSHORE.org OpenSHORE] XML, [http://topicmaps.org/xtm/ XML Topic Maps] (XTM), W3C RDF or [http://www.gupro.de/GXL/ Graph eXchange Language] (GXL) files from OpenDocument Text documents (*.odt).&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;[http://www.tei-c.org/Software/teioo/ Text Encoding Initiative (TEI)]&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;This package provides import and export XSLT stylesheets, a template file, to allow Open Office (version 1.1 and later) to open TEI XML documents, and save OO documents as TEI XML. The XSLT stylesheets effectively provide a mapping between the TEI DTD and the OpenOffice schema.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;[http://www.wieser.at/openoffice/ RDF Ticker Template and Package]&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Daten RDF Ticker template and export using XSLT, by Wieser Informationstechnik&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;/div&gt;</summary>
		<author><name>Fernand</name></author>
	</entry>
	<entry>
		<id>https://wiki.openoffice.org/w/index.php?title=Xml/Filters&amp;diff=23882</id>
		<title>Xml/Filters</title>
		<link rel="alternate" type="text/html" href="https://wiki.openoffice.org/w/index.php?title=Xml/Filters&amp;diff=23882"/>
		<updated>2007-01-26T14:48:51Z</updated>

		<summary type="html">&lt;p&gt;Fernand: /* Filters and Conversions based on OpenDocument/OpenOffice.org XML */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Filters and Conversions based on OpenDocument/OpenOffice.org XML =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;th colspan=&amp;quot;2&amp;quot;&amp;gt;Filters and Conversions based on OpenDocument/OpenOffice.org XML&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;th&amp;gt;Document&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;th&amp;gt;Summary&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;[http://xml.openoffice.org/xmerge/docbook/ OpenOffice.org&amp;#039;s DocBook filter]&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Allows you to load and save DocBook files with OpenOffice.org through   XSLT. The filter is meant as proof of concept and does not support all DocBook elements. Community support is appreciated.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;[http://www.chez.com/ebellot/ooo2sdbk/ Eric Bellot&amp;#039;s DocBook converter]&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;This is another approach at translating between OpenOffice.org XML and DocBook. Eric Bellot uses Python and XSLT to perform the transformation. With examples and description.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;[http://xml.openoffice.org/xmerge/docbook/sx2ml/ OpenOffice.org XML export to strict XHTML 1.0]&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Svante Schubert&amp;#039;s XSL transformation for the creation of strict XHTML 1.0 from OpenOffice.org XML. Used for the online version of the [http://api.openoffice.org/docs/DevelopersGuide/DevelopersGuide.xhtml Developers&amp;#039;s Guide]. Delivered with StarOffice/OpenOffice.org as optional sample filter&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;[http://www.hj-gym.dk/~hj/writer2latex Writer2LaTeX]&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Henrik Just&amp;#039;s Writer2LaTeX converter is a command line utility which converts OpenOffice.org documents to LaTeX and HTML. It is written in Java.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;[http://xml.openoffice.org/source/browse/api/odk/examples/cpp/GenericXMLFilter/ Flat XML Filter]&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The &amp;#039;flat&amp;#039; XML filter lets you read and write office documents in plain XML files, i.e. without ZIP packages.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;[http://ooo2txt.fr.st/ OOO2txt]&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Frederic Labbe&amp;#039;s OOO2txt tool generates a plain text representation of OpenOffice.or documents.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;[http://libwpd.sourceforge.net/ libwpd]&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;William Lachance&amp;#039;s libwpd and WordPerfect filter for OpenOffice.org Writer&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;[http://freshmeat.net/projects/soffice2html/ OOo to HTML]&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Steve Slaven&amp;#039;s StarOffice/OpenOffice.org to HTML converter. Uses XSLTproc and ImageMagick.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;[http://openshore.cvs.sourceforge.net/*checkout*/openshore/openshore/parser/src/smrl/RELEASE.html OpenSHORE SMRL Metaparser Filter Package]&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A [https://sourceforge.net/project/showfiles.php?group_id=65882&amp;amp;package_id=195645 JAR filter package] that reads &amp;quot;[http://openshore.sourceforge.net/pdf/OpenSHORE-SMRL-Tutorial.pdf Semantic Markup Rule Language]&amp;quot; (SMRL) specifications and creates [http://OpenSHORE.org OpenSHORE] XML, [http://topicmaps.org/xtm/ XML Topic Maps] (XTM), W3C RDF or [http://www.gupro.de/GXL/ Graph eXchange Language] (GXL) files from OpenDocument Text documents (*.odt).&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;[http://www.tei-c.org/Software/teioo/ Text Encoding Initiative (TEI)]&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;This package provides import and export XSLT stylesheets, a template file, to allow Open Office (version 1.1 and later) to open TEI XML documents, and save OO documents as TEI XML. The XSLT stylesheets effectively provide a mapping between the TEI DTD and the OpenOffice schema.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;[http://www.wieser.at/openoffice/ RDF Ticker Template and Package]&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Daten RDF Ticker template and export using XSLT, by Wieser Informationstechnik&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;/div&gt;</summary>
		<author><name>Fernand</name></author>
	</entry>
</feed>