index.html 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454
  1. <!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=5,IE=9" ><![endif]-->
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <title>Flowchart Maker &amp; Online Diagram Software</title>
  6. <meta charset="utf-8">
  7. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  8. <meta name="Description" content="draw.io is free online diagram software for making flowcharts, process diagrams, org charts, UML, ER and network diagrams">
  9. <meta name="Keywords" content="diagram, online, flow chart, flowchart maker, uml, erd">
  10. <meta itemprop="name" content="draw.io - free flowchart maker and diagrams online">
  11. <meta itemprop="description" content="draw.io is a free online diagramming application and flowchart maker . You can use it to create UML, entity relationship,
  12. org charts, BPMN and BPM, database schema and networks. Also possible are telecommunication network, workflow, flowcharts, maps overlays and GIS, electronic
  13. circuit and social network diagrams.">
  14. <meta itemprop="image" content="https://lh4.googleusercontent.com/-cLKEldMbT_E/Tx8qXDuw6eI/AAAAAAAAAAs/Ke0pnlk8Gpg/w500-h344-k/BPMN%2Bdiagram%2Brc2f.png">
  15. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
  16. <meta name="msapplication-config" content="images/browserconfig.xml">
  17. <meta name="mobile-web-app-capable" content="yes">
  18. <meta name="theme-color" content="#d89000">
  19. <script type="text/javascript">
  20. /**
  21. * URL Parameters and protocol description are here:
  22. *
  23. * https://support.draw.io/pages/viewpage.action?pageId=12878136
  24. *
  25. * Parameters for developers:
  26. *
  27. * - dev=1: For developers only
  28. * - test=1: For developers only
  29. * - drawdev=1: For developers only
  30. * - export=URL for export: For developers only
  31. * - ignoremime=1: For developers only (see DriveClient.js). Use Cmd-S to override mime.
  32. * - createindex=1: For developers only (see etc/build/README)
  33. * - filesupport=0: For developers only (see Editor.js in core)
  34. * - savesidebar=1: For developers only (see Sidebar.js)
  35. * - pages=1: For developers only (see Pages.js)
  36. * - lic=email: For developers only (see LicenseServlet.java)
  37. * --
  38. * - networkshapes=1: For testing network shapes (temporary)
  39. */
  40. var urlParams = (function()
  41. {
  42. var result = new Object();
  43. var params = window.location.search.slice(1).split('&');
  44. for (var i = 0; i < params.length; i++)
  45. {
  46. idx = params[i].indexOf('=');
  47. if (idx > 0)
  48. {
  49. result[params[i].substring(0, idx)] = params[i].substring(idx + 1);
  50. }
  51. }
  52. return result;
  53. })();
  54. // Redirects page if required
  55. if (urlParams['dev'] != '1')
  56. {
  57. (function()
  58. {
  59. var proto = window.location.protocol;
  60. // Electron protocol is file:
  61. if (proto != 'file:')
  62. {
  63. var host = window.location.host;
  64. // Redirects apex and rt to www
  65. if (host === 'draw.io' || host === 'rt.draw.io')
  66. {
  67. host = 'www.draw.io';
  68. }
  69. // Redirects to SSL/non-SSL
  70. if (urlParams['demo'] != '1')
  71. {
  72. var ssl = (urlParams['https'] != null) ? urlParams['https'] == '1' :
  73. navigator.userAgent.indexOf('MSIE') < 0 || document.documentMode >= 9;
  74. if (ssl && proto != 'https:')
  75. {
  76. proto = 'https:';
  77. }
  78. else if (!ssl && proto != 'http:')
  79. {
  80. proto = 'http:';
  81. }
  82. }
  83. var href = proto + '//' + host + window.location.href.substring(
  84. window.location.protocol.length +
  85. window.location.host.length + 2);
  86. // Redirects if href changes
  87. if (href != window.location.href)
  88. {
  89. window.location.href = href;
  90. }
  91. }
  92. })();
  93. }
  94. /**
  95. * Adds meta tags with application name (depends on offline URL parameter)
  96. */
  97. (function()
  98. {
  99. function addMeta(name, content)
  100. {
  101. try
  102. {
  103. var s = document.createElement('meta');
  104. s.setAttribute('name', name);
  105. s.setAttribute('content', content);
  106. var t = document.getElementsByTagName('meta')[0];
  107. t.parentNode.insertBefore(s, t);
  108. }
  109. catch (e)
  110. {
  111. // ignore
  112. }
  113. };
  114. var name = 'draw.io';
  115. if (urlParams['offline'] === '1')
  116. {
  117. name += ' app';
  118. }
  119. addMeta('apple-mobile-web-app-title', name);
  120. addMeta('application-name', name);
  121. })();
  122. </script>
  123. <link rel="chrome-webstore-item" href="https://chrome.google.com/webstore/detail/plgmlhohecdddhbmmkncjdmlhcmaachm">
  124. <link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png">
  125. <link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
  126. <link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">
  127. <link rel="mask-icon" href="images/safari-pinned-tab.svg" color="#d89000">
  128. <link rel="stylesheet" type="text/css" href="styles/grapheditor.css">
  129. <link rel="canonical" href="https://www.draw.io">
  130. <link rel="manifest" href="images/manifest.json">
  131. <link rel="shortcut icon" href="favicon.ico">
  132. <style type="text/css">
  133. body { overflow:hidden; }
  134. .geSidebarContainer .geTitle { color:#505050; }
  135. .geSidebarContainer .geTitle input {
  136. font-size:8pt;
  137. color:#606060;
  138. }
  139. .geBlock {
  140. z-index:-3;
  141. margin:100px;
  142. margin-top:40px;
  143. margin-bottom:30px;
  144. padding:20px;
  145. }
  146. .geBlock h1, .geBlock h2 {
  147. margin-top:0px;
  148. padding-top:0px;
  149. }
  150. .geEditor ::-webkit-scrollbar {
  151. width:12px;
  152. height:12px;
  153. }
  154. .geEditor ::-webkit-scrollbar-track {
  155. background:whiteSmoke;
  156. -webkit-box-shadow:inset 0 0 4px rgba(0,0,0,0.1);
  157. }
  158. .geEditor ::-webkit-scrollbar-thumb {
  159. background:#c5c5c5;
  160. border-radius:10px;
  161. border:whiteSmoke solid 3px;
  162. }
  163. .geEditor ::-webkit-scrollbar-thumb:hover {
  164. background:#b5b5b5;
  165. }
  166. .geTemplate {
  167. border:1px solid transparent;
  168. display:inline-block;
  169. _display:inline;
  170. vertical-align:top;
  171. border-radius:3px;
  172. overflow:hidden;
  173. font-size:14pt;
  174. cursor:pointer;
  175. margin:5px;
  176. }
  177. .geFooterContainer div.geSocialFooter a {
  178. display:inline;
  179. padding:0px;
  180. }
  181. .geFooterContainer div.geSocialFooter a img {
  182. margin-top:10px;
  183. opacity:0.8;
  184. }
  185. .geFooterContainer div.geSocialFooter a img:hover {
  186. opacity:1;
  187. }
  188. #geFooterItem1 {
  189. background-color: #cdcdcd;
  190. }
  191. #geFooterItem1:hover {
  192. background-color: #b0b0b0;
  193. }
  194. .geFooterContainer>div>img {
  195. opacity:0.5;
  196. background:#e5e5e5;
  197. border:1px solid transparent;
  198. cusor:pointer;
  199. margin-top:3px;
  200. margin-right:6px;
  201. position:absolute;
  202. right:4px;
  203. top:12px;
  204. padding:1px;
  205. cursor:pointer;
  206. }
  207. .geFooterContainer>div>img:hover {
  208. opacity: 1;
  209. }
  210. </style>
  211. <!-- Workaround for binary XHR in IE 9/10, see App.loadUrl -->
  212. <!--[if (IE 9)|(IE 10)]><!-->
  213. <script type="text/vbscript">
  214. Function mxUtilsBinaryToArray(Binary)
  215. Dim i
  216. ReDim byteArray(LenB(Binary))
  217. For i = 1 To LenB(Binary)
  218. byteArray(i-1) = AscB(MidB(Binary, i, 1))
  219. Next
  220. mxUtilsBinaryToArray = byteArray
  221. End Function
  222. </script>
  223. <!--<![endif]-->
  224. <script type="text/javascript">
  225. /**
  226. * Synchronously adds scripts to the page.
  227. */
  228. function mxscript(src, onLoad, id, dataAppKey)
  229. {
  230. if (onLoad != null)
  231. {
  232. var s = document.createElement('script');
  233. s.setAttribute('type', 'text/javascript');
  234. s.setAttribute('src', src);
  235. var r = false;
  236. if (id != null)
  237. {
  238. s.setAttribute('id', id);
  239. }
  240. if (dataAppKey != null)
  241. {
  242. s.setAttribute('data-app-key', dataAppKey);
  243. }
  244. s.onload = s.onreadystatechange = function()
  245. {
  246. if (!r && (!this.readyState || this.readyState == 'complete'))
  247. {
  248. r = true;
  249. onLoad();
  250. }
  251. };
  252. var t = document.getElementsByTagName('script')[0];
  253. t.parentNode.insertBefore(s, t);
  254. }
  255. else
  256. {
  257. document.write('<script src="' + src + '"' + ((id != null) ? ' id="' + id +'" ' : '') +
  258. ((dataAppKey != null) ? ' data-app-key="' + dataAppKey +'" ' : '') + '></scr' + 'ipt>');
  259. }
  260. };
  261. /**
  262. * Asynchronously adds scripts to the page.
  263. */
  264. function mxinclude(src)
  265. {
  266. var g = document.createElement('script'); g.type = 'text/javascript'; g.async = true; g.src = src;
  267. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(g, s);
  268. };
  269. // Checks for local storage
  270. var isLocalStorage = false;
  271. try
  272. {
  273. isLocalStorage = urlParams['local'] != '1' && typeof(localStorage) != 'undefined';
  274. }
  275. catch (e)
  276. {
  277. // ignored
  278. }
  279. var t0 = new Date();
  280. // Changes paths for local development environment
  281. if (urlParams['dev'] == '1')
  282. {
  283. // Used to request grapheditor/mxgraph sources in dev mode
  284. var mxDevUrl = document.location.protocol + '//devhost.jgraph.com/mxgraph2';
  285. if (document.location.protocol == 'file:')
  286. {
  287. mxDevUrl = '../../mxgraph2';
  288. // Forces includes for dev environment in node.js
  289. mxForceIncludes = true;
  290. }
  291. var geBasePath = mxDevUrl + '/javascript/examples/grapheditor/www/js';
  292. var mxBasePath = mxDevUrl + '/javascript/src';
  293. // Used to request draw.io sources in dev mode
  294. var drawDevUrl = '';
  295. if (urlParams['drawdev'] == '1')
  296. {
  297. drawDevUrl = document.location.protocol + '//drawhost.jgraph.com/';
  298. }
  299. mxscript(drawDevUrl + 'js/diagramly/Init.js');
  300. mxscript(geBasePath + '/Init.js');
  301. mxscript(mxDevUrl + '/javascript/src/js/mxClient.js');
  302. // Adds all JS code that depends on mxClient. This indirection via Devel.js is
  303. // required in some browsers to make sure mxClient.js (and the files that it
  304. // loads asynchronously) are available when the code loaded in Devel.js runs.
  305. mxscript(drawDevUrl + 'js/diagramly/Devel.js');
  306. }
  307. else
  308. {
  309. mxscript('js/app.min.js');
  310. }
  311. if (window && window.process && window.process.type)
  312. {
  313. // Electron
  314. mxscript('js/diagramly/ElectronApp.js');
  315. mxscript('js/diagramly/Extensions.js');
  316. }
  317. // Adds basic error handling
  318. window.onerror = function()
  319. {
  320. var status = document.getElementById('geStatus');
  321. if (status != null)
  322. {
  323. status.innerHTML = 'Page could not be loaded. Please try refreshing.';
  324. }
  325. };
  326. </script>
  327. </head>
  328. <body class="geEditor">
  329. <div id="geInfo">
  330. <div class="geBlock" style="text-align:center;min-width:50%;">
  331. <h1>Flowchart Maker and Online Diagram Software</h1>
  332. <p>
  333. draw.io (formerly Diagramly) is free online diagram software. You can use it as a flowchart maker, network diagram software, to create UML online, as an ER diagram tool,
  334. to design database schema, to build BPMN online, as a circuit diagram maker, and more. draw.io can import .vsdx, Gliffy&trade; and Lucidchart&trade; files .
  335. </p>
  336. <h2 id="geStatus">Loading...</h2>
  337. <p>
  338. Please ensure JavaScript is enabled
  339. </p>
  340. </div>
  341. </div>
  342. <div id="geFooter" style="visibility:hidden;overflow:hidden;margin-right:200px;">
  343. <div class="geSocialFooter" style="position:absolute;right:32px;white-space:nowrap;">
  344. <a href="https://www.youtube.com/channel/UCiTtRN9b8P4CoSfpkfgEJHA" title="draw.io on Youtube" target="_blank">
  345. <img border="0" width="24" height="24" src="images/glyphicons_youtube.png" alt="draw.io on Youtube"/>
  346. </a>
  347. &nbsp;
  348. <a href="https://www.facebook.com/pages/drawio/161015263923018" title="draw.io on Facebook" target="_blank">
  349. <img border="0" width="24" height="24" src="images/glyphicons_facebook.png" alt="draw.io on Facebook"/>
  350. </a>
  351. &nbsp;
  352. <a href="https://www.twitter.com/drawio" title="draw.io on Twitter" target="_blank">
  353. <img border="0" width="24" height="24" src="images/glyphicons_twitter.png" alt="draw.io on Twitter"/>
  354. </a>
  355. &nbsp;
  356. <a href="https://plus.google.com/u/0/+DrawIo1/posts" title="draw.io on Google+" target="_blank">
  357. <img border="0" width="24" height="24" src="images/glyphicons_google.png" alt="draw.io on Google+"/>
  358. </a>
  359. &nbsp;
  360. <a href="https://github.com/jgraph/drawio" title="draw.io on GitHub" target="_blank">
  361. <img border="0" width="24" height="24" src="images/glyphicons_github.png" alt="draw.io on GitHub"/>
  362. </a>
  363. </div>
  364. <table align="center">
  365. <tr>
  366. <td id="geFooterItem2" align="center" style="width:246px;">
  367. <a title="Quick Start Video" href="https://www.youtube.com/watch?v=Z0D96ZikMkc" target="_blank">
  368. <img border="0" align="absmiddle" style="margin-top:-3px;padding-right:8px;"
  369. src="images/glyphicons_youtube_red.png"/>Quick Start Video</a>
  370. </td>
  371. <td id="geFooterItem1">
  372. <a id="geFooterLink1" title="#1 Rated Confluence Add-on" target="_blank"
  373. href="https://marketplace.atlassian.com/plugins/com.mxgraph.confluence.plugins.diagramly/server/overview">
  374. <img border="0" width="27" height="24" align="absmiddle" style="padding-right:10px;"
  375. src="images/logo-confluence.png"/>#1 Rated Confluence Add-on
  376. </a>
  377. </td>
  378. </tr>
  379. </table>
  380. </div>
  381. <script type="text/javascript">
  382. /**
  383. * Main
  384. */
  385. App.main();
  386. // Logs footer1 clicks
  387. if (document != null)
  388. {
  389. var footerElem = document.getElementById('geFooterLink1');
  390. if (footerElem != null)
  391. {
  392. footerElem.onclick = function()
  393. {
  394. var img = new Image();
  395. img.src = 'https://log.draw.io/log?msg=geFooterLink1:%20location=' + encodeURIComponent(window.location) + '&v=' + encodeURIComponent(EditorUi.VERSION);
  396. }
  397. }
  398. }
  399. /**
  400. * Analytics
  401. */
  402. if (urlParams['analytics'] != '0' && urlParams['dev'] != '1' && urlParams['chrome'] != '0')
  403. {
  404. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  405. (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  406. m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  407. })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
  408. ga('create', 'UA-78007-10', 'auto');
  409. ga('send', 'pageview');
  410. }
  411. </script>
  412. </body>
  413. </html>