Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sdkjs
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
sdkjs
Commits
7b2d67b6
Commit
7b2d67b6
authored
May 30, 2017
by
Sergey Konovalov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
open/save CInlineLevelSdt
parent
0d8fafba
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
9 deletions
+22
-9
word/Editor/Serialize2.js
word/Editor/Serialize2.js
+22
-9
No files found.
word/Editor/Serialize2.js
View file @
7b2d67b6
...
...
@@ -1276,7 +1276,7 @@ function BinaryFileWriter(doc, bMailMergeDocx, bMailMergeHtml)
if
(
this
.
copyParams
.
bLockCopyElems
>
0
)
return
;
var
oThis
=
this
;
this
.
bs
.
WriteItem
(
c_oSerParType
.
Sdt
,
function
(){
oThis
.
copyParams
.
bdtw
.
WriteSdt
(
Item
);});
this
.
bs
.
WriteItem
(
c_oSerParType
.
Sdt
,
function
(){
oThis
.
copyParams
.
bdtw
.
WriteSdt
(
Item
,
0
);});
this
.
copyParams
.
itemCount
++
;
}
this
.
CopyEnd
=
function
()
...
...
@@ -4167,7 +4167,7 @@ function BinaryDocumentTableWriter(memory, doc, oMapCommentId, oNumIdMap, copyPa
else
if
(
type_BlockLevelSdt
===
item
.
GetType
())
{
this
.
memory
.
WriteByte
(
c_oSerParType
.
Sdt
);
this
.
bs
.
WriteItemWithLength
(
function
(){
oThis
.
WriteSdt
(
item
);});
this
.
bs
.
WriteItemWithLength
(
function
(){
oThis
.
WriteSdt
(
item
,
0
);});
}
}
if
(
true
==
bSectPr
)
...
...
@@ -4389,7 +4389,11 @@ function BinaryDocumentTableWriter(memory, doc, oMapCommentId, oNumIdMap, copyPa
}
}
break
;
case
para_InlineLevelSdt
:
this
.
bs
.
WriteItem
(
c_oSerParType
.
Sdt
,
function
()
{
oThis
.
WriteSdt
(
item
,
1
);
});
break
;
}
}
if
((
bLastRun
&&
bUseSelection
&&
!
par
.
Selection_CheckParaEnd
())
||
(
selectedAll
!=
undefined
&&
selectedAll
===
false
)
)
...
...
@@ -5316,7 +5320,7 @@ function BinaryDocumentTableWriter(memory, doc, oMapCommentId, oNumIdMap, copyPa
oThis
.
bs
.
WriteItem
(
c_oSerParType
.
OMath
,
function
(){
oThis
.
boMaths
.
WriteArgNodes
(
obj
.
ParaMath
.
Root
);});
oThis
.
bs
.
WriteItem
(
c_oSerRunType
.
pptxDrawing
,
function
()
{
oThis
.
WriteImage
(
obj
);
});
};
this
.
WriteSdt
=
function
(
oSdt
)
this
.
WriteSdt
=
function
(
oSdt
,
type
)
{
var
oThis
=
this
;
if
(
oSdt
.
Pr
)
{
...
...
@@ -5325,8 +5329,12 @@ function BinaryDocumentTableWriter(memory, doc, oMapCommentId, oNumIdMap, copyPa
// if (oSdt.EndPr) {
// this.bs.WriteItem(c_oSerSdt.EndPr, function(){oThis.brPrs.Write_rPr(oSdt.EndPr, null, null);});
// }
if
(
0
===
type
)
{
var
oInnerDocument
=
new
BinaryDocumentTableWriter
(
this
.
memory
,
this
.
Document
,
this
.
oMapCommentId
,
this
.
oNumIdMap
,
this
.
copyParams
,
this
.
saveParams
,
this
.
oBinaryHeaderFooterTableWriter
);
this
.
bs
.
WriteItem
(
c_oSerSdt
.
Content
,
function
(){
oInnerDocument
.
WriteDocumentContent
(
oSdt
.
Content
);});
}
else
if
(
1
===
type
)
{
this
.
bs
.
WriteItem
(
c_oSerSdt
.
Content
,
function
(){
oThis
.
WriteParagraphContent
(
oSdt
,
false
,
false
);});
}
};
this
.
WriteSdtPr
=
function
(
val
)
{
...
...
@@ -9305,9 +9313,14 @@ function Binary_DocumentTableReader(doc, oReadResult, openParams, stream, curFoo
}
}
}
else
if
(
c_oSerParType
.
Sdt
===
type
)
{
res
=
this
.
bcr
.
Read1
(
length
,
function
(
t
,
l
)
{
return
oThis
.
ReadSdt
(
t
,
l
,
null
,
1
,
oParStruct
);
var
oSdt
=
new
AscCommonWord
.
CInlineLevelSdt
();
oSdt
.
Set_Paragraph
(
oParStruct
.
paragraph
);
var
oSdtStruct
=
new
OpenParStruct
(
oSdt
,
oParStruct
.
paragraph
);
res
=
this
.
bcr
.
Read1
(
length
,
function
(
t
,
l
){
return
oThis
.
ReadSdt
(
t
,
l
,
oSdt
,
1
,
oSdtStruct
);
});
oSdtStruct
.
commitAll
();
oParStruct
.
addToContent
(
oSdt
);
}
else
res
=
c_oSerConstants
.
ReadUnknown
;
return
res
;
...
...
@@ -10498,7 +10511,7 @@ function Binary_DocumentTableReader(doc, oReadResult, openParams, stream, curFoo
var
res
=
c_oSerConstants
.
ReadOk
;
var
oThis
=
this
;
if
(
c_oSerSdt
.
Pr
===
type
)
{
if
(
0
===
typeContainer
)
{
if
(
oSdt
)
{
var
sdtPr
=
new
AscCommonWord
.
CSdtPr
();
res
=
this
.
bcr
.
Read1
(
length
,
function
(
t
,
l
)
{
return
oThis
.
ReadSdtPr
(
t
,
l
,
sdtPr
);
...
...
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