Commit c74c670e authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

documentCallbackUrl to base

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@66375 954022d7-b5bf-4e40-9824-e11837661b57
parent e68d7a87
...@@ -22,6 +22,7 @@ function baseEditorsApi(name) { ...@@ -22,6 +22,7 @@ function baseEditorsApi(name) {
this.documentId = undefined; this.documentId = undefined;
this.documentUserId = undefined; this.documentUserId = undefined;
this.documentUrl = "null"; this.documentUrl = "null";
this.documentCallbackUrl = undefined; // Ссылка для отправления информации о документе
// Тип состояния на данный момент (сохранение, открытие или никакое) // Тип состояния на данный момент (сохранение, открытие или никакое)
this.advancedOptionsAction = c_oAscAdvancedOptionsAction.None; this.advancedOptionsAction = c_oAscAdvancedOptionsAction.None;
......
...@@ -50,7 +50,6 @@ var editor; ...@@ -50,7 +50,6 @@ var editor;
this.documentFormatSave = c_oAscFileType.XLSX; this.documentFormatSave = c_oAscFileType.XLSX;
this.chartEditor = undefined; this.chartEditor = undefined;
this.documentOpenOptions = undefined; // Опции при открытии (пока только опции для CSV) this.documentOpenOptions = undefined; // Опции при открытии (пока только опции для CSV)
this.documentCallbackUrl = undefined; // Ссылка для отправления информации о документе
// объекты, нужные для отправки в тулбар (шрифты, стили) // объекты, нужные для отправки в тулбар (шрифты, стили)
this._gui_control_colors = null; this._gui_control_colors = null;
...@@ -1503,7 +1502,7 @@ var editor; ...@@ -1503,7 +1502,7 @@ var editor;
if (!(window["NATIVE_EDITOR_ENJINE"] || offlineMode === this.documentUrl)) { if (!(window["NATIVE_EDITOR_ENJINE"] || offlineMode === this.documentUrl)) {
this.CoAuthoringApi.set_url(null); this.CoAuthoringApi.set_url(null);
} }
this.CoAuthoringApi.init(t.User, t.documentId, t.documentCallbackUrl, 'fghhfgsjdgfjs', c_oEditorId.Spreadsheet, t.documentFormatSave); this.CoAuthoringApi.init(this.User, this.documentId, this.documentCallbackUrl, 'fghhfgsjdgfjs', c_oEditorId.Spreadsheet, this.documentFormatSave);
}; };
spreadsheet_api.prototype._onSaveChanges = function(recalcIndexColumns, recalcIndexRows) { spreadsheet_api.prototype._onSaveChanges = function(recalcIndexColumns, recalcIndexRows) {
......
...@@ -6,7 +6,6 @@ var documentTitleWithoutExtention = 'null'; ...@@ -6,7 +6,6 @@ var documentTitleWithoutExtention = 'null';
var documentFormat = 'null'; var documentFormat = 'null';
var documentVKey = null; var documentVKey = null;
var documentFormatSave = c_oAscFileType.PPTX;//пока не во что другое сохранять не можем. var documentFormatSave = c_oAscFileType.PPTX;//пока не во что другое сохранять не можем.
var documentCallbackUrl = undefined; // Ссылка для отправления информации о документе
var c_oSerFormat = { var c_oSerFormat = {
Version : 1, Version : 1,
...@@ -469,7 +468,7 @@ asc_docs_api.prototype._coAuthoringInit = function() { ...@@ -469,7 +468,7 @@ asc_docs_api.prototype._coAuthoringInit = function() {
if (!(window["NATIVE_EDITOR_ENJINE"] || offlineMode === this.documentUrl)) { if (!(window["NATIVE_EDITOR_ENJINE"] || offlineMode === this.documentUrl)) {
this.CoAuthoringApi.set_url(null); this.CoAuthoringApi.set_url(null);
} }
this.CoAuthoringApi.init(this.User, this.documentId, documentCallbackUrl, 'fghhfgsjdgfjs', c_oEditorId.Presentation, documentFormatSave); this.CoAuthoringApi.init(this.User, this.documentId, this.documentCallbackUrl, 'fghhfgsjdgfjs', c_oEditorId.Presentation, documentFormatSave);
// ToDo init other callbacks // ToDo init other callbacks
}; };
...@@ -649,7 +648,7 @@ asc_docs_api.prototype.asc_setDocInfo = function(c_DocInfo) { ...@@ -649,7 +648,7 @@ asc_docs_api.prototype.asc_setDocInfo = function(c_DocInfo) {
this.documentUrl = this.DocInfo.get_Url(); this.documentUrl = this.DocInfo.get_Url();
documentTitle = this.DocInfo.get_Title(); documentTitle = this.DocInfo.get_Title();
documentFormat = this.DocInfo.get_Format(); documentFormat = this.DocInfo.get_Format();
documentCallbackUrl = this.DocInfo.get_CallbackUrl(); this.documentCallbackUrl = this.DocInfo.get_CallbackUrl();
var nIndex = -1; var nIndex = -1;
if (documentTitle) { if (documentTitle) {
nIndex = documentTitle.lastIndexOf("."); nIndex = documentTitle.lastIndexOf(".");
......
...@@ -6,7 +6,6 @@ var documentTitleWithoutExtention = 'null'; ...@@ -6,7 +6,6 @@ var documentTitleWithoutExtention = 'null';
var documentFormat = 'null'; var documentFormat = 'null';
var documentVKey = null; var documentVKey = null;
var documentFormatSave = c_oAscFileType.DOCX; var documentFormatSave = c_oAscFileType.DOCX;
var documentCallbackUrl = undefined; // Ссылка для отправления информации о документе
function CAscSection() function CAscSection()
{ {
...@@ -580,7 +579,7 @@ asc_docs_api.prototype.asc_setDocInfo = function(c_DocInfo) { ...@@ -580,7 +579,7 @@ asc_docs_api.prototype.asc_setDocInfo = function(c_DocInfo) {
this.documentUrl = this.DocInfo.get_Url(); this.documentUrl = this.DocInfo.get_Url();
documentTitle = this.DocInfo.get_Title(); documentTitle = this.DocInfo.get_Title();
documentFormat = this.DocInfo.get_Format(); documentFormat = this.DocInfo.get_Format();
documentCallbackUrl = this.DocInfo.get_CallbackUrl(); this.documentCallbackUrl = this.DocInfo.get_CallbackUrl();
var nIndex = -1; var nIndex = -1;
if (documentTitle) { if (documentTitle) {
nIndex = documentTitle.lastIndexOf("."); nIndex = documentTitle.lastIndexOf(".");
...@@ -1234,7 +1233,7 @@ asc_docs_api.prototype._coAuthoringInit = function() { ...@@ -1234,7 +1233,7 @@ asc_docs_api.prototype._coAuthoringInit = function() {
if (!(window["NATIVE_EDITOR_ENJINE"] || offlineMode === this.documentUrl)) { if (!(window["NATIVE_EDITOR_ENJINE"] || offlineMode === this.documentUrl)) {
this.CoAuthoringApi.set_url(null); this.CoAuthoringApi.set_url(null);
} }
this.CoAuthoringApi.init(this.User, this.documentId, documentCallbackUrl, 'fghhfgsjdgfjs', c_oEditorId.Word, documentFormatSave); this.CoAuthoringApi.init(this.User, this.documentId, this.documentCallbackUrl, 'fghhfgsjdgfjs', c_oEditorId.Word, documentFormatSave);
}; };
// server disconnect // server disconnect
......
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