/draw.io

The source to www.draw.io

Primary LanguageJavaScript

draw.io project sources
-----------------------

draw.io comprises three parts:

1) The static web content under the war directory.
2) The open, save, embed, proxy and iconfinder servlets as one servlet war. These are located under src/com/mxgraph/online/.
3) The image export servlet. This is located under etc/imageexport.

Prior to invoking any builds, search war/index.html for "CUSTOM_PARAMETERS". The image export URL is the most important variable to change (EXPORT_URL). 
Without that the export to image will use our server, which somewhat defeats the point of hosting it. The servlet is mapped to "export" and the default name 
of the war is "Imageexport" so "/Imageexport/export" is the value if you deploy that war as-is and the servlet engine is on the root of the domain.

/etc/build/build.xml is the ant build file for the main war. Invoking "war" will generate build/draw.war.

/etc/imagexport/build.xml is the ant build file for the image export war. Invoking "war" will generate /etc/imageexport/imageexport.war.

Depoly these wars on a servlet engine and navigate to the location of the first war, you will get the draw.io application.