├── .dockerignore ├── .gitignore ├── .meteor ├── .finished-upgraders ├── .gitignore ├── .id ├── cordova-plugins ├── packages ├── platforms ├── release └── versions ├── .tools ├── import.sh └── prepare-import.js ├── BACKUP ├── Dockerfile ├── LICENSE ├── README.md ├── client ├── access-denied-needs-moderator.html ├── access-denied.html ├── curate │ ├── curate.html │ └── curate.js ├── global-helpers.js ├── includes │ └── loading.html ├── index.html ├── layout.html ├── main.html ├── navigation │ └── navigation.html ├── points │ ├── common │ │ ├── edit-point-form.html │ │ └── edit-point-form.js │ ├── edit │ │ ├── edit-point.html │ │ └── edit-point.js │ ├── points.html │ ├── points.js │ └── submit │ │ ├── submit-point.html │ │ └── submit-point.js ├── publish │ ├── publish.html │ └── publish.js ├── services │ ├── common │ │ ├── service-form-fields.html │ │ └── service-form-fields.js │ ├── create │ │ ├── create-service.html │ │ └── create-service.js │ ├── edit │ │ ├── edit-service.html │ │ └── edit-service.js │ ├── services.html │ └── services.js ├── styles │ ├── global.less │ ├── moderate-points.less │ ├── services.less │ └── topics.less ├── topics │ ├── common │ │ ├── topic-form-fields.html │ │ └── topic-form-fields.js │ ├── create │ │ ├── create-topic.html │ │ └── create-topic.js │ ├── edit │ │ ├── edit-topic.html │ │ └── edit-topic.js │ ├── topics.html │ └── topics.js └── user-not-verified.html ├── docker-compose.yml ├── i18n └── en.i18n.json ├── lib ├── collections.js ├── router │ ├── points-routes.js │ ├── router.js │ ├── services-routes.js │ └── topics-routes.js └── utils.js ├── package.json └── server ├── dummy-data.js └── server.js /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | TODO.txt 2 | .idea 3 | data 4 | *.swp 5 | node_modules 6 | public 7 | -------------------------------------------------------------------------------- /.meteor/.finished-upgraders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/.meteor/.finished-upgraders -------------------------------------------------------------------------------- /.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /.meteor/.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/.meteor/.id -------------------------------------------------------------------------------- /.meteor/cordova-plugins: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.meteor/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/.meteor/packages -------------------------------------------------------------------------------- /.meteor/platforms: -------------------------------------------------------------------------------- 1 | server 2 | browser 3 | -------------------------------------------------------------------------------- /.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@1.4.2.3 2 | -------------------------------------------------------------------------------- /.meteor/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/.meteor/versions -------------------------------------------------------------------------------- /.tools/import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/.tools/import.sh -------------------------------------------------------------------------------- /.tools/prepare-import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/.tools/prepare-import.js -------------------------------------------------------------------------------- /BACKUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/BACKUP -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/README.md -------------------------------------------------------------------------------- /client/access-denied-needs-moderator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/access-denied-needs-moderator.html -------------------------------------------------------------------------------- /client/access-denied.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/access-denied.html -------------------------------------------------------------------------------- /client/curate/curate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/curate/curate.html -------------------------------------------------------------------------------- /client/curate/curate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/curate/curate.js -------------------------------------------------------------------------------- /client/global-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/global-helpers.js -------------------------------------------------------------------------------- /client/includes/loading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/includes/loading.html -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/index.html -------------------------------------------------------------------------------- /client/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/layout.html -------------------------------------------------------------------------------- /client/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/main.html -------------------------------------------------------------------------------- /client/navigation/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/navigation/navigation.html -------------------------------------------------------------------------------- /client/points/common/edit-point-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/points/common/edit-point-form.html -------------------------------------------------------------------------------- /client/points/common/edit-point-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/points/common/edit-point-form.js -------------------------------------------------------------------------------- /client/points/edit/edit-point.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/points/edit/edit-point.html -------------------------------------------------------------------------------- /client/points/edit/edit-point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/points/edit/edit-point.js -------------------------------------------------------------------------------- /client/points/points.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/points/points.html -------------------------------------------------------------------------------- /client/points/points.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/points/points.js -------------------------------------------------------------------------------- /client/points/submit/submit-point.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/points/submit/submit-point.html -------------------------------------------------------------------------------- /client/points/submit/submit-point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/points/submit/submit-point.js -------------------------------------------------------------------------------- /client/publish/publish.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/publish/publish.html -------------------------------------------------------------------------------- /client/publish/publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/publish/publish.js -------------------------------------------------------------------------------- /client/services/common/service-form-fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/services/common/service-form-fields.html -------------------------------------------------------------------------------- /client/services/common/service-form-fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/services/common/service-form-fields.js -------------------------------------------------------------------------------- /client/services/create/create-service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/services/create/create-service.html -------------------------------------------------------------------------------- /client/services/create/create-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/services/create/create-service.js -------------------------------------------------------------------------------- /client/services/edit/edit-service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/services/edit/edit-service.html -------------------------------------------------------------------------------- /client/services/edit/edit-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/services/edit/edit-service.js -------------------------------------------------------------------------------- /client/services/services.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/services/services.html -------------------------------------------------------------------------------- /client/services/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/services/services.js -------------------------------------------------------------------------------- /client/styles/global.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/styles/global.less -------------------------------------------------------------------------------- /client/styles/moderate-points.less: -------------------------------------------------------------------------------- 1 | .filterForm select { 2 | width: 10em; 3 | } -------------------------------------------------------------------------------- /client/styles/services.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/styles/services.less -------------------------------------------------------------------------------- /client/styles/topics.less: -------------------------------------------------------------------------------- 1 | .topicForm { 2 | max-width: 40em; 3 | } -------------------------------------------------------------------------------- /client/topics/common/topic-form-fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/topics/common/topic-form-fields.html -------------------------------------------------------------------------------- /client/topics/common/topic-form-fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/topics/common/topic-form-fields.js -------------------------------------------------------------------------------- /client/topics/create/create-topic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/topics/create/create-topic.html -------------------------------------------------------------------------------- /client/topics/create/create-topic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/topics/create/create-topic.js -------------------------------------------------------------------------------- /client/topics/edit/edit-topic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/topics/edit/edit-topic.html -------------------------------------------------------------------------------- /client/topics/edit/edit-topic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/topics/edit/edit-topic.js -------------------------------------------------------------------------------- /client/topics/topics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/topics/topics.html -------------------------------------------------------------------------------- /client/topics/topics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/topics/topics.js -------------------------------------------------------------------------------- /client/user-not-verified.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/client/user-not-verified.html -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /i18n/en.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/i18n/en.i18n.json -------------------------------------------------------------------------------- /lib/collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/lib/collections.js -------------------------------------------------------------------------------- /lib/router/points-routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/lib/router/points-routes.js -------------------------------------------------------------------------------- /lib/router/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/lib/router/router.js -------------------------------------------------------------------------------- /lib/router/services-routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/lib/router/services-routes.js -------------------------------------------------------------------------------- /lib/router/topics-routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/lib/router/topics-routes.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/package.json -------------------------------------------------------------------------------- /server/dummy-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/server/dummy-data.js -------------------------------------------------------------------------------- /server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr2/HEAD/server/server.js --------------------------------------------------------------------------------