alex-charos / evoluspencil

Automatically exported from code.google.com/p/evoluspencil
0 stars 0 forks source link

Page notes are lost in ODT export #444

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Create a document in Pencil
2. Add a note to a page
3. Export to ODT using the default template
4. Open the generated document in LibreOffice

What is the expected output? What do you see instead?
Notes are supposed to be visible in the ODT document.

What version of the product are you using? On what operating system?
Pencil 1.3.4 on Debian Linux

Please provide any additional information below.
Tis is cause by an error in this content.xslt : 
http://evoluspencil.googlecode.com/svn/branches/pencil-2.0/app/content/pencil/te
mplates/ODT/default.ODT/content.xslt :
            <text:section text:name="NoteSection">
                <xsl:apply-templates select="p:Note/node()"/>
                <text:p></text:p>
            </text:section>
Should be :
            <text:section text:name="NoteSection">
                <text:p>
                <xsl:apply-templates select="p:Note/node()"/>
                </text:p>
            </text:section>

I attach a .patch

Original issue reported on code.google.com by raphael....@gmail.com on 9 May 2012 at 9:19

Attachments:

GoogleCodeExporter commented 8 years ago
Hi,

What's the status of this patch?

Original comment by adri2...@gmail.com on 15 Feb 2013 at 10:22