Home
last modified time | relevance | path

Searched refs:diagrams (Results 1 – 25 of 131) sorted by relevance

123456

/plugin/diagrams/script/
H A DDiagramsForm.js24 const name = LANG.plugins.diagrams.formtitle;
61 editButton.innerText = LANG.plugins.diagrams.editButton;
83 selectButton.innerText = LANG.plugins.diagrams.selectSource;
105 … type: 'select', 'label': LANG.plugins.diagrams.alignment, 'name': 'align', 'options':
108 {value: 'left', label: LANG.plugins.diagrams.left},
109 {value: 'right', label: LANG.plugins.diagrams.right},
110 {value: 'center', label: LANG.plugins.diagrams.center}
114 label: LANG.plugins.diagrams.title, name: 'title'
121 label: LANG.plugins.diagrams.mediaSource,
204 alert(LANG.plugins.diagrams.mediafileIsNotDiagram);
H A Dprosemirror.js61 window.Prosemirror.pluginNodeViews.diagrams = function diagrams(node, outerview, getPos) { function
66 if (JSINFO.plugins.diagrams && (JSINFO.plugins.diagrams.mode & 1)) {
71 if (JSINFO.plugins.diagrams && (JSINFO.plugins.diagrams.mode & 2)) {
H A DButtonFunctions.js25 button.append(LANG.plugins.diagrams.downloadPNGButtonShort);
26 button.title = LANG.plugins.diagrams.downloadPNGButton;
48 button.append(LANG.plugins.diagrams.downloadSVGButtonShort);
49 button.title = LANG.plugins.diagrams.downloadSVGButton;
66 button.innerText = LANG.plugins.diagrams.openButtonShort;
67 button.title = LANG.plugins.diagrams.openButton;
H A Dmediafile-editbutton.js7 const diagrams = document.querySelectorAll('object.diagrams-svg[data-id]'); constant
8 const diagramIDs = Array.from(diagrams).map(image => image.getAttribute('data-id'));
21 diagrams.forEach(image => {
25 button.innerText = LANG.plugins.diagrams.editButtonShort;
26 button.title = LANG.plugins.diagrams.editButton;
H A DDiagramsMediaManager.js15 createLink.innerText = LANG.plugins.diagrams.createLink;
58 editButton.innerText = LANG.plugins.diagrams.editButton;
82 alert(LANG.plugins.diagrams.createForbidden);
88 title: LANG.plugins.diagrams.createLink,
153 intro.innerText = LANG.plugins.diagrams.createIntro;
166 button.innerText = LANG.plugins.diagrams.createButton;
188 alert(LANG.plugins.diagrams.errorInvalidId);
H A DDiagramsMenuItemDispatcher.js15 return !!schema.nodes.diagrams;
53 if (!$from.parent.canReplaceWith(index, index, schema.nodes.diagrams)) {
72 schema.nodes.diagrams.create(attributes)
82 label: LANG.plugins.diagrams['PMMenuItem-' + this.type],
H A DDiagramsEditor.js97 alert(LANG.plugins.diagrams.errorLoading);
251 spin: LANG.plugins.diagrams.saving
265 spin: LANG.plugins.diagrams.saving
273 alert(LANG.plugins.diagrams.errorSaving);
283 alert(LANG.plugins.diagrams.errorSaving);
286 alert(LANG.plugins.diagrams.errorUnsupportedFormat);
/plugin/diagrams/
H A Dscript.js6 if (JSINFO.plugins.diagrams && (JSINFO.plugins.diagrams.mode & 1)) {
12 if (JSINFO.plugins.diagrams && (JSINFO.plugins.diagrams.mode & 2)) {
H A Dall.less17 .diagrams-svg-wrapper {
49 .ProseMirror img.diagrams-svg {
67 .diagrams-svg-wrapper .diagrams-buttons .diagrams-btn {
H A DREADME1 diagrams Plugin for DokuWiki
3 Integration of diagrams.net. Create and edit diagrams in DokuWiki.
6 https://www.dokuwiki.org/plugin:diagrams
9 lib/plugins/diagrams/ - if the folder is called different it
H A Dplugin.info.txt1 base diagrams
6 desc Embed diagrams.net editor (formerly draw.io)
7 url https://www.dokuwiki.org/plugin:diagrams
/plugin/sequencediagram/
Dstyle.css1 /** js sequence diagrams
2 * https://bramp.github.io/js-sequence-diagrams/
8 src: url('bower_components/js-sequence-diagrams/dist/danielbd.woff2') format('woff2'),
9 url('bower_components/js-sequence-diagrams/dist/danielbd.woff') format('woff');
/plugin/sequencediagram/bower_components/js-sequence-diagrams/
DREADME.md1diagrams.svg)](https://libraries.io/bower/js-sequence-diagrams) [![Build Status](https://img.shiel…
3 **Generates UML sequence diagrams from simple text**
4 <https://bramp.github.io/js-sequence-diagrams/>
19 ![Sample generated UML diagram](https://bramp.github.io/js-sequence-diagrams/images/sample.svg)
31 Run `bower install bramp/js-sequence-diagrams` and include the scripts below:
37 <script src="{{ bower directory }}/js-sequence-diagrams/dist/sequence-diagram-min.js" />
43 <link href="{{ bower directory }}/js-sequence-diagrams/dist/sequence-diagram-min.css" rel="styleshe…
72 For full examples check out [the demo site](https://bramp.github.io/js-sequence-diagrams/).
119 Version 1.x of this library used [Raphaël](http://raphaeljs.com/) for drawing the diagrams, however…
183 * Dozens of other issues on https://github.com/bramp/js-sequence-diagrams/issues
[all …]
/plugin/diagramsnet/lib/js/
Dexport.js99 var diagrams = null;
129 diagrams = xmlDoc.documentElement.getElementsByTagName('diagram');
199 var pageCount = diagrams != null? diagrams.length : 1;
800 if (diagrams != null && diagrams.length > 0)
802 var to = diagrams.length - 1;
809 for (var i = 0; i < diagrams.length; i++)
811 if (data.pageId == diagrams[i].getAttribute('id'))
821 from = Math.max(0, Math.min(parseInt(data.from) || from, diagrams.length - 1));
824 to = isNaN(to)? from : Math.max(from, Math.min(to, diagrams.length - 1));
837 return (diagrams == null) ? 'Page-1' :
[all …]
Dembed.dev.js175 var diagrams = null;
179 diagrams = xmlDocument.documentElement.getElementsByTagName('diagram');
182 if (diagrams.length > 0)
184 xml = mxUtils.getTextContent(diagrams[0]);
203 if (diagrams != null && diagrams.length > 0)
214 return diagrams[0].getAttribute('name') || 'Page-1';
222 return diagrams.length;
554 var diagrams = newDocument.documentElement.getElementsByTagName('diagram');
556 if (diagrams.length > 0)
558 var text = mxUtils.trim(mxUtils.getTextContent(diagrams[0]));
[all …]
/plugin/diagramsnet/
Dplugin.info.txt5 name diagrams.net integration plugin
6 desc diagrams.net integration
/plugin/diagramsnet/lib/resources/
Ddia_zh.txt923 customTempInst1=Custom templates are draw.io diagrams saved in children pages of
930 reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index.
934 confAAllDiagDone=All {1} diagrams processed. Process finished.
936 confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
937 confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
939 confANoDiagFoundInPage=No {1} diagrams found in page "{2}".
941 confANoDiagFound=No {1} diagrams found. Process finished.
942 confASearchFailed=Searching for {1} diagrams failed. Please try again later.
949 confACheckBrokenDiagLnk=Checking for broken diagrams links.
959 confACheckPagesWDraw=Checking pages having draw.io diagrams.
[all …]
Ddia_uk.txt823 noDiagrams=No diagrams found
836 officeMainHeader=Adds draw.io diagrams to your document.
880 confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page,…
903 gliffyImportInst1=Click the "Start Import" button to import all Gliffy diagrams to draw.io.
923 customTempInst1=Custom templates are draw.io diagrams saved in children pages of
930 reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index.
934 confAAllDiagDone=All {1} diagrams processed. Process finished.
936 confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
937 confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
939 confANoDiagFoundInPage=No {1} diagrams found in page "{2}".
[all …]
/plugin/diagramsnet/lib/js/diagramly/
DEmbed.js175 var diagrams = null;
179 diagrams = xmlDocument.documentElement.getElementsByTagName('diagram');
182 if (diagrams.length > 0)
184 xml = mxUtils.getTextContent(diagrams[0]);
203 if (diagrams != null && diagrams.length > 0)
214 return diagrams[0].getAttribute('name') || 'Page-1';
222 return diagrams.length;
554 var diagrams = newDocument.documentElement.getElementsByTagName('diagram');
556 if (diagrams.length > 0)
558 var text = mxUtils.trim(mxUtils.getTextContent(diagrams[0]));
[all …]
/plugin/mermaid/
H A DREADME.md3 …ing tool that renders Markdown-inspired text definitions to create and modify diagrams dynamically.
34 Mermaid supports multiple other diagrams besides the shown flowchart, for example:
36 - Sequence diagrams
37 - Gantt diagrams
38 - Class diagrams
40 - User Journey diagrams
81 By default, Mermaid diagrams are converted from Mermaid syntax to SVG on the client side. To change…
101 …rmaidchart.com/blog/posts/mermaid-innovation-introducing-new-looks-for-mermaid-diagrams) available.
109 Choose the visibility of the save and lock button for the Mermaid diagrams. If their visibility is …
140 …m, leading to an error. For that reason, it is disabled for the Mermaid diagrams. The search itsel…
/plugin/bpmnio/
DREADME.md5 * BPMN v2.0 diagrams
6 * DMN v1.3 decision requirement diagrams, decision tables and literal expressions
/plugin/sequencediagram/bower_components/js-sequence-diagrams/src/
Dsequence-diagram.css1 /** js sequence diagrams
2 * https://bramp.github.io/js-sequence-diagrams/
/plugin/sequencediagram/bower_components/js-sequence-diagrams/dist/
Dsequence-diagram-min.css1 /** js sequence diagrams
2 * https://bramp.github.io/js-sequence-diagrams/
Dsequence-diagram.css1 /** js sequence diagrams
2 * https://bramp.github.io/js-sequence-diagrams/
/plugin/diagrams/action/
H A Dmediafile.php3 use dokuwiki\plugin\diagrams\Diagrams;
61 $diagrams = (array)json_decode($INPUT->str('diagrams'));
64 foreach ($diagrams as $image) {

123456