index.html 13 KB

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