| /plugin/diagramsnet/lib/js/grapheditor/ |
| D | Editor.js | 7 Editor = function(chromeless, themes, model, graph, editable) class 19 return this.filename || mxResources.get('drawing', [Editor.pageCounter]) + '.xml'; 64 Editor.pageCounter = 0; 74 while (op.opener != null && typeof op.opener.Editor !== 'undefined' && 75 !isNaN(op.opener.Editor.pageCounter) && 85 op.Editor.pageCounter++; 86 Editor.pageCounter = op.Editor.pageCounter; 98 Editor.defaultHtmlFont = '-apple-system, BlinkMacSystemFont, "Segoe UI Variable", "Segoe UI", syste… 103 Editor.useLocalStorage = typeof(Storage) != 'undefined' && mxClient.IS_IOS; 108 Editor.rowMoveImage = (mxClient.IS_SVG) ? 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAEBA… [all …]
|
| D | Actions.js | 96 …this.addAction('save', function() { ui.saveFile(false); }, null, null, Editor.ctrlKey + '+S').isEn… 97 …this.addAction('saveAs...', function() { ui.saveFile(true); }, null, null, Editor.ctrlKey + '+Shif… 106 … PrintDialog(ui).container, 300, 180, true, true); }, null, 'sprite-print', Editor.ctrlKey + '+P'); 110 this.addAction('undo', function() { ui.undo(); }, null, 'sprite-undo', Editor.ctrlKey + '+Z'); 111 …{ ui.redo(); }, null, 'sprite-redo', (!mxClient.IS_WIN) ? Editor.ctrlKey + '+Shift+Z' : Editor.ctr… 134 }, null, 'sprite-cut', Editor.ctrlKey + '+X'); 154 }, null, 'sprite-copy', Editor.ctrlKey + '+C'); 163 if (Editor.enableNativeCipboard) 198 }, false, 'sprite-paste', Editor.ctrlKey + '+V'); 259 if (Editor.enableNativeCipboard) [all …]
|
| D | Dialogs.js | 18 iframe.setAttribute('width', (((Editor.useLocalStorage) ? 640 : 320) + dx) + 'px'); 19 iframe.setAttribute('height', (((Editor.useLocalStorage) ? 480 : 220) + dx) + 'px'); 1749 icon.setAttribute('src', Editor.helpImage); 2020 div.style.background = (!Editor.isDarkMode()) ? '#fff' : Dialog.backdropColor; 2029 listDiv.style.backgroundColor = (!Editor.isDarkMode()) ? '#fff' : Dialog.backdropColor; 2068 ldiv.style.backgroundColor = (!Editor.isDarkMode()) ? 'whiteSmoke' : Dialog.backdropColor; 2082 img.setAttribute('src', Editor.trashImage); 2085 if (Editor.isDarkMode()) 2137 img.setAttribute('src', Editor.verticalDotsImage); 2160 menu.addCheckmark(item, Editor.checkmarkImage); [all …]
|
| /plugin/diagramsnet/lib/js/diagramly/ |
| D | Minimal.js | 167 … if (Editor.enableCustomLibraries && (urlParams['embed'] != '1' || urlParams['libraries'] == '1')) 251 …Editor.checkmarkImage = Graph.createSvgImage(22, 18, '<path transform="translate(4 0)" d="M7.181,1… 327 if (Editor.darkMode != value) 330 Editor.darkMode = value; 333 this.spinner.opts.color = Editor.isDarkMode() ? '#c0c0c0' : '#000'; 334 …this.setGridColor(Editor.isDarkMode() ? graph.view.defaultDarkGridColor : graph.view.defaultGridCo… 336 Editor.isDarkMode() ? Editor.darkColor : '#ffffff'; 337 graph.defaultPageBorderColor = Editor.isDarkMode() ? '#505759' : '#ffffff'; 338 graph.shapeBackgroundColor = Editor.isDarkMode() ? Editor.darkColor : '#ffffff'; 339 graph.shapeForegroundColor = Editor.isDarkMode() ? Editor.lightColor : '#000000'; [all …]
|
| D | Editor.js | 24 Editor.prototype.appName = 'diagrams.net'; class 29 Editor.prototype.diagramFileTypes = [ 39 …Editor.prototype.libraryFileTypes = [{description: 'Library (.drawiolib, .xml)', extensions: ['dra… 44 Editor.prototype.fileExtensions = [ 52 Editor.styles = [{}, 104 …Editor.saveImage = 'data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmci… 109 …Editor.smallPlusImage = (!mxClient.IS_SVG) ? IMAGE_PATH + '/plus.png' : 'data:image/png;base64,iVB… 114 …Editor.spinImage = (!mxClient.IS_SVG) ? IMAGE_PATH + '/spin.gif' : 'data:image/gif;base64,R0lGODlh… 119 …Editor.globeImage = 'data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmc… 124 …Editor.commentImage = 'data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zd… [all …]
|
| D | Settings.js | 18 key: Editor.settingsKey, 223 configVersion: Editor.configVersion, 226 customLibraries: Editor.defaultCustomLibraries, 282 if (config == null || (config.configVersion != Editor.configVersion) || 283 (Editor.config != null && Editor.config.override)) 314 mxSettings.settings.customLibraries = Editor.defaultCustomLibraries;
|
| D | OneDriveClient.js | 21 inlinePicker = window.Editor != null? Editor.oneDriveInlinePicker : true;
|
| D | GraphViewer.js | 228 this.editor = new Editor(true, null, null, this.graph); 318 this.updateGraphXml(Editor.parseDiagramNode(this.diagrams[this.currentPage])); 364 Editor.parseDiagramNode( 589 return new mxImage(Editor.createSvgDataUri(mxUtils.getXml(svgRoot)), 1345 }), Editor.previousImage, mxResources.get('previousPage') || 'Previous Page'); 1355 }), Editor.nextImage, mxResources.get('nextPage') || 'Next Page'); 1382 }), Editor.zoomOutImage, mxResources.get('zoomOut') || 'Zoom Out'); 1387 }), Editor.zoomInImage, mxResources.get('zoomIn') || 'Zoom In'); 1394 }), Editor.zoomFitImage, mxResources.get('fit') || 'Fit'); 1461 layersDialog.style.fontFamily = Editor.defaultHtmlFont; [all …]
|
| D | Pages.js | 26 this.node.setAttribute('id', Editor.guid()); 197 graph.model.prefix = Editor.guid() + '-'; 391 return new mxImage(Editor.createSvgDataUri(mxUtils.getXml(svgRoot)), 506 …else if (typeof(Editor.MathJaxClear) !== 'undefined' && (this.editor == null || !this.editor.graph… 509 Editor.MathJaxClear(); 848 if (fontUrl.indexOf(Editor.GOOGLE_FONTS) == 0) 903 var cause = Editor.extractParserError(node); 930 var cause = Editor.extractParserError(node); 1047 id = Editor.guid(); 1287 tab.style.backgroundColor = Editor.isDarkMode() ? Editor.darkColor : '#fff'; [all …]
|
| /plugin/jquery-syntax/jquery-syntax/ |
| D | jquery.syntax.layout.editor.js | 5 Syntax.Editor=function(container,text){this.container=container;this.current=this.getLines();} class in Syntax 6 Syntax.Editor.prototype.getLines=function(){var children=this.container.childNodes,lines=[],offsets… 11 Syntax.Editor.prototype.updateChangedLines=function(){var result={};var updated=this.getLines();var… 18 Syntax.Editor.prototype.textForLines=function(start,end){return this.current.lines.slice(start,end)… 19 Syntax.Editor.prototype.updateLines=function(changed,newLines){if(changed.start!=changed.end){var s… 21 Syntax.Editor.getCharacterOffset=function(element){var caretOffset=0;if(typeof window.getSelection!… 22 return caretOffset;};Syntax.Editor.getNodesForCharacterOffsets=function(offsets,node){var treeWalke… 24 return nodes;};Syntax.Editor.prototype.getClientState=function(){var state={};var selection=window.… 25 state.range=selection.getRangeAt(0);if(state.range){state.startOffset=Syntax.Editor.getCharacterOff… 26 …Editor.prototype.setClientState=function(state){if(state.startOffset){var nodes=Syntax.Editor.getN…
|
| /plugin/jsoneditor/demo/ |
| D | jsoneditor_plugin.txt | 1 ====== JSON Editor Plugin ====== 30 …Editor Plugin (Dokuwiki plugin) is based on [[https://www.dokuwiki.org/plugin:json|JSON plugin]]. … 48 … into [[https://github.com/json-editor/json-editor#options|JSON Editor]]. All JSON Editor options … 63 JSON Editor (JavaScript library) uses template engines, which may automatically generate json data … 69 … - README contains specific information for the library used in the JSON Editor Plugin. Here is [[…
|
| D | jsoneditor_demo.txt | 1 ====== JSON Editor Demo ====== 3 This is example for the [[https://www.dokuwiki.org/plugin:jsoneditor|JSON Editor Plugin]]. 133 ===== JSON Editor =====
|
| /plugin/ckgdoku/lang/de/ |
| D | lang.php | 53 $lang['uprofile_title'] = 'Wählen Sie ihren Standard Editor'; 56 $lang['btn_title_dw_fb'] = 'Speichern und Editor schließen und zum DW Dateibrowser wechseln'; 57 $lang['btn_title_ckg_fb'] = 'Speichern und Editor schließen und zum CKG Dateibrowser wechseln'; 67 … = '<b>Neues Feature:</b> Doppelklick im Browserfenster um den DW Editor zum Bearbeiten ein…
|
| /plugin/ckgedit/lang/de/ |
| D | lang.php | 58 $lang['uprofile_title'] = 'Wählen Sie ihren Standard Editor'; 61 $lang['btn_title_dw_fb'] = 'Speichern und Editor schließen und zum DW Dateibrowser wechseln'; 62 $lang['btn_title_ckg_fb'] = 'Speichern und Editor schließen und zum CKG Dateibrowser wechseln'; 72 … = '<b>Neues Feature:</b> Doppelklick im Browserfenster um den DW Editor zum Bearbeiten ein…
|
| /plugin/editor/ |
| D | README | 1 ====== Editor Plugin for DokuWiki ====== 3 All documentation for the Editor Plugin is available online at:
|
| /plugin/diagramsnet/lib/js/onedrive/ |
| D | mxODPicker.js | 76 var isDarkMode = window.Editor != null && Editor.isDarkMode != null && Editor.isDarkMode(); 262 var editor = new Editor(); 308 cnt = 'data:image/png;base64,' + Editor.base64Encode(cnt); 309 cnt = Editor.extractGraphModelFromPng(cnt); 313 var node = Editor.extractGraphModel(doc.documentElement);
|
| /plugin/diagramsnet/lib/js/ |
| D | export.js | 7 Editor.initMath((remoteMath? 'https://app.diagrams.net/' : '') + 'math/MathJax.js'); 68 data.xml = Editor.extractGraphModelFromPng('data:image/png;base64,' + data.xml); 79 var node = Editor.extractGraphModel(doc.documentElement, true); 239 Editor.prototype.addMathCss(svgRoot); class 284 var editorDoMathJaxRender = Editor.doMathJaxRender; 286 Editor.doMathJaxRender = function(container) 302 if (math && Editor.MathJaxRender != null) 305 Editor.MathJaxRender(elt); 330 if (extFonts[i].url.indexOf(Editor.GOOGLE_FONTS) == 0) 857 xmlDoc = Editor.parseDiagramNode(diagrams[i]);
|
| /plugin/siteexport/ |
| D | .gitignore | 4 # IDE/Editor temp files
|
| /plugin/dirtylittlehelper/mermaid/editor/src/routes/ |
| D | Edit.svelte | 4 import Editor from '../components/Editor.svelte'; 228 <h1 id="app-title">Mermaid Live Editor</h1> 245 <Editor data={params.data} /> 296 Live Editor on GitHub
|
| /plugin/metaeditor/ |
| D | plugin.info.txt | 5 name Meta Data Editor
|
| /plugin/codemirror/ |
| D | plugin.info.txt | 6 desc Editor with syntax highlighting
|
| /plugin/aceeditor/ |
| D | plugin.info.txt | 5 name Ace Editor plugin
|
| /plugin/jsoneditor/ |
| D | plugin.info.txt | 5 name JSON Editor Plugin
|
| /plugin/wysiwyg/fckeditor/editor/_source/internals/ |
| D | fckdialog.js | 33 oDialogInfo.Editor = window ;
|
| /plugin/grensladawritezor/fckeditor/editor/_source/internals/ |
| D | fckdialog.js | 33 oDialogInfo.Editor = window ;
|