Commit 98551309 authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

В логи добавлена версия SDK.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@62136 954022d7-b5bf-4e40-9824-e11837661b57
parent 44c22388
......@@ -332,6 +332,7 @@ function CTableId()
// Long : LastPoint
// Long : SumIndex
// Long : DeletedIndex
// String : Версия SDK
Writer.WriteLong(Data.FileCheckSum);
Writer.WriteLong(Data.FileSize);
......@@ -342,6 +343,7 @@ function CTableId()
Writer.WriteLong(Data.LastPoint);
Writer.WriteLong(Data.SumIndex);
Writer.WriteLong(null === Data.DeletedIndex ? -10 : Data.DeletedIndex);
Writer.WriteString2("@@Version.@@Build.@@Rev");
break;
}
......@@ -409,6 +411,7 @@ function CTableId()
// Long : LastPoint
// Long : SumIndex
// Long : DeletedIndex
// String : Версия SDK
var FileCheckSum = Reader.GetLong();
var FileSize = Reader.GetLong();
......@@ -419,6 +422,7 @@ function CTableId()
var LastPoint = Reader.GetLong();
var SumIndex = Reader.GetLong();
var DeletedIndex = Reader.GetLong();
var VersionString= Reader.GetString2();
// // CollaborativeEditing LOG
// console.log("ItemsCount2 " + CollaborativeEditing.m_nErrorLog_PointChangesCount);
......
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