8.7.1 release
This commit is contained in:
parent
ca10b14989
commit
450d8c4832
83 changed files with 4144 additions and 3965 deletions
|
@ -1,3 +1,7 @@
|
|||
01-JUN-2018: 8.7.1
|
||||
|
||||
- Moves import CSV to insert menu
|
||||
|
||||
31-MAY-2018: 8.7.0
|
||||
|
||||
- Adds editableCssRules style
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
8.7.0
|
||||
8.7.1
|
|
@ -1,7 +1,7 @@
|
|||
CACHE MANIFEST
|
||||
|
||||
# THIS FILE WAS GENERATED. DO NOT MODIFY!
|
||||
# 05/31/2018 08:33 AM
|
||||
# 06/01/2018 01:10 PM
|
||||
|
||||
app.html
|
||||
index.html?offline=1
|
||||
|
|
3481
src/main/webapp/js/app.min.js
vendored
3481
src/main/webapp/js/app.min.js
vendored
File diff suppressed because it is too large
Load diff
278
src/main/webapp/js/atlas-viewer.min.js
vendored
278
src/main/webapp/js/atlas-viewer.min.js
vendored
File diff suppressed because one or more lines are too long
3555
src/main/webapp/js/atlas.min.js
vendored
3555
src/main/webapp/js/atlas.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -2520,7 +2520,7 @@ var ParseDialog = function(editorUi, title, defaultType)
|
|||
editorUi.editor.graph.getModel().endUpdate();
|
||||
}
|
||||
|
||||
editorUi.editor.graph.setSelectionCells(inserted[0]);
|
||||
editorUi.editor.graph.setSelectionCells(inserted);
|
||||
editorUi.editor.graph.scrollCellToVisible(editorUi.editor.graph.getSelectionCell());
|
||||
graph.destroy();
|
||||
container.parentNode.removeChild(container);
|
||||
|
@ -2538,11 +2538,20 @@ var ParseDialog = function(editorUi, title, defaultType)
|
|||
textarea.style.marginBottom = '16px';
|
||||
|
||||
var typeSelect = document.createElement('select');
|
||||
|
||||
if (defaultType == 'formatSql')
|
||||
{
|
||||
typeSelect.style.display = 'none';
|
||||
}
|
||||
|
||||
var listOption = document.createElement('option');
|
||||
listOption.setAttribute('value', 'list');
|
||||
mxUtils.write(listOption, mxResources.get('list'));
|
||||
typeSelect.appendChild(listOption);
|
||||
|
||||
if (defaultType != 'plantUml')
|
||||
{
|
||||
typeSelect.appendChild(listOption);
|
||||
}
|
||||
|
||||
if (defaultType == null || defaultType == 'fromText')
|
||||
{
|
||||
|
@ -2552,17 +2561,21 @@ var ParseDialog = function(editorUi, title, defaultType)
|
|||
var tableOption = document.createElement('option');
|
||||
tableOption.setAttribute('value', 'table');
|
||||
mxUtils.write(tableOption, mxResources.get('formatSql'));
|
||||
typeSelect.appendChild(tableOption);
|
||||
|
||||
if (defaultType == 'formatSql')
|
||||
{
|
||||
typeSelect.appendChild(tableOption);
|
||||
tableOption.setAttribute('selected', 'selected');
|
||||
}
|
||||
|
||||
var diagramOption = document.createElement('option');
|
||||
diagramOption.setAttribute('value', 'diagram');
|
||||
mxUtils.write(diagramOption, mxResources.get('diagram'));
|
||||
typeSelect.appendChild(diagramOption);
|
||||
|
||||
if (defaultType != 'plantUml')
|
||||
{
|
||||
typeSelect.appendChild(diagramOption);
|
||||
}
|
||||
|
||||
var plantUmlSvgOption = document.createElement('option');
|
||||
plantUmlSvgOption.setAttribute('value', 'plantUmlSvg');
|
||||
|
@ -2582,7 +2595,8 @@ var ParseDialog = function(editorUi, title, defaultType)
|
|||
mxUtils.write(plantUmlTxtOption, mxResources.get('plantUml') + ' (' + mxResources.get('text') + ')');
|
||||
|
||||
// Disabled for invalid hosts via CORS headers
|
||||
if (EditorUi.enablePlantUml && Graph.fileSupport && !editorUi.isOffline())
|
||||
if (EditorUi.enablePlantUml && Graph.fileSupport &&
|
||||
!editorUi.isOffline() && defaultType == 'plantUml')
|
||||
{
|
||||
typeSelect.appendChild(plantUmlSvgOption);
|
||||
typeSelect.appendChild(plantUmlPngOption);
|
||||
|
|
|
@ -122,11 +122,6 @@
|
|||
*/
|
||||
EditorUi.prototype.closableScratchpad = true;
|
||||
|
||||
/**
|
||||
* Specifies if PDF export with pages is enabled.
|
||||
*/
|
||||
EditorUi.prototype.showCsvImport = true;
|
||||
|
||||
/**
|
||||
* Capability check for canvas export
|
||||
*/
|
||||
|
@ -159,8 +154,7 @@
|
|||
var ctx = canvas.getContext('2d');
|
||||
ctx.drawImage(img, 0, 0);
|
||||
|
||||
// Works in Chrome, Firefox, Edge and Opera
|
||||
// LATER: Fix security error caused by foreignObjects in Safari for toDataUri (tainted canvas)
|
||||
// Works in Chrome, Firefox, Edge, Safari and Opera
|
||||
var result = canvas.toDataURL('image/png');
|
||||
EditorUi.prototype.useCanvasForExport = result != null && result.length > 6;
|
||||
}
|
||||
|
@ -3025,7 +3019,6 @@
|
|||
*/
|
||||
EditorUi.prototype.isExportToCanvas = function()
|
||||
{
|
||||
// LATER: Fix security error caused by foreignObjects in Safari for toDataUri (tainted canvas)
|
||||
return mxClient.IS_CHROMEAPP || (!this.editor.graph.mathEnabled && this.useCanvasForExport);
|
||||
};
|
||||
|
||||
|
@ -6435,7 +6428,7 @@
|
|||
}
|
||||
}));
|
||||
}
|
||||
else if (file != null && filename != null && ((/(\.vsdx?)($|\?)/i.test(filename)) || /(\.vssx)($|\?)/i.test(filename)))
|
||||
else if (file != null && filename != null && ((/(\.vsdx?)($|\?)/i.test(filename)) || /(\.vssx)($|\?)/i.test(filename)))
|
||||
{
|
||||
// LATER: done and async are a hack before making this asynchronous
|
||||
async = true;
|
||||
|
@ -8649,15 +8642,15 @@
|
|||
{
|
||||
this.openLocalFile(this.emptyDiagramXml, this.defaultFilename, temp);
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
this.loadLibrary(new LocalLibrary(this, xml, name));
|
||||
}
|
||||
catch (e)
|
||||
{
|
||||
this.handleError(e, mxResources.get('errorLoadingFile'));
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
this.loadLibrary(new LocalLibrary(this, xml, name));
|
||||
}
|
||||
catch (e)
|
||||
{
|
||||
this.handleError(e, mxResources.get('errorLoadingFile'));
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -8689,8 +8682,8 @@
|
|||
else
|
||||
{
|
||||
this.handleError({message: mxResources.get((xhr.status == 413) ?
|
||||
'drawingTooLarge' : 'invalidOrMissingFile')},
|
||||
mxResources.get('errorLoadingFile'));
|
||||
'drawingTooLarge' : 'invalidOrMissingFile')},
|
||||
mxResources.get('errorLoadingFile'));
|
||||
}
|
||||
}
|
||||
}));
|
||||
|
@ -8711,7 +8704,7 @@
|
|||
}));
|
||||
}
|
||||
else if (e.target.result.substring(0, 10) == '<mxlibrary')
|
||||
{
|
||||
{
|
||||
this.spinner.stop();
|
||||
|
||||
// Creates new temporary file if library is dropped in splash screen
|
||||
|
@ -8719,16 +8712,16 @@
|
|||
{
|
||||
this.openLocalFile(this.emptyDiagramXml, this.defaultFilename, temp);
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
this.loadLibrary(new LocalLibrary(this, e.target.result, file.name));
|
||||
}
|
||||
catch (e)
|
||||
{
|
||||
this.handleError(e, mxResources.get('errorLoadingFile'));
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
this.loadLibrary(new LocalLibrary(this, e.target.result, file.name));
|
||||
}
|
||||
catch (e)
|
||||
{
|
||||
this.handleError(e, mxResources.get('errorLoadingFile'));
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (file.type.substring(0, 9) == 'image/png')
|
||||
|
|
|
@ -1709,14 +1709,6 @@
|
|||
dlg.init();
|
||||
}, parent);
|
||||
}
|
||||
|
||||
if (editorUi.showCsvImport)
|
||||
{
|
||||
menu.addItem(mxResources.get('csv') + '...', null, function()
|
||||
{
|
||||
editorUi.showImportCsvDialog();
|
||||
}, parent);
|
||||
}
|
||||
})).isEnabled = isGraphEnabled;
|
||||
|
||||
this.put('theme', new Menu(mxUtils.bind(this, function(menu, parent)
|
||||
|
@ -1962,9 +1954,6 @@
|
|||
}
|
||||
})));
|
||||
|
||||
var methods = ['horizontalFlow', 'verticalFlow', '-', 'horizontalTree', 'verticalTree', 'radialTree', '-',
|
||||
'organic', 'circle', '-', 'fromText', 'plantUml', 'formatSql'];
|
||||
|
||||
var addInsertItem = function(menu, parent, title, method)
|
||||
{
|
||||
if (method != 'plantUml' || EditorUi.enablePlantUml)
|
||||
|
@ -1994,28 +1983,28 @@
|
|||
var pt = (graph.isMouseInsertPoint()) ? graph.getInsertPoint() : graph.getFreeInsertPoint();
|
||||
var cell = new mxCell(value, new mxGeometry(pt.x, pt.y, w, h), style);
|
||||
cell.vertex = true;
|
||||
|
||||
graph.getModel().beginUpdate();
|
||||
try
|
||||
{
|
||||
cell = graph.addCell(cell);
|
||||
graph.fireEvent(new mxEventObject('cellsInserted', 'cells', [cell]));
|
||||
}
|
||||
finally
|
||||
{
|
||||
graph.getModel().endUpdate();
|
||||
}
|
||||
|
||||
graph.scrollCellToVisible(cell);
|
||||
graph.setSelectionCell(cell);
|
||||
graph.container.focus();
|
||||
|
||||
graph.getModel().beginUpdate();
|
||||
try
|
||||
{
|
||||
cell = graph.addCell(cell);
|
||||
graph.fireEvent(new mxEventObject('cellsInserted', 'cells', [cell]));
|
||||
}
|
||||
finally
|
||||
{
|
||||
graph.getModel().endUpdate();
|
||||
}
|
||||
|
||||
graph.scrollCellToVisible(cell);
|
||||
graph.setSelectionCell(cell);
|
||||
graph.container.focus();
|
||||
|
||||
if (graph.editAfterInsert)
|
||||
{
|
||||
graph.startEditing(cell);
|
||||
}
|
||||
|
||||
return cell;
|
||||
if (graph.editAfterInsert)
|
||||
{
|
||||
graph.startEditing(cell);
|
||||
}
|
||||
|
||||
return cell;
|
||||
};
|
||||
|
||||
editorUi.actions.addAction('insertText', function()
|
||||
|
@ -2051,11 +2040,8 @@
|
|||
}
|
||||
}).isEnabled = isGraphEnabled;
|
||||
|
||||
this.put('insert', new Menu(mxUtils.bind(this, function(menu, parent)
|
||||
var addInsertMenuItems = mxUtils.bind(this, function(menu, parent, methods)
|
||||
{
|
||||
this.addMenuItems(menu, ['insertText', 'insertRectangle', '-', 'insertEllipse', 'insertRhombus', '-', 'insertLink', 'insertImage'], parent);
|
||||
menu.addSeparator(parent);
|
||||
|
||||
for (var i = 0; i < methods.length; i++)
|
||||
{
|
||||
if (methods[i] == '-')
|
||||
|
@ -2067,6 +2053,25 @@
|
|||
addInsertItem(menu, parent, mxResources.get(methods[i]) + '...', methods[i]);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
this.put('insert', new Menu(mxUtils.bind(this, function(menu, parent)
|
||||
{
|
||||
this.addMenuItems(menu, ['insertText', 'insertRectangle', '-', 'insertEllipse', 'insertRhombus', '-', 'insertLink', 'insertImage'], parent);
|
||||
menu.addSeparator(parent);
|
||||
this.addSubmenu('layout', menu, parent);
|
||||
menu.addSeparator(parent);
|
||||
addInsertMenuItems(menu, parent, ['fromText', 'plantUml', '-', 'formatSql']);
|
||||
menu.addItem(mxResources.get('csv') + '...', null, function()
|
||||
{
|
||||
editorUi.showImportCsvDialog();
|
||||
}, parent);
|
||||
})));
|
||||
|
||||
this.put('layout', new Menu(mxUtils.bind(this, function(menu, parent)
|
||||
{
|
||||
addInsertMenuItems(menu, parent, ['horizontalFlow', 'verticalFlow', '-', 'horizontalTree',
|
||||
'verticalTree', 'radialTree', '-', 'organic', 'circle']);
|
||||
})));
|
||||
|
||||
this.put('openRecent', new Menu(function(menu, parent)
|
||||
|
|
|
@ -311,7 +311,6 @@ EditorUi.initMinimalTheme = function()
|
|||
HoverIcons.prototype.inactiveOpacity = 25;
|
||||
Format.prototype.showCloseButton = false;
|
||||
EditorUi.prototype.closableScratchpad = false;
|
||||
EditorUi.prototype.showCsvImport = false;
|
||||
EditorUi.prototype.footerHeight = 0;
|
||||
Graph.prototype.editAfterInsert = true;
|
||||
|
||||
|
|
|
@ -446,7 +446,7 @@ Graph.prototype.createViewState = function(node)
|
|||
tooltips: node.getAttribute('tooltips') != '0',
|
||||
connect: node.getAttribute('connect') != '0',
|
||||
arrows: node.getAttribute('arrows') != '0',
|
||||
mathEnabled: node.getAttribute('math') != '0',
|
||||
mathEnabled: node.getAttribute('math') == '1',
|
||||
selectionCells: null,
|
||||
defaultParent: null,
|
||||
scrollbars: this.defaultScrollbars,
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
Sidebar.prototype.addAWS3AnalyticsPalette = function()
|
||||
{
|
||||
var sb = this;
|
||||
var n = 'dashed=0;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var n = 'dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var gn = 'mxgraph.aws3';
|
||||
var dt = 'aws group amazon web service analytics';
|
||||
var s = 1.5; //scale
|
||||
|
@ -87,7 +87,7 @@
|
|||
Sidebar.prototype.addAWS3ApplicationServicesPalette = function()
|
||||
{
|
||||
var sb = this;
|
||||
var n = 'dashed=0;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var n = 'dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var gn = 'mxgraph.aws3';
|
||||
var dt = 'aws group amazon web service app application services';
|
||||
var s = 1.5; //scale
|
||||
|
@ -112,7 +112,7 @@
|
|||
Sidebar.prototype.addAWS3ArtificialIntelligencePalette = function()
|
||||
{
|
||||
var sb = this;
|
||||
var n = 'dashed=0;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var n = 'dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var gn = 'mxgraph.aws3';
|
||||
var dt = 'aws group amazon web service ai artificial intelligence';
|
||||
var s = 1.5; //scale
|
||||
|
@ -133,7 +133,7 @@
|
|||
Sidebar.prototype.addAWS3BusinessProductivityPalette = function()
|
||||
{
|
||||
var sb = this;
|
||||
var n = 'dashed=0;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var n = 'dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var gn = 'mxgraph.aws3';
|
||||
var dt = 'aws group amazon web service business productivity';
|
||||
var s = 1.5; //scale
|
||||
|
@ -152,7 +152,7 @@
|
|||
Sidebar.prototype.addAWS3ComputePalette = function()
|
||||
{
|
||||
var sb = this;
|
||||
var n = 'dashed=0;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var n = 'dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var gn = 'mxgraph.aws3';
|
||||
var dt = 'aws group amazon web service compute';
|
||||
var s = 1.5; //scale
|
||||
|
@ -259,7 +259,7 @@
|
|||
Sidebar.prototype.addAWS3ContactCenterPalette = function()
|
||||
{
|
||||
var sb = this;
|
||||
var n = 'dashed=0;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var n = 'dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var gn = 'mxgraph.aws3';
|
||||
var dt = 'aws group amazon web service contact center';
|
||||
var s = 1.5; //scale
|
||||
|
@ -274,7 +274,7 @@
|
|||
Sidebar.prototype.addAWS3DatabasePalette = function()
|
||||
{
|
||||
var sb = this;
|
||||
var n = 'dashed=0;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var n = 'dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var gn = 'mxgraph.aws3';
|
||||
var dt = 'aws group amazon web service db database';
|
||||
var s = 1.5; //scale
|
||||
|
@ -349,7 +349,7 @@
|
|||
Sidebar.prototype.addAWS3DesktopAndAppStreamingPalette = function()
|
||||
{
|
||||
var sb = this;
|
||||
var n = 'dashed=0;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var n = 'dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var gn = 'mxgraph.aws3';
|
||||
var dt = 'aws group amazon web service desktop app streaming application';
|
||||
var s = 1.5; //scale
|
||||
|
@ -366,7 +366,7 @@
|
|||
Sidebar.prototype.addAWS3DeveloperToolsPalette = function()
|
||||
{
|
||||
var sb = this;
|
||||
var n = 'dashed=0;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var n = 'dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var gn = 'mxgraph.aws3';
|
||||
var dt = 'aws group amazon web service dev developer tools';
|
||||
var s = 1.5; //scale
|
||||
|
@ -391,7 +391,7 @@
|
|||
Sidebar.prototype.addAWS3GameDevelopmentPalette = function()
|
||||
{
|
||||
var sb = this;
|
||||
var n = 'dashed=0;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var n = 'dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var gn = 'mxgraph.aws3';
|
||||
var dt = 'aws group amazon web service game development';
|
||||
var s = 1.5; //scale
|
||||
|
@ -406,7 +406,7 @@
|
|||
Sidebar.prototype.addAWS3GeneralPalette = function()
|
||||
{
|
||||
var sb = this;
|
||||
var n = 'dashed=0;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var n = 'dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var gn = 'mxgraph.aws3';
|
||||
var dt = 'aws group amazon web service general';
|
||||
var s = 1.5; //scale
|
||||
|
@ -543,7 +543,7 @@
|
|||
Sidebar.prototype.addAWS3InternetOfThingsPalette = function()
|
||||
{
|
||||
var sb = this;
|
||||
var n = 'dashed=0;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var n = 'dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var gn = 'mxgraph.aws3';
|
||||
var dt = 'aws group amazon web service iot internet of things';
|
||||
var s = 1.5; //scale
|
||||
|
@ -642,7 +642,7 @@
|
|||
Sidebar.prototype.addAWS3ManagementToolsPalette = function()
|
||||
{
|
||||
var sb = this;
|
||||
var n = 'dashed=0;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var n = 'dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var gn = 'mxgraph.aws3';
|
||||
var dt = 'aws group amazon web service management tools';
|
||||
var s = 1.5; //scale
|
||||
|
@ -729,7 +729,7 @@
|
|||
Sidebar.prototype.addAWS3MessagingPalette = function()
|
||||
{
|
||||
var sb = this;
|
||||
var n = 'dashed=0;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var n = 'dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var gn = 'mxgraph.aws3';
|
||||
var dt = 'aws group amazon web service messaging';
|
||||
var s = 1.5; //scale
|
||||
|
@ -762,7 +762,7 @@
|
|||
Sidebar.prototype.addAWS3MigrationPalette = function()
|
||||
{
|
||||
var sb = this;
|
||||
var n = 'dashed=0;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var n = 'dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var gn = 'mxgraph.aws3';
|
||||
var dt = 'aws group amazon web service migration';
|
||||
var s = 1.5; //scale
|
||||
|
@ -789,7 +789,7 @@
|
|||
Sidebar.prototype.addAWS3MobileServicesPalette = function()
|
||||
{
|
||||
var sb = this;
|
||||
var n = 'dashed=0;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var n = 'dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var gn = 'mxgraph.aws3';
|
||||
var dt = 'aws group amazon web service mobile services';
|
||||
var s = 1.5; //scale
|
||||
|
@ -814,7 +814,7 @@
|
|||
Sidebar.prototype.addAWS3NetworkAndContentDeliveryPalette = function()
|
||||
{
|
||||
var sb = this;
|
||||
var n = 'dashed=0;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var n = 'dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var gn = 'mxgraph.aws3';
|
||||
var dt = 'aws group amazon web service network and content delivery';
|
||||
var s = 1.5; //scale
|
||||
|
@ -875,7 +875,7 @@
|
|||
Sidebar.prototype.addAWS3OnDemandWorkforcePalette = function()
|
||||
{
|
||||
var sb = this;
|
||||
var n = 'dashed=0;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var n = 'dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var gn = 'mxgraph.aws3';
|
||||
var dt = 'aws group amazon web service on demand workforce';
|
||||
var s = 1.5; //scale
|
||||
|
@ -898,7 +898,7 @@
|
|||
Sidebar.prototype.addAWS3SDKPalette = function()
|
||||
{
|
||||
var sb = this;
|
||||
var n = 'dashed=0;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var n = 'dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var gn = 'mxgraph.aws3';
|
||||
var dt = 'aws group amazon web service sdk software development kit';
|
||||
var s = 1.5; //scale
|
||||
|
@ -939,7 +939,7 @@
|
|||
Sidebar.prototype.addAWS3SecurityIdentityAndCompliancePalette = function()
|
||||
{
|
||||
var sb = this;
|
||||
var n = 'dashed=0;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var n = 'dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var gn = 'mxgraph.aws3';
|
||||
var dt = 'aws group amazon web service security and identity compliance';
|
||||
var s = 1.5; //scale
|
||||
|
@ -1002,7 +1002,7 @@
|
|||
Sidebar.prototype.addAWS3StoragePalette = function()
|
||||
{
|
||||
var sb = this;
|
||||
var n = 'dashed=0;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var n = 'dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.aws3.";
|
||||
var gn = 'mxgraph.aws3';
|
||||
var dt = 'aws group amazon web service storage';
|
||||
var s = 1.5; //scale
|
||||
|
@ -1047,7 +1047,4 @@
|
|||
s * 35, s * 50, '', 'EBS', null, null, this.getTagsForStencil(gn, 'ebs', dt).join(' '))
|
||||
]);
|
||||
};
|
||||
|
||||
|
||||
|
||||
})();
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
{
|
||||
var w = 100;
|
||||
var h = 100;
|
||||
var s = mxConstants.STYLE_VERTICAL_LABEL_POSITION + '=bottom;html=1;' + mxConstants.STYLE_VERTICAL_ALIGN + '=top;' + mxConstants.STYLE_STROKEWIDTH + '=1;dashed=0;shape=mxgraph.aws3d.';
|
||||
var s = mxConstants.STYLE_VERTICAL_LABEL_POSITION + '=bottom;html=1;' + mxConstants.STYLE_VERTICAL_ALIGN + '=top;' + mxConstants.STYLE_STROKEWIDTH + '=1;align=center;dashed=0;outlineConnect=0;shape=mxgraph.aws3d.';
|
||||
var gn = 'mxgraph.aws3d';
|
||||
var dt = 'aws 3d amazon web service';
|
||||
|
||||
|
@ -47,24 +47,21 @@
|
|||
w * 0.92, h * 0.8817, '', 'Elastic Load Balancing', null, null, this.getTagsForStencil(gn, 'elastic load balancing elb', dt).join(' ')),
|
||||
this.createVertexTemplateEntry(s + 'elasticMapReduce;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;',
|
||||
w * 1.23, h * 1.33, '', 'Elastic MapReduce', null, null, this.getTagsForStencil(gn, 'elastic mapreduce', dt).join(' ')),
|
||||
// this.createVertexTemplateEntry(s + 'elasticache;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;',
|
||||
// w * 1.23, h * 1.43, '', 'Elasticache', null, null, this.getTagsForStencil(gn, '', dt).join(' ')),
|
||||
|
||||
this.addEntry(dt + 'elasticache', function()
|
||||
{
|
||||
var bg1 = new mxCell('', new mxGeometry(70, 0, 123, 124), s + 'application_server;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;');
|
||||
bg1.vertex = true;
|
||||
var bg2 = new mxCell('', new mxGeometry(0, 40, 123, 124), s + 'application_server;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;');
|
||||
bg2.vertex = true;
|
||||
var bg3 = new mxCell('', new mxGeometry(140, 40, 123, 124), s + 'application_server;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;');
|
||||
bg3.vertex = true;
|
||||
var bg4 = new mxCell('', new mxGeometry(70, 80, 123, 124), s + 'application_server;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;');
|
||||
bg4.vertex = true;
|
||||
|
||||
return sb.createVertexTemplateFromCells([bg1, bg2, bg3, bg4], 264, 204, 'Elasticache');
|
||||
}),
|
||||
|
||||
|
||||
{
|
||||
var bg1 = new mxCell('', new mxGeometry(70, 0, 123, 124), s + 'application_server;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;');
|
||||
bg1.vertex = true;
|
||||
var bg2 = new mxCell('', new mxGeometry(0, 40, 123, 124), s + 'application_server;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;');
|
||||
bg2.vertex = true;
|
||||
var bg3 = new mxCell('', new mxGeometry(140, 40, 123, 124), s + 'application_server;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;');
|
||||
bg3.vertex = true;
|
||||
var bg4 = new mxCell('', new mxGeometry(70, 80, 123, 124), s + 'application_server;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;');
|
||||
bg4.vertex = true;
|
||||
|
||||
return sb.createVertexTemplateFromCells([bg1, bg2, bg3, bg4], 264, 204, 'Elasticache');
|
||||
}),
|
||||
|
||||
this.createVertexTemplateEntry(s + 'email;aspect=fixed;strokeColor=#292929;fillColor=#ffffff;',
|
||||
w * 0.43, h * 0.57, '', 'Email', null, null, this.getTagsForStencil(gn, 'email', dt).join(' ')),
|
||||
this.createVertexTemplateEntry(s + 'email_service;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;',
|
||||
|
@ -77,8 +74,6 @@
|
|||
w * 0.5, h * 0.86, '', 'Image/Video', null, null, this.getTagsForStencil(gn, 'image video', dt).join(' ')),
|
||||
this.createVertexTemplateEntry(s + 'internetGateway;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;',
|
||||
w * 1.167, h * 1.028, '', 'Internet Gateway', null, null, this.getTagsForStencil(gn, 'internet gateway', dt).join(' ')),
|
||||
// this.createVertexTemplateEntry(s + 'kinesisStream;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;',
|
||||
// w * 2.2, h * 1.6, '', 'Kinesis Stream', null, null, this.getTagsForStencil(gn, '', dt).join(' ')),
|
||||
this.createVertexTemplateEntry(s + 'lambda;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;',
|
||||
w * 0.92, h * 1.095, '', 'Lambda', null, null, this.getTagsForStencil(gn, 'lambda', dt).join(' ')),
|
||||
this.createVertexTemplateEntry(s + 'mobile_worker;aspect=fixed;strokeColor=none;fillColor=#777777;',
|
||||
|
@ -119,14 +114,10 @@
|
|||
w * 1.23, h * 0.97, '', 'Spot Instance', null, null, this.getTagsForStencil(gn, 'spot instance', dt).join(' ')),
|
||||
this.createVertexTemplateEntry(s + 'sqs;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;',
|
||||
w * 1.84, h * 2.1275, '', 'SQS', null, null, this.getTagsForStencil(gn, 'sqs', dt).join(' ')),
|
||||
// this.createVertexTemplateEntry(s + 'sqs2;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;',
|
||||
// w * 1.6, h * 0.93, '', 'SQS', null, null, this.getTagsForStencil(gn, '', dt).join(' ')),
|
||||
this.createVertexTemplateEntry(s + 'end_user;strokeColor=none;fillColor=#777777;aspect=fixed;',
|
||||
w * 0.49, h * 1.0046, '', 'User', null, null, this.getTagsForStencil(gn, 'user', dt).join(' ')),
|
||||
this.createVertexTemplateEntry(s + 'vpcGateway;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;',
|
||||
w * 1.167, h * 1.028, '', 'VPC Gateway', null, null, this.getTagsForStencil(gn, 'vpc gateway', dt).join(' ')),
|
||||
// this.createVertexTemplateEntry(s + 'webServer;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;',
|
||||
// w * 1.23, h * 1.06, '', 'Web Server', null, null, this.getTagsForStencil(gn, '', dt).join(' ')),
|
||||
this.createVertexTemplateEntry(s + 'worker;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;',
|
||||
w * 0.74, h * 0.5, '', 'Worker', null, null, this.getTagsForStencil(gn, 'worker', dt).join(' ')),
|
||||
this.createVertexTemplateEntry(s + 'workflowService;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;',
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
Sidebar.prototype.addArchimate3BusinessPalette = function()
|
||||
{
|
||||
var am2 = 'html=1;whiteSpace=wrap;fillColor=#ffff99;strokeColor=#000000;shape=mxgraph.archimate3.';
|
||||
var am3 = 'html=1;whiteSpace=wrap;fillColor=#ffff99;strokeColor=#000000;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.archimate3.';
|
||||
|
||||
// Space savers
|
||||
var sb = this;
|
||||
|
@ -90,7 +91,7 @@
|
|||
[
|
||||
this.createVertexTemplateEntry(am2 + 'application;appType=actor;archiType=square;',
|
||||
w * 150, h * 75, '', 'Business Actor', null, null, this.getTagsForStencil(gn, '', dt + 'actor').join(' ')),
|
||||
this.createVertexTemplateEntry(am2 + 'actor;',
|
||||
this.createVertexTemplateEntry(am3 + 'actor;',
|
||||
w * 50, h * 95, '', 'Actor', null, null, this.getTagsForStencil(gn, '', dt + 'actor').join(' ')),
|
||||
this.createVertexTemplateEntry(am2 + 'application;appType=role;archiType=square;',
|
||||
w * 150, h * 75, '', 'Business Role', null, null, this.getTagsForStencil(gn, '', dt + 'role').join(' ')),
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
{
|
||||
var w = 50;
|
||||
var h = 50;
|
||||
var s = mxConstants.STYLE_VERTICAL_LABEL_POSITION + '=bottom;html=1;' + mxConstants.STYLE_VERTICAL_ALIGN + '=top;strokeColor=none;fillColor=#00BEF2;shape=mxgraph.azure.';
|
||||
var s = mxConstants.STYLE_VERTICAL_LABEL_POSITION + '=bottom;html=1;' + mxConstants.STYLE_VERTICAL_ALIGN + '=top;align=center;strokeColor=none;fillColor=#00BEF2;shape=mxgraph.azure.';
|
||||
var gn = 'mxgraph.azure';
|
||||
var dt = '';
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
var w = 50;
|
||||
var h = 50;
|
||||
|
||||
var s = 'shape=mxgraph.bpmn.shape;html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;perimeter=rhombusPerimeter;background=gateway;outlineConnect=0;';
|
||||
var s = 'shape=mxgraph.bpmn.shape;html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;align=center;perimeter=rhombusPerimeter;background=gateway;outlineConnect=0;';
|
||||
//default tags
|
||||
var dt = 'bpmn business process model gateway ';
|
||||
|
||||
|
@ -100,7 +100,7 @@
|
|||
this.createVertexTemplateEntry(s + 'outline=end;symbol=terminate;', w, h, '', 'Terminate Gateway', null, null, dt + 'terminate')
|
||||
]);
|
||||
|
||||
s = 'shape=mxgraph.bpmn.shape;html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;perimeter=ellipsePerimeter;outlineConnect=0;';
|
||||
s = 'shape=mxgraph.bpmn.shape;html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;align=center;perimeter=ellipsePerimeter;outlineConnect=0;';
|
||||
var dt = 'bpmn business process model event ';
|
||||
|
||||
this.addPaletteFunctions('bpmnEvents', 'BPMN Events', false,
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
{
|
||||
var w = 50;
|
||||
var h = 50;
|
||||
var s = mxConstants.STYLE_VERTICAL_LABEL_POSITION + '=bottom;html=1;fillColor=#6ABD46;' + mxConstants.STYLE_VERTICAL_ALIGN + '=top;shape=mxgraph.cisco_safe.architecture.';
|
||||
var s = mxConstants.STYLE_VERTICAL_LABEL_POSITION + '=bottom;html=1;fillColor=#6ABD46;' + mxConstants.STYLE_VERTICAL_ALIGN + '=top;align=center;shape=mxgraph.cisco_safe.architecture.';
|
||||
var gn = 'mxgraph.cisco_safe.architecture';
|
||||
var dt = 'cisco safe architecture';
|
||||
|
||||
|
@ -94,7 +94,7 @@
|
|||
{
|
||||
var w = 50;
|
||||
var h = 50;
|
||||
var s = mxConstants.STYLE_VERTICAL_LABEL_POSITION + '=bottom;html=1;fillColor=#28A8E0;' + mxConstants.STYLE_VERTICAL_ALIGN + '=top;shape=mxgraph.cisco_safe.capability.';
|
||||
var s = mxConstants.STYLE_VERTICAL_LABEL_POSITION + '=bottom;html=1;fillColor=#28A8E0;' + mxConstants.STYLE_VERTICAL_ALIGN + '=top;align=center;shape=mxgraph.cisco_safe.capability.';
|
||||
var gn = 'mxgraph.cisco_safe.capability';
|
||||
var dt = 'cisco safe capability';
|
||||
|
||||
|
@ -219,7 +219,7 @@
|
|||
{
|
||||
var w = 50;
|
||||
var h = 50;
|
||||
var s = mxConstants.STYLE_VERTICAL_LABEL_POSITION + '=bottom;html=1;fillColor=#A153A0;' + mxConstants.STYLE_VERTICAL_ALIGN + '=top;shape=mxgraph.cisco_safe.design.';
|
||||
var s = mxConstants.STYLE_VERTICAL_LABEL_POSITION + '=bottom;html=1;fillColor=#A153A0;' + mxConstants.STYLE_VERTICAL_ALIGN + '=top;align=center;shape=mxgraph.cisco_safe.design.';
|
||||
var gn = 'mxgraph.cisco_safe.design';
|
||||
var dt = 'cisco safe design';
|
||||
|
||||
|
@ -332,7 +332,7 @@
|
|||
{
|
||||
var w = 50;
|
||||
var h = 50;
|
||||
var s = mxConstants.STYLE_VERTICAL_LABEL_POSITION + '=bottom;html=1;fillColor=#F06650;' + mxConstants.STYLE_VERTICAL_ALIGN + '=top;shape=mxgraph.cisco_safe.threat.';
|
||||
var s = mxConstants.STYLE_VERTICAL_LABEL_POSITION + '=bottom;html=1;fillColor=#F06650;' + mxConstants.STYLE_VERTICAL_ALIGN + '=top;align=center;shape=mxgraph.cisco_safe.threat.';
|
||||
var gn = 'mxgraph.cisco_safe.threat';
|
||||
var dt = 'cisco safe threat';
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
{
|
||||
var w = 0.5;
|
||||
var h = 0.5;
|
||||
var s = mxConstants.STYLE_VERTICAL_LABEL_POSITION + '=bottom;aspect=fixed;html=1;' + mxConstants.STYLE_VERTICAL_ALIGN + '=top;strokeColor=none;outlineConnect=0;shape=mxgraph.citrix.';
|
||||
var s = mxConstants.STYLE_VERTICAL_LABEL_POSITION + '=bottom;aspect=fixed;html=1;' + mxConstants.STYLE_VERTICAL_ALIGN + '=top;strokeColor=none;align=center;outlineConnect=0;shape=mxgraph.citrix.';
|
||||
var gn = 'mxgraph.citrix';
|
||||
var dt = '';
|
||||
|
||||
|
|
|
@ -648,7 +648,7 @@
|
|||
|
||||
Sidebar.prototype.addGMDLIconsPalette = function(expand)
|
||||
{
|
||||
var s2 = "dashed=0;aspect=fixed;shape=mxgraph.gmdl.";
|
||||
var s2 = "dashed=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.";
|
||||
var gn = 'mxgraph.gmdl';
|
||||
var dt = 'gmdl google media design library icon ';
|
||||
var sb = this;
|
||||
|
@ -916,7 +916,7 @@
|
|||
Sidebar.prototype.addGMDLSelectionControlsPalette = function(expand)
|
||||
{
|
||||
var s = "dashed=0;shape=";
|
||||
var s2 = "dashed=0;shape=mxgraph.gmdl.";
|
||||
var s2 = "dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.";
|
||||
var gn = 'mxgraph.gmdl';
|
||||
var dt = 'gmdl google media design library selection control ';
|
||||
var sb = this;
|
||||
|
@ -930,7 +930,7 @@
|
|||
}),
|
||||
this.addEntry(dt + 'checkbox on focused pressed light dark', function()
|
||||
{
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;strokeColor=none;fillColor=#009587;opacity=10;');
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#009587;opacity=10;');
|
||||
bg1.vertex = true;
|
||||
var part1 = new mxCell('', new mxGeometry(16, 16, 16, 16), s2 + 'checkbox;strokeColor=none;fillColor=#009587;strokeWidth=2;');
|
||||
part1.vertex = true;
|
||||
|
@ -945,7 +945,7 @@
|
|||
}),
|
||||
this.addEntry(dt + 'checkbox on disabled focused light', function()
|
||||
{
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;strokeColor=none;fillColor=#B0B0B0;opacity=10;');
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#B0B0B0;opacity=10;');
|
||||
bg1.vertex = true;
|
||||
var part1 = new mxCell('', new mxGeometry(16, 16, 16, 16), s2 + 'checkbox;strokeColor=none;fillColor=#B0B0B0;strokeWidth=2;');
|
||||
part1.vertex = true;
|
||||
|
@ -960,7 +960,7 @@
|
|||
}),
|
||||
this.addEntry(dt + 'checkbox off focused pressed light', function()
|
||||
{
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;strokeColor=none;fillColor=#666666;opacity=10;');
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#666666;opacity=10;');
|
||||
bg1.vertex = true;
|
||||
var part1 = new mxCell('', new mxGeometry(16, 16, 16, 16), s2 + 'checkbox;strokeColor=#666666;fillColor=none;strokeWidth=2;');
|
||||
part1.vertex = true;
|
||||
|
@ -975,7 +975,7 @@
|
|||
}),
|
||||
this.addEntry(dt + 'checkbox off disabled focused light', function()
|
||||
{
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;strokeColor=none;fillColor=#666666;opacity=10;');
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#666666;opacity=10;');
|
||||
bg1.vertex = true;
|
||||
var part1 = new mxCell('', new mxGeometry(16, 16, 16, 16), s2 + 'checkbox;strokeColor=#B0B0B0;fillColor=none;strokeWidth=2;');
|
||||
part1.vertex = true;
|
||||
|
@ -990,7 +990,7 @@
|
|||
}),
|
||||
this.addEntry(dt + 'checkbox on disabled focused dark', function()
|
||||
{
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;strokeColor=none;fillColor=#B0B0B0;opacity=10;');
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#B0B0B0;opacity=10;');
|
||||
bg1.vertex = true;
|
||||
var part1 = new mxCell('', new mxGeometry(16, 16, 16, 16), s2 + 'checkbox;strokeColor=none;fillColor=#676767;strokeWidth=2;');
|
||||
part1.vertex = true;
|
||||
|
@ -1005,7 +1005,7 @@
|
|||
}),
|
||||
this.addEntry(dt + 'checkbox off focused pressed dark', function()
|
||||
{
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;strokeColor=none;fillColor=#666666;opacity=10;');
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#666666;opacity=10;');
|
||||
bg1.vertex = true;
|
||||
var part1 = new mxCell('', new mxGeometry(16, 16, 16, 16), s2 + 'checkbox;strokeColor=#ffffff;fillColor=none;strokeWidth=2;');
|
||||
part1.vertex = true;
|
||||
|
@ -1020,7 +1020,7 @@
|
|||
}),
|
||||
this.addEntry(dt + 'checkbox off disabled focused dark', function()
|
||||
{
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;strokeColor=none;fillColor=#666666;opacity=10;');
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#666666;opacity=10;');
|
||||
bg1.vertex = true;
|
||||
var part1 = new mxCell('', new mxGeometry(16, 16, 16, 16), s2 + 'checkbox;strokeColor=#666666;fillColor=none;strokeWidth=2;');
|
||||
part1.vertex = true;
|
||||
|
@ -1035,7 +1035,7 @@
|
|||
}),
|
||||
this.addEntry(dt + 'radio button on focused pressed light dark', function()
|
||||
{
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;strokeColor=none;fillColor=#009587;opacity=10;');
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#009587;opacity=10;');
|
||||
bg1.vertex = true;
|
||||
var part1 = new mxCell('', new mxGeometry(16, 16, 16, 16), s2 + 'radiobutton;strokeColor=#009587;fillColor=#009587;strokeWidth=2;');
|
||||
part1.vertex = true;
|
||||
|
@ -1050,7 +1050,7 @@
|
|||
}),
|
||||
this.addEntry(dt + 'radio button on disabled focused light', function()
|
||||
{
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;strokeColor=none;fillColor=#B0B0B0;opacity=10;');
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#B0B0B0;opacity=10;');
|
||||
bg1.vertex = true;
|
||||
var part1 = new mxCell('', new mxGeometry(16, 16, 16, 16), s2 + 'radiobutton;strokeColor=#B0B0B0;fillColor=#B0B0B0;strokeWidth=2;');
|
||||
part1.vertex = true;
|
||||
|
@ -1065,7 +1065,7 @@
|
|||
}),
|
||||
this.addEntry(dt + 'radio button off focused pressed light', function()
|
||||
{
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;strokeColor=none;fillColor=#666666;opacity=10;');
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#666666;opacity=10;');
|
||||
bg1.vertex = true;
|
||||
var part1 = new mxCell('', new mxGeometry(16, 16, 16, 16), s2 + 'radiobutton;strokeColor=#666666;fillColor=none;strokeWidth=2;');
|
||||
part1.vertex = true;
|
||||
|
@ -1080,7 +1080,7 @@
|
|||
}),
|
||||
this.addEntry(dt + 'radio button off disabled focused light', function()
|
||||
{
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;strokeColor=none;fillColor=#666666;opacity=10;');
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#666666;opacity=10;');
|
||||
bg1.vertex = true;
|
||||
var part1 = new mxCell('', new mxGeometry(16, 16, 16, 16), s2 + 'radiobutton;strokeColor=#B0B0B0;fillColor=none;strokeWidth=2;');
|
||||
part1.vertex = true;
|
||||
|
@ -1095,7 +1095,7 @@
|
|||
}),
|
||||
this.addEntry(dt + 'radio button on disabled focused dark', function()
|
||||
{
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;strokeColor=none;fillColor=#B0B0B0;opacity=10;');
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#B0B0B0;opacity=10;');
|
||||
bg1.vertex = true;
|
||||
var part1 = new mxCell('', new mxGeometry(16, 16, 16, 16), s2 + 'radiobutton;strokeColor=#676767;fillColor=#676767;strokeWidth=2;');
|
||||
part1.vertex = true;
|
||||
|
@ -1110,7 +1110,7 @@
|
|||
}),
|
||||
this.addEntry(dt + 'radio button off focused pressed dark', function()
|
||||
{
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;strokeColor=none;fillColor=#666666;opacity=10;');
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#666666;opacity=10;');
|
||||
bg1.vertex = true;
|
||||
var part1 = new mxCell('', new mxGeometry(16, 16, 16, 16), s2 + 'radiobutton;strokeColor=#ffffff;fillColor=none;strokeWidth=2;');
|
||||
part1.vertex = true;
|
||||
|
@ -1125,7 +1125,7 @@
|
|||
}),
|
||||
this.addEntry(dt + 'radio button off disabled focused dark', function()
|
||||
{
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;strokeColor=none;fillColor=#666666;opacity=10;');
|
||||
var bg1 = new mxCell('', new mxGeometry(0, 0, 48, 48), 'shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#666666;opacity=10;');
|
||||
bg1.vertex = true;
|
||||
var part1 = new mxCell('', new mxGeometry(16, 16, 16, 16), s2 + 'radiobutton;strokeColor=#666666;fillColor=none;strokeWidth=2;');
|
||||
part1.vertex = true;
|
||||
|
@ -1164,7 +1164,7 @@
|
|||
Sidebar.prototype.addGMDLSlidersPalette = function(expand)
|
||||
{
|
||||
var s = "dashed=0;shape=";
|
||||
var s2 = "dashed=0;shape=mxgraph.gmdl.";
|
||||
var s2 = "dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.";
|
||||
var gn = 'mxgraph.gmdl';
|
||||
var dt = 'gmdl google media design library slider ';
|
||||
var sb = this;
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
//default tags
|
||||
var dt = 'ios icon ';
|
||||
|
||||
var s = 'html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#0080F0;fillColor=#ffffff;shadow=0;dashed=0;shape=mxgraph.ios7.icons.'
|
||||
var s = 'html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#0080F0;fillColor=#ffffff;shadow=0;dashed=0;shape=mxgraph.ios7.icons.'
|
||||
var inh = 'strokeColor=inherit;fillColor=inherit;gradientColor=inherit;';
|
||||
var gn = 'mxgraph.ios7.icons';
|
||||
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
|
||||
Sidebar.prototype.addMSCAECloudPalette = function()
|
||||
{
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.azure.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.mscae.cloud.';
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.';
|
||||
|
||||
// Space savers
|
||||
var sb = this;
|
||||
|
@ -389,9 +389,9 @@
|
|||
|
||||
Sidebar.prototype.addMSCAEDeprecatedPalette = function()
|
||||
{
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.azure.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.deprecated.';
|
||||
var s3 = 'shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.';
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.deprecated.';
|
||||
var s3 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.';
|
||||
|
||||
// Space savers
|
||||
var sb = this;
|
||||
|
@ -481,9 +481,9 @@
|
|||
|
||||
Sidebar.prototype.addMSCAEEnterprisePalette = function()
|
||||
{
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.azure.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.enterprise.';
|
||||
var s3 = 'shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.';
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.';
|
||||
var s3 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.';
|
||||
|
||||
// Space savers
|
||||
var sb = this;
|
||||
|
@ -705,10 +705,10 @@
|
|||
|
||||
Sidebar.prototype.addMSCAEGeneralPalette = function()
|
||||
{
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.azure.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.general.';
|
||||
var s3 = 'shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.';
|
||||
var s4 = 'shadow=0;dashed=0;html=1;shape=mxgraph.mscae.general.';
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.';
|
||||
var s3 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.';
|
||||
var s4 = 'shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.';
|
||||
|
||||
// Space savers
|
||||
var sb = this;
|
||||
|
@ -782,11 +782,11 @@
|
|||
|
||||
Sidebar.prototype.addMSCAEGeneralSymbolsPalette = function()
|
||||
{
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.azure.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.general_symbols.';
|
||||
var s3 = 'shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.';
|
||||
var s4 = 'shadow=0;dashed=0;html=1;shape=mxgraph.mscae.general_symbols.';
|
||||
var s5 = 'shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.';
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general_symbols.';
|
||||
var s3 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.';
|
||||
var s4 = 'shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general_symbols.';
|
||||
var s5 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.';
|
||||
|
||||
// Space savers
|
||||
var sb = this;
|
||||
|
@ -874,9 +874,9 @@
|
|||
|
||||
Sidebar.prototype.addMSCAEIntunePalette = function()
|
||||
{
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.azure.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.intune.';
|
||||
var s3 = 'shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.';
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.';
|
||||
var s3 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.';
|
||||
|
||||
// Space savers
|
||||
var sb = this;
|
||||
|
@ -990,9 +990,9 @@
|
|||
|
||||
Sidebar.prototype.addMSCAEOMSPalette = function()
|
||||
{
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.azure.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.oms.';
|
||||
var s3 = 'shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.';
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.oms.';
|
||||
var s3 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.';
|
||||
|
||||
// Space savers
|
||||
var sb = this;
|
||||
|
@ -1056,9 +1056,9 @@
|
|||
|
||||
Sidebar.prototype.addMSCAEOpsManagerPalette = function()
|
||||
{
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.azure.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.opsmanager.';
|
||||
var s3 = 'shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.';
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.opsmanager.';
|
||||
var s3 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.';
|
||||
|
||||
// Space savers
|
||||
var sb = this;
|
||||
|
@ -1122,8 +1122,8 @@
|
|||
|
||||
Sidebar.prototype.addMSCAEOtherPalette = function()
|
||||
{
|
||||
var s = 'shadow=0;dashed=0;html=1;shape=mxgraph.azure.';
|
||||
var s2 = 'shadow=0;dashed=0;strokeColor=none;html=1;shape=mxgraph.mscae.other.';
|
||||
var s = 'shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.';
|
||||
var s2 = 'shadow=0;dashed=0;strokeColor=none;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.other.';
|
||||
|
||||
// Space savers
|
||||
var sb = this;
|
||||
|
@ -1177,9 +1177,9 @@
|
|||
|
||||
Sidebar.prototype.addMSCAESystemCenterPalette = function()
|
||||
{
|
||||
var s = 'shadow=0;dashed=0;html=1;shape=mxgraph.azure.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.system_center.';
|
||||
var s3 = 'shadow=0;dashed=0;html=1;shape=mxgraph.mscae.';
|
||||
var s = 'shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.system_center.';
|
||||
var s3 = 'shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.';
|
||||
|
||||
// Space savers
|
||||
var sb = this;
|
||||
|
@ -1221,9 +1221,9 @@
|
|||
|
||||
Sidebar.prototype.addMSCAEVMPalette = function()
|
||||
{
|
||||
var s = 'shadow=0;dashed=0;html=1;shape=mxgraph.azure.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.vm.';
|
||||
var s3 = 'shadow=0;dashed=0;html=1;shape=mxgraph.mscae.';
|
||||
var s = 'shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.vm.';
|
||||
var s3 = 'shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.';
|
||||
|
||||
// Space savers
|
||||
var sb = this;
|
||||
|
@ -1548,6 +1548,4 @@
|
|||
}));
|
||||
|
||||
}
|
||||
|
||||
|
||||
})();
|
||||
|
|
|
@ -17,8 +17,8 @@
|
|||
|
||||
Sidebar.prototype.addOfficeCloudsPalette = function()
|
||||
{
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;outlineConnect=0;verticalAlign=top;shape=mxgraph.office.clouds.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;outlineConnect=0;verticalAlign=top;shape=mxgraph.office.clouds.';
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;outlineConnect=0;verticalAlign=top;align=center;shape=mxgraph.office.clouds.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;outlineConnect=0;verticalAlign=top;align=center;shape=mxgraph.office.clouds.';
|
||||
|
||||
// Space savers
|
||||
var sb = this;
|
||||
|
@ -69,8 +69,8 @@
|
|||
|
||||
Sidebar.prototype.addOfficeCommunicationsPalette = function()
|
||||
{
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;shape=mxgraph.office.communications.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;shape=mxgraph.office.communications.';
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.communications.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.communications.';
|
||||
|
||||
// Space savers
|
||||
var sb = this;
|
||||
|
@ -160,8 +160,6 @@
|
|||
w * 60, h * 57, '', 'Remote Move Request', null, null, this.getTagsForStencil(gn, 'remote move request', dt).join(' ')),
|
||||
this.createVertexTemplateEntry(s + 'response_group;',
|
||||
w * 58, h * 54, '', 'Response Group', null, null, this.getTagsForStencil(gn, 'response group', dt).join(' ')),
|
||||
// this.createVertexTemplateEntry(s + 'response_group_service;',
|
||||
// w * 58, h * 54, '', 'Response Group Service', null, null, this.getTagsForStencil(gn, 'response group service', dt).join(' ')),
|
||||
this.createVertexTemplateEntry(s + 'room_mailbox;',
|
||||
w * 60, h * 57, '', 'Room Mailbox', null, null, this.getTagsForStencil(gn, 'room mailbox', dt).join(' ')),
|
||||
this.createVertexTemplateEntry(s + 'shared_mailbox;',
|
||||
|
@ -237,8 +235,8 @@
|
|||
|
||||
Sidebar.prototype.addOfficeConceptsPalette = function()
|
||||
{
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;shape=mxgraph.office.concepts.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;shape=mxgraph.office.concepts.';
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.concepts.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.concepts.';
|
||||
|
||||
// Space savers
|
||||
var sb = this;
|
||||
|
@ -543,8 +541,8 @@
|
|||
|
||||
Sidebar.prototype.addOfficeDatabasesPalette = function()
|
||||
{
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;shape=mxgraph.office.databases.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;shape=mxgraph.office.databases.';
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.databases.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.databases.';
|
||||
|
||||
// Space savers
|
||||
var sb = this;
|
||||
|
@ -659,8 +657,8 @@
|
|||
|
||||
Sidebar.prototype.addOfficeDevicesPalette = function()
|
||||
{
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;shape=mxgraph.office.devices.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;shape=mxgraph.office.devices.';
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.devices.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.devices.';
|
||||
|
||||
// Space savers
|
||||
var sb = this;
|
||||
|
@ -785,8 +783,8 @@
|
|||
|
||||
Sidebar.prototype.addOfficeSecurityPalette = function()
|
||||
{
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;shape=mxgraph.office.security.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;shape=mxgraph.office.security.';
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.security.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.security.';
|
||||
|
||||
// Space savers
|
||||
var sb = this;
|
||||
|
@ -915,8 +913,8 @@
|
|||
|
||||
Sidebar.prototype.addOfficeServersPalette = function()
|
||||
{
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;shape=mxgraph.office.servers.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;shape=mxgraph.office.servers.';
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.servers.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.servers.';
|
||||
|
||||
// Space savers
|
||||
var sb = this;
|
||||
|
@ -1135,8 +1133,8 @@
|
|||
|
||||
Sidebar.prototype.addOfficeServicesPalette = function()
|
||||
{
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;shape=mxgraph.office.services.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;shape=mxgraph.office.services.';
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.services.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.services.';
|
||||
|
||||
// Space savers
|
||||
var sb = this;
|
||||
|
@ -1213,8 +1211,8 @@
|
|||
|
||||
Sidebar.prototype.addOfficeSitesPalette = function()
|
||||
{
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;shape=mxgraph.office.sites.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;shape=mxgraph.office.sites.';
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.sites.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.sites.';
|
||||
|
||||
// Space savers
|
||||
var sb = this;
|
||||
|
@ -1283,8 +1281,8 @@
|
|||
|
||||
Sidebar.prototype.addOfficeUsersPalette = function()
|
||||
{
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;shape=mxgraph.office.users.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;shape=mxgraph.office.users.';
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.users.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.users.';
|
||||
|
||||
// Space savers
|
||||
var sb = this;
|
||||
|
@ -1328,8 +1326,6 @@
|
|||
w * 63, h * 55, '', 'Outlook User', null, null, this.getTagsForStencil(gn, 'outlook user', dt).join(' ')),
|
||||
this.createVertexTemplateEntry(s + 'response_group;',
|
||||
w * 58, h * 54, '', 'Response Group', null, null, this.getTagsForStencil(gn, 'response group', dt).join(' ')),
|
||||
// this.createVertexTemplateEntry(s + 'response_group_service;',
|
||||
// w * 58, h * 54, '', 'Response Group Service', null, null, this.getTagsForStencil(gn, 'response group service', dt).join(' ')),
|
||||
this.createVertexTemplateEntry(s + 'role_group;',
|
||||
w * 59, h * 56, '', 'Role Group', null, null, this.getTagsForStencil(gn, 'role group', dt).join(' ')),
|
||||
this.createVertexTemplateEntry(s + 'skype_commercial_user;',
|
||||
|
|
|
@ -9,9 +9,9 @@
|
|||
|
||||
Sidebar.prototype.addVeeam2DPalette = function()
|
||||
{
|
||||
var sn = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;shape=mxgraph.veeam.2d.';
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;shape=mxgraph.veeam.2d.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;shape=mxgraph.veeam.2d.';
|
||||
var sn = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.';
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.';
|
||||
|
||||
// Space savers
|
||||
var sb = this;
|
||||
|
@ -316,9 +316,9 @@
|
|||
|
||||
Sidebar.prototype.addVeeam3DPalette = function()
|
||||
{
|
||||
var sn = 'shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;shape=mxgraph.veeam.3d.';
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;shape=mxgraph.veeam.3d.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;shape=mxgraph.veeam.3d.';
|
||||
var sn = 'shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.3d.';
|
||||
var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.3d.';
|
||||
var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.3d.';
|
||||
|
||||
// Space savers
|
||||
var sb = this;
|
||||
|
@ -474,13 +474,4 @@
|
|||
}
|
||||
}));
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
})();
|
||||
|
|
|
@ -944,7 +944,7 @@
|
|||
{
|
||||
this.addStencilPalette('cisco' + cisco[i], 'Cisco / ' + cisco[i],
|
||||
dir + '/cisco/' + cisco[i].toLowerCase().replace(/ /g, '_') + '.xml',
|
||||
';html=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;', null, null, 1.6);
|
||||
';html=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;', null, null, 1.6);
|
||||
}
|
||||
|
||||
this.addCiscoSafePalette();
|
||||
|
|
2
src/main/webapp/js/embed-static.min.js
vendored
2
src/main/webapp/js/embed-static.min.js
vendored
|
@ -184,7 +184,7 @@ f)+"\n"+t+"}":"{"+z.join(",")+"}";f=t;return l}}"function"!==typeof Date.prototy
|
|||
e=/[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,f,g,h={"\b":"\\b","\t":"\\t","\n":"\\n","\f":"\\f","\r":"\\r",'"':'\\"',"\\":"\\\\"},k;"function"!==typeof JSON.stringify&&(JSON.stringify=function(a,b,d){var e;g=f="";if("number"===typeof d)for(e=0;e<d;e+=1)g+=" ";else"string"===typeof d&&(g=d);if((k=b)&&"function"!==typeof b&&("object"!==typeof b||"number"!==typeof b.length))throw Error("JSON.stringify");return c("",{"":a})});
|
||||
"function"!==typeof JSON.parse&&(JSON.parse=function(a,b){function c(a,d){var e,f,g=a[d];if(g&&"object"===typeof g)for(e in g)Object.prototype.hasOwnProperty.call(g,e)&&(f=c(g,e),void 0!==f?g[e]=f:delete g[e]);return b.call(a,d,g)}var e;a=""+a;d.lastIndex=0;d.test(a)&&(a=a.replace(d,function(a){return"\\u"+("0000"+a.charCodeAt(0).toString(16)).slice(-4)}));if(/^[\],:{}\s]*$/.test(a.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,
|
||||
"]").replace(/(?:^|:|,)(?:\s*\[)+/g,"")))return e=eval("("+a+")"),"function"===typeof b?c({"":e},""):e;throw new SyntaxError("JSON.parse");})})();"undefined"===typeof window.mxBasePath&&(window.mxBasePath="https://www.draw.io/mxgraph/");window.mxLoadStylesheets=window.mxLoadStylesheets||!1;window.mxLoadResources=window.mxLoadResources||!1;window.mxLanguage=window.mxLanguage||"en";window.urlParams=window.urlParams||{};window.MAX_REQUEST_SIZE=window.MAX_REQUEST_SIZE||10485760;window.MAX_AREA=window.MAX_AREA||225E6;window.EXPORT_URL=window.EXPORT_URL||"/export";window.SAVE_URL=window.SAVE_URL||"/save";window.OPEN_URL=window.OPEN_URL||"/open";window.RESOURCES_PATH=window.RESOURCES_PATH||"resources";window.RESOURCE_BASE=window.RESOURCE_BASE||window.RESOURCES_PATH+"/grapheditor";window.STENCIL_PATH=window.STENCIL_PATH||"stencils";window.IMAGE_PATH=window.IMAGE_PATH||"images";
|
||||
window.STYLE_PATH=window.STYLE_PATH||"styles";window.CSS_PATH=window.CSS_PATH||"styles";window.OPEN_FORM=window.OPEN_FORM||"open.html";window.mxBasePath=window.mxBasePath||"../../../src";window.mxLanguage=window.mxLanguage||urlParams.lang;window.mxLanguages=window.mxLanguages||["de"];var mxClient={VERSION:"8.7.0",IS_IE:0<=navigator.userAgent.indexOf("MSIE"),IS_IE6:0<=navigator.userAgent.indexOf("MSIE 6"),IS_IE11:!!navigator.userAgent.match(/Trident\/7\./),IS_EDGE:!!navigator.userAgent.match(/Edge\//),IS_QUIRKS:0<=navigator.userAgent.indexOf("MSIE")&&(null==document.documentMode||5==document.documentMode),IS_EM:"spellcheck"in document.createElement("textarea")&&8==document.documentMode,VML_PREFIX:"v",OFFICE_PREFIX:"o",IS_NS:0<=navigator.userAgent.indexOf("Mozilla/")&&0>navigator.userAgent.indexOf("MSIE")&&
|
||||
window.STYLE_PATH=window.STYLE_PATH||"styles";window.CSS_PATH=window.CSS_PATH||"styles";window.OPEN_FORM=window.OPEN_FORM||"open.html";window.mxBasePath=window.mxBasePath||"../../../src";window.mxLanguage=window.mxLanguage||urlParams.lang;window.mxLanguages=window.mxLanguages||["de"];var mxClient={VERSION:"8.7.1",IS_IE:0<=navigator.userAgent.indexOf("MSIE"),IS_IE6:0<=navigator.userAgent.indexOf("MSIE 6"),IS_IE11:!!navigator.userAgent.match(/Trident\/7\./),IS_EDGE:!!navigator.userAgent.match(/Edge\//),IS_QUIRKS:0<=navigator.userAgent.indexOf("MSIE")&&(null==document.documentMode||5==document.documentMode),IS_EM:"spellcheck"in document.createElement("textarea")&&8==document.documentMode,VML_PREFIX:"v",OFFICE_PREFIX:"o",IS_NS:0<=navigator.userAgent.indexOf("Mozilla/")&&0>navigator.userAgent.indexOf("MSIE")&&
|
||||
0>navigator.userAgent.indexOf("Edge/"),IS_OP:0<=navigator.userAgent.indexOf("Opera/")||0<=navigator.userAgent.indexOf("OPR/"),IS_OT:0<=navigator.userAgent.indexOf("Presto/")&&0>navigator.userAgent.indexOf("Presto/2.4.")&&0>navigator.userAgent.indexOf("Presto/2.3.")&&0>navigator.userAgent.indexOf("Presto/2.2.")&&0>navigator.userAgent.indexOf("Presto/2.1.")&&0>navigator.userAgent.indexOf("Presto/2.0.")&&0>navigator.userAgent.indexOf("Presto/1."),IS_SF:0<=navigator.userAgent.indexOf("AppleWebKit/")&&
|
||||
0>navigator.userAgent.indexOf("Chrome/")&&0>navigator.userAgent.indexOf("Edge/"),IS_IOS:navigator.userAgent.match(/(iPad|iPhone|iPod)/g)?!0:!1,IS_GC:0<=navigator.userAgent.indexOf("Chrome/")&&0>navigator.userAgent.indexOf("Edge/"),IS_CHROMEAPP:null!=window.chrome&&null!=chrome.app&&null!=chrome.app.runtime,IS_FF:0<=navigator.userAgent.indexOf("Firefox/"),IS_MT:0<=navigator.userAgent.indexOf("Firefox/")&&0>navigator.userAgent.indexOf("Firefox/1.")&&0>navigator.userAgent.indexOf("Firefox/2.")||0<=navigator.userAgent.indexOf("Iceweasel/")&&
|
||||
0>navigator.userAgent.indexOf("Iceweasel/1.")&&0>navigator.userAgent.indexOf("Iceweasel/2.")||0<=navigator.userAgent.indexOf("SeaMonkey/")&&0>navigator.userAgent.indexOf("SeaMonkey/1.")||0<=navigator.userAgent.indexOf("Iceape/")&&0>navigator.userAgent.indexOf("Iceape/1."),IS_SVG:0<=navigator.userAgent.indexOf("Firefox/")||0<=navigator.userAgent.indexOf("Iceweasel/")||0<=navigator.userAgent.indexOf("Seamonkey/")||0<=navigator.userAgent.indexOf("Iceape/")||0<=navigator.userAgent.indexOf("Galeon/")||
|
||||
|
|
2
src/main/webapp/js/reader.min.js
vendored
2
src/main/webapp/js/reader.min.js
vendored
|
@ -184,7 +184,7 @@ f)+"\n"+t+"}":"{"+z.join(",")+"}";f=t;return l}}"function"!==typeof Date.prototy
|
|||
e=/[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,f,g,h={"\b":"\\b","\t":"\\t","\n":"\\n","\f":"\\f","\r":"\\r",'"':'\\"',"\\":"\\\\"},k;"function"!==typeof JSON.stringify&&(JSON.stringify=function(a,b,d){var e;g=f="";if("number"===typeof d)for(e=0;e<d;e+=1)g+=" ";else"string"===typeof d&&(g=d);if((k=b)&&"function"!==typeof b&&("object"!==typeof b||"number"!==typeof b.length))throw Error("JSON.stringify");return c("",{"":a})});
|
||||
"function"!==typeof JSON.parse&&(JSON.parse=function(a,b){function c(a,d){var e,f,g=a[d];if(g&&"object"===typeof g)for(e in g)Object.prototype.hasOwnProperty.call(g,e)&&(f=c(g,e),void 0!==f?g[e]=f:delete g[e]);return b.call(a,d,g)}var e;a=""+a;d.lastIndex=0;d.test(a)&&(a=a.replace(d,function(a){return"\\u"+("0000"+a.charCodeAt(0).toString(16)).slice(-4)}));if(/^[\],:{}\s]*$/.test(a.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,
|
||||
"]").replace(/(?:^|:|,)(?:\s*\[)+/g,"")))return e=eval("("+a+")"),"function"===typeof b?c({"":e},""):e;throw new SyntaxError("JSON.parse");})})();"undefined"===typeof window.mxBasePath&&(window.mxBasePath="https://www.draw.io/mxgraph/");window.mxLoadStylesheets=window.mxLoadStylesheets||!1;window.mxLoadResources=window.mxLoadResources||!1;window.mxLanguage=window.mxLanguage||"en";window.urlParams=window.urlParams||{};window.MAX_REQUEST_SIZE=window.MAX_REQUEST_SIZE||10485760;window.MAX_AREA=window.MAX_AREA||225E6;window.EXPORT_URL=window.EXPORT_URL||"/export";window.SAVE_URL=window.SAVE_URL||"/save";window.OPEN_URL=window.OPEN_URL||"/open";window.RESOURCES_PATH=window.RESOURCES_PATH||"resources";window.RESOURCE_BASE=window.RESOURCE_BASE||window.RESOURCES_PATH+"/grapheditor";window.STENCIL_PATH=window.STENCIL_PATH||"stencils";window.IMAGE_PATH=window.IMAGE_PATH||"images";
|
||||
window.STYLE_PATH=window.STYLE_PATH||"styles";window.CSS_PATH=window.CSS_PATH||"styles";window.OPEN_FORM=window.OPEN_FORM||"open.html";window.mxBasePath=window.mxBasePath||"../../../src";window.mxLanguage=window.mxLanguage||urlParams.lang;window.mxLanguages=window.mxLanguages||["de"];var mxClient={VERSION:"8.7.0",IS_IE:0<=navigator.userAgent.indexOf("MSIE"),IS_IE6:0<=navigator.userAgent.indexOf("MSIE 6"),IS_IE11:!!navigator.userAgent.match(/Trident\/7\./),IS_EDGE:!!navigator.userAgent.match(/Edge\//),IS_QUIRKS:0<=navigator.userAgent.indexOf("MSIE")&&(null==document.documentMode||5==document.documentMode),IS_EM:"spellcheck"in document.createElement("textarea")&&8==document.documentMode,VML_PREFIX:"v",OFFICE_PREFIX:"o",IS_NS:0<=navigator.userAgent.indexOf("Mozilla/")&&0>navigator.userAgent.indexOf("MSIE")&&
|
||||
window.STYLE_PATH=window.STYLE_PATH||"styles";window.CSS_PATH=window.CSS_PATH||"styles";window.OPEN_FORM=window.OPEN_FORM||"open.html";window.mxBasePath=window.mxBasePath||"../../../src";window.mxLanguage=window.mxLanguage||urlParams.lang;window.mxLanguages=window.mxLanguages||["de"];var mxClient={VERSION:"8.7.1",IS_IE:0<=navigator.userAgent.indexOf("MSIE"),IS_IE6:0<=navigator.userAgent.indexOf("MSIE 6"),IS_IE11:!!navigator.userAgent.match(/Trident\/7\./),IS_EDGE:!!navigator.userAgent.match(/Edge\//),IS_QUIRKS:0<=navigator.userAgent.indexOf("MSIE")&&(null==document.documentMode||5==document.documentMode),IS_EM:"spellcheck"in document.createElement("textarea")&&8==document.documentMode,VML_PREFIX:"v",OFFICE_PREFIX:"o",IS_NS:0<=navigator.userAgent.indexOf("Mozilla/")&&0>navigator.userAgent.indexOf("MSIE")&&
|
||||
0>navigator.userAgent.indexOf("Edge/"),IS_OP:0<=navigator.userAgent.indexOf("Opera/")||0<=navigator.userAgent.indexOf("OPR/"),IS_OT:0<=navigator.userAgent.indexOf("Presto/")&&0>navigator.userAgent.indexOf("Presto/2.4.")&&0>navigator.userAgent.indexOf("Presto/2.3.")&&0>navigator.userAgent.indexOf("Presto/2.2.")&&0>navigator.userAgent.indexOf("Presto/2.1.")&&0>navigator.userAgent.indexOf("Presto/2.0.")&&0>navigator.userAgent.indexOf("Presto/1."),IS_SF:0<=navigator.userAgent.indexOf("AppleWebKit/")&&
|
||||
0>navigator.userAgent.indexOf("Chrome/")&&0>navigator.userAgent.indexOf("Edge/"),IS_IOS:navigator.userAgent.match(/(iPad|iPhone|iPod)/g)?!0:!1,IS_GC:0<=navigator.userAgent.indexOf("Chrome/")&&0>navigator.userAgent.indexOf("Edge/"),IS_CHROMEAPP:null!=window.chrome&&null!=chrome.app&&null!=chrome.app.runtime,IS_FF:0<=navigator.userAgent.indexOf("Firefox/"),IS_MT:0<=navigator.userAgent.indexOf("Firefox/")&&0>navigator.userAgent.indexOf("Firefox/1.")&&0>navigator.userAgent.indexOf("Firefox/2.")||0<=navigator.userAgent.indexOf("Iceweasel/")&&
|
||||
0>navigator.userAgent.indexOf("Iceweasel/1.")&&0>navigator.userAgent.indexOf("Iceweasel/2.")||0<=navigator.userAgent.indexOf("SeaMonkey/")&&0>navigator.userAgent.indexOf("SeaMonkey/1.")||0<=navigator.userAgent.indexOf("Iceape/")&&0>navigator.userAgent.indexOf("Iceape/1."),IS_SVG:0<=navigator.userAgent.indexOf("Firefox/")||0<=navigator.userAgent.indexOf("Iceweasel/")||0<=navigator.userAgent.indexOf("Seamonkey/")||0<=navigator.userAgent.indexOf("Iceape/")||0<=navigator.userAgent.indexOf("Galeon/")||
|
||||
|
|
8
src/main/webapp/js/shapes.min.js
vendored
8
src/main/webapp/js/shapes.min.js
vendored
|
@ -6,13 +6,13 @@ mxBpmnShape.prototype.redrawPath=function(a,d,e,b,c,f){var g=mxUtils.getValue(th
|
|||
.5),!0),new mxConnectionConstraint(new mxPoint(1,.5),!0),new mxConnectionConstraint(new mxPoint(.145,.145),!1),new mxConnectionConstraint(new mxPoint(.145,.855),!1),new mxConnectionConstraint(new mxPoint(.855,.145),!1),new mxConnectionConstraint(new mxPoint(.855,.855),!1)];var k=mxUtils.getValue(this.style,mxBpmnShape.prototype.miscEnum.OUTLINE,mxBpmnShape.prototype.eventTypeEnum.NONE);null!=k&&(h=this.outlines[k],null!=h&&h.call(this,a,d,e,b,c,g===mxBpmnShape.prototype.eventTypeEnum.GATEWAY))}else if(f==
|
||||
mxBpmnShape.prototype.miscEnum.SYMBOL&&(g===mxBpmnShape.prototype.eventTypeEnum.GATEWAY&&(c/=2,b/=2),g=mxUtils.getValue(this.style,mxBpmnShape.prototype.miscEnum.SYMBOL,null),null!=g&&(h=this.symbols[g],null!=h))){var l=a.state.strokeColor,n=a.state.fillColor,k=mxUtils.getValue(this.style,mxBpmnShape.prototype.miscEnum.OUTLINE,mxBpmnShape.prototype.eventTypeEnum.NONE);g===mxBpmnShape.prototype.eventEnum.MESSAGE?(a.translate(.15*b,.3*c),b*=.7,c*=.4):g===mxBpmnShape.prototype.eventEnum.TIMER?(a.translate(.11*
|
||||
b,.11*c),b*=.78,c*=.78):g===mxBpmnShape.prototype.eventEnum.ESCALATION?(a.translate(.19*b,.15*c),b*=.62,c*=.57):g===mxBpmnShape.prototype.eventEnum.CONDITIONAL?(a.translate(.3*b,.16*c),b*=.4,c*=.68):g===mxBpmnShape.prototype.eventEnum.LINK?(a.translate(.27*b,.33*c),b*=.46,c*=.34):g===mxBpmnShape.prototype.eventEnum.ERROR?(a.translate(.212*b,.243*c),b*=.58,c*=.507):g===mxBpmnShape.prototype.eventEnum.CANCEL?(a.translate(.22*b,.22*c),b*=.56,c*=.56):g===mxBpmnShape.prototype.eventEnum.COMPENSATION?(a.translate(.28*
|
||||
b,.35*c),b*=.44,c*=.3):g===mxBpmnShape.prototype.eventEnum.SIGNAL?(a.translate(.19*b,.15*c),b*=.62,c*=.57):g===mxBpmnShape.prototype.eventEnum.MULTIPLE?(a.translate(.2*b,.19*c),b*=.6,c*=.565):g===mxBpmnShape.prototype.eventEnum.PAR_MULTI?(a.translate(.2*b,.2*c),b*=.6,c*=.6):g===mxBpmnShape.prototype.eventEnum.TERMINATE?(a.translate(.05*b,.05*c),b*=.9,c*=.9):g===mxBpmnShape.prototype.eventEnum.GW_EXCLUSIVE&&(a.translate(.12*b,0),b*=.76);if("star"===g)a.setFillColor(l);else if(k===mxBpmnShape.prototype.eventTypeEnum.THROWING||
|
||||
k===mxBpmnShape.prototype.eventTypeEnum.END)a.setStrokeColor(n),a.setFillColor(l);h.call(this,a,d,e,b,c,f);if("star"===g)a.setFillColor(n);else if(k===mxBpmnShape.prototype.eventTypeEnum.THROWING||k===mxBpmnShape.prototype.eventTypeEnum.END)a.setStrokeColor(l),a.setFillColor(n)}};mxBpmnShape.prototype.backgrounds={none:function(a,d,e,b,c){},gateway:function(a,d,e,b,c){a.begin();a.moveTo(b/2,0);a.lineTo(b,c/2);a.lineTo(b/2,c);a.lineTo(0,c/2);a.close();a.fillAndStroke()}};
|
||||
b,.35*c),b*=.44,c*=.3):g===mxBpmnShape.prototype.eventEnum.SIGNAL?(a.translate(.19*b,.15*c),b*=.62,c*=.57):g===mxBpmnShape.prototype.eventEnum.MULTIPLE?(a.translate(.2*b,.19*c),b*=.6,c*=.565):g===mxBpmnShape.prototype.eventEnum.PAR_MULTI?(a.translate(.2*b,.2*c),b*=.6,c*=.6):g===mxBpmnShape.prototype.eventEnum.TERMINATE?(a.translate(.05*b,.05*c),b*=.9,c*=.9):g===mxBpmnShape.prototype.eventEnum.GW_EXCLUSIVE&&(a.translate(.12*b,0),b*=.76);isInverse=!1;if("star"===g)a.setFillColor(l);else if(k===mxBpmnShape.prototype.eventTypeEnum.THROWING||
|
||||
k===mxBpmnShape.prototype.eventTypeEnum.END)a.setStrokeColor(n),a.setFillColor(l),isInverse=!0;h.call(this,a,d,e,b,c,f,isInverse);if("star"===g)a.setFillColor(n);else if(k===mxBpmnShape.prototype.eventTypeEnum.THROWING||k===mxBpmnShape.prototype.eventTypeEnum.END)a.setStrokeColor(l),a.setFillColor(n)}};mxBpmnShape.prototype.backgrounds={none:function(a,d,e,b,c){},gateway:function(a,d,e,b,c){a.begin();a.moveTo(b/2,0);a.lineTo(b,c/2);a.lineTo(b/2,c);a.lineTo(0,c/2);a.close();a.fillAndStroke()}};
|
||||
mxBpmnShape.prototype.outlines={none:function(a,d,e,b,c,f){f||a.setShadow(!1)},standard:function(a,d,e,b,c,f){a.ellipse(0,0,b,c);a.fillAndStroke();f||a.setShadow(!1)},eventInt:function(a,d,e,b,c,f){a.ellipse(0,0,b,c);a.fillAndStroke();f||a.setShadow(!1)},eventNonint:function(a,d,e,b,c,f){d=a.state.dashed;a.setDashed(!0);a.ellipse(0,0,b,c);a.fillAndStroke();a.setDashed(d);f||a.setShadow(!1)},catching:function(a,d,e,b,c,f){a.ellipse(0,0,b,c);a.fillAndStroke();f||a.setShadow(!1);a.ellipse(2,2,b-4,c-
|
||||
4);a.stroke()},boundInt:function(a,d,e,b,c,f){a.ellipse(0,0,b,c);a.fillAndStroke();f||a.setShadow(!1);a.ellipse(2,2,b-4,c-4);a.stroke()},boundNonint:function(a,d,e,b,c,f){d=a.state.dashed;a.setDashed(!0);a.ellipse(0,0,b,c);a.fillAndStroke();f||a.setShadow(!1);a.ellipse(2,2,b-4,c-4);a.stroke();a.setDashed(d)},throwing:function(a,d,e,b,c,f){a.ellipse(0,0,b,c);a.fillAndStroke();f||a.setShadow(!1);a.ellipse(.02*b+2,.02*c+2,.96*b-4,.96*c-4);a.stroke()},end:function(a,d,e,b,c,f){d=a.state.strokeWidth;a.setStrokeWidth(3*
|
||||
d);a.ellipse(0,0,b,c);a.fillAndStroke();a.setStrokeWidth(d);f||a.setShadow(!1)}};
|
||||
mxBpmnShape.prototype.symbols={general:function(a,d,e,b,c){},message:function(a,d,e,b,c){a.rect(0,0,b,c);a.fillAndStroke();"none"===mxUtils.getValue(this.style,"fillColor","none")&&a.setStrokeColor("#ffffff");a.begin();a.moveTo(0,0);a.lineTo(.5*b,.5*c);a.lineTo(b,0);a.stroke()},timer:function(a,d,e,b,c){a.ellipse(0,0,b,c);a.fillAndStroke();a.begin();a.moveTo(.5*b,0);a.lineTo(.5*b,.0642*c);a.moveTo(.7484*b,.0654*c);a.lineTo(.7126*b,.1281*c);a.moveTo(.93*b,.2471*c);a.lineTo(.8673*b,.2854*c);a.moveTo(b,
|
||||
.5*c);a.lineTo(.9338*b,.5*c);a.moveTo(.93*b,.7509*c);a.lineTo(.8673*b,.7126*c);a.moveTo(.7484*b,.9326*c);a.lineTo(.7126*b,.8699*c);a.moveTo(.5*b,.9338*c);a.lineTo(.5*b,c);a.moveTo(.2496*b,.9325*c);a.lineTo(.2854*b,.8699*c);a.moveTo(.068*b,.7509*c);a.lineTo(.1307*b,.7126*c);a.moveTo(0,.5*c);a.lineTo(.0642*b,.5*c);a.moveTo(.068*b,.2471*c);a.lineTo(.1307*b,.2854*c);a.moveTo(.2496*b,.0654*c);a.lineTo(.2854*b,.1281*c);a.moveTo(.5246*b,.0706*c);a.lineTo(.5*b,.5*c);a.lineTo(.7804*b,.5118*c);a.stroke()},
|
||||
mxBpmnShape.prototype.symbols={general:function(a,d,e,b,c){},message:function(a,d,e,b,c,f,g){a.rect(0,0,b,c);a.fillAndStroke();"none"===mxUtils.getValue(this.style,"fillColor","none")&&g&&a.setStrokeColor("#ffffff");a.begin();a.moveTo(0,0);a.lineTo(.5*b,.5*c);a.lineTo(b,0);a.stroke()},timer:function(a,d,e,b,c){a.ellipse(0,0,b,c);a.fillAndStroke();a.begin();a.moveTo(.5*b,0);a.lineTo(.5*b,.0642*c);a.moveTo(.7484*b,.0654*c);a.lineTo(.7126*b,.1281*c);a.moveTo(.93*b,.2471*c);a.lineTo(.8673*b,.2854*c);
|
||||
a.moveTo(b,.5*c);a.lineTo(.9338*b,.5*c);a.moveTo(.93*b,.7509*c);a.lineTo(.8673*b,.7126*c);a.moveTo(.7484*b,.9326*c);a.lineTo(.7126*b,.8699*c);a.moveTo(.5*b,.9338*c);a.lineTo(.5*b,c);a.moveTo(.2496*b,.9325*c);a.lineTo(.2854*b,.8699*c);a.moveTo(.068*b,.7509*c);a.lineTo(.1307*b,.7126*c);a.moveTo(0,.5*c);a.lineTo(.0642*b,.5*c);a.moveTo(.068*b,.2471*c);a.lineTo(.1307*b,.2854*c);a.moveTo(.2496*b,.0654*c);a.lineTo(.2854*b,.1281*c);a.moveTo(.5246*b,.0706*c);a.lineTo(.5*b,.5*c);a.lineTo(.7804*b,.5118*c);a.stroke()},
|
||||
escalation:function(a,d,e,b,c){a.begin();a.moveTo(0,c);a.lineTo(.5*b,0);a.lineTo(b,c);a.lineTo(.5*b,.5*c);a.close();a.fillAndStroke()},conditional:function(a,d,e,b,c){a.rect(0,0,b,c);a.fillAndStroke();a.begin();a.moveTo(0,.1027*c);a.lineTo(.798*b,.1027*c);a.moveTo(0,.3669*c);a.lineTo(.798*b,.3669*c);a.moveTo(0,.6311*c);a.lineTo(.798*b,.6311*c);a.moveTo(0,.8953*c);a.lineTo(.798*b,.8953*c);a.stroke()},link:function(a,d,e,b,c){a.begin();a.moveTo(0,.76*c);a.lineTo(0,.24*c);a.lineTo(.63*b,.24*c);a.lineTo(.63*
|
||||
b,0);a.lineTo(b,.5*c);a.lineTo(.63*b,c);a.lineTo(.63*b,.76*c);a.close();a.fillAndStroke()},error:function(a,d,e,b,c){a.begin();a.moveTo(0,c);a.lineTo(.3287*b,.123*c);a.lineTo(.6194*b,.6342*c);a.lineTo(b,0);a.lineTo(.6625*b,.939*c);a.lineTo(.3717*b,.5064*c);a.close();a.fillAndStroke()},cancel:function(a,d,e,b,c){a.begin();a.moveTo(.1051*b,0);a.lineTo(.5*b,.3738*c);a.lineTo(.8909*b,0);a.lineTo(b,.1054*c);a.lineTo(.623*b,.5*c);a.lineTo(b,.8926*c);a.lineTo(.8909*b,c);a.lineTo(.5*b,.6242*c);a.lineTo(.1051*
|
||||
b,c);a.lineTo(0,.8926*c);a.lineTo(.373*b,.5*c);a.lineTo(0,.1054*c);a.close();a.fillAndStroke()},compensation:function(a,d,e,b,c){a.begin();a.moveTo(0,.5*c);a.lineTo(.5*b,0);a.lineTo(.5*b,c);a.close();a.moveTo(.5*b,.5*c);a.lineTo(b,0);a.lineTo(b,c);a.close();a.fillAndStroke()},signal:function(a,d,e,b,c){a.begin();a.moveTo(0,c);a.lineTo(.5*b,0);a.lineTo(b,c);a.close();a.fillAndStroke()},multiple:function(a,d,e,b,c){a.begin();a.moveTo(0,.39*c);a.lineTo(.5*b,0);a.lineTo(b,.39*c);a.lineTo(.815*b,c);a.lineTo(.185*
|
||||
|
|
278
src/main/webapp/js/viewer.min.js
vendored
278
src/main/webapp/js/viewer.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Error authorizing with Google's servers. Please refresh t
|
|||
errorSavingFileForbidden=Error saving file. Insufficient access rights.
|
||||
errorSavingFileNameConflict=Could not save diagram. Current page already contains file named '{1}'.
|
||||
errorSavingFileNotFound=Error saving file. File was not found.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Your session has ended. Please <a target='_blank' href='{1}'>{2}</a> and return to this tab to try to save again.
|
||||
errorSendingFeedback=Error sending feedback.
|
||||
errorUpdatingPreview=Error updating preview.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Error authorizing with Google's servers. Please refresh t
|
|||
errorSavingFileForbidden=Error saving file. Insufficient access rights.
|
||||
errorSavingFileNameConflict=Could not save diagram. Current page already contains file named '{1}'.
|
||||
errorSavingFileNotFound=Error saving file. File was not found.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Your session has ended. Please <a target='_blank' href='{1}'>{2}</a> and return to this tab to try to save again.
|
||||
errorSendingFeedback=Error sending feedback.
|
||||
errorUpdatingPreview=Error updating preview.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=خطأ في الترخيص في خوادم Google. ا
|
|||
errorSavingFileForbidden=خطأ في حفظ الملف. أذونات غير كافية.
|
||||
errorSavingFileNameConflict=Could not save diagram. Current page already contains file named '{1}'.
|
||||
errorSavingFileNotFound=خطأ في حفظ الملف. تعذر إيجاد الملف.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Your session has ended. Please <a target='_blank' href='{1}'>{2}</a> and return to this tab to try to save again.
|
||||
errorSendingFeedback=خطأ في إرسال التعليق.
|
||||
errorUpdatingPreview=Error updating preview.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Грешка при авторизацията на съ
|
|||
errorSavingFileForbidden=Грешка при запазване на файла. Недостатъчни права за достъп.
|
||||
errorSavingFileNameConflict=Диаграмата не беше запазена. Настоящата страница вече съдържа файл с име '{1}'.
|
||||
errorSavingFileNotFound=Грешка при запазване на файла. Файлът не беше намерен.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Сесията Ви приключи. Моля <a target='_blank' href='{1}'>{2}</a> и се върнете в този раздел, за да се опитате да запазите отново.
|
||||
errorSendingFeedback=Грешка при изпращането на обратна връзка.
|
||||
errorUpdatingPreview=Грешка при актуализирането на предварителния преглед.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Error authorizing with Google's servers. Please refresh t
|
|||
errorSavingFileForbidden=Error saving file. Insufficient access rights.
|
||||
errorSavingFileNameConflict=Could not save diagram. Current page already contains file named '{1}'.
|
||||
errorSavingFileNotFound=Error saving file. File was not found.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Your session has ended. Please <a target='_blank' href='{1}'>{2}</a> and return to this tab to try to save again.
|
||||
errorSendingFeedback=Error sending feedback.
|
||||
errorUpdatingPreview=Error updating preview.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Greška pri autorizaciji sa Google serverima. Molimo da o
|
|||
errorSavingFileForbidden=Greška pri spašavanju fajla. Nedovoljne ovlasti pristupa.
|
||||
errorSavingFileNameConflict=Nije moguće spasiti dijagram. Trenutna stranica već sadrži fajl naziva '{1}'.
|
||||
errorSavingFileNotFound=Greška pri spašavanju fajla. Fajl nije pronađen.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Vaša sesija je istekla. Molimo <a target='_blank' href='{1}'>{2}</a> vratite se na ovu karticu i ponovo pokušajte spasiti.
|
||||
errorSendingFeedback=Greška pri slanju povratne informacije.
|
||||
errorUpdatingPreview=Greška pri ažuriranju pregleda.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Error en autoritzar els servidors de Google. Si us plau,
|
|||
errorSavingFileForbidden=Error en desar el fitxer. No disposeu dels drets d'accés suficients.
|
||||
errorSavingFileNameConflict=No s'ha pogut desar el diagrama. La pàgina actual conté un fitxer anomenat '{1}'.
|
||||
errorSavingFileNotFound=Error en desar. No s'ha trobat el fitxer.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=La teva sessió ha acabat. Si us plau, <a target='_blank' href='{1}'>{2}</a> i retorna a aquesta pestanya per intentar desar-ho de nou.
|
||||
errorSendingFeedback=Error en enviar la opinió.
|
||||
errorUpdatingPreview=Error pujant la vista prèvia.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Chyba autorizace s Google servery. Prosím obnovte strán
|
|||
errorSavingFileForbidden=Chyba ukládání souboru. Nedostačující přístupová práva.
|
||||
errorSavingFileNameConflict=Diagram nelze uložit. Aktuální stránka už obsahuje soubor se jménem '{1}'.
|
||||
errorSavingFileNotFound=Chyba ukládání souboru. Soubor nenalezen.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Vaše připojení skončilo. Prosím <a target='_blank' href='{1}'>{2}</a>, pak se vraťte na tento panel a zkuste uložit znovu.
|
||||
errorSendingFeedback=Chyba při odesílání zpětné vazby.
|
||||
errorUpdatingPreview=Chyba při aktualizaci náhledu.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Fejl ved autorisering med Google's servere. Genindlæs si
|
|||
errorSavingFileForbidden=Fejl ved lagring af fil. Utilstrækkelige adgangsrettigheder.
|
||||
errorSavingFileNameConflict=Kunne ikke gemme diagram. Nuværende side indeholder allerede en fil med navnet '{1}'.
|
||||
errorSavingFileNotFound=Fejl ved lagring af fil. Filen blev ikke fundet.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Din session er afsluttet. Gør venligst <a target='_blank' href='{1}'>{2}</a> og kom tilbage til denne tab for at prøve at gemme igen.
|
||||
errorSendingFeedback=Fejl ved afsendelse af feedback.
|
||||
errorUpdatingPreview=Fejl ved opdatering af preview.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Error authorizing with Google's servers. Please refresh t
|
|||
errorSavingFileForbidden=Fehler beim Speichern der Datei. Ungenügende Zugriffsrechte.
|
||||
errorSavingFileNameConflict=Diagramm wurde nicht gespeichert. Die Seite enthält bereits eine Datei mit Namen '{1}'.
|
||||
errorSavingFileNotFound=Fehler beim Speichern der Datei. Datei wurde nicht gefunden.
|
||||
errorSavingFileReadOnlyMode=Diagramm kann nicht gespeichert werden während Nur-Lesen Modus aktiv ist.
|
||||
errorSavingFileSessionTimeout=Ihre Sitzung wurde beendet. Bitte <a target='_blank' href='{1}'>{2}</a> und erneut speichern.
|
||||
errorSendingFeedback=Fehler beim versenden des Feedback.
|
||||
errorUpdatingPreview=Fehler beim aktualisieren der Vorschau.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Σφάλμα κατά την εξουσιοδότηση
|
|||
errorSavingFileForbidden=Σφάλμα κατά την αποθήκευση του αρχείου. Ανεπαρκή δικαιώματα πρόσβασης.
|
||||
errorSavingFileNameConflict=Το διάγραμμα δεν αποθηκεύτηκε. Η συγκεκριμένη σελίδα περιέχει ήδη αρχείο που ονομάζεται '{1}'.
|
||||
errorSavingFileNotFound=Σφάλμα κατά την αποθήκευση του αρχείου. Το αρχείο δεν βρέθηκε.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Η συνεδρία σας τελείωσε. Παρακαλώ <a target='_blank' href='{1}'>{2}</a> και επιστρέψτε σε αυτή την καρτέλα για να ξαναπροσπαθήσετε να το αποθηκεύσετε.
|
||||
errorSendingFeedback=Σφάλμα κατά την αποστολή κριτικής.
|
||||
errorUpdatingPreview=Σφάλμα κατά την ενημέρωση προεπισκόπησης.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Error authorizing with Google's servers. Please refresh t
|
|||
errorSavingFileForbidden=Error saving file. Insufficient access rights.
|
||||
errorSavingFileNameConflict=Could not save diagram. Current page already contains file named '{1}'.
|
||||
errorSavingFileNotFound=Error saving file. File was not found.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Your session has ended. Please <a target='_blank' href='{1}'>{2}</a> and return to this tab to try to save again.
|
||||
errorSendingFeedback=Error sending feedback.
|
||||
errorUpdatingPreview=Error updating preview.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Error al autorizar los servidores de Google. Por favor, r
|
|||
errorSavingFileForbidden=Error al guardar el archivo. Derechos de acceso insuficientes.
|
||||
errorSavingFileNameConflict=No se pudo guardar el diagrama. La página actual ya contiene el archivo llamado '{1}'.
|
||||
errorSavingFileNotFound=Error al guardar el archivo. No se ha encontrado el archivo.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Su sesión ha terminado. Por favor, <a target='_blank' href='{1}'>{2}</a> y vuelva a esta pestaña para intentar guardar nuevamente.
|
||||
errorSendingFeedback=Error al enviar opiniones.
|
||||
errorUpdatingPreview=Error al actualizar la vista previa.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Viga Google'i serveritega autoriseerimisel. Palun värske
|
|||
errorSavingFileForbidden=Viga faili salvestamisel. Ebapiisavad ligipääsuõigused.
|
||||
errorSavingFileNameConflict=Diagramm ei salvestunud. Käesolev leht juba sisaldab faili nimega '{1}'.
|
||||
errorSavingFileNotFound=Viga faili salvestamisel. Faili ei leitud.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Sessioon on lõppenud. Palun <a target='_blank' href='{1}'>{2}</a> ja naase sellele vahelehele, et proovida uuesti salvestamist.
|
||||
errorSendingFeedback=Viga tagasiside saatmisel.
|
||||
errorUpdatingPreview=Viga eelvaate uuendamisel.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=خطا در دادن اجازه به سرورهای گ
|
|||
errorSavingFileForbidden=خطا در ذخیره فایل. مجوزهای دسترسی کافی نیستند.
|
||||
errorSavingFileNameConflict=نمودار قابل ذخیره نیست. در صفحه فعلی از قبل فایلی وجود دارد به نام '{1}'
|
||||
errorSavingFileNotFound=خطا در ذخیره فایل. فایل یافت نشد.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=نوبت شما پایان یافته است. لطفا <a target='_blank' href='{1}'>{2}</a> و به این صفحه بازگردید تا مجدد عملیات ذخیره سازی را انجام دهید.
|
||||
errorSendingFeedback=خطا در ارسال نظر.
|
||||
errorUpdatingPreview=خطا در بروز رسانی پیش نما
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Googlen palvelimien valtuuttamisessa tapahtui virhe. Päi
|
|||
errorSavingFileForbidden=Tiedoston tallentamisessa tapahtui virhe. Ei tarpeeksi käyttöoikeuksia.
|
||||
errorSavingFileNameConflict=Kaaviota ei voitu tallentaa. Nykyisellä sivulla on jo tiedosto nimeltä '{1}'.
|
||||
errorSavingFileNotFound=Tiedoston tallentamisessa tapahtui virhe. Tiedostoa ei löytynyt.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Istuntosi on päättynyt. Ole hyvä <a target='_blank' href='{1}'>{2}</a> ja palaa takaisin tähän välilehteen tallentaaksesi uudestaan.
|
||||
errorSendingFeedback=Palautteen lähettäminen epäonnistui.
|
||||
errorUpdatingPreview=Virhe esikatselua päivitettäessä.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Pagkakamali sa pagpapahintulot sa mga server ng Google.
|
|||
errorSavingFileForbidden=Pagkakamali sa pag-save ng file. Hindi sapat ang karapatan sa pag akses.
|
||||
errorSavingFileNameConflict=Pagkakamali sa pagpalit ng pangalan ng file. Hindi sapat ang karapatan sa pag akses.
|
||||
errorSavingFileNotFound=Pagkakamali sa pag-save ng file. Ang file ay hindi nahanap.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Pagkakamali sa pagpalit ng pangalan ng file. Hindi sapat ang karapatan sa pag akses.
|
||||
errorSendingFeedback=Pagkakamali sa pag-send ng kumento.
|
||||
errorUpdatingPreview=Pagkakamali sa pag-update ng paunang tingin.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Erreur d'autorisation avec les serveurs de Google. Veuill
|
|||
errorSavingFileForbidden=Erreur lors de l'enregistrement du fichier. Droits d'accès insuffisants.
|
||||
errorSavingFileNameConflict=Le diagramme n'a pas pu être enregistré. La page actuellement ouverte contient déjà un fichier nommé '{1}'.
|
||||
errorSavingFileNotFound=Erreur lors de l'enregistrement du fichier. Le fichier est introuvable.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Votre session a été fermée. Veuillez <a target='_blank' href='{1}'>{2}</a> et revenir à cet onglet pour tenter d'enregistrer à nouveau.
|
||||
errorSendingFeedback=Erreur lors de l'envoi du commentaire.
|
||||
errorUpdatingPreview=Erreur lors de la mise à jour de l'aperçu.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Error authorizing with Google's servers. Please refresh t
|
|||
errorSavingFileForbidden=Error saving file. Insufficient access rights.
|
||||
errorSavingFileNameConflict=Could not save diagram. Current page already contains file named '{1}'.
|
||||
errorSavingFileNotFound=Error saving file. File was not found.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Your session has ended. Please <a target='_blank' href='{1}'>{2}</a> and return to this tab to try to save again.
|
||||
errorSendingFeedback=Error sending feedback.
|
||||
errorUpdatingPreview=Error updating preview.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=שגיאה באימות מול שרתי גוגל. אנ
|
|||
errorSavingFileForbidden=שגיאה בשמירת הקובץ. זכויות גישה לא מתאימות.
|
||||
errorSavingFileNameConflict=לא ניתן לשמור את הדיאגרמה. העמוד הנוכחי כבר מכיל קובץ בשם '{1}'.
|
||||
errorSavingFileNotFound=שגיאה בשמירת הקובץ. קובץ לא נמצא.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=ההתקשרות שלך הסתיימה. אנא <a target='_blank' href='{1}'>{2}</a> וחזור ללשונית זו כדי לשמור שוב.
|
||||
errorSendingFeedback=שגיאה בשליחת המשוב.
|
||||
errorUpdatingPreview=שגיאה בעדכון התצוגה המקדימה.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Error authorizing with Google's servers. Please refresh t
|
|||
errorSavingFileForbidden=Error saving file. Insufficient access rights.
|
||||
errorSavingFileNameConflict=Could not save diagram. Current page already contains file named '{1}'.
|
||||
errorSavingFileNotFound=Error saving file. File was not found.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Your session has ended. Please <a target='_blank' href='{1}'>{2}</a> and return to this tab to try to save again.
|
||||
errorSendingFeedback=Error sending feedback.
|
||||
errorUpdatingPreview=Error updating preview.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Error authorizing with Google's servers. Please refresh t
|
|||
errorSavingFileForbidden=Error saving file. Insufficient access rights.
|
||||
errorSavingFileNameConflict=Could not save diagram. Current page already contains file named '{1}'.
|
||||
errorSavingFileNotFound=Error saving file. File was not found.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Your session has ended. Please <a target='_blank' href='{1}'>{2}</a> and return to this tab to try to save again.
|
||||
errorSendingFeedback=Error sending feedback.
|
||||
errorUpdatingPreview=Error updating preview.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Hiba a Google szerver engedélyezésekor. Kérjük friss
|
|||
errorSavingFileForbidden=Hiba a fájl mentésekor. Elégtelen hozzáférési jog.
|
||||
errorSavingFileNameConflict=A diagram mentése sikertelen. A pillanatnyi oldal már tartalmaz {1} nevű fájlt.
|
||||
errorSavingFileNotFound=Hiba a fájl mentésekor. A fájl nem található
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Az ülése véget ért. Kérjük <a target='_blank' href='{1}'>{2}</a> és vissza erre a lapra a mentés újrapróbálásához.
|
||||
errorSendingFeedback=Hiba a visszajelzés küldésekor.
|
||||
errorUpdatingPreview=Hiba az előnézet frissítésekor
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=errorSavingFileUnknown
|
|||
errorSavingFileForbidden=errorSavingFileForbidden
|
||||
errorSavingFileNameConflict=errorSavingFileNameConflict
|
||||
errorSavingFileNotFound=errorSavingFileNotFound
|
||||
errorSavingFileReadOnlyMode=errorSavingFileReadOnlyMode
|
||||
errorSavingFileSessionTimeout=errorSavingFileSessionTimeout
|
||||
errorSendingFeedback=errorSendingFeedback
|
||||
errorUpdatingPreview=errorUpdatingPreview
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Galat otorisasi dengan peladen Google. Harap segarkan hal
|
|||
errorSavingFileForbidden=Galat menyimpan berkas. Hak akses tidak cukup.
|
||||
errorSavingFileNameConflict=Tidak dapat menyimpan diagram. Halaman saat ini telah berisi berkas dengan nama '{1}'.
|
||||
errorSavingFileNotFound=Galat menyimpan berkas. Berkas tidak ditemukan.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Sesi Anda telah berakhir. Harap <a target='_blank' href='{1}'>{2}</a> dan kembali ke tab ini untuk mencoba menyimpan sekali lagi.
|
||||
errorSendingFeedback=Galat mengirim umpan balik.
|
||||
errorUpdatingPreview=Galat memperbarui pratinjau.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Errore nell'autorizzazione dei server di Google. Aggiorna
|
|||
errorSavingFileForbidden=Errore nel salvataggio del file. Diritti di accesso non sufficienti.
|
||||
errorSavingFileNameConflict=Impossibile salvare il diagramma. La pagina corrente contiene già un file con questo nome '{1}'
|
||||
errorSavingFileNotFound=Errore nel salvataggio del file. Il file non è stato trovato
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=La tua sessione è terminata. Perfavore <a target='_blank' href='{1}'>{2}</a> e ritorna su questa scheda per riprovare a salvare
|
||||
errorSendingFeedback=Errore nell'invio del feedback
|
||||
errorUpdatingPreview=Errore nell'aggiornamento dell'anteprima
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Googleサーバーの認証エラーです。再トライ
|
|||
errorSavingFileForbidden=ファイル保存エラー。アクセス権が不十分。
|
||||
errorSavingFileNameConflict=ダイアグラムを保存できませんでした。現在のページに既にファイルが含まれています'{1}'.
|
||||
errorSavingFileNotFound=ファイル保存エラー。ファイルが見つかりません。
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=あなたのセッションは終了しました。どうぞ <a target='_blank' href='{1}'>{2}</a> このタブに戻ってもう一度保存を試みてください。
|
||||
errorSendingFeedback=エラーのフィードバックを送信中。
|
||||
errorUpdatingPreview=エラー更新プレビュー。
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Error authorizing with Google's servers. Please refresh t
|
|||
errorSavingFileForbidden=Error saving file. Insufficient access rights.
|
||||
errorSavingFileNameConflict=Could not save diagram. Current page already contains file named '{1}'.
|
||||
errorSavingFileNotFound=Error saving file. File was not found.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Your session has ended. Please <a target='_blank' href='{1}'>{2}</a> and return to this tab to try to save again.
|
||||
errorSendingFeedback=Error sending feedback.
|
||||
errorUpdatingPreview=Error updating preview.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=구글 서버 승인 오류. 페이지 새로 고침 후
|
|||
errorSavingFileForbidden=파일 저장 오류. 접근 권한이 부족합니다.
|
||||
errorSavingFileNameConflict=다이어그램이 저장되지 못하였습니다. 이미 '{1}' 이름을 가진 파일이 해당 페이지에 존재합니다.
|
||||
errorSavingFileNotFound=파일 저장 오류. 파일을 찾을 수 없습니다.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=세션이 종료 되었습니다. <a target='_blank' href='{1}'>{2}</a> 해주시고, 다시 저장하시려면 해당 탭으로 돌아가 주시기 바랍니다.
|
||||
errorSendingFeedback=의견 보내기 오류
|
||||
errorUpdatingPreview=업데이트 미리보기 오류
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Error authorizing with Google's servers. Please refresh t
|
|||
errorSavingFileForbidden=Error saving file. Insufficient access rights.
|
||||
errorSavingFileNameConflict=Could not save diagram. Current page already contains file named '{1}'.
|
||||
errorSavingFileNotFound=Error saving file. File was not found.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Your session has ended. Please <a target='_blank' href='{1}'>{2}</a> and return to this tab to try to save again.
|
||||
errorSendingFeedback=Error sending feedback.
|
||||
errorUpdatingPreview=Error updating preview.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Error authorizing with Google's servers. Please refresh t
|
|||
errorSavingFileForbidden=Error saving file. Insufficient access rights.
|
||||
errorSavingFileNameConflict=Could not save diagram. Current page already contains file named '{1}'.
|
||||
errorSavingFileNotFound=Error saving file. File was not found.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Your session has ended. Please <a target='_blank' href='{1}'>{2}</a> and return to this tab to try to save again.
|
||||
errorSendingFeedback=Error sending feedback.
|
||||
errorUpdatingPreview=Error updating preview.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Error authorizing with Google's servers. Please refresh t
|
|||
errorSavingFileForbidden=Error saving file. Insufficient access rights.
|
||||
errorSavingFileNameConflict=Could not save diagram. Current page already contains file named '{1}'.
|
||||
errorSavingFileNotFound=Error saving file. File was not found.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Your session has ended. Please <a target='_blank' href='{1}'>{2}</a> and return to this tab to try to save again.
|
||||
errorSendingFeedback=Error sending feedback.
|
||||
errorUpdatingPreview=Error updating preview.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Error authorizing with Google's servers. Please refresh t
|
|||
errorSavingFileForbidden=Error saving file. Insufficient access rights.
|
||||
errorSavingFileNameConflict=Could not save diagram. Current page already contains file named '{1}'.
|
||||
errorSavingFileNotFound=Error saving file. File was not found.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Your session has ended. Please <a target='_blank' href='{1}'>{2}</a> and return to this tab to try to save again.
|
||||
errorSendingFeedback=Error sending feedback.
|
||||
errorUpdatingPreview=Error updating preview.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Ralat mendapatkan kebenaran daripada pelayan Google. Sila
|
|||
errorSavingFileForbidden=Ralat menyimpan fail. Hak akses tidak mencukupi.
|
||||
errorSavingFileNameConflict=Tidak dapat menyimpan gambarajah. Halaman semasa sudah mengandungi fail bernama '{1}'.
|
||||
errorSavingFileNotFound=Ralat menyimpan fail. Fail tidak ditemui.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Sesi anda telah tamat. Sila <a target='_blank' href='{1}'>{2}</a> dan kembali ke tab ini untuk mencuba menyimpan semula.
|
||||
errorSendingFeedback=Ralat menghantar maklum balas.
|
||||
errorUpdatingPreview=Ralat mengemaskini pratonton.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Fout bij het autoriseren met Google servers. Pagina herla
|
|||
errorSavingFileForbidden=Fout bij opslaan bestand. Onvoldoende toegangsrechten.
|
||||
errorSavingFileNameConflict=Kon diagram niet opslaan. Huidige pagina bevat al een bestand genaamd '{1}'.
|
||||
errorSavingFileNotFound=Fout bij opslaan bestand. Bestand niet gevonden.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Uw sessie is verlopen. Graag <a target='_blank' href='{1}'>{2}</a> en ga weer naar dit tabblad om opnieuw te proberen op te slaan.
|
||||
errorSendingFeedback=Fout bij versturen opmerking.
|
||||
errorUpdatingPreview=Fout bij bijwerken voorbeeld.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Feil ved autorisering med Googles servere. Vennligst oppd
|
|||
errorSavingFileForbidden=Feil ved lagring av til. Utilstrekkelige adgangsrettigheter.
|
||||
errorSavingFileNameConflict=Kunne ikke lagre diagram. Den nåværende siden inneholder allerede filnavnet '{1}'.
|
||||
errorSavingFileNotFound=Feil ved lagring av fil. Fant ikke filen.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Din nåværende sesjon er avsluttet. Vennligst <a target='_blank' href='{1}'>{2}</a> og kom tilbake til denne fanen for å prøve å lagre igjen.
|
||||
errorSendingFeedback=Feil ved sending av tilbakemelding.
|
||||
errorUpdatingPreview=Feil ved oppdatering av forhåndsvisning.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Błąd podczas autoryzacji z serwerami Google. Proszę od
|
|||
errorSavingFileForbidden=Błąd podczas zapisywania pliku. Brak wystarczających praw dostępu.
|
||||
errorSavingFileNameConflict=Nie można zapisać diagramu. Aktualna strona zawiera już plik '{1}'
|
||||
errorSavingFileNotFound=Błąd podczas zapisywania pliku. Plik nie został odnaleziony.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Twoja sesja wygasła. <a target='_blank' href='{1}'>{2}</a> i wróć do tej karty, by spróbować zapisać ponownie.
|
||||
errorSendingFeedback=Błąd podczas przesyłania opinii.
|
||||
errorUpdatingPreview=Błąd podczas aktualizowania podglądu.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Erro ao autorizar com servidores do Google. Por favor, at
|
|||
errorSavingFileForbidden=Erro ao salvar o arquivo. Direitos de acesso insuficientes.
|
||||
errorSavingFileNameConflict=Não foi possível salvar o diagrama. A página atual já contém arquivo com o nome '{1}'.
|
||||
errorSavingFileNotFound=Erro ao salvar o arquivo. Arquivo não encontrado.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Sua sessão foi finalizada. Por favor <a target='_blank' href='{1}'>{2}</a> e retorne a esta guia para tentar salvar novamente.
|
||||
errorSendingFeedback=Erro ao enviar feedback.
|
||||
errorUpdatingPreview=Erro na atualização da visualização
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Erro ao autorizar com os servidores do Google. Por favor,
|
|||
errorSavingFileForbidden=Erro ao guardar o ficheiro. Direitos de acesso insuficientes.
|
||||
errorSavingFileNameConflict=Não foi possível salvar o diagrama. A página atual já contem ficheiro com nome '{1}'.
|
||||
errorSavingFileNotFound=Erro ao guardar o ficheiro. Ficheiro não encontrado.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Sua sessão foi terminada. Por favor <a target='_blank' href='{1}'>{2}</a> e retorne a esta guia para tentar salvar novamente.
|
||||
errorSendingFeedback=Erro ao enviar feedback.
|
||||
errorUpdatingPreview=Erro actualização antevisão.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Eroare la autorizarea cu serverele Google. Te rugăm să
|
|||
errorSavingFileForbidden=Eroare la salvarea fișierului. Drepturi de acces insuficiente.
|
||||
errorSavingFileNameConflict=Diagrama nu a putut fi salvată. Pagina curentă deja conține un fișier numit '{1}'.
|
||||
errorSavingFileNotFound=Eroare la salvarea fișierului. Fişierul nu a fost găsit.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Sesiunea dumneavoastră a expirat. Va rugăm să <a target='_blank' href='{1}'>{2}</a> si să reveniți la această pagină pentru a încerca să salvați din nou.
|
||||
errorSendingFeedback=Eroare la trimitere feedback.
|
||||
errorUpdatingPreview=Eroare la actualizarea exemplului.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Ошибка авторизации на сервере G
|
|||
errorSavingFileForbidden=Ошибка сохранения файла. Не хватает прав доступа.
|
||||
errorSavingFileNameConflict=Невозможно сохранить диаграмму. Страница уже содержит файл с названием '{1}'.
|
||||
errorSavingFileNotFound=Ошибка при сохранении файла. Файл не найден.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Ваша сессия истекла. Для сохранения, пожалуйста, <a target='_blank' href='{1}'>{2}</a> и вернитесь на эту закладку.
|
||||
errorSendingFeedback=Ошибка при отправке сообщения обратной связи.
|
||||
errorUpdatingPreview=Ошибка при обновлении предпросмотра.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Error authorizing with Google's servers. Please refresh t
|
|||
errorSavingFileForbidden=Error saving file. Insufficient access rights.
|
||||
errorSavingFileNameConflict=Could not save diagram. Current page already contains file named '{1}'.
|
||||
errorSavingFileNotFound=Error saving file. File was not found.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Your session has ended. Please <a target='_blank' href='{1}'>{2}</a> and return to this tab to try to save again.
|
||||
errorSendingFeedback=Error sending feedback.
|
||||
errorUpdatingPreview=Error updating preview.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Error authorizing with Google's servers. Please refresh t
|
|||
errorSavingFileForbidden=Error saving file. Insufficient access rights.
|
||||
errorSavingFileNameConflict=Could not save diagram. Current page already contains file named '{1}'.
|
||||
errorSavingFileNotFound=Error saving file. File was not found.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Your session has ended. Please <a target='_blank' href='{1}'>{2}</a> and return to this tab to try to save again.
|
||||
errorSendingFeedback=Error sending feedback.
|
||||
errorUpdatingPreview=Error updating preview.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Greška pri autorizaciji sa Google serverom. Molimo vas,
|
|||
errorSavingFileForbidden=Greška pri snimanju. Nedovoljna prava pristupa.
|
||||
errorSavingFileNameConflict=Dijagram nije sačuvan. Trenutna stranica već sadrži dijagram pod nazivom {1}
|
||||
errorSavingFileNotFound=Greška pri snimanju. Datoteka nije pronađena.
|
||||
errorSavingFileReadOnlyMode=Dijagram ne može biti sačuvan dok traje zabrana upisa.
|
||||
errorSavingFileSessionTimeout=Vaša sesija je istekla. Molimo <a target='_blank' href='{1}'>prijavite se</a> i vratite se na ovu karticu da pokušate ponovo da sačuvate.
|
||||
errorSendingFeedback=Greška pri slanju povratne informacije.
|
||||
errorUpdatingPreview=Greška pri osvežavanju pregleda
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Ett fel uppstod vid autentisering med Googles servrar. V
|
|||
errorSavingFileForbidden=Ett fel uppstod vid sparande av filen. Otillräckliga behörighetsrättigheter.
|
||||
errorSavingFileNameConflict=Kunde inte spara diagrammet. Sidan innehåller redan filnamn '{1}'.
|
||||
errorSavingFileNotFound=Ett fel uppstod vid sparande av filen. Filen kunde inte hittas.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Din session har avslutats. Vänligen <a target='_blank' href='{1}'>{2}</a> och återgå till denna flik och försök att spara igen.
|
||||
errorSendingFeedback=Ett fel uppstod vid sändning av feedback.
|
||||
errorUpdatingPreview=Ett fel uppstod vid uppdatering av förhandsvisning.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Error authorizing with Google's servers. Please refresh t
|
|||
errorSavingFileForbidden=Error saving file. Insufficient access rights.
|
||||
errorSavingFileNameConflict=Could not save diagram. Current page already contains file named '{1}'.
|
||||
errorSavingFileNotFound=Error saving file. File was not found.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Your session has ended. Please <a target='_blank' href='{1}'>{2}</a> and return to this tab to try to save again.
|
||||
errorSendingFeedback=Error sending feedback.
|
||||
errorUpdatingPreview=Error updating preview.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Error authorizing with Google's servers. Please refresh t
|
|||
errorSavingFileForbidden=Error saving file. Insufficient access rights.
|
||||
errorSavingFileNameConflict=Could not save diagram. Current page already contains file named '{1}'.
|
||||
errorSavingFileNotFound=Error saving file. File was not found.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Your session has ended. Please <a target='_blank' href='{1}'>{2}</a> and return to this tab to try to save again.
|
||||
errorSendingFeedback=Error sending feedback.
|
||||
errorUpdatingPreview=Error updating preview.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Error authorizing with Google's servers. Please refresh t
|
|||
errorSavingFileForbidden=Error saving file. Insufficient access rights.
|
||||
errorSavingFileNameConflict=Could not save diagram. Current page already contains file named '{1}'.
|
||||
errorSavingFileNotFound=Error saving file. File was not found.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Your session has ended. Please <a target='_blank' href='{1}'>{2}</a> and return to this tab to try to save again.
|
||||
errorSendingFeedback=Error sending feedback.
|
||||
errorUpdatingPreview=Error updating preview.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=เกิดข้อผิดพลาดเกี่ย
|
|||
errorSavingFileForbidden=เกิดข้อผิดพลาดในการบันทึกไฟล์ สิทธิในการเข้าใช้ไม่เพียงพอ
|
||||
errorSavingFileNameConflict=ไม่สามารถบันทึกแผนภาพได้ หน้าปัจจุบันมีไฟล์ชื่อ '{1}' แล้ว
|
||||
errorSavingFileNotFound=เกิดข้อผิดพลาดในการบันทึกไฟล์ ไม่พบไฟล์
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=เซสชั่นของคุณได้สิ้นสุดลงแล้ว กรุณา <a target='_blank' href='{1}'> {2} </a> และกลับไปที่แท็บนี้เพื่อลองบันทึกอีกครั้ง
|
||||
errorSendingFeedback=การส่งฟีดแบ็กผิดพลาด
|
||||
errorUpdatingPreview=เกิดข้อผิดพลาดในการอัปเดตตัวอย่าง
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Google'ın sunucuları yetkilendirme hatası. Lütfen tek
|
|||
errorSavingFileForbidden=Dosya kaydetme hatası. Yetersiz erişim hakları.
|
||||
errorSavingFileNameConflict=Diyagramı kaydedemedi. Mevcut sayfa '{1}' isimli dosyayı çoktan içeriyor
|
||||
errorSavingFileNotFound=Dosyayı kaydederken hata. Dosya bulunamadı.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Oturumunuz sona ermiştir. Lütfen <a hedef='_boşluk' href='{1}'>{2}</a>
|
||||
errorSendingFeedback=Geri-bildirim gönderme hatası.
|
||||
errorUpdatingPreview=Önizleme güncelleme hatası
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Помилка при авторизації на сер
|
|||
errorSavingFileForbidden=Помилка при збереженні файла. Недостатні права доступу.
|
||||
errorSavingFileNameConflict=Не вдалося зберегти діаграму. На цій сторінці вже є файл з назвою '{1}'.
|
||||
errorSavingFileNotFound=Помилка при збереженні файла. Файл не знайдено.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Вашу сесію завершено. Будь ласка, <a target='_blank' href='{1}'>{2}</a> та поверніться до цієї вкладки, щоб спробувати зберегти ще раз.
|
||||
errorSendingFeedback=Помилка при відправці форми зворотнього зв'язку.
|
||||
errorUpdatingPreview=Помилка при оновленні прев'ю.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Lỗi khi cấp phép với máy chủ Google. Xin vui l
|
|||
errorSavingFileForbidden=Lỗi khi lưu tập tin. Không đủ quyền truy xuất.
|
||||
errorSavingFileNameConflict=Không thể lưu biểu đồ, Trang hiện tại đã có tập tin mang tên '{1}'
|
||||
errorSavingFileNotFound=Lỗi khi lưu tập tin. Không tìm thấy tập tin.
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=Phiên làm việc của bạn đã kết thúc. Vui lòng <a target='_blank' href='{1}'>{2}</a> và trở về tab này để thử lưu lại lần nữa.
|
||||
errorSendingFeedback=Lỗi khi gửi phản hồi.
|
||||
errorUpdatingPreview=Lỗi khi cập nhật bản xem trước.
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Google服務授權出錯。請重新載入頁面然後再
|
|||
errorSavingFileForbidden=儲存檔案出錯。沒有足夠的存取權。
|
||||
errorSavingFileNameConflict=無法儲存此圖表。當前頁面已存在名為「{1}」的檔案。
|
||||
errorSavingFileNotFound=儲存檔案出錯。找不到檔案。
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=你的會話已經結束。請<a target='_blank'href='{1}'>{2}</a>,然後返回此選項卡並再次儲存。
|
||||
errorSendingFeedback=傳送回饋出錯。
|
||||
errorUpdatingPreview=更新預覽畫面出錯。
|
||||
|
|
|
@ -226,6 +226,7 @@ errorSavingFileUnknown=Google服务器授权出错。请刷新页面,然后重
|
|||
errorSavingFileForbidden=保存文件时出错。没有足够的访问权限。
|
||||
errorSavingFileNameConflict=无法保存此图表。当前页面已经包含名为'{1}'的文件。
|
||||
errorSavingFileNotFound=保存文件时出错,文件未找到。
|
||||
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
|
||||
errorSavingFileSessionTimeout=您的会话已经结束。请<a target='_blank'href='{1}'>{2}</a>,然后返回此标签以尝试再次保存。
|
||||
errorSendingFeedback=发送反馈出错。
|
||||
errorUpdatingPreview=更新预览出错。
|
||||
|
|
|
@ -266,6 +266,8 @@ mxBpmnShape.prototype.redrawPath = function(c, x, y, w, h, layer)
|
|||
{
|
||||
}
|
||||
|
||||
isInverse = false;
|
||||
|
||||
if (s === 'star')
|
||||
{
|
||||
c.setFillColor(strokeColor);
|
||||
|
@ -274,9 +276,10 @@ mxBpmnShape.prototype.redrawPath = function(c, x, y, w, h, layer)
|
|||
{
|
||||
c.setStrokeColor(fillColor);
|
||||
c.setFillColor(strokeColor);
|
||||
isInverse = true;
|
||||
}
|
||||
|
||||
f.call(this, c, x, y, w, h, layer);
|
||||
f.call(this, c, x, y, w, h, layer, isInverse);
|
||||
|
||||
if (s === 'star')
|
||||
{
|
||||
|
@ -430,7 +433,7 @@ mxBpmnShape.prototype.symbols = {
|
|||
'general' : function(c, x, y, w, h)
|
||||
{
|
||||
},
|
||||
'message': function(c, x, y, w, h)
|
||||
'message': function(c, x, y, w, h, layer, isInverse)
|
||||
{
|
||||
c.rect(0, 0, w, h);
|
||||
c.fillAndStroke();
|
||||
|
@ -439,7 +442,10 @@ mxBpmnShape.prototype.symbols = {
|
|||
|
||||
if (fc === 'none')
|
||||
{
|
||||
c.setStrokeColor('#ffffff');
|
||||
if (isInverse)
|
||||
{
|
||||
c.setStrokeColor('#ffffff');
|
||||
}
|
||||
}
|
||||
|
||||
c.begin();
|
||||
|
|
Loading…
Reference in a new issue