├── .circleci └── config.yml ├── .eslintignore ├── .gitignore ├── .meteor ├── .finished-upgraders ├── .gitignore ├── .id ├── packages ├── platforms ├── release └── versions ├── .testing ├── cache_build_and_dependencies.js ├── cache_build_and_dependencies.sh ├── cache_meteor.sh ├── cache_npm_dependencies.sh ├── chimp.js ├── processes.js └── upgrade_chrome_version.sh ├── LICENSE.txt ├── README.md ├── client ├── head.html ├── main.js └── main.less ├── i18n ├── de.i18n.json ├── en.i18n.json └── fr.i18n.json ├── imports ├── api │ ├── generate-data.app-tests.js │ ├── lists │ │ ├── lists.js │ │ ├── methods.js │ │ └── server │ │ │ ├── lists.tests.js │ │ │ └── publications.js │ └── todos │ │ ├── incompleteCountDenormalizer.js │ │ ├── methods.js │ │ ├── server │ │ ├── publications.js │ │ └── todos.tests.js │ │ └── todos.js ├── startup │ ├── both │ │ ├── index.js │ │ └── useraccounts-configuration.js │ ├── client │ │ ├── index.js │ │ ├── routes.app-test.js │ │ └── routes.js │ └── server │ │ ├── fixtures.js │ │ ├── index.js │ │ ├── register-api.js │ │ ├── reset-password-email.js │ │ └── security.js ├── ui │ ├── accounts │ │ ├── accounts-templates.html │ │ ├── accounts-templates.js │ │ └── accounts-templates.less │ ├── components │ │ ├── client │ │ │ ├── lists-show.tests.js │ │ │ └── todos-item.tests.js │ │ ├── lists-show.html │ │ ├── lists-show.js │ │ ├── lists-show.less │ │ ├── loading.html │ │ ├── loading.js │ │ ├── loading.less │ │ ├── todos-item.html │ │ └── todos-item.js │ ├── launch-screen.js │ ├── layouts │ │ ├── app-body.html │ │ └── app-body.js │ ├── lib │ │ └── errors.js │ ├── pages │ │ ├── app-not-found.html │ │ ├── app-not-found.js │ │ ├── app-not-found.less │ │ ├── client │ │ │ └── lists-show-page.tests.js │ │ ├── lists-show-page.html │ │ ├── lists-show-page.js │ │ ├── root-redirector.html │ │ └── root-redirector.js │ ├── stylesheets │ │ ├── base.less │ │ ├── button.less │ │ ├── form.less │ │ ├── icon.less │ │ ├── layout.less │ │ ├── link.less │ │ ├── list-items.less │ │ ├── menu.less │ │ ├── message.less │ │ ├── nav.less │ │ ├── notification.less │ │ ├── reset.less │ │ ├── util │ │ │ ├── fontface.less │ │ │ ├── helpers.less │ │ │ ├── text.less │ │ │ ├── typography.less │ │ │ └── variables.less │ │ └── utils.less │ └── test-helpers.js └── utils │ └── denodeify.js ├── mobile-config.js ├── package.json ├── packages └── app-prod-security │ └── package.js ├── public ├── apple-touch-icon-precomposed.png ├── favicon.png ├── font │ ├── OpenSans-Light-webfont.eot │ ├── OpenSans-Light-webfont.svg │ ├── OpenSans-Light-webfont.ttf │ ├── OpenSans-Light-webfont.woff │ ├── OpenSans-Regular-webfont.eot │ ├── OpenSans-Regular-webfont.svg │ ├── OpenSans-Regular-webfont.ttf │ └── OpenSans-Regular-webfont.woff ├── icon │ ├── todos.eot │ ├── todos.svg │ ├── todos.ttf │ └── todos.woff └── logo-todos.svg ├── resources ├── icons │ ├── icon-29x29.png │ ├── icon-29x29@2x.png │ ├── icon-36x36.png │ ├── icon-40x40.png │ ├── icon-40x40@2x.png │ ├── icon-48x48.png │ ├── icon-50x50.png │ ├── icon-50x50@2x.png │ ├── icon-57x57.png │ ├── icon-57x57@2x.png │ ├── icon-60x60.png │ ├── icon-60x60@2x.png │ ├── icon-72x72.png │ ├── icon-72x72@2x.png │ ├── icon-76x76.png │ ├── icon-76x76@2x.png │ └── icon-96x96.png └── splash │ ├── splash-1024x768.png │ ├── splash-1024x768@2x.png │ ├── splash-1280x720.png │ ├── splash-200x320.png │ ├── splash-320x200.png │ ├── splash-320x480.png │ ├── splash-320x480@2x.png │ ├── splash-320x568@2x.png │ ├── splash-480x320.png │ ├── splash-480x800.png │ ├── splash-720x1280.png │ ├── splash-768x1024.png │ ├── splash-768x1024@2x.png │ └── splash-800x480.png ├── server └── main.js └── tests ├── acceptance_run ├── acceptance_watch └── lists.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | packages 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | npm-debug.log 4 | 5 | .idea/ 6 | -------------------------------------------------------------------------------- /.meteor/.finished-upgraders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/.meteor/.finished-upgraders -------------------------------------------------------------------------------- /.meteor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/.meteor/.gitignore -------------------------------------------------------------------------------- /.meteor/.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/.meteor/.id -------------------------------------------------------------------------------- /.meteor/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/.meteor/packages -------------------------------------------------------------------------------- /.meteor/platforms: -------------------------------------------------------------------------------- 1 | server 2 | browser 3 | android 4 | ios 5 | -------------------------------------------------------------------------------- /.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@1.10.2 2 | -------------------------------------------------------------------------------- /.meteor/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/.meteor/versions -------------------------------------------------------------------------------- /.testing/cache_build_and_dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/.testing/cache_build_and_dependencies.js -------------------------------------------------------------------------------- /.testing/cache_build_and_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/.testing/cache_build_and_dependencies.sh -------------------------------------------------------------------------------- /.testing/cache_meteor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/.testing/cache_meteor.sh -------------------------------------------------------------------------------- /.testing/cache_npm_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/.testing/cache_npm_dependencies.sh -------------------------------------------------------------------------------- /.testing/chimp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/.testing/chimp.js -------------------------------------------------------------------------------- /.testing/processes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/.testing/processes.js -------------------------------------------------------------------------------- /.testing/upgrade_chrome_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/.testing/upgrade_chrome_version.sh -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/README.md -------------------------------------------------------------------------------- /client/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/client/head.html -------------------------------------------------------------------------------- /client/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/client/main.js -------------------------------------------------------------------------------- /client/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/client/main.less -------------------------------------------------------------------------------- /i18n/de.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/i18n/de.i18n.json -------------------------------------------------------------------------------- /i18n/en.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/i18n/en.i18n.json -------------------------------------------------------------------------------- /i18n/fr.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/i18n/fr.i18n.json -------------------------------------------------------------------------------- /imports/api/generate-data.app-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/api/generate-data.app-tests.js -------------------------------------------------------------------------------- /imports/api/lists/lists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/api/lists/lists.js -------------------------------------------------------------------------------- /imports/api/lists/methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/api/lists/methods.js -------------------------------------------------------------------------------- /imports/api/lists/server/lists.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/api/lists/server/lists.tests.js -------------------------------------------------------------------------------- /imports/api/lists/server/publications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/api/lists/server/publications.js -------------------------------------------------------------------------------- /imports/api/todos/incompleteCountDenormalizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/api/todos/incompleteCountDenormalizer.js -------------------------------------------------------------------------------- /imports/api/todos/methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/api/todos/methods.js -------------------------------------------------------------------------------- /imports/api/todos/server/publications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/api/todos/server/publications.js -------------------------------------------------------------------------------- /imports/api/todos/server/todos.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/api/todos/server/todos.tests.js -------------------------------------------------------------------------------- /imports/api/todos/todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/api/todos/todos.js -------------------------------------------------------------------------------- /imports/startup/both/index.js: -------------------------------------------------------------------------------- 1 | import './useraccounts-configuration.js'; 2 | -------------------------------------------------------------------------------- /imports/startup/both/useraccounts-configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/startup/both/useraccounts-configuration.js -------------------------------------------------------------------------------- /imports/startup/client/index.js: -------------------------------------------------------------------------------- 1 | import './routes.js'; 2 | -------------------------------------------------------------------------------- /imports/startup/client/routes.app-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/startup/client/routes.app-test.js -------------------------------------------------------------------------------- /imports/startup/client/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/startup/client/routes.js -------------------------------------------------------------------------------- /imports/startup/server/fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/startup/server/fixtures.js -------------------------------------------------------------------------------- /imports/startup/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/startup/server/index.js -------------------------------------------------------------------------------- /imports/startup/server/register-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/startup/server/register-api.js -------------------------------------------------------------------------------- /imports/startup/server/reset-password-email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/startup/server/reset-password-email.js -------------------------------------------------------------------------------- /imports/startup/server/security.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/startup/server/security.js -------------------------------------------------------------------------------- /imports/ui/accounts/accounts-templates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/accounts/accounts-templates.html -------------------------------------------------------------------------------- /imports/ui/accounts/accounts-templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/accounts/accounts-templates.js -------------------------------------------------------------------------------- /imports/ui/accounts/accounts-templates.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/accounts/accounts-templates.less -------------------------------------------------------------------------------- /imports/ui/components/client/lists-show.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/components/client/lists-show.tests.js -------------------------------------------------------------------------------- /imports/ui/components/client/todos-item.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/components/client/todos-item.tests.js -------------------------------------------------------------------------------- /imports/ui/components/lists-show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/components/lists-show.html -------------------------------------------------------------------------------- /imports/ui/components/lists-show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/components/lists-show.js -------------------------------------------------------------------------------- /imports/ui/components/lists-show.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/components/lists-show.less -------------------------------------------------------------------------------- /imports/ui/components/loading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/components/loading.html -------------------------------------------------------------------------------- /imports/ui/components/loading.js: -------------------------------------------------------------------------------- 1 | import './loading.html'; 2 | -------------------------------------------------------------------------------- /imports/ui/components/loading.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/components/loading.less -------------------------------------------------------------------------------- /imports/ui/components/todos-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/components/todos-item.html -------------------------------------------------------------------------------- /imports/ui/components/todos-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/components/todos-item.js -------------------------------------------------------------------------------- /imports/ui/launch-screen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/launch-screen.js -------------------------------------------------------------------------------- /imports/ui/layouts/app-body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/layouts/app-body.html -------------------------------------------------------------------------------- /imports/ui/layouts/app-body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/layouts/app-body.js -------------------------------------------------------------------------------- /imports/ui/lib/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/lib/errors.js -------------------------------------------------------------------------------- /imports/ui/pages/app-not-found.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/pages/app-not-found.html -------------------------------------------------------------------------------- /imports/ui/pages/app-not-found.js: -------------------------------------------------------------------------------- 1 | import './app-not-found.html'; 2 | -------------------------------------------------------------------------------- /imports/ui/pages/app-not-found.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/pages/app-not-found.less -------------------------------------------------------------------------------- /imports/ui/pages/client/lists-show-page.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/pages/client/lists-show-page.tests.js -------------------------------------------------------------------------------- /imports/ui/pages/lists-show-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/pages/lists-show-page.html -------------------------------------------------------------------------------- /imports/ui/pages/lists-show-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/pages/lists-show-page.js -------------------------------------------------------------------------------- /imports/ui/pages/root-redirector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/pages/root-redirector.html -------------------------------------------------------------------------------- /imports/ui/pages/root-redirector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/pages/root-redirector.js -------------------------------------------------------------------------------- /imports/ui/stylesheets/base.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/stylesheets/base.less -------------------------------------------------------------------------------- /imports/ui/stylesheets/button.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/stylesheets/button.less -------------------------------------------------------------------------------- /imports/ui/stylesheets/form.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/stylesheets/form.less -------------------------------------------------------------------------------- /imports/ui/stylesheets/icon.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/stylesheets/icon.less -------------------------------------------------------------------------------- /imports/ui/stylesheets/layout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/stylesheets/layout.less -------------------------------------------------------------------------------- /imports/ui/stylesheets/link.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/stylesheets/link.less -------------------------------------------------------------------------------- /imports/ui/stylesheets/list-items.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/stylesheets/list-items.less -------------------------------------------------------------------------------- /imports/ui/stylesheets/menu.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/stylesheets/menu.less -------------------------------------------------------------------------------- /imports/ui/stylesheets/message.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/stylesheets/message.less -------------------------------------------------------------------------------- /imports/ui/stylesheets/nav.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/stylesheets/nav.less -------------------------------------------------------------------------------- /imports/ui/stylesheets/notification.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/stylesheets/notification.less -------------------------------------------------------------------------------- /imports/ui/stylesheets/reset.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/stylesheets/reset.less -------------------------------------------------------------------------------- /imports/ui/stylesheets/util/fontface.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/stylesheets/util/fontface.less -------------------------------------------------------------------------------- /imports/ui/stylesheets/util/helpers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/stylesheets/util/helpers.less -------------------------------------------------------------------------------- /imports/ui/stylesheets/util/text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/stylesheets/util/text.less -------------------------------------------------------------------------------- /imports/ui/stylesheets/util/typography.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/stylesheets/util/typography.less -------------------------------------------------------------------------------- /imports/ui/stylesheets/util/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/stylesheets/util/variables.less -------------------------------------------------------------------------------- /imports/ui/stylesheets/utils.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/stylesheets/utils.less -------------------------------------------------------------------------------- /imports/ui/test-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/ui/test-helpers.js -------------------------------------------------------------------------------- /imports/utils/denodeify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/imports/utils/denodeify.js -------------------------------------------------------------------------------- /mobile-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/mobile-config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/package.json -------------------------------------------------------------------------------- /packages/app-prod-security/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/packages/app-prod-security/package.js -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/public/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/font/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/public/font/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /public/font/OpenSans-Light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/public/font/OpenSans-Light-webfont.svg -------------------------------------------------------------------------------- /public/font/OpenSans-Light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/public/font/OpenSans-Light-webfont.ttf -------------------------------------------------------------------------------- /public/font/OpenSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/public/font/OpenSans-Light-webfont.woff -------------------------------------------------------------------------------- /public/font/OpenSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/public/font/OpenSans-Regular-webfont.eot -------------------------------------------------------------------------------- /public/font/OpenSans-Regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/public/font/OpenSans-Regular-webfont.svg -------------------------------------------------------------------------------- /public/font/OpenSans-Regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/public/font/OpenSans-Regular-webfont.ttf -------------------------------------------------------------------------------- /public/font/OpenSans-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/public/font/OpenSans-Regular-webfont.woff -------------------------------------------------------------------------------- /public/icon/todos.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/public/icon/todos.eot -------------------------------------------------------------------------------- /public/icon/todos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/public/icon/todos.svg -------------------------------------------------------------------------------- /public/icon/todos.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/public/icon/todos.ttf -------------------------------------------------------------------------------- /public/icon/todos.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/public/icon/todos.woff -------------------------------------------------------------------------------- /public/logo-todos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/public/logo-todos.svg -------------------------------------------------------------------------------- /resources/icons/icon-29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/icons/icon-29x29.png -------------------------------------------------------------------------------- /resources/icons/icon-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/icons/icon-29x29@2x.png -------------------------------------------------------------------------------- /resources/icons/icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/icons/icon-36x36.png -------------------------------------------------------------------------------- /resources/icons/icon-40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/icons/icon-40x40.png -------------------------------------------------------------------------------- /resources/icons/icon-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/icons/icon-40x40@2x.png -------------------------------------------------------------------------------- /resources/icons/icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/icons/icon-48x48.png -------------------------------------------------------------------------------- /resources/icons/icon-50x50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/icons/icon-50x50.png -------------------------------------------------------------------------------- /resources/icons/icon-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/icons/icon-50x50@2x.png -------------------------------------------------------------------------------- /resources/icons/icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/icons/icon-57x57.png -------------------------------------------------------------------------------- /resources/icons/icon-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/icons/icon-57x57@2x.png -------------------------------------------------------------------------------- /resources/icons/icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/icons/icon-60x60.png -------------------------------------------------------------------------------- /resources/icons/icon-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/icons/icon-60x60@2x.png -------------------------------------------------------------------------------- /resources/icons/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/icons/icon-72x72.png -------------------------------------------------------------------------------- /resources/icons/icon-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/icons/icon-72x72@2x.png -------------------------------------------------------------------------------- /resources/icons/icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/icons/icon-76x76.png -------------------------------------------------------------------------------- /resources/icons/icon-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/icons/icon-76x76@2x.png -------------------------------------------------------------------------------- /resources/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/icons/icon-96x96.png -------------------------------------------------------------------------------- /resources/splash/splash-1024x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/splash/splash-1024x768.png -------------------------------------------------------------------------------- /resources/splash/splash-1024x768@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/splash/splash-1024x768@2x.png -------------------------------------------------------------------------------- /resources/splash/splash-1280x720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/splash/splash-1280x720.png -------------------------------------------------------------------------------- /resources/splash/splash-200x320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/splash/splash-200x320.png -------------------------------------------------------------------------------- /resources/splash/splash-320x200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/splash/splash-320x200.png -------------------------------------------------------------------------------- /resources/splash/splash-320x480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/splash/splash-320x480.png -------------------------------------------------------------------------------- /resources/splash/splash-320x480@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/splash/splash-320x480@2x.png -------------------------------------------------------------------------------- /resources/splash/splash-320x568@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/splash/splash-320x568@2x.png -------------------------------------------------------------------------------- /resources/splash/splash-480x320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/splash/splash-480x320.png -------------------------------------------------------------------------------- /resources/splash/splash-480x800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/splash/splash-480x800.png -------------------------------------------------------------------------------- /resources/splash/splash-720x1280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/splash/splash-720x1280.png -------------------------------------------------------------------------------- /resources/splash/splash-768x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/splash/splash-768x1024.png -------------------------------------------------------------------------------- /resources/splash/splash-768x1024@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/splash/splash-768x1024@2x.png -------------------------------------------------------------------------------- /resources/splash/splash-800x480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/resources/splash/splash-800x480.png -------------------------------------------------------------------------------- /server/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/server/main.js -------------------------------------------------------------------------------- /tests/acceptance_run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | node ./.testing/chimp.js --ci -------------------------------------------------------------------------------- /tests/acceptance_watch: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | node ./.testing/chimp.js -------------------------------------------------------------------------------- /tests/lists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor/todos/HEAD/tests/lists.js --------------------------------------------------------------------------------