index.html 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452
  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. // Forces CDN caches by passing URL parameters via URL hash
  55. if (window.location.hash != null && window.location.hash.substring(0, 2) == '#P')
  56. {
  57. try
  58. {
  59. urlParams = JSON.parse(decodeURIComponent(window.location.hash.substring(2)));
  60. if (urlParams.hash != null)
  61. {
  62. window.location.hash = urlParams.hash;
  63. }
  64. }
  65. catch (e)
  66. {
  67. // ignore
  68. }
  69. }
  70. // Redirects page if required
  71. if (urlParams['dev'] != '1')
  72. {
  73. (function()
  74. {
  75. var proto = window.location.protocol;
  76. var host = window.location.host;
  77. // Redirects apex and rt to www
  78. if (host === 'draw.io' || host === 'rt.draw.io')
  79. {
  80. host = 'www.draw.io';
  81. }
  82. // Redirects to SSL/non-SSL
  83. if (urlParams['demo'] != '1')
  84. {
  85. var ssl = (urlParams['https'] != null) ? urlParams['https'] == '1' :
  86. navigator.userAgent.indexOf('MSIE') < 0 || document.documentMode >= 9;
  87. if (ssl && proto != 'https:')
  88. {
  89. proto = 'https:';
  90. }
  91. else if (!ssl && proto != 'http:')
  92. {
  93. proto = 'http:';
  94. }
  95. }
  96. var href = proto + '//' + host + window.location.href.substring(
  97. window.location.protocol.length +
  98. window.location.host.length + 2);
  99. // Redirects if href changes
  100. if (href != window.location.href)
  101. {
  102. window.location.href = href;
  103. }
  104. })();
  105. }
  106. /**
  107. * Adds meta tags with application name (depends on offline URL parameter)
  108. */
  109. (function()
  110. {
  111. function addMeta(name, content)
  112. {
  113. try
  114. {
  115. var s = document.createElement('meta');
  116. s.setAttribute('name', name);
  117. s.setAttribute('content', content);
  118. var t = document.getElementsByTagName('meta')[0];
  119. t.parentNode.insertBefore(s, t);
  120. }
  121. catch (e)
  122. {
  123. // ignore
  124. }
  125. };
  126. var name = 'draw.io';
  127. if (urlParams['offline'] === '1')
  128. {
  129. name += ' app';
  130. }
  131. addMeta('apple-mobile-web-app-title', name);
  132. addMeta('application-name', name);
  133. })();
  134. </script>
  135. <link rel="chrome-webstore-item" href="https://chrome.google.com/webstore/detail/plgmlhohecdddhbmmkncjdmlhcmaachm">
  136. <link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png">
  137. <link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
  138. <link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">
  139. <link rel="mask-icon" href="images/safari-pinned-tab.svg" color="#d89000">
  140. <link rel="stylesheet" type="text/css" href="styles/grapheditor.css">
  141. <link rel="canonical" href="https://www.draw.io">
  142. <link rel="manifest" href="images/manifest.json">
  143. <link rel="shortcut icon" href="favicon.ico">
  144. <style type="text/css">
  145. body { overflow:hidden; }
  146. div.picker { z-index: 10007; }
  147. .geSidebarContainer .geTitle { color:#505050; }
  148. .geSidebarContainer .geTitle input {
  149. font-size:8pt;
  150. color:#606060;
  151. }
  152. .geBlock {
  153. z-index:-3;
  154. margin:100px;
  155. margin-top:40px;
  156. margin-bottom:30px;
  157. padding:20px;
  158. }
  159. .geBlock h1, .geBlock h2 {
  160. margin-top:0px;
  161. padding-top:0px;
  162. }
  163. .geEditor ::-webkit-scrollbar {
  164. width:12px;
  165. height:12px;
  166. }
  167. .geEditor ::-webkit-scrollbar-track {
  168. background:whiteSmoke;
  169. -webkit-box-shadow:inset 0 0 4px rgba(0,0,0,0.1);
  170. }
  171. .geEditor ::-webkit-scrollbar-thumb {
  172. background:#c5c5c5;
  173. border-radius:10px;
  174. border:whiteSmoke solid 3px;
  175. }
  176. .geEditor ::-webkit-scrollbar-thumb:hover {
  177. background:#b5b5b5;
  178. }
  179. .geTemplate {
  180. border:1px solid transparent;
  181. display:inline-block;
  182. _display:inline;
  183. vertical-align:top;
  184. border-radius:3px;
  185. overflow:hidden;
  186. font-size:14pt;
  187. cursor:pointer;
  188. margin:5px;
  189. }
  190. .geFooterContainer div.geSocialFooter a {
  191. display:inline;
  192. padding:0px;
  193. }
  194. .geFooterContainer div.geSocialFooter a img {
  195. margin-top:10px;
  196. opacity:0.8;
  197. }
  198. .geFooterContainer div.geSocialFooter a img:hover {
  199. opacity:1;
  200. }
  201. #geFooterItem1 {
  202. background-color: #cdcdcd;
  203. }
  204. #geFooterItem1:hover {
  205. background-color: #b0b0b0;
  206. }
  207. .geFooterContainer>div>img {
  208. opacity:0.5;
  209. background:#e5e5e5;
  210. border:1px solid transparent;
  211. cusor:pointer;
  212. margin-top:3px;
  213. margin-right:6px;
  214. position:absolute;
  215. right:4px;
  216. top:12px;
  217. padding:1px;
  218. cursor:pointer;
  219. }
  220. .geFooterContainer>div>img:hover {
  221. opacity: 1;
  222. }
  223. </style>
  224. <!-- Workaround for binary XHR in IE 9/10, see App.loadUrl -->
  225. <!--[if (IE 9)|(IE 10)]><!-->
  226. <script type="text/vbscript">
  227. Function mxUtilsBinaryToArray(Binary)
  228. Dim i
  229. ReDim byteArray(LenB(Binary))
  230. For i = 1 To LenB(Binary)
  231. byteArray(i-1) = AscB(MidB(Binary, i, 1))
  232. Next
  233. mxUtilsBinaryToArray = byteArray
  234. End Function
  235. </script>
  236. <!--<![endif]-->
  237. <script type="text/javascript">
  238. /**
  239. * Synchronously adds scripts to the page.
  240. */
  241. function mxscript(src, onLoad, id, dataAppKey)
  242. {
  243. if (onLoad != null)
  244. {
  245. var s = document.createElement('script');
  246. s.setAttribute('type', 'text/javascript');
  247. s.setAttribute('src', src);
  248. var r = false;
  249. if (id != null)
  250. {
  251. s.setAttribute('id', id);
  252. }
  253. if (dataAppKey != null)
  254. {
  255. s.setAttribute('data-app-key', dataAppKey);
  256. }
  257. s.onload = s.onreadystatechange = function()
  258. {
  259. if (!r && (!this.readyState || this.readyState == 'complete'))
  260. {
  261. r = true;
  262. onLoad();
  263. }
  264. };
  265. var t = document.getElementsByTagName('script')[0];
  266. t.parentNode.insertBefore(s, t);
  267. }
  268. else
  269. {
  270. document.write('<script src="' + src + '"' + ((id != null) ? ' id="' + id +'" ' : '') +
  271. ((dataAppKey != null) ? ' data-app-key="' + dataAppKey +'" ' : '') + '></scr' + 'ipt>');
  272. }
  273. };
  274. /**
  275. * Asynchronously adds scripts to the page.
  276. */
  277. function mxinclude(src)
  278. {
  279. var g = document.createElement('script'); g.type = 'text/javascript'; g.async = true; g.src = src;
  280. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(g, s);
  281. };
  282. // Checks for local storage
  283. var isLocalStorage = false;
  284. try
  285. {
  286. isLocalStorage = urlParams['local'] != '1' && typeof(localStorage) != 'undefined';
  287. }
  288. catch (e)
  289. {
  290. // ignored
  291. }
  292. var t0 = new Date();
  293. // Changes paths for local development environment
  294. if (urlParams['dev'] == '1')
  295. {
  296. // Used to request grapheditor/mxgraph sources in dev mode
  297. var mxDevUrl = document.location.protocol + '//devhost.jgraph.com/mxgraph2';
  298. if (document.location.protocol == 'file:')
  299. {
  300. mxDevUrl = '../../mxgraph2';
  301. // Forces includes for dev environment in node.js
  302. mxForceIncludes = true;
  303. }
  304. var geBasePath = mxDevUrl + '/javascript/examples/grapheditor/www/js';
  305. var mxBasePath = mxDevUrl + '/javascript/src';
  306. // Used to request draw.io sources in dev mode
  307. var drawDevUrl = '';
  308. if (urlParams['drawdev'] == '1')
  309. {
  310. drawDevUrl = document.location.protocol + '//drawhost.jgraph.com/';
  311. }
  312. mxscript(drawDevUrl + 'js/diagramly/Init.js');
  313. mxscript(geBasePath + '/Init.js');
  314. mxscript(mxDevUrl + '/javascript/src/js/mxClient.js');
  315. // Adds all JS code that depends on mxClient. This indirection via Devel.js is
  316. // required in some browsers to make sure mxClient.js (and the files that it
  317. // loads asynchronously) are available when the code loaded in Devel.js runs.
  318. mxscript(drawDevUrl + 'js/diagramly/Devel.js');
  319. }
  320. else
  321. {
  322. mxscript('js/app.min.js');
  323. if (urlParams['offline'] == '1' || urlParams['appcache'] == '1')
  324. {
  325. mxscript('js/stencils.min.js');
  326. }
  327. }
  328. if (window && window.process && window.process.type)
  329. {
  330. // Electron
  331. mxscript('js/diagramly/ElectronApp.js');
  332. mxscript('js/diagramly/Extensions.js');
  333. }
  334. // Adds basic error handling
  335. window.onerror = function()
  336. {
  337. var status = document.getElementById('geStatus');
  338. if (status != null)
  339. {
  340. status.innerHTML = 'Page could not be loaded. Please try refreshing.';
  341. }
  342. };
  343. </script>
  344. </head>
  345. <body class="geEditor">
  346. <div id="geInfo">
  347. <div class="geBlock" style="text-align:center;min-width:50%;">
  348. <h1>Flowchart Maker and Online Diagram Software</h1>
  349. <p>
  350. 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,
  351. 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 .
  352. </p>
  353. <h2 id="geStatus">Loading...</h2>
  354. <p>
  355. Please ensure JavaScript is enabled.
  356. </p>
  357. </div>
  358. </div>
  359. <div id="geFooter" style="visibility:hidden;overflow:hidden;margin-right:170px;height:100%;">
  360. <div class="geSocialFooter" style="position:absolute;right:32px;white-space:nowrap;">
  361. <a href="https://www.youtube.com/channel/UCiTtRN9b8P4CoSfpkfgEJHA" title="draw.io on Youtube" target="_blank">
  362. <img border="0" width="24" height="24" src="images/glyphicons_youtube.png" alt="draw.io on Youtube"/>
  363. </a>
  364. &nbsp;
  365. <a href="https://www.facebook.com/pages/drawio/161015263923018" title="draw.io on Facebook" target="_blank">
  366. <img border="0" width="24" height="24" src="images/glyphicons_facebook.png" alt="draw.io on Facebook"/>
  367. </a>
  368. &nbsp;
  369. <a href="https://www.twitter.com/drawio" title="draw.io on Twitter" target="_blank">
  370. <img border="0" width="24" height="24" src="images/glyphicons_twitter.png" alt="draw.io on Twitter"/>
  371. </a>
  372. &nbsp;
  373. <a href="https://github.com/jgraph/drawio" title="draw.io on GitHub" target="_blank">
  374. <img border="0" width="24" height="24" src="images/glyphicons_github.png" alt="draw.io on GitHub"/>
  375. </a>
  376. </div>
  377. <table align="center" height="100%">
  378. <tr>
  379. <td id="geFooterItem2" align="center" style="width:246px;">
  380. <a title="Quick Start Video" href="https://www.youtube.com/watch?v=Z0D96ZikMkc" target="_blank">
  381. <img border="0" align="absmiddle" style="margin-top:-2px;padding-right:8px;"
  382. width="26" height="26" src="images/youtube.png"/>Quick Start Video</a>
  383. </td>
  384. <td id="geFooterItem1" align="center" style="width:282px;">
  385. <a id="geFooterLink1" title="#1 Rated Confluence Add-on" target="_blank"
  386. href="https://about.draw.io/integrations/confluence-integration/">
  387. <img border="0" width="24" height="24" align="absmiddle" style="padding-right:10px;"
  388. src="images/logo-confluence.png"/>#1 Rated Confluence App
  389. </a>
  390. </td>
  391. </tr>
  392. </table>
  393. </div>
  394. <script type="text/javascript">
  395. /**
  396. * Main
  397. */
  398. App.main();
  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>