Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
onlyoffice_core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
onlyoffice_core
Commits
24d9b99a
Commit
24d9b99a
authored
Nov 21, 2017
by
ElenaSubbotina
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/hotfix/v5.0.5' into develop
parents
f42cb458
dce58b62
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
56 additions
and
45 deletions
+56
-45
ASCOfficeDocFile/DocDocxConverter/IVisitable.h
ASCOfficeDocFile/DocDocxConverter/IVisitable.h
+2
-0
ASCOfficeDocFile/DocDocxConverter/PropertiesMapping.cpp
ASCOfficeDocFile/DocDocxConverter/PropertiesMapping.cpp
+34
-31
ASCOfficeDocFile/DocDocxConverter/ShadingDescriptor.h
ASCOfficeDocFile/DocDocxConverter/ShadingDescriptor.h
+4
-4
ASCOfficeDocFile/DocDocxConverter/TableCellPropertiesMapping.cpp
...ceDocFile/DocDocxConverter/TableCellPropertiesMapping.cpp
+1
-1
ASCOfficeDocxFile2/BinReader/HeaderFooterWriter.h
ASCOfficeDocxFile2/BinReader/HeaderFooterWriter.h
+2
-2
ASCOfficePPTXFile/PPTXFormat/Logic/CNvGraphicFramePr.h
ASCOfficePPTXFile/PPTXFormat/Logic/CNvGraphicFramePr.h
+10
-4
ASCOfficePPTXFile/PPTXFormat/Logic/Pic.cpp
ASCOfficePPTXFile/PPTXFormat/Logic/Pic.cpp
+1
-1
Common/DocxFormat/Source/DocxFormat/Endnote.h
Common/DocxFormat/Source/DocxFormat/Endnote.h
+1
-1
Common/DocxFormat/Source/DocxFormat/Footnote.h
Common/DocxFormat/Source/DocxFormat/Footnote.h
+1
-1
No files found.
ASCOfficeDocFile/DocDocxConverter/IVisitable.h
View file @
24d9b99a
...
@@ -33,6 +33,8 @@
...
@@ -33,6 +33,8 @@
#include "IMapping.h"
#include "IMapping.h"
#define GETBITS(from, numL, numH) ((from & (((1 << (numH - numL + 1)) - 1) << numL)) >> numL)
namespace
DocFileFormat
namespace
DocFileFormat
{
{
class
IVisitable
class
IVisitable
...
...
ASCOfficeDocFile/DocDocxConverter/PropertiesMapping.cpp
View file @
24d9b99a
...
@@ -462,10 +462,18 @@ namespace DocFileFormat
...
@@ -462,10 +462,18 @@ namespace DocFileFormat
void
PropertiesMapping
::
appendShading
(
XMLTools
::
XMLElement
*
parent
,
const
ShadingDescriptor
&
desc
)
void
PropertiesMapping
::
appendShading
(
XMLTools
::
XMLElement
*
parent
,
const
ShadingDescriptor
&
desc
)
{
{
std
::
wstring
pattern
=
getShadingPattern
(
desc
);
if
(
(
parent
!=
NULL
)
&&
(
desc
.
shadingSpecialValue
==
shadingSpecialValueNormal
))
if
(
(
parent
!=
NULL
)
&&
(
desc
.
shadingSpecialValue
==
shadingSpecialValueNormal
))
{
{
XMLTools
::
XMLElement
shd
(
L"w:shd"
);
XMLTools
::
XMLElement
shd
(
L"w:shd"
);
//pattern
XMLTools
::
XMLAttribute
val
(
L"w:val"
);
val
.
SetValue
(
pattern
);
shd
.
AppendAttribute
(
val
);
if
(
pattern
!=
L"nil"
)
{
//fill color
//fill color
XMLTools
::
XMLAttribute
fill
(
L"w:fill"
);
XMLTools
::
XMLAttribute
fill
(
L"w:fill"
);
...
@@ -507,12 +515,7 @@ namespace DocFileFormat
...
@@ -507,12 +515,7 @@ namespace DocFileFormat
}
}
shd
.
AppendAttribute
(
color
);
shd
.
AppendAttribute
(
color
);
}
//pattern
XMLTools
::
XMLAttribute
val
(
L"w:val"
);
val
.
SetValue
(
getShadingPattern
(
desc
));
shd
.
AppendAttribute
(
val
);
parent
->
RemoveChildByName
(
L"w:shd"
);
parent
->
RemoveChildByName
(
L"w:shd"
);
parent
->
AppendChild
(
shd
);
parent
->
AppendChild
(
shd
);
}
}
...
...
ASCOfficeDocFile/DocDocxConverter/ShadingDescriptor.h
View file @
24d9b99a
...
@@ -174,9 +174,9 @@ namespace DocFileFormat
...
@@ -174,9 +174,9 @@ namespace DocFileFormat
//it's a Word 97 SPRM
//it's a Word 97 SPRM
short
val
=
FormatUtils
::
BytesToInt16
(
bytes
,
0
,
size
);
short
val
=
FormatUtils
::
BytesToInt16
(
bytes
,
0
,
size
);
icoFore
=
(
val
&
0x1F
);
icoFore
=
GETBITS
(
val
,
0
,
4
);
icoBack
=
((
val
>>
5
)
&
0x1F
);
icoBack
=
GETBITS
(
val
,
5
,
9
);
ipat
=
(
ShadingPattern
)
((
val
>>
10
)
&
0x3F
);
ipat
=
(
ShadingPattern
)
GETBITS
(
val
,
10
,
15
);
shadingType
=
shadingTypeShd80
;
shadingType
=
shadingTypeShd80
;
...
@@ -209,7 +209,7 @@ namespace DocFileFormat
...
@@ -209,7 +209,7 @@ namespace DocFileFormat
else
if
(
0x0F
==
icoFore
)
{
cvFore
=
RGB2
(
0x80
,
0x80
,
0x80
);
}
else
if
(
0x0F
==
icoFore
)
{
cvFore
=
RGB2
(
0x80
,
0x80
,
0x80
);
}
else
if
(
0x10
==
icoFore
)
{
cvFore
=
RGB2
(
0xC0
,
0xC0
,
0xC0
);
}
else
if
(
0x10
==
icoFore
)
{
cvFore
=
RGB2
(
0xC0
,
0xC0
,
0xC0
);
}
if
(
0x00
==
icoBack
)
{
cvBack
=
RGB2
(
0x
00
,
0x00
,
0x00
);
cvBackAuto
=
true
;
}
if
(
0x00
==
icoBack
)
{
cvBack
=
RGB2
(
0x
FF
,
0xFF
,
0xFF
);
cvBackAuto
=
true
;
}
else
if
(
0x01
==
icoBack
)
{
cvBack
=
RGB2
(
0x00
,
0x00
,
0x00
);
}
else
if
(
0x01
==
icoBack
)
{
cvBack
=
RGB2
(
0x00
,
0x00
,
0x00
);
}
else
if
(
0x02
==
icoBack
)
{
cvBack
=
RGB2
(
0x00
,
0x00
,
0xFF
);
}
else
if
(
0x02
==
icoBack
)
{
cvBack
=
RGB2
(
0x00
,
0x00
,
0xFF
);
}
else
if
(
0x03
==
icoBack
)
{
cvBack
=
RGB2
(
0x00
,
0xFF
,
0xFF
);
}
else
if
(
0x03
==
icoBack
)
{
cvBack
=
RGB2
(
0x00
,
0xFF
,
0xFF
);
}
...
...
ASCOfficeDocFile/DocDocxConverter/TableCellPropertiesMapping.cpp
View file @
24d9b99a
...
@@ -354,7 +354,7 @@ namespace DocFileFormat
...
@@ -354,7 +354,7 @@ namespace DocFileFormat
void
TableCellPropertiesMapping
::
apppendCellShading
(
unsigned
char
*
sprmArg
,
int
size
,
int
cellIndex
)
void
TableCellPropertiesMapping
::
apppendCellShading
(
unsigned
char
*
sprmArg
,
int
size
,
int
cellIndex
)
{
{
if
(
sprmArg
)
if
(
sprmArg
&&
cellIndex
>=
0
)
{
{
//shading descriptor can have 10 bytes (Word 2000) or 2 bytes (Word 97)
//shading descriptor can have 10 bytes (Word 2000) or 2 bytes (Word 97)
int
shdLength
=
2
;
int
shdLength
=
2
;
...
...
ASCOfficeDocxFile2/BinReader/HeaderFooterWriter.h
View file @
24d9b99a
...
@@ -100,10 +100,10 @@ xmlns:wps=\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\"
...
@@ -100,10 +100,10 @@ xmlns:wps=\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\"
mc:Ignorable=
\"
w14 wp14
\"
>"
);
mc:Ignorable=
\"
w14 wp14
\"
>"
);
static
std
::
wstring
g_string_ftr_End
=
_T
(
"</w:ftr>"
);
static
std
::
wstring
g_string_ftr_End
=
_T
(
"</w:ftr>"
);
static
std
::
wstring
g_string_footnotes_Start
=
_T
(
"<?xml version=
\"
1.0
\"
encoding=
\"
UTF-8
\"
standalone=
\"
yes
\"
?><w:footnotes xmlns:wpc=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas
\"
xmlns:mc=
\"
http://schemas.openxmlformats.org/markup-compatibility/2006
\"
xmlns:o=
\"
urn:schemas-microsoft-com:office:office
\"
xmlns:r=
\"
http://schemas.openxmlformats.org/officeDocument/2006/relationships
\"
xmlns:m=
\"
http://schemas.openxmlformats.org/officeDocument/2006/math
\"
xmlns:v=
\"
urn:schemas-microsoft-com:vml
\"
xmlns:wp14=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing
\"
xmlns:wp=
\"
http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing
\"
xmlns:w10=
\"
urn:schemas-microsoft-com:office:word
\"
xmlns:w=
\"
http://schemas.openxmlformats.org/wordprocessingml/2006/main
\"
xmlns:w14=
\"
http://schemas.microsoft.com/office/word/2010/wordml
\"
xmlns:wpg=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingGroup
\"
xmlns:wpi=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingInk
\"
xmlns:wne=
\"
http://schemas.microsoft.com/office/word/2006/wordml
\"
xmlns:wps=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingShape
\"
mc:Ignorable=
\"
w14 wp14
\"
>"
);
static
std
::
wstring
g_string_footnotes_Start
=
_T
(
"<?xml version=
\"
1.0
\"
encoding=
\"
UTF-8
\"
standalone=
\"
yes
\"
?><w:footnotes xmlns:wpc=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas
\"
xmlns:mc=
\"
http://schemas.openxmlformats.org/markup-compatibility/2006
\"
xmlns:o=
\"
urn:schemas-microsoft-com:office:office
\"
xmlns:r=
\"
http://schemas.openxmlformats.org/officeDocument/2006/relationships
\"
xmlns:m=
\"
http://schemas.openxmlformats.org/officeDocument/2006/math
\"
xmlns:v=
\"
urn:schemas-microsoft-com:vml
\"
xmlns:wp14=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing
\"
xmlns:wp=
\"
http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing
\"
xmlns:w10=
\"
urn:schemas-microsoft-com:office:word
\"
xmlns:w=
\"
http://schemas.openxmlformats.org/wordprocessingml/2006/main
\"
xmlns:w14=
\"
http://schemas.microsoft.com/office/word/2010/wordml
\"
xmlns:wpg=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingGroup
\"
xmlns:wpi=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingInk
\"
xmlns:wne=
\"
http://schemas.microsoft.com/office/word/2006/wordml
\"
xmlns:wps=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingShape
\"
xmlns:a=
\"
http://schemas.openxmlformats.org/drawingml/2006/main
\"
mc:Ignorable=
\"
w14 wp14
\"
>"
);
static
std
::
wstring
g_string_footnotes_End
=
_T
(
"</w:footnotes>"
);
static
std
::
wstring
g_string_footnotes_End
=
_T
(
"</w:footnotes>"
);
static
std
::
wstring
g_string_endnotes_Start
=
_T
(
"<?xml version=
\"
1.0
\"
encoding=
\"
UTF-8
\"
standalone=
\"
yes
\"
?><w:endnotes xmlns:wpc=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas
\"
xmlns:mc=
\"
http://schemas.openxmlformats.org/markup-compatibility/2006
\"
xmlns:o=
\"
urn:schemas-microsoft-com:office:office
\"
xmlns:r=
\"
http://schemas.openxmlformats.org/officeDocument/2006/relationships
\"
xmlns:m=
\"
http://schemas.openxmlformats.org/officeDocument/2006/math
\"
xmlns:v=
\"
urn:schemas-microsoft-com:vml
\"
xmlns:wp14=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing
\"
xmlns:wp=
\"
http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing
\"
xmlns:w10=
\"
urn:schemas-microsoft-com:office:word
\"
xmlns:w=
\"
http://schemas.openxmlformats.org/wordprocessingml/2006/main
\"
xmlns:w14=
\"
http://schemas.microsoft.com/office/word/2010/wordml
\"
xmlns:wpg=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingGroup
\"
xmlns:wpi=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingInk
\"
xmlns:wne=
\"
http://schemas.microsoft.com/office/word/2006/wordml
\"
xmlns:wps=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingShape
\"
mc:Ignorable=
\"
w14 wp14
\"
>"
);
static
std
::
wstring
g_string_endnotes_Start
=
_T
(
"<?xml version=
\"
1.0
\"
encoding=
\"
UTF-8
\"
standalone=
\"
yes
\"
?><w:endnotes xmlns:wpc=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas
\"
xmlns:mc=
\"
http://schemas.openxmlformats.org/markup-compatibility/2006
\"
xmlns:o=
\"
urn:schemas-microsoft-com:office:office
\"
xmlns:r=
\"
http://schemas.openxmlformats.org/officeDocument/2006/relationships
\"
xmlns:m=
\"
http://schemas.openxmlformats.org/officeDocument/2006/math
\"
xmlns:v=
\"
urn:schemas-microsoft-com:vml
\"
xmlns:wp14=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing
\"
xmlns:wp=
\"
http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing
\"
xmlns:w10=
\"
urn:schemas-microsoft-com:office:word
\"
xmlns:w=
\"
http://schemas.openxmlformats.org/wordprocessingml/2006/main
\"
xmlns:w14=
\"
http://schemas.microsoft.com/office/word/2010/wordml
\"
xmlns:wpg=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingGroup
\"
xmlns:wpi=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingInk
\"
xmlns:wne=
\"
http://schemas.microsoft.com/office/word/2006/wordml
\"
xmlns:wps=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingShape
\"
xmlns:a=
\"
http://schemas.openxmlformats.org/drawingml/2006/main
\"
mc:Ignorable=
\"
w14 wp14
\"
>"
);
static
std
::
wstring
g_string_endnotes_End
=
_T
(
"</w:endnotes>"
);
static
std
::
wstring
g_string_endnotes_End
=
_T
(
"</w:endnotes>"
);
class
HeaderFooterWriter
class
HeaderFooterWriter
...
...
ASCOfficePPTXFile/PPTXFormat/Logic/CNvGraphicFramePr.h
View file @
24d9b99a
...
@@ -112,6 +112,10 @@ namespace PPTX
...
@@ -112,6 +112,10 @@ namespace PPTX
virtual
std
::
wstring
toXML
()
const
virtual
std
::
wstring
toXML
()
const
{
{
std
::
wstring
namespaceLocks
=
L"a"
;
std
::
wstring
namespaceLocksLink
=
PPTX
::
g_Namespaces
.
a
.
m_strLink
;
//if (m_namespace == L"wp") namespaceLocks = L"wp";
XmlUtils
::
CAttribute
oAttr
;
XmlUtils
::
CAttribute
oAttr
;
oAttr
.
Write
(
_T
(
"noChangeAspect"
),
noChangeAspect
);
oAttr
.
Write
(
_T
(
"noChangeAspect"
),
noChangeAspect
);
oAttr
.
Write
(
_T
(
"noDrilldown"
),
noDrilldown
);
oAttr
.
Write
(
_T
(
"noDrilldown"
),
noDrilldown
);
...
@@ -120,21 +124,23 @@ namespace PPTX
...
@@ -120,21 +124,23 @@ namespace PPTX
oAttr
.
Write
(
_T
(
"noResize"
),
noResize
);
oAttr
.
Write
(
_T
(
"noResize"
),
noResize
);
oAttr
.
Write
(
_T
(
"noSelect"
),
noSelect
);
oAttr
.
Write
(
_T
(
"noSelect"
),
noSelect
);
std
::
wstring
namespaceLocks
=
L"a"
;
bool
isAttrEmpty
=
oAttr
.
m_strValue
.
empty
()
;
//if (m_namespace == L"wp") namespaceLocks = L"wp"
;
oAttr
.
Write
(
_T
(
"xmlns:"
)
+
namespaceLocks
,
namespaceLocksLink
)
;
return
XmlUtils
::
CreateNode
(
m_namespace
+
L":cNvGraphicFramePr"
,
oAttr
.
m_strValue
.
empty
()
?
L""
:
XmlUtils
::
CreateNode
(
namespaceLocks
+
L":graphicFrameLocks"
,
oAttr
));
return
XmlUtils
::
CreateNode
(
m_namespace
+
L":cNvGraphicFramePr"
,
isAttrEmpty
?
L""
:
XmlUtils
::
CreateNode
(
namespaceLocks
+
L":graphicFrameLocks"
,
oAttr
));
}
}
virtual
void
toXmlWriter
(
NSBinPptxRW
::
CXmlWriter
*
pWriter
)
const
virtual
void
toXmlWriter
(
NSBinPptxRW
::
CXmlWriter
*
pWriter
)
const
{
{
std
::
wstring
namespace_
=
m_namespace
;
std
::
wstring
namespace_
=
m_namespace
;
std
::
wstring
namespaceLock_
=
L"a"
;
std
::
wstring
namespaceLock_
=
L"a"
;
std
::
wstring
namespaceLockLink_
=
PPTX
::
g_Namespaces
.
a
.
m_strLink
;
if
(
pWriter
->
m_lDocType
==
XMLWRITER_DOC_TYPE_XLSX
)
namespace_
=
L"xdr"
;
if
(
pWriter
->
m_lDocType
==
XMLWRITER_DOC_TYPE_XLSX
)
namespace_
=
L"xdr"
;
if
(
pWriter
->
m_lDocType
==
XMLWRITER_DOC_TYPE_DOCX
)
if
(
pWriter
->
m_lDocType
==
XMLWRITER_DOC_TYPE_DOCX
)
{
{
namespaceLock_
=
L"a"
;
namespaceLock_
=
L"a"
;
namespaceLockLink_
=
PPTX
::
g_Namespaces
.
a
.
m_strLink
;
namespace_
=
L"wp"
;
namespace_
=
L"wp"
;
}
}
...
@@ -145,7 +151,7 @@ namespace PPTX
...
@@ -145,7 +151,7 @@ namespace PPTX
pWriter
->
StartNode
(
namespaceLock_
+
L":graphicFrameLocks"
);
pWriter
->
StartNode
(
namespaceLock_
+
L":graphicFrameLocks"
);
pWriter
->
StartAttributes
();
pWriter
->
StartAttributes
();
pWriter
->
WriteAttribute
(
_T
(
"xmlns:"
)
+
namespaceLock_
,
namespaceLockLink_
);
pWriter
->
WriteAttribute
(
_T
(
"noChangeAspect"
),
noChangeAspect
);
pWriter
->
WriteAttribute
(
_T
(
"noChangeAspect"
),
noChangeAspect
);
pWriter
->
WriteAttribute
(
_T
(
"noDrilldown"
),
noDrilldown
);
pWriter
->
WriteAttribute
(
_T
(
"noDrilldown"
),
noDrilldown
);
pWriter
->
WriteAttribute
(
_T
(
"noGrp"
),
noGrp
);
pWriter
->
WriteAttribute
(
_T
(
"noGrp"
),
noGrp
);
...
...
ASCOfficePPTXFile/PPTXFormat/Logic/Pic.cpp
View file @
24d9b99a
...
@@ -743,7 +743,7 @@ namespace PPTX
...
@@ -743,7 +743,7 @@ namespace PPTX
if
(
oleObject
.
IsInit
()
&&
oleObject
->
isValid
())
if
(
oleObject
.
IsInit
()
&&
oleObject
->
isValid
())
{
{
bOle
=
true
;
bOle
=
true
;
pWriter
->
WriteString
(
L"<p:graphicFrame><p:nvGraphicFramePr><p:cNvPr id=
\"
0
\"
name=
\"\"
/><p:cNvGraphicFramePr><a:graphicFrameLocks noChangeAspect=
\"
1
\"
/></p:cNvGraphicFramePr><p:nvPr><p:extLst><p:ext uri=
\"
{D42A27DB-BD31-4B8C-83A1-F6EECF244321}
\"
><p14:modId xmlns:p14=
\"
http://schemas.microsoft.com/office/powerpoint/2010/main
\"
val=
\"
2157879785
\"
/></p:ext></p:extLst></p:nvPr></p:nvGraphicFramePr>"
);
pWriter
->
WriteString
(
L"<p:graphicFrame><p:nvGraphicFramePr><p:cNvPr id=
\"
0
\"
name=
\"\"
/><p:cNvGraphicFramePr><a:graphicFrameLocks
xmlns:a=
\"
http://schemas.openxmlformats.org/drawingml/2006/main
\"
noChangeAspect=
\"
1
\"
/></p:cNvGraphicFramePr><p:nvPr><p:extLst><p:ext uri=
\"
{D42A27DB-BD31-4B8C-83A1-F6EECF244321}
\"
><p14:modId xmlns:p14=
\"
http://schemas.microsoft.com/office/powerpoint/2010/main
\"
val=
\"
2157879785
\"
/></p:ext></p:extLst></p:nvPr></p:nvGraphicFramePr>"
);
if
(
spPr
.
xfrm
.
IsInit
())
if
(
spPr
.
xfrm
.
IsInit
())
{
{
std
::
wstring
oldNamespace
=
spPr
.
xfrm
->
m_ns
;
std
::
wstring
oldNamespace
=
spPr
.
xfrm
->
m_ns
;
...
...
Common/DocxFormat/Source/DocxFormat/Endnote.h
View file @
24d9b99a
...
@@ -106,7 +106,7 @@ namespace OOX
...
@@ -106,7 +106,7 @@ namespace OOX
virtual
void
write
(
const
CPath
&
oPath
,
const
CPath
&
oDirectory
,
CContentTypes
&
oContent
)
const
virtual
void
write
(
const
CPath
&
oPath
,
const
CPath
&
oDirectory
,
CContentTypes
&
oContent
)
const
{
{
std
::
wstring
sXml
;
std
::
wstring
sXml
;
sXml
=
_T
(
"<?xml version=
\"
1.0
\"
encoding=
\"
UTF-8
\"
standalone=
\"
yes
\"
?><w:endnotes xmlns:wpc=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas
\"
xmlns:mc=
\"
http://schemas.openxmlformats.org/markup-compatibility/2006
\"
xmlns:o=
\"
urn:schemas-microsoft-com:office:office
\"
xmlns:r=
\"
http://schemas.openxmlformats.org/officeDocument/2006/relationships
\"
xmlns:m=
\"
http://schemas.openxmlformats.org/officeDocument/2006/math
\"
xmlns:v=
\"
urn:schemas-microsoft-com:vml
\"
xmlns:wp14=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing
\"
xmlns:wp=
\"
http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing
\"
xmlns:w10=
\"
urn:schemas-microsoft-com:office:word
\"
xmlns:w=
\"
http://schemas.openxmlformats.org/wordprocessingml/2006/main
\"
xmlns:w14=
\"
http://schemas.microsoft.com/office/word/2010/wordml
\"
xmlns:wpg=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingGroup
\"
xmlns:wpi=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingInk
\"
xmlns:wne=
\"
http://schemas.microsoft.com/office/word/2006/wordml
\"
xmlns:wps=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingShape
\"
mc:Ignorable=
\"
w14 wp14
\"
>"
);
sXml
=
_T
(
"<?xml version=
\"
1.0
\"
encoding=
\"
UTF-8
\"
standalone=
\"
yes
\"
?><w:endnotes xmlns:wpc=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas
\"
xmlns:mc=
\"
http://schemas.openxmlformats.org/markup-compatibility/2006
\"
xmlns:o=
\"
urn:schemas-microsoft-com:office:office
\"
xmlns:r=
\"
http://schemas.openxmlformats.org/officeDocument/2006/relationships
\"
xmlns:m=
\"
http://schemas.openxmlformats.org/officeDocument/2006/math
\"
xmlns:v=
\"
urn:schemas-microsoft-com:vml
\"
xmlns:wp14=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing
\"
xmlns:wp=
\"
http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing
\"
xmlns:w10=
\"
urn:schemas-microsoft-com:office:word
\"
xmlns:w=
\"
http://schemas.openxmlformats.org/wordprocessingml/2006/main
\"
xmlns:w14=
\"
http://schemas.microsoft.com/office/word/2010/wordml
\"
xmlns:wpg=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingGroup
\"
xmlns:wpi=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingInk
\"
xmlns:wne=
\"
http://schemas.microsoft.com/office/word/2006/wordml
\"
xmlns:wps=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingShape
\"
xmlns:a=
\"
http://schemas.openxmlformats.org/drawingml/2006/main
\"
mc:Ignorable=
\"
w14 wp14
\"
>"
);
for
(
unsigned
int
nIndex
=
0
;
nIndex
<
m_arrEndnote
.
size
();
nIndex
++
)
for
(
unsigned
int
nIndex
=
0
;
nIndex
<
m_arrEndnote
.
size
();
nIndex
++
)
{
{
if
(
m_arrEndnote
[
nIndex
]
)
if
(
m_arrEndnote
[
nIndex
]
)
...
...
Common/DocxFormat/Source/DocxFormat/Footnote.h
View file @
24d9b99a
...
@@ -104,7 +104,7 @@ namespace OOX
...
@@ -104,7 +104,7 @@ namespace OOX
virtual
void
write
(
const
CPath
&
oPath
,
const
CPath
&
oDirectory
,
CContentTypes
&
oContent
)
const
virtual
void
write
(
const
CPath
&
oPath
,
const
CPath
&
oDirectory
,
CContentTypes
&
oContent
)
const
{
{
std
::
wstring
sXml
;
std
::
wstring
sXml
;
sXml
=
_T
(
"<?xml version=
\"
1.0
\"
encoding=
\"
UTF-8
\"
standalone=
\"
yes
\"
?><w:footnotes xmlns:wpc=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas
\"
xmlns:mc=
\"
http://schemas.openxmlformats.org/markup-compatibility/2006
\"
xmlns:o=
\"
urn:schemas-microsoft-com:office:office
\"
xmlns:r=
\"
http://schemas.openxmlformats.org/officeDocument/2006/relationships
\"
xmlns:m=
\"
http://schemas.openxmlformats.org/officeDocument/2006/math
\"
xmlns:v=
\"
urn:schemas-microsoft-com:vml
\"
xmlns:wp14=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing
\"
xmlns:wp=
\"
http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing
\"
xmlns:w10=
\"
urn:schemas-microsoft-com:office:word
\"
xmlns:w=
\"
http://schemas.openxmlformats.org/wordprocessingml/2006/main
\"
xmlns:w14=
\"
http://schemas.microsoft.com/office/word/2010/wordml
\"
xmlns:wpg=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingGroup
\"
xmlns:wpi=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingInk
\"
xmlns:wne=
\"
http://schemas.microsoft.com/office/word/2006/wordml
\"
xmlns:wps=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingShape
\"
mc:Ignorable=
\"
w14 wp14
\"
>"
);
sXml
=
_T
(
"<?xml version=
\"
1.0
\"
encoding=
\"
UTF-8
\"
standalone=
\"
yes
\"
?><w:footnotes xmlns:wpc=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas
\"
xmlns:mc=
\"
http://schemas.openxmlformats.org/markup-compatibility/2006
\"
xmlns:o=
\"
urn:schemas-microsoft-com:office:office
\"
xmlns:r=
\"
http://schemas.openxmlformats.org/officeDocument/2006/relationships
\"
xmlns:m=
\"
http://schemas.openxmlformats.org/officeDocument/2006/math
\"
xmlns:v=
\"
urn:schemas-microsoft-com:vml
\"
xmlns:wp14=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing
\"
xmlns:wp=
\"
http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing
\"
xmlns:w10=
\"
urn:schemas-microsoft-com:office:word
\"
xmlns:w=
\"
http://schemas.openxmlformats.org/wordprocessingml/2006/main
\"
xmlns:w14=
\"
http://schemas.microsoft.com/office/word/2010/wordml
\"
xmlns:wpg=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingGroup
\"
xmlns:wpi=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingInk
\"
xmlns:wne=
\"
http://schemas.microsoft.com/office/word/2006/wordml
\"
xmlns:wps=
\"
http://schemas.microsoft.com/office/word/2010/wordprocessingShape
\"
xmlns:a=
\"
http://schemas.openxmlformats.org/drawingml/2006/main
\"
mc:Ignorable=
\"
w14 wp14
\"
>"
);
for
(
unsigned
int
nIndex
=
0
;
nIndex
<
m_arrFootnote
.
size
();
nIndex
++
)
for
(
unsigned
int
nIndex
=
0
;
nIndex
<
m_arrFootnote
.
size
();
nIndex
++
)
{
{
if
(
m_arrFootnote
[
nIndex
]
)
if
(
m_arrFootnote
[
nIndex
]
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment