diff --git a/files.html b/files.html index 27513bd0834cd2b8b7249356e32a25b24e636d82..15badfe66977a5a41882469e577de5871067ae86 100644 --- a/files.html +++ b/files.html @@ -8,10 +8,15 @@ window.close() } </script> - <a href='./files.html'>files.html</a><br> + <i> .git</i><br> + <a href='./README.md'>README.md</a><br> + <a href='./files.html'>files.html</a><br> <a href='./files.zip'>files.zip</a><br> <a href='./index.html'>index.html</a><br> <i> js</i><br> +<i> Windows</i><br> +<i> node_modules</i><br> + <a href='./js/Windows/printserverWin.js'>printserverWin.js</a><br> <a href='./js/echoserver.js'>echoserver.js</a><br> <a href='./js/evalserver.js'>evalserver.js</a><br> <a href='./js/files.js'>files.js</a><br> @@ -99,6 +104,9 @@ <a href='./modules/string/format'>format</a><br> <a href='./modules/string/variables'>variables</a><br> <i> toolpath</i><br> +<i> formats</i><br> + <a href='./modules/toolpath/formats/dxf'>dxf</a><br> + <a href='./modules/toolpath/formats/g-code'>g-code</a><br> <i> machines</i><br> <i> Roland</i><br> <i> milling</i><br> @@ -107,6 +115,10 @@ <i> vinyl cutter</i><br> <a href='./modules/toolpath/machines/Roland/vinyl%20cutter/GX-24'>GX-24</a><br> <a href='./modules/toolpath/machines/ShopBot'>ShopBot</a><br> +<i> laser cutter</i><br> + <a href='./modules/toolpath/machines/laser%20cutter/Epilog'>Epilog</a><br> + <a href='./modules/toolpath/machines/laser%20cutter/GCC'>GCC</a><br> + <a href='./modules/toolpath/machines/laser%20cutter/Trotec'>Trotec</a><br> <a href='./modules/toolpath/view'>view</a><br> <i> ui</i><br> <a href='./modules/ui/button'>button</a><br> @@ -119,6 +131,8 @@ <i> iterate</i><br> <a href='./programs/iterate/z%20theta%20scan'>z theta scan</a><br> <i> machines</i><br> +<i> G-code</i><br> + <a href='./programs/machines/G-code/mill%202D%20png'>mill 2D png</a><br> <i> Roland</i><br> <i> mill</i><br> <i> MDX-20</i><br> diff --git a/files.zip b/files.zip index 0ca2f4f023a8d99807d0453d8b079a0a462b5614..80f2d6edbd68fd4bd916bd1c431921fc9b5d8d66 100644 Binary files a/files.zip and b/files.zip differ diff --git a/js/files.js b/js/files.js index cead20a95ed7ae7b6f831cd4904aa031ba60d7c2..906e26f77ff4488dbba914f5390d7ca1397601f7 100644 --- a/js/files.js +++ b/js/files.js @@ -15,7 +15,7 @@ var fs = require('fs') // // directories to not index // -var ignore = ['./js/node_modules'] +var ignore = ['./js/node_modules','./js/Windows/node_modules','./.git'] // // set up page // @@ -43,10 +43,11 @@ console.log(str) // file tree walker // function list_files(path) { - var files = fs.readdirSync(path) - for (var i = 0; i < files.length; ++i) { - if (path.indexOf(ignore[0]) != -1) - continue + var files = fs.readdirSync(path) + iloop: for (var i = 0; i < files.length; ++i) { + for (var j = 0; j < ignore.length; ++j) + if (path.indexOf(ignore[j]) != -1) + continue iloop var file = files[i] var stats = fs.statSync(path+'/'+file) if (stats.isFile() == true) {