mirror of https://github.com/apache/poi.git
Bugzilla 52649: fixed adobe:ns:meta namespace in WordToFoConverter
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1244429 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b10ba1a85b
commit
78be7da87d
|
@ -34,6 +34,7 @@
|
|||
|
||||
<changes>
|
||||
<release version="3.8-beta6" date="2012-??-??">
|
||||
<action dev="poi-developers" type="fix">52649 - fixed namespace issue in WordToFoConverter</action>
|
||||
<action dev="poi-developers" type="fix">52385 - avoid trancated array and vector data when reading OLE properties</action>
|
||||
<action dev="poi-developers" type="fix">52662 - CharacterRun NPE fix when fetching symbol fonts, where no fonts are defined</action>
|
||||
<action dev="poi-developers" type="add">52658 - support mergin table cells in XSLF</action>
|
||||
|
|
|
@ -242,7 +242,7 @@ public class FoDocumentFacade
|
|||
|
||||
// See http://xmlgraphics.apache.org/fop/0.95/metadata.html
|
||||
|
||||
Element xmpmeta = document.createElementNS( "adobe:ns:meta",
|
||||
Element xmpmeta = document.createElementNS( "adobe:ns:meta/",
|
||||
"x:xmpmeta" );
|
||||
declarations.appendChild( xmpmeta );
|
||||
|
||||
|
|
Loading…
Reference in New Issue