├── .github ├── dependabot.yml └── workflows │ └── nodejs.yml ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── bin └── pd-fileutils ├── browser.js ├── demos ├── css │ ├── randomDrone.less │ └── reset.css ├── img │ ├── play.png │ ├── play.svg │ ├── reload.png │ ├── reload.svg │ ├── stop.png │ └── stop.svg ├── js │ ├── d3.v3.min.js │ ├── jquery.knob.js │ ├── jquery.min.js │ ├── less-1.3.3.min.js │ ├── pd-fileutils-latest.js │ ├── underscore-min.js │ └── webpd-latest.js └── randomDrone.html ├── dist └── pd-fileutils-latest.js ├── index.js ├── lib ├── Patch.js ├── pd-rendering.js ├── svg-default-style.css └── svg-rendering.js ├── package.json ├── test ├── Patch-test.js ├── parsing-test.js ├── patches │ ├── arrays.pd │ ├── embedded-in-a-page.hbs │ ├── graphs.pd │ ├── node-elems.pd │ ├── object-size-pd-vanilla.pd │ ├── simple.pd │ ├── special-chars.pd │ ├── subpatches.pd │ ├── tables.pd │ └── tall-and-wide-patch.pd ├── pd-rendering-test.js ├── rendered │ └── .gitignore └── svg-rendering-test.js └── webpack.config.js /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | node_modules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/README.md -------------------------------------------------------------------------------- /bin/pd-fileutils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/bin/pd-fileutils -------------------------------------------------------------------------------- /browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/browser.js -------------------------------------------------------------------------------- /demos/css/randomDrone.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/demos/css/randomDrone.less -------------------------------------------------------------------------------- /demos/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/demos/css/reset.css -------------------------------------------------------------------------------- /demos/img/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/demos/img/play.png -------------------------------------------------------------------------------- /demos/img/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/demos/img/play.svg -------------------------------------------------------------------------------- /demos/img/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/demos/img/reload.png -------------------------------------------------------------------------------- /demos/img/reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/demos/img/reload.svg -------------------------------------------------------------------------------- /demos/img/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/demos/img/stop.png -------------------------------------------------------------------------------- /demos/img/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/demos/img/stop.svg -------------------------------------------------------------------------------- /demos/js/d3.v3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/demos/js/d3.v3.min.js -------------------------------------------------------------------------------- /demos/js/jquery.knob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/demos/js/jquery.knob.js -------------------------------------------------------------------------------- /demos/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/demos/js/jquery.min.js -------------------------------------------------------------------------------- /demos/js/less-1.3.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/demos/js/less-1.3.3.min.js -------------------------------------------------------------------------------- /demos/js/pd-fileutils-latest.js: -------------------------------------------------------------------------------- 1 | ../../dist/pd-fileutils-latest.js -------------------------------------------------------------------------------- /demos/js/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/demos/js/underscore-min.js -------------------------------------------------------------------------------- /demos/js/webpd-latest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/demos/js/webpd-latest.js -------------------------------------------------------------------------------- /demos/randomDrone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/demos/randomDrone.html -------------------------------------------------------------------------------- /dist/pd-fileutils-latest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/dist/pd-fileutils-latest.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/index.js -------------------------------------------------------------------------------- /lib/Patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/lib/Patch.js -------------------------------------------------------------------------------- /lib/pd-rendering.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/lib/pd-rendering.js -------------------------------------------------------------------------------- /lib/svg-default-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/lib/svg-default-style.css -------------------------------------------------------------------------------- /lib/svg-rendering.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/lib/svg-rendering.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/package.json -------------------------------------------------------------------------------- /test/Patch-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/test/Patch-test.js -------------------------------------------------------------------------------- /test/parsing-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/test/parsing-test.js -------------------------------------------------------------------------------- /test/patches/arrays.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/test/patches/arrays.pd -------------------------------------------------------------------------------- /test/patches/embedded-in-a-page.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/test/patches/embedded-in-a-page.hbs -------------------------------------------------------------------------------- /test/patches/graphs.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/test/patches/graphs.pd -------------------------------------------------------------------------------- /test/patches/node-elems.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/test/patches/node-elems.pd -------------------------------------------------------------------------------- /test/patches/object-size-pd-vanilla.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/test/patches/object-size-pd-vanilla.pd -------------------------------------------------------------------------------- /test/patches/simple.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/test/patches/simple.pd -------------------------------------------------------------------------------- /test/patches/special-chars.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/test/patches/special-chars.pd -------------------------------------------------------------------------------- /test/patches/subpatches.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/test/patches/subpatches.pd -------------------------------------------------------------------------------- /test/patches/tables.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/test/patches/tables.pd -------------------------------------------------------------------------------- /test/patches/tall-and-wide-patch.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/test/patches/tall-and-wide-patch.pd -------------------------------------------------------------------------------- /test/pd-rendering-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/test/pd-rendering-test.js -------------------------------------------------------------------------------- /test/rendered/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/test/rendered/.gitignore -------------------------------------------------------------------------------- /test/svg-rendering-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/test/svg-rendering-test.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebpiq/pd-fileutils/HEAD/webpack.config.js --------------------------------------------------------------------------------