├── .gitignore ├── LICENSE ├── README.md ├── configWindow.html ├── configWindow.js ├── docsPrintIntervalPaused.html ├── docsPrintSleeping.html ├── docsPrintedInterval.html ├── docsPrintedManual.html ├── docsPrinting.html ├── docsRetrievalErrorInterval.html ├── docsRetrievalErrorManual.html ├── docsRetrieving.html ├── lib ├── pdf_a4_portrait.js └── phantomjs.exe ├── main.js ├── package.json └── scripts └── notarize.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExLibrisGroup/alma-print-daemon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExLibrisGroup/alma-print-daemon/HEAD/README.md -------------------------------------------------------------------------------- /configWindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExLibrisGroup/alma-print-daemon/HEAD/configWindow.html -------------------------------------------------------------------------------- /configWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExLibrisGroup/alma-print-daemon/HEAD/configWindow.js -------------------------------------------------------------------------------- /docsPrintIntervalPaused.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExLibrisGroup/alma-print-daemon/HEAD/docsPrintIntervalPaused.html -------------------------------------------------------------------------------- /docsPrintSleeping.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExLibrisGroup/alma-print-daemon/HEAD/docsPrintSleeping.html -------------------------------------------------------------------------------- /docsPrintedInterval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExLibrisGroup/alma-print-daemon/HEAD/docsPrintedInterval.html -------------------------------------------------------------------------------- /docsPrintedManual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExLibrisGroup/alma-print-daemon/HEAD/docsPrintedManual.html -------------------------------------------------------------------------------- /docsPrinting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExLibrisGroup/alma-print-daemon/HEAD/docsPrinting.html -------------------------------------------------------------------------------- /docsRetrievalErrorInterval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExLibrisGroup/alma-print-daemon/HEAD/docsRetrievalErrorInterval.html -------------------------------------------------------------------------------- /docsRetrievalErrorManual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExLibrisGroup/alma-print-daemon/HEAD/docsRetrievalErrorManual.html -------------------------------------------------------------------------------- /docsRetrieving.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExLibrisGroup/alma-print-daemon/HEAD/docsRetrieving.html -------------------------------------------------------------------------------- /lib/pdf_a4_portrait.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExLibrisGroup/alma-print-daemon/HEAD/lib/pdf_a4_portrait.js -------------------------------------------------------------------------------- /lib/phantomjs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExLibrisGroup/alma-print-daemon/HEAD/lib/phantomjs.exe -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExLibrisGroup/alma-print-daemon/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExLibrisGroup/alma-print-daemon/HEAD/package.json -------------------------------------------------------------------------------- /scripts/notarize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExLibrisGroup/alma-print-daemon/HEAD/scripts/notarize.js --------------------------------------------------------------------------------