index.html 15 KB

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