├── .gitignore ├── README ├── TODO.txt ├── grep-versions.sh ├── src ├── DSLD_meta_script.dsld ├── gaelyk.dsld ├── gaelyk.gdsl ├── img │ ├── icon_128.xcf │ ├── promotional-440.xcf │ ├── tomato_32_trans.png │ ├── tomato_full.png │ └── tomato_full_trans.png ├── manifest │ ├── icon_128.png │ ├── manifest.json │ └── zip-manifest.sh ├── test │ └── groovy │ │ └── DatastoreServiceSpec.groovy └── webstore │ ├── promotional-440.png │ ├── screenshot-01.png │ ├── screenshot-02.png │ ├── screenshot-03.png │ ├── screenshot-04.png │ ├── screenshot-05.png │ ├── screenshot-06.png │ └── screenshot-07.png └── war ├── WEB-INF ├── appengine-web.xml ├── groovy │ ├── dataStoreGroovlet.groovy │ └── datetime.groovy ├── includes │ ├── footer.gtpl │ └── header.gtpl ├── logging.properties ├── pages │ ├── datetime.gtpl │ └── index.gtpl ├── routes.groovy └── web.xml ├── css ├── bootstrap.min.css └── timout.css ├── favicon.ico ├── googlee26e0824859c3f83.html ├── images ├── tea-clock--screenshot.jpg └── tomato_200_trans.png ├── index.html ├── js ├── bootstrap-buttons.js ├── bootstrap-modal.js ├── bootstrap-popover.js ├── bootstrap-twipsy.js ├── jquery.min.js └── timout.js ├── popup-break.html ├── popup-pomodoro.html ├── snd ├── break-finished.wav ├── finished-loop.wav └── pomodoro-finished.wav ├── test.html └── timout.appcache /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/.gitignore -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/TODO.txt -------------------------------------------------------------------------------- /grep-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/grep-versions.sh -------------------------------------------------------------------------------- /src/DSLD_meta_script.dsld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/src/DSLD_meta_script.dsld -------------------------------------------------------------------------------- /src/gaelyk.dsld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/src/gaelyk.dsld -------------------------------------------------------------------------------- /src/gaelyk.gdsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/src/gaelyk.gdsl -------------------------------------------------------------------------------- /src/img/icon_128.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/src/img/icon_128.xcf -------------------------------------------------------------------------------- /src/img/promotional-440.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/src/img/promotional-440.xcf -------------------------------------------------------------------------------- /src/img/tomato_32_trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/src/img/tomato_32_trans.png -------------------------------------------------------------------------------- /src/img/tomato_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/src/img/tomato_full.png -------------------------------------------------------------------------------- /src/img/tomato_full_trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/src/img/tomato_full_trans.png -------------------------------------------------------------------------------- /src/manifest/icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/src/manifest/icon_128.png -------------------------------------------------------------------------------- /src/manifest/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/src/manifest/manifest.json -------------------------------------------------------------------------------- /src/manifest/zip-manifest.sh: -------------------------------------------------------------------------------- 1 | zip timout.zip icon_128.png manifest.json 2 | -------------------------------------------------------------------------------- /src/test/groovy/DatastoreServiceSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/src/test/groovy/DatastoreServiceSpec.groovy -------------------------------------------------------------------------------- /src/webstore/promotional-440.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/src/webstore/promotional-440.png -------------------------------------------------------------------------------- /src/webstore/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/src/webstore/screenshot-01.png -------------------------------------------------------------------------------- /src/webstore/screenshot-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/src/webstore/screenshot-02.png -------------------------------------------------------------------------------- /src/webstore/screenshot-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/src/webstore/screenshot-03.png -------------------------------------------------------------------------------- /src/webstore/screenshot-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/src/webstore/screenshot-04.png -------------------------------------------------------------------------------- /src/webstore/screenshot-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/src/webstore/screenshot-05.png -------------------------------------------------------------------------------- /src/webstore/screenshot-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/src/webstore/screenshot-06.png -------------------------------------------------------------------------------- /src/webstore/screenshot-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/src/webstore/screenshot-07.png -------------------------------------------------------------------------------- /war/WEB-INF/appengine-web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/WEB-INF/appengine-web.xml -------------------------------------------------------------------------------- /war/WEB-INF/groovy/dataStoreGroovlet.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/WEB-INF/groovy/dataStoreGroovlet.groovy -------------------------------------------------------------------------------- /war/WEB-INF/groovy/datetime.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/WEB-INF/groovy/datetime.groovy -------------------------------------------------------------------------------- /war/WEB-INF/includes/footer.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/WEB-INF/includes/footer.gtpl -------------------------------------------------------------------------------- /war/WEB-INF/includes/header.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/WEB-INF/includes/header.gtpl -------------------------------------------------------------------------------- /war/WEB-INF/logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/WEB-INF/logging.properties -------------------------------------------------------------------------------- /war/WEB-INF/pages/datetime.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/WEB-INF/pages/datetime.gtpl -------------------------------------------------------------------------------- /war/WEB-INF/pages/index.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/WEB-INF/pages/index.gtpl -------------------------------------------------------------------------------- /war/WEB-INF/routes.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/WEB-INF/routes.groovy -------------------------------------------------------------------------------- /war/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/WEB-INF/web.xml -------------------------------------------------------------------------------- /war/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/css/bootstrap.min.css -------------------------------------------------------------------------------- /war/css/timout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/css/timout.css -------------------------------------------------------------------------------- /war/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/favicon.ico -------------------------------------------------------------------------------- /war/googlee26e0824859c3f83.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/googlee26e0824859c3f83.html -------------------------------------------------------------------------------- /war/images/tea-clock--screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/images/tea-clock--screenshot.jpg -------------------------------------------------------------------------------- /war/images/tomato_200_trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/images/tomato_200_trans.png -------------------------------------------------------------------------------- /war/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/index.html -------------------------------------------------------------------------------- /war/js/bootstrap-buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/js/bootstrap-buttons.js -------------------------------------------------------------------------------- /war/js/bootstrap-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/js/bootstrap-modal.js -------------------------------------------------------------------------------- /war/js/bootstrap-popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/js/bootstrap-popover.js -------------------------------------------------------------------------------- /war/js/bootstrap-twipsy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/js/bootstrap-twipsy.js -------------------------------------------------------------------------------- /war/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/js/jquery.min.js -------------------------------------------------------------------------------- /war/js/timout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/js/timout.js -------------------------------------------------------------------------------- /war/popup-break.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/popup-break.html -------------------------------------------------------------------------------- /war/popup-pomodoro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/popup-pomodoro.html -------------------------------------------------------------------------------- /war/snd/break-finished.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/snd/break-finished.wav -------------------------------------------------------------------------------- /war/snd/finished-loop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/snd/finished-loop.wav -------------------------------------------------------------------------------- /war/snd/pomodoro-finished.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/snd/pomodoro-finished.wav -------------------------------------------------------------------------------- /war/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/test.html -------------------------------------------------------------------------------- /war/timout.appcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamoh/timout/HEAD/war/timout.appcache --------------------------------------------------------------------------------