Commit 96fc81d5 authored by Ilya Kirillov's avatar Ilya Kirillov

Made some changes in builder script for review report.

parent 343e8893
...@@ -5242,13 +5242,14 @@ function TEST_BUILDER_REPORT() ...@@ -5242,13 +5242,14 @@ function TEST_BUILDER_REPORT()
nRows += oReviewReport[sUserName].length; nRows += oReviewReport[sUserName].length;
} }
nCols = 3; nCols = 4;
oTable = oApi.CreateTable(nCols, nRows); oTable = oApi.CreateTable(nCols, nRows);
oDocument.Push(oTable); oDocument.Push(oTable);
privateFillCell(0, 0, "Name"); privateFillCell(0, 0, "Name");
privateFillCell(0, 1, "Date"); privateFillCell(0, 1, "Date");
privateFillCell(0, 2, "Change"); privateFillCell(0, 2, "Action");
privateFillCell(0, 3, "");
var nCurRow = 1; var nCurRow = 1;
for (var sUserName in oReviewReport) for (var sUserName in oReviewReport)
...@@ -5264,31 +5265,33 @@ function TEST_BUILDER_REPORT() ...@@ -5264,31 +5265,33 @@ function TEST_BUILDER_REPORT()
var sType = oChangeInfo["Type"]; var sType = oChangeInfo["Type"];
if ("TextAdd" === sType) if ("TextAdd" === sType)
{ {
privateFillCell(nCurRow, 2, oChangeInfo["Value"]); privateFillCell(nCurRow, 2, "Added text");
privateFillCell(nCurRow, 3, oChangeInfo["Value"]);
} }
else if ("TextRem" === sType) else if ("TextRem" === sType)
{ {
privateFillCell(nCurRow, 2, oChangeInfo["Value"]).Run.SetStrikeout(true); privateFillCell(nCurRow, 2, "Removed text");
privateFillCell(nCurRow, 3, oChangeInfo["Value"]).Run.SetStrikeout(true);
} }
else if ("TextPr" === sType) else if ("TextPr" === sType)
{ {
privateFillCell(nCurRow, 2, "\<Formatted text\>").Run.SetItalic(true); privateFillCell(nCurRow, 2, "Formatted text");
} }
else if ("ParaAdd" === sType) else if ("ParaAdd" === sType)
{ {
privateFillCell(nCurRow, 2, "\<Added paragraph\>").Run.SetItalic(true); privateFillCell(nCurRow, 2, "Added paragraph");
} }
else if ("ParaRem" === sType) else if ("ParaRem" === sType)
{ {
privateFillCell(nCurRow, 2, "\<Removed paragraph\>").Run.SetItalic(true); privateFillCell(nCurRow, 2, "Removed paragraph");
} }
else if ("ParaPr" === sType) else if ("ParaPr" === sType)
{ {
privateFillCell(nCurRow, 2, "\<Formatted paragraph\>").Run.SetItalic(true); privateFillCell(nCurRow, 2, "Formatted paragraph");
} }
else else
{ {
privateFillCell(nCurRow, 2, "\<Unknown change\>").Run.SetUnderline(true); privateFillCell(nCurRow, 2, "Unknown change");
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment