├── .bundlewatch.config.js ├── .gitattributes ├── .gitconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── documentation.md │ ├── feature_request.md │ └── security-issue.md ├── dependabot.yml └── workflows │ ├── .github │ └── workflows │ │ └── release-dockerhub-images.yml │ ├── bundlewatch.yml │ ├── cypress-tests.yml │ ├── depcheck.yml │ ├── lint.yml │ ├── release-docker-images.yml │ └── test-clojure.yml ├── .gitignore ├── .vscode ├── launch.json ├── polis.code-workspace └── tasks.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── VERSION ├── bin ├── activate-xid-whitelist.clj ├── add-xid-whitelist.clj ├── build-static-assets.clj ├── deploy-static-assets.clj ├── lib │ └── db.clj ├── purge-pii.clj └── run-migrations.clj ├── client-admin ├── .babelrc ├── .dockerignore ├── .editorconfig ├── .eslintrc.yml ├── .gitignore ├── .vscode │ └── settings.json ├── Dockerfile ├── LICENSE ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── 404.html │ ├── embed.html │ ├── embedPreprod.html │ ├── embedReport.html │ ├── embedReportPreprod.html │ ├── favicon.ico │ └── index.ejs ├── qa.md ├── src │ ├── actions │ │ └── index.js │ ├── app.js │ ├── components │ │ ├── conversation-admin │ │ │ ├── CheckboxField.js │ │ │ ├── comment-moderation │ │ │ │ ├── comment.js │ │ │ │ ├── index.js │ │ │ │ ├── moderate-comments-accepted.js │ │ │ │ ├── moderate-comments-rejected.js │ │ │ │ └── moderate-comments-todo.js │ │ │ ├── conversation-config.js │ │ │ ├── conversation-has-comments-check.js │ │ │ ├── data-export.js │ │ │ ├── index.js │ │ │ ├── no-permission.js │ │ │ ├── report │ │ │ │ ├── reports-list.js │ │ │ │ └── reports.js │ │ │ ├── seed-comment.js │ │ │ ├── seed-tweet.js │ │ │ ├── share-and-embed.js │ │ │ └── stats │ │ │ │ ├── commenters.js │ │ │ │ ├── conversation-stats-commenters-voters.js │ │ │ │ ├── conversation-stats-comments-timescale.js │ │ │ │ ├── conversation-stats-number-card.js │ │ │ │ ├── conversation-stats-number-cards.js │ │ │ │ ├── conversation-stats-vote-distribution.js │ │ │ │ ├── conversation-stats-votes-timescale.js │ │ │ │ ├── index.js │ │ │ │ ├── victoryTheme.js │ │ │ │ └── voters.js │ │ ├── conversations-and-account │ │ │ ├── account.js │ │ │ ├── conversation.js │ │ │ ├── conversations.js │ │ │ └── integrate.js │ │ ├── framework │ │ │ ├── logomark.js │ │ │ └── spinner.js │ │ ├── interior-header.js │ │ └── landers │ │ │ ├── createuser.js │ │ │ ├── exploreKnowledgeBase.js │ │ │ ├── home.js │ │ │ ├── knowledgeBase.js │ │ │ ├── lander-footer.js │ │ │ ├── lander-header.js │ │ │ ├── lander-layout.js │ │ │ ├── password-reset-init-done.js │ │ │ ├── password-reset-init.js │ │ │ ├── password-reset.js │ │ │ ├── press.js │ │ │ ├── privacy.js │ │ │ ├── signin.js │ │ │ ├── signout.js │ │ │ └── tos.js │ ├── content │ │ ├── privacy.md │ │ └── tos.md │ ├── index.js │ ├── reducers │ │ ├── REDUCER_TEMPLATE.js │ │ ├── comments.js │ │ ├── conversation_config.js │ │ ├── conversations.js │ │ ├── index.js │ │ ├── math.js │ │ ├── mod_comments_accepted.js │ │ ├── mod_comments_rejected.js │ │ ├── mod_comments_unmoderated.js │ │ ├── mod_ptpt_default.js │ │ ├── mod_ptpt_featured.js │ │ ├── mod_ptpt_hidden.js │ │ ├── participants.js │ │ ├── seed_comments.js │ │ ├── seed_comments_tweet.js │ │ ├── signin.js │ │ ├── signout.js │ │ ├── stats.js │ │ ├── user.js │ │ └── zid_metadata.js │ ├── settings.js │ ├── store │ │ └── index.js │ ├── strings │ │ ├── en_us.js │ │ ├── footer.js │ │ ├── pt_br.js │ │ └── strings.js │ ├── theme │ │ └── index.js │ └── util │ │ ├── component-helpers.js │ │ ├── data-export-date-setup.js │ │ ├── net.js │ │ └── url.js └── webpack.config.js ├── client-participation ├── .babelrc ├── .dockerignore ├── .gitignore ├── .jshintrc ├── Dockerfile ├── README.md ├── api │ ├── embed.js │ ├── embedPreprod.js │ ├── polisHost.js │ └── twitterAuthReturn.html ├── css │ ├── base.scss │ ├── bootstrap_config │ │ ├── bootstrap.scss │ │ └── variables.scss │ ├── conversationView.scss │ ├── owlcarousel │ │ ├── owl.carousel.scss │ │ ├── owl.custom.scss │ │ ├── owl.theme.scss │ │ └── owl.transitions.scss │ ├── pca_vis.scss │ ├── polis │ │ ├── _normalize.scss │ │ ├── base │ │ │ ├── _base.scss │ │ │ ├── _content.scss │ │ │ ├── _mixins.scss │ │ │ ├── _utilities.scss │ │ │ └── _variables.scss │ │ ├── docs.md │ │ ├── layout │ │ │ └── _grid.scss │ │ ├── modules │ │ │ ├── _accordion.scss │ │ │ ├── _buttons.scss │ │ │ ├── _footer.scss │ │ │ ├── _formSwitch.scss │ │ │ ├── _forms.scss │ │ │ ├── _header.scss │ │ │ ├── _hero.scss │ │ │ ├── _icons.scss │ │ │ ├── _intercom.scss │ │ │ ├── _lander.scss │ │ │ ├── _legend.scss │ │ │ ├── _lists.scss │ │ │ ├── _navigation.scss │ │ │ ├── _notifications.scss │ │ │ ├── _share.scss │ │ │ ├── _starterComments.scss │ │ │ ├── _toggle.scss │ │ │ └── _visualization.scss │ │ ├── polis.scss │ │ └── states │ │ │ └── _states.scss │ └── polis_main.scss ├── js │ ├── 3rdparty │ │ ├── d3.v4.min.js │ │ ├── jquery.js │ │ └── jquery.min.js │ ├── collection-view.js │ ├── collection.js │ ├── collections │ │ ├── comments.js │ │ └── votes.js │ ├── eventBus.js │ ├── images │ │ ├── anon_profile.js │ │ └── polis_logo.js │ ├── layout-view.js │ ├── lib │ │ ├── PolisModelView.js │ │ ├── PolisView.js │ │ └── VisView.js │ ├── main.js │ ├── model.js │ ├── models │ │ ├── comment.js │ │ ├── conversation.js │ │ ├── participant.js │ │ ├── rule.js │ │ ├── twitterUser.js │ │ ├── user.js │ │ └── vote.js │ ├── net │ │ ├── backbonePolis.js │ │ ├── bbDestroy.js │ │ ├── bbFetch.js │ │ └── bbSave.js │ ├── routers │ │ └── main-polis-router.js │ ├── stores │ │ ├── currentUser.js │ │ └── polis.js │ ├── strings.js │ ├── strings │ │ ├── ar.js │ │ ├── cy.js │ │ ├── da_dk.js │ │ ├── de_de.js │ │ ├── en_us.js │ │ ├── es_la.js │ │ ├── fa.js │ │ ├── fr.js │ │ ├── fy_nl.js │ │ ├── gr.js │ │ ├── he.js │ │ ├── hr.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── nl.js │ │ ├── pt_TL.js │ │ ├── pt_br.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── ta.js │ │ ├── tdt.js │ │ ├── uk.js │ │ ├── zh_Hans.js │ │ └── zh_Hant.js │ ├── templates │ │ ├── carouselComment.handlebars │ │ ├── carouselCommentMobile.handlebars │ │ ├── comment-form.handlebars │ │ ├── commentCarouselGroup.handlebars │ │ ├── commentCarouselMajority.handlebars │ │ ├── commentView.handlebars │ │ ├── conversation-stats-header.handlebars │ │ ├── conversationInfoSlideView.handlebars │ │ ├── conversationStats.handlebars │ │ ├── conversationTabs.handlebars │ │ ├── cookiesDisabled.handlebars │ │ ├── countBadge.handlebars │ │ ├── footer.handlebars │ │ ├── groupSelectionView.handlebars │ │ ├── header.handlebars │ │ ├── headerWhatIsPolis.handlebars │ │ ├── icon_fa_angle_left.handlebars │ │ ├── icon_fa_angle_right.handlebars │ │ ├── icon_fa_asterisk.handlebars │ │ ├── icon_fa_ban.handlebars │ │ ├── icon_fa_check_circle.handlebars │ │ ├── icon_fa_facebook_square_16.handlebars │ │ ├── icon_fa_facebook_square_25.handlebars │ │ ├── icon_fa_lightbulb_o.handlebars │ │ ├── icon_fa_times.handlebars │ │ ├── icon_fa_twitter_16.handlebars │ │ ├── icon_fa_twitter_25.handlebars │ │ ├── link-AddPolis-partial.handlebars │ │ ├── link-TOS-partial.handlebars │ │ ├── link-privacy-partial.handlebars │ │ ├── logo.handlebars │ │ ├── logo_invert.handlebars │ │ ├── participation.handlebars │ │ ├── polisLogo.handlebars │ │ ├── profilePicView.handlebars │ │ ├── readReactView.handlebars │ │ ├── results-view.handlebars │ │ ├── root.handlebars │ │ ├── settings.handlebars │ │ ├── topComments.handlebars │ │ ├── topCommentsItem.handlebars │ │ ├── vote-view.handlebars │ │ ├── voteMore.handlebars │ │ └── writingTips.handlebars │ ├── util │ │ ├── ab.js │ │ ├── assemble.js │ │ ├── constants.js │ │ ├── display.js │ │ ├── facebookButton.js │ │ ├── gaMetric.js │ │ ├── metrics.js │ │ ├── net.js │ │ ├── polisAlert.js │ │ ├── polisStorage.js │ │ ├── popoverEach.js │ │ ├── postMessageUtils.js │ │ ├── preloadHelper.js │ │ ├── randomWithSeed.js │ │ ├── serialize.js │ │ ├── shuffleWithSeed.js │ │ ├── url.js │ │ └── utils.js │ └── views │ │ ├── DivisiveCommentsView.js │ │ ├── ReadReactView.js │ │ ├── TopCommentsView.js │ │ ├── analyzeGroupParticipantsView.js │ │ ├── comment-form.js │ │ ├── commentCarousel.js │ │ ├── commentCarouselGroup.js │ │ ├── commentCarouselMajority.js │ │ ├── commentView.js │ │ ├── conversation-stats-header.js │ │ ├── conversation.js │ │ ├── conversationInfoSlideView.js │ │ ├── conversationTabs.js │ │ ├── groupSelectionView.js │ │ ├── participation.js │ │ ├── profilePicView.js │ │ ├── root.js │ │ ├── settings.js │ │ ├── vote-view.js │ │ ├── voteMoreView.js │ │ └── writingTips.js ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.ejs │ └── twitterAuthReturn.html ├── sparklines.svg ├── unsupportedBrowser.html ├── vis2 │ ├── components │ │ ├── barChart.js │ │ ├── barChartCompact.js │ │ ├── barChartsForGroupVotes.js │ │ ├── curate.js │ │ ├── exploreTid.js │ │ ├── gear.js │ │ ├── globals.js │ │ ├── graph.js │ │ ├── graphAxes.js │ │ ├── graphComments.js │ │ ├── graphParticipants.js │ │ ├── header.js │ │ ├── hexLogo.js │ │ ├── hull.js │ │ ├── hullLabels.js │ │ └── tidCarousel.js │ ├── util │ │ ├── closestPointOnPath.js │ │ └── graphUtil.js │ └── vis2.js └── webpack.config.js ├── client-report ├── .babelrc ├── .dockerignore ├── .editorconfig ├── .eslintrc.yml ├── .gitignore ├── .jshintrc ├── .npmignore ├── .nvmrc ├── Dockerfile ├── LICENSE ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ └── index.html ├── src │ ├── COMPONENT_TEMPLATE.js │ ├── STATELESS_TEMPLATE.js │ ├── components │ │ ├── app.js │ │ ├── barChart.js │ │ ├── beeswarm │ │ │ └── beeswarm.js │ │ ├── boxPlot │ │ │ ├── boxPlot.js │ │ │ ├── drawBoxPlot.js │ │ │ └── lib.js │ │ ├── comment.js │ │ ├── commentsGraph │ │ │ ├── comments.js │ │ │ └── commentsGraph.js │ │ ├── controls │ │ │ └── controls.js │ │ ├── correlationMatrix │ │ │ └── matrix.js │ │ ├── framework │ │ │ ├── Footer.js │ │ │ ├── checkbox.js │ │ │ ├── flex.js │ │ │ ├── heading.js │ │ │ ├── legend.js │ │ │ ├── logoLargeShort.js │ │ │ └── logoSmallLong.js │ │ ├── globals.js │ │ ├── graphAxes.js │ │ ├── lists │ │ │ ├── allCommentsModeratedIn.js │ │ │ ├── commentList.js │ │ │ ├── majorityStrict.js │ │ │ ├── metadata.js │ │ │ ├── participantGroup.js │ │ │ ├── participantGroups.js │ │ │ └── uncertainty.js │ │ ├── overview.js │ │ └── participantsGraph │ │ │ ├── groupLabels.js │ │ │ ├── hull.js │ │ │ └── participantsGraph.js │ ├── index.css │ ├── index.js │ ├── sampleData │ │ ├── correlation.js │ │ ├── correlationHClust.js │ │ ├── covariance.js │ │ └── probabilities.js │ ├── settings.js │ ├── store │ │ └── index.js │ └── util │ │ ├── dataUtils.js │ │ ├── graphUtil.js │ │ ├── net.js │ │ ├── style.js │ │ └── url.js ├── webpack.common.js ├── webpack.config.js ├── webpack.dev.js └── writeHeadersJsonTask.js ├── docker-compose.dev.yml ├── docker-compose.test.yml ├── docker-compose.yml ├── docs ├── configuration.md ├── docker-architecture.png ├── docker-machine.md ├── migrations.md ├── scaling-roadmap.md ├── scaling.md ├── ssl.md └── upgrading.md ├── e2e ├── .dockerignore ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── README.md ├── build-embed.js ├── build-integrated.js ├── cypress.config.js ├── cypress │ ├── e2e │ │ ├── client-admin │ │ │ ├── access-control.cy.js │ │ │ ├── conversation.cy.js │ │ │ ├── create-user.cy.js │ │ │ ├── emails.cy.js │ │ │ ├── home.cy.js │ │ │ ├── public-pages.cy.js │ │ │ ├── routes.cy.js │ │ │ └── share.cy.js │ │ ├── client-participation │ │ │ ├── embeds.cy.js │ │ │ ├── i18n.cy.js │ │ │ ├── integrated.cy.js │ │ │ ├── social-login.cy.js │ │ │ └── visualization.cy.js │ │ └── third-party │ │ │ └── comment-translation.cy.js │ ├── fixtures │ │ └── users.json │ └── support │ │ ├── commands.js │ │ ├── e2e.js │ │ └── helpers.js ├── docker-compose.yml ├── embed │ ├── integrated-template.html │ └── template.html ├── package-lock.json └── package.json ├── example.env ├── file-server ├── .dockerignore ├── .editorconfig ├── .gitignore ├── .nvmrc ├── Dockerfile ├── app.js ├── nginx.Dockerfile ├── nginx │ ├── certs │ │ ├── snakeoil.cert.pem │ │ └── snakeoil.key.pem │ └── nginx-ssl.site.default.conf ├── package-lock.json └── package.json ├── heroku.yml ├── math ├── .dockerignore ├── .gitignore ├── .nrepl.edn ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── bin │ ├── run │ └── util-server ├── data │ └── legalization_conv.json ├── deps.edn ├── dev │ ├── density_plotting.clj │ ├── plumbing_viz.clj │ └── user.clj ├── doc │ └── configuration.md ├── misc │ └── silh_test.R ├── perf ├── resources │ └── config.edn ├── src │ ├── data_readers.clj │ └── polismath │ │ ├── components │ │ ├── config.clj │ │ ├── core_matrix_boot.clj │ │ ├── env.clj │ │ ├── logger.clj │ │ ├── postgres.clj │ │ ├── random.clj │ │ └── server.clj │ │ ├── conv_man.clj │ │ ├── darwin │ │ ├── core.clj │ │ └── export.clj │ │ ├── math │ │ ├── clusters.clj │ │ ├── conversation.clj │ │ ├── corr.clj │ │ ├── named_matrix.clj │ │ ├── pca.clj │ │ ├── repness.clj │ │ └── stats.clj │ │ ├── meta │ │ ├── metrics.clj │ │ ├── microscope.clj │ │ ├── notify.clj │ │ └── simulation.clj │ │ ├── poller.clj │ │ ├── runner.clj │ │ ├── stormspec.clj │ │ ├── system.clj │ │ ├── tasks.clj │ │ ├── util │ │ └── pretty_printers.clj │ │ └── utils.clj ├── system.properties ├── test │ ├── cluster_tests.clj │ ├── conv_man_tests.clj │ ├── conversation_test.clj │ ├── index_hash_test.clj │ ├── named_matrix_test.clj │ ├── pca_test.clj │ ├── ptpt_stats_test.clj │ ├── silhouette_test.clj │ ├── stats_test.clj │ ├── test_helpers.clj │ ├── test_runner.clj │ └── utils_test.clj └── tmp │ └── .touchfile ├── package.json ├── server ├── .dockerignore ├── .eslintrc.js ├── .gitignore ├── .nvmrc ├── .vscode │ └── settings.json ├── Dockerfile ├── Dockerfile-db ├── LICENSE ├── README.md ├── app.ts ├── bin │ ├── copyGoogleCredsToHeroku │ ├── herokuConfigExport │ └── stringifyGoogleCreds.js ├── example.env ├── jest.config.ts ├── package-lock.json ├── package.json ├── postgres │ └── migrations │ │ ├── 000000_initial.sql │ │ ├── 000001_update_pwreset_table.sql │ │ ├── 000002_add_xid_constraint.sql │ │ ├── 000003_add_origin_permanent_cookie_columns.sql │ │ ├── 000004_drop_waitinglist_table.sql │ │ ├── 000005_drop_slack_stripe_canvas.sql │ │ ├── 000006_update_votes_rule.sql │ │ └── archived │ │ ├── db_000002.sql │ │ ├── db_000004.sql │ │ ├── db_000006.sql │ │ ├── db_000008.sql │ │ └── db_000010.sql ├── prettier.config.js ├── src │ ├── auth │ │ ├── create-user.ts │ │ └── password.ts │ ├── comment.ts │ ├── config.ts │ ├── conversation.ts │ ├── d.ts │ ├── db │ │ ├── pg-query.ts │ │ └── sql.ts │ ├── email │ │ └── senders.ts │ ├── server.ts │ ├── session.ts │ ├── user.ts │ └── utils │ │ ├── common.ts │ │ ├── constants.ts │ │ ├── cookies.ts │ │ ├── fail.ts │ │ ├── logger.ts │ │ ├── metered.ts │ │ └── parameter.ts ├── test │ ├── api.test.ts │ ├── config.test.ts │ └── settings │ │ ├── env-setup.ts │ │ └── test.env ├── tsconfig.json ├── types │ ├── akismet.d.ts │ ├── badwords.d.ts │ ├── boolean.d.ts │ └── google-cloud__translate.d.ts └── unsupportedBrowser.html └── test.env /.bundlewatch.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/.bundlewatch.config.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/.gitconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/security-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/.github/ISSUE_TEMPLATE/security-issue.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/.github/workflows/release-dockerhub-images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/.github/workflows/.github/workflows/release-dockerhub-images.yml -------------------------------------------------------------------------------- /.github/workflows/bundlewatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/.github/workflows/bundlewatch.yml -------------------------------------------------------------------------------- /.github/workflows/cypress-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/.github/workflows/cypress-tests.yml -------------------------------------------------------------------------------- /.github/workflows/depcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/.github/workflows/depcheck.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release-docker-images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/.github/workflows/release-docker-images.yml -------------------------------------------------------------------------------- /.github/workflows/test-clojure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/.github/workflows/test-clojure.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/polis.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/.vscode/polis.code-workspace -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /bin/activate-xid-whitelist.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/bin/activate-xid-whitelist.clj -------------------------------------------------------------------------------- /bin/add-xid-whitelist.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/bin/add-xid-whitelist.clj -------------------------------------------------------------------------------- /bin/build-static-assets.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/bin/build-static-assets.clj -------------------------------------------------------------------------------- /bin/deploy-static-assets.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/bin/deploy-static-assets.clj -------------------------------------------------------------------------------- /bin/lib/db.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/bin/lib/db.clj -------------------------------------------------------------------------------- /bin/purge-pii.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/bin/purge-pii.clj -------------------------------------------------------------------------------- /bin/run-migrations.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/bin/run-migrations.clj -------------------------------------------------------------------------------- /client-admin/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/.babelrc -------------------------------------------------------------------------------- /client-admin/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/.dockerignore -------------------------------------------------------------------------------- /client-admin/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/.editorconfig -------------------------------------------------------------------------------- /client-admin/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/.eslintrc.yml -------------------------------------------------------------------------------- /client-admin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/.gitignore -------------------------------------------------------------------------------- /client-admin/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/.vscode/settings.json -------------------------------------------------------------------------------- /client-admin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/Dockerfile -------------------------------------------------------------------------------- /client-admin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/LICENSE -------------------------------------------------------------------------------- /client-admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/README.md -------------------------------------------------------------------------------- /client-admin/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/package-lock.json -------------------------------------------------------------------------------- /client-admin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/package.json -------------------------------------------------------------------------------- /client-admin/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/public/404.html -------------------------------------------------------------------------------- /client-admin/public/embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/public/embed.html -------------------------------------------------------------------------------- /client-admin/public/embedPreprod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/public/embedPreprod.html -------------------------------------------------------------------------------- /client-admin/public/embedReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/public/embedReport.html -------------------------------------------------------------------------------- /client-admin/public/embedReportPreprod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/public/embedReportPreprod.html -------------------------------------------------------------------------------- /client-admin/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/public/favicon.ico -------------------------------------------------------------------------------- /client-admin/public/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/public/index.ejs -------------------------------------------------------------------------------- /client-admin/qa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/qa.md -------------------------------------------------------------------------------- /client-admin/src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/actions/index.js -------------------------------------------------------------------------------- /client-admin/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/app.js -------------------------------------------------------------------------------- /client-admin/src/components/conversation-admin/CheckboxField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversation-admin/CheckboxField.js -------------------------------------------------------------------------------- /client-admin/src/components/conversation-admin/comment-moderation/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversation-admin/comment-moderation/comment.js -------------------------------------------------------------------------------- /client-admin/src/components/conversation-admin/comment-moderation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversation-admin/comment-moderation/index.js -------------------------------------------------------------------------------- /client-admin/src/components/conversation-admin/comment-moderation/moderate-comments-accepted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversation-admin/comment-moderation/moderate-comments-accepted.js -------------------------------------------------------------------------------- /client-admin/src/components/conversation-admin/comment-moderation/moderate-comments-rejected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversation-admin/comment-moderation/moderate-comments-rejected.js -------------------------------------------------------------------------------- /client-admin/src/components/conversation-admin/comment-moderation/moderate-comments-todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversation-admin/comment-moderation/moderate-comments-todo.js -------------------------------------------------------------------------------- /client-admin/src/components/conversation-admin/conversation-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversation-admin/conversation-config.js -------------------------------------------------------------------------------- /client-admin/src/components/conversation-admin/conversation-has-comments-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversation-admin/conversation-has-comments-check.js -------------------------------------------------------------------------------- /client-admin/src/components/conversation-admin/data-export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversation-admin/data-export.js -------------------------------------------------------------------------------- /client-admin/src/components/conversation-admin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversation-admin/index.js -------------------------------------------------------------------------------- /client-admin/src/components/conversation-admin/no-permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversation-admin/no-permission.js -------------------------------------------------------------------------------- /client-admin/src/components/conversation-admin/report/reports-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversation-admin/report/reports-list.js -------------------------------------------------------------------------------- /client-admin/src/components/conversation-admin/report/reports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversation-admin/report/reports.js -------------------------------------------------------------------------------- /client-admin/src/components/conversation-admin/seed-comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversation-admin/seed-comment.js -------------------------------------------------------------------------------- /client-admin/src/components/conversation-admin/seed-tweet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversation-admin/seed-tweet.js -------------------------------------------------------------------------------- /client-admin/src/components/conversation-admin/share-and-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversation-admin/share-and-embed.js -------------------------------------------------------------------------------- /client-admin/src/components/conversation-admin/stats/commenters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversation-admin/stats/commenters.js -------------------------------------------------------------------------------- /client-admin/src/components/conversation-admin/stats/conversation-stats-commenters-voters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversation-admin/stats/conversation-stats-commenters-voters.js -------------------------------------------------------------------------------- /client-admin/src/components/conversation-admin/stats/conversation-stats-comments-timescale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversation-admin/stats/conversation-stats-comments-timescale.js -------------------------------------------------------------------------------- /client-admin/src/components/conversation-admin/stats/conversation-stats-number-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversation-admin/stats/conversation-stats-number-card.js -------------------------------------------------------------------------------- /client-admin/src/components/conversation-admin/stats/conversation-stats-number-cards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversation-admin/stats/conversation-stats-number-cards.js -------------------------------------------------------------------------------- /client-admin/src/components/conversation-admin/stats/conversation-stats-vote-distribution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversation-admin/stats/conversation-stats-vote-distribution.js -------------------------------------------------------------------------------- /client-admin/src/components/conversation-admin/stats/conversation-stats-votes-timescale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversation-admin/stats/conversation-stats-votes-timescale.js -------------------------------------------------------------------------------- /client-admin/src/components/conversation-admin/stats/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversation-admin/stats/index.js -------------------------------------------------------------------------------- /client-admin/src/components/conversation-admin/stats/victoryTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversation-admin/stats/victoryTheme.js -------------------------------------------------------------------------------- /client-admin/src/components/conversation-admin/stats/voters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversation-admin/stats/voters.js -------------------------------------------------------------------------------- /client-admin/src/components/conversations-and-account/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversations-and-account/account.js -------------------------------------------------------------------------------- /client-admin/src/components/conversations-and-account/conversation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversations-and-account/conversation.js -------------------------------------------------------------------------------- /client-admin/src/components/conversations-and-account/conversations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversations-and-account/conversations.js -------------------------------------------------------------------------------- /client-admin/src/components/conversations-and-account/integrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/conversations-and-account/integrate.js -------------------------------------------------------------------------------- /client-admin/src/components/framework/logomark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/framework/logomark.js -------------------------------------------------------------------------------- /client-admin/src/components/framework/spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/framework/spinner.js -------------------------------------------------------------------------------- /client-admin/src/components/interior-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/interior-header.js -------------------------------------------------------------------------------- /client-admin/src/components/landers/createuser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/landers/createuser.js -------------------------------------------------------------------------------- /client-admin/src/components/landers/exploreKnowledgeBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/landers/exploreKnowledgeBase.js -------------------------------------------------------------------------------- /client-admin/src/components/landers/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/landers/home.js -------------------------------------------------------------------------------- /client-admin/src/components/landers/knowledgeBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/landers/knowledgeBase.js -------------------------------------------------------------------------------- /client-admin/src/components/landers/lander-footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/landers/lander-footer.js -------------------------------------------------------------------------------- /client-admin/src/components/landers/lander-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/landers/lander-header.js -------------------------------------------------------------------------------- /client-admin/src/components/landers/lander-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/landers/lander-layout.js -------------------------------------------------------------------------------- /client-admin/src/components/landers/password-reset-init-done.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/landers/password-reset-init-done.js -------------------------------------------------------------------------------- /client-admin/src/components/landers/password-reset-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/landers/password-reset-init.js -------------------------------------------------------------------------------- /client-admin/src/components/landers/password-reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/landers/password-reset.js -------------------------------------------------------------------------------- /client-admin/src/components/landers/press.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/landers/press.js -------------------------------------------------------------------------------- /client-admin/src/components/landers/privacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/landers/privacy.js -------------------------------------------------------------------------------- /client-admin/src/components/landers/signin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/landers/signin.js -------------------------------------------------------------------------------- /client-admin/src/components/landers/signout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/landers/signout.js -------------------------------------------------------------------------------- /client-admin/src/components/landers/tos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/components/landers/tos.js -------------------------------------------------------------------------------- /client-admin/src/content/privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/content/privacy.md -------------------------------------------------------------------------------- /client-admin/src/content/tos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/content/tos.md -------------------------------------------------------------------------------- /client-admin/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/index.js -------------------------------------------------------------------------------- /client-admin/src/reducers/REDUCER_TEMPLATE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/reducers/REDUCER_TEMPLATE.js -------------------------------------------------------------------------------- /client-admin/src/reducers/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/reducers/comments.js -------------------------------------------------------------------------------- /client-admin/src/reducers/conversation_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/reducers/conversation_config.js -------------------------------------------------------------------------------- /client-admin/src/reducers/conversations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/reducers/conversations.js -------------------------------------------------------------------------------- /client-admin/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/reducers/index.js -------------------------------------------------------------------------------- /client-admin/src/reducers/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/reducers/math.js -------------------------------------------------------------------------------- /client-admin/src/reducers/mod_comments_accepted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/reducers/mod_comments_accepted.js -------------------------------------------------------------------------------- /client-admin/src/reducers/mod_comments_rejected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/reducers/mod_comments_rejected.js -------------------------------------------------------------------------------- /client-admin/src/reducers/mod_comments_unmoderated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/reducers/mod_comments_unmoderated.js -------------------------------------------------------------------------------- /client-admin/src/reducers/mod_ptpt_default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/reducers/mod_ptpt_default.js -------------------------------------------------------------------------------- /client-admin/src/reducers/mod_ptpt_featured.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/reducers/mod_ptpt_featured.js -------------------------------------------------------------------------------- /client-admin/src/reducers/mod_ptpt_hidden.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/reducers/mod_ptpt_hidden.js -------------------------------------------------------------------------------- /client-admin/src/reducers/participants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/reducers/participants.js -------------------------------------------------------------------------------- /client-admin/src/reducers/seed_comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/reducers/seed_comments.js -------------------------------------------------------------------------------- /client-admin/src/reducers/seed_comments_tweet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/reducers/seed_comments_tweet.js -------------------------------------------------------------------------------- /client-admin/src/reducers/signin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/reducers/signin.js -------------------------------------------------------------------------------- /client-admin/src/reducers/signout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/reducers/signout.js -------------------------------------------------------------------------------- /client-admin/src/reducers/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/reducers/stats.js -------------------------------------------------------------------------------- /client-admin/src/reducers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/reducers/user.js -------------------------------------------------------------------------------- /client-admin/src/reducers/zid_metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/reducers/zid_metadata.js -------------------------------------------------------------------------------- /client-admin/src/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/settings.js -------------------------------------------------------------------------------- /client-admin/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/store/index.js -------------------------------------------------------------------------------- /client-admin/src/strings/en_us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/strings/en_us.js -------------------------------------------------------------------------------- /client-admin/src/strings/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/strings/footer.js -------------------------------------------------------------------------------- /client-admin/src/strings/pt_br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/strings/pt_br.js -------------------------------------------------------------------------------- /client-admin/src/strings/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/strings/strings.js -------------------------------------------------------------------------------- /client-admin/src/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/theme/index.js -------------------------------------------------------------------------------- /client-admin/src/util/component-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/util/component-helpers.js -------------------------------------------------------------------------------- /client-admin/src/util/data-export-date-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/util/data-export-date-setup.js -------------------------------------------------------------------------------- /client-admin/src/util/net.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/util/net.js -------------------------------------------------------------------------------- /client-admin/src/util/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/src/util/url.js -------------------------------------------------------------------------------- /client-admin/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-admin/webpack.config.js -------------------------------------------------------------------------------- /client-participation/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/.babelrc -------------------------------------------------------------------------------- /client-participation/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/.dockerignore -------------------------------------------------------------------------------- /client-participation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/.gitignore -------------------------------------------------------------------------------- /client-participation/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/.jshintrc -------------------------------------------------------------------------------- /client-participation/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/Dockerfile -------------------------------------------------------------------------------- /client-participation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/README.md -------------------------------------------------------------------------------- /client-participation/api/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/api/embed.js -------------------------------------------------------------------------------- /client-participation/api/embedPreprod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/api/embedPreprod.js -------------------------------------------------------------------------------- /client-participation/api/polisHost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/api/polisHost.js -------------------------------------------------------------------------------- /client-participation/api/twitterAuthReturn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/api/twitterAuthReturn.html -------------------------------------------------------------------------------- /client-participation/css/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/base.scss -------------------------------------------------------------------------------- /client-participation/css/bootstrap_config/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/bootstrap_config/bootstrap.scss -------------------------------------------------------------------------------- /client-participation/css/bootstrap_config/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/bootstrap_config/variables.scss -------------------------------------------------------------------------------- /client-participation/css/conversationView.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/conversationView.scss -------------------------------------------------------------------------------- /client-participation/css/owlcarousel/owl.carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/owlcarousel/owl.carousel.scss -------------------------------------------------------------------------------- /client-participation/css/owlcarousel/owl.custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/owlcarousel/owl.custom.scss -------------------------------------------------------------------------------- /client-participation/css/owlcarousel/owl.theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/owlcarousel/owl.theme.scss -------------------------------------------------------------------------------- /client-participation/css/owlcarousel/owl.transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/owlcarousel/owl.transitions.scss -------------------------------------------------------------------------------- /client-participation/css/pca_vis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/pca_vis.scss -------------------------------------------------------------------------------- /client-participation/css/polis/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/_normalize.scss -------------------------------------------------------------------------------- /client-participation/css/polis/base/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/base/_base.scss -------------------------------------------------------------------------------- /client-participation/css/polis/base/_content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/base/_content.scss -------------------------------------------------------------------------------- /client-participation/css/polis/base/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/base/_mixins.scss -------------------------------------------------------------------------------- /client-participation/css/polis/base/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/base/_utilities.scss -------------------------------------------------------------------------------- /client-participation/css/polis/base/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/base/_variables.scss -------------------------------------------------------------------------------- /client-participation/css/polis/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/docs.md -------------------------------------------------------------------------------- /client-participation/css/polis/layout/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/layout/_grid.scss -------------------------------------------------------------------------------- /client-participation/css/polis/modules/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/modules/_accordion.scss -------------------------------------------------------------------------------- /client-participation/css/polis/modules/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/modules/_buttons.scss -------------------------------------------------------------------------------- /client-participation/css/polis/modules/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/modules/_footer.scss -------------------------------------------------------------------------------- /client-participation/css/polis/modules/_formSwitch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/modules/_formSwitch.scss -------------------------------------------------------------------------------- /client-participation/css/polis/modules/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/modules/_forms.scss -------------------------------------------------------------------------------- /client-participation/css/polis/modules/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/modules/_header.scss -------------------------------------------------------------------------------- /client-participation/css/polis/modules/_hero.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/modules/_hero.scss -------------------------------------------------------------------------------- /client-participation/css/polis/modules/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/modules/_icons.scss -------------------------------------------------------------------------------- /client-participation/css/polis/modules/_intercom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/modules/_intercom.scss -------------------------------------------------------------------------------- /client-participation/css/polis/modules/_lander.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/modules/_lander.scss -------------------------------------------------------------------------------- /client-participation/css/polis/modules/_legend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/modules/_legend.scss -------------------------------------------------------------------------------- /client-participation/css/polis/modules/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/modules/_lists.scss -------------------------------------------------------------------------------- /client-participation/css/polis/modules/_navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/modules/_navigation.scss -------------------------------------------------------------------------------- /client-participation/css/polis/modules/_notifications.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/modules/_notifications.scss -------------------------------------------------------------------------------- /client-participation/css/polis/modules/_share.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/modules/_share.scss -------------------------------------------------------------------------------- /client-participation/css/polis/modules/_starterComments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/modules/_starterComments.scss -------------------------------------------------------------------------------- /client-participation/css/polis/modules/_toggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/modules/_toggle.scss -------------------------------------------------------------------------------- /client-participation/css/polis/modules/_visualization.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/modules/_visualization.scss -------------------------------------------------------------------------------- /client-participation/css/polis/polis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/polis.scss -------------------------------------------------------------------------------- /client-participation/css/polis/states/_states.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis/states/_states.scss -------------------------------------------------------------------------------- /client-participation/css/polis_main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/css/polis_main.scss -------------------------------------------------------------------------------- /client-participation/js/3rdparty/d3.v4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/3rdparty/d3.v4.min.js -------------------------------------------------------------------------------- /client-participation/js/3rdparty/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/3rdparty/jquery.js -------------------------------------------------------------------------------- /client-participation/js/3rdparty/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/3rdparty/jquery.min.js -------------------------------------------------------------------------------- /client-participation/js/collection-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/collection-view.js -------------------------------------------------------------------------------- /client-participation/js/collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/collection.js -------------------------------------------------------------------------------- /client-participation/js/collections/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/collections/comments.js -------------------------------------------------------------------------------- /client-participation/js/collections/votes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/collections/votes.js -------------------------------------------------------------------------------- /client-participation/js/eventBus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/eventBus.js -------------------------------------------------------------------------------- /client-participation/js/images/anon_profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/images/anon_profile.js -------------------------------------------------------------------------------- /client-participation/js/images/polis_logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/images/polis_logo.js -------------------------------------------------------------------------------- /client-participation/js/layout-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/layout-view.js -------------------------------------------------------------------------------- /client-participation/js/lib/PolisModelView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/lib/PolisModelView.js -------------------------------------------------------------------------------- /client-participation/js/lib/PolisView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/lib/PolisView.js -------------------------------------------------------------------------------- /client-participation/js/lib/VisView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/lib/VisView.js -------------------------------------------------------------------------------- /client-participation/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/main.js -------------------------------------------------------------------------------- /client-participation/js/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/model.js -------------------------------------------------------------------------------- /client-participation/js/models/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/models/comment.js -------------------------------------------------------------------------------- /client-participation/js/models/conversation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/models/conversation.js -------------------------------------------------------------------------------- /client-participation/js/models/participant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/models/participant.js -------------------------------------------------------------------------------- /client-participation/js/models/rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/models/rule.js -------------------------------------------------------------------------------- /client-participation/js/models/twitterUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/models/twitterUser.js -------------------------------------------------------------------------------- /client-participation/js/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/models/user.js -------------------------------------------------------------------------------- /client-participation/js/models/vote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/models/vote.js -------------------------------------------------------------------------------- /client-participation/js/net/backbonePolis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/net/backbonePolis.js -------------------------------------------------------------------------------- /client-participation/js/net/bbDestroy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/net/bbDestroy.js -------------------------------------------------------------------------------- /client-participation/js/net/bbFetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/net/bbFetch.js -------------------------------------------------------------------------------- /client-participation/js/net/bbSave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/net/bbSave.js -------------------------------------------------------------------------------- /client-participation/js/routers/main-polis-router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/routers/main-polis-router.js -------------------------------------------------------------------------------- /client-participation/js/stores/currentUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/stores/currentUser.js -------------------------------------------------------------------------------- /client-participation/js/stores/polis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/stores/polis.js -------------------------------------------------------------------------------- /client-participation/js/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/strings.js -------------------------------------------------------------------------------- /client-participation/js/strings/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/strings/ar.js -------------------------------------------------------------------------------- /client-participation/js/strings/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/strings/cy.js -------------------------------------------------------------------------------- /client-participation/js/strings/da_dk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/strings/da_dk.js -------------------------------------------------------------------------------- /client-participation/js/strings/de_de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/strings/de_de.js -------------------------------------------------------------------------------- /client-participation/js/strings/en_us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/strings/en_us.js -------------------------------------------------------------------------------- /client-participation/js/strings/es_la.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/strings/es_la.js -------------------------------------------------------------------------------- /client-participation/js/strings/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/strings/fa.js -------------------------------------------------------------------------------- /client-participation/js/strings/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/strings/fr.js -------------------------------------------------------------------------------- /client-participation/js/strings/fy_nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/strings/fy_nl.js -------------------------------------------------------------------------------- /client-participation/js/strings/gr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/strings/gr.js -------------------------------------------------------------------------------- /client-participation/js/strings/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/strings/he.js -------------------------------------------------------------------------------- /client-participation/js/strings/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/strings/hr.js -------------------------------------------------------------------------------- /client-participation/js/strings/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/strings/it.js -------------------------------------------------------------------------------- /client-participation/js/strings/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/strings/ja.js -------------------------------------------------------------------------------- /client-participation/js/strings/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/strings/nl.js -------------------------------------------------------------------------------- /client-participation/js/strings/pt_TL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/strings/pt_TL.js -------------------------------------------------------------------------------- /client-participation/js/strings/pt_br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/strings/pt_br.js -------------------------------------------------------------------------------- /client-participation/js/strings/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/strings/ro.js -------------------------------------------------------------------------------- /client-participation/js/strings/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/strings/ru.js -------------------------------------------------------------------------------- /client-participation/js/strings/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/strings/sk.js -------------------------------------------------------------------------------- /client-participation/js/strings/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/strings/ta.js -------------------------------------------------------------------------------- /client-participation/js/strings/tdt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/strings/tdt.js -------------------------------------------------------------------------------- /client-participation/js/strings/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/strings/uk.js -------------------------------------------------------------------------------- /client-participation/js/strings/zh_Hans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/strings/zh_Hans.js -------------------------------------------------------------------------------- /client-participation/js/strings/zh_Hant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/strings/zh_Hant.js -------------------------------------------------------------------------------- /client-participation/js/templates/carouselComment.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/carouselComment.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/carouselCommentMobile.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/carouselCommentMobile.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/comment-form.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/comment-form.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/commentCarouselGroup.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/commentCarouselGroup.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/commentCarouselMajority.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/commentCarouselMajority.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/commentView.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/commentView.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/conversation-stats-header.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/conversation-stats-header.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/conversationInfoSlideView.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/conversationInfoSlideView.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/conversationStats.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/conversationStats.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/conversationTabs.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/conversationTabs.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/cookiesDisabled.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/cookiesDisabled.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/countBadge.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/countBadge.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/footer.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/footer.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/groupSelectionView.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/groupSelectionView.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/header.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/header.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/headerWhatIsPolis.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/headerWhatIsPolis.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/icon_fa_angle_left.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/icon_fa_angle_left.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/icon_fa_angle_right.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/icon_fa_angle_right.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/icon_fa_asterisk.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/icon_fa_asterisk.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/icon_fa_ban.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/icon_fa_ban.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/icon_fa_check_circle.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/icon_fa_check_circle.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/icon_fa_facebook_square_16.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/icon_fa_facebook_square_16.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/icon_fa_facebook_square_25.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/icon_fa_facebook_square_25.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/icon_fa_lightbulb_o.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/icon_fa_lightbulb_o.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/icon_fa_times.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/icon_fa_times.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/icon_fa_twitter_16.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/icon_fa_twitter_16.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/icon_fa_twitter_25.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/icon_fa_twitter_25.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/link-AddPolis-partial.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/link-AddPolis-partial.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/link-TOS-partial.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/link-TOS-partial.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/link-privacy-partial.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/link-privacy-partial.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/logo.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/logo.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/logo_invert.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/logo_invert.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/participation.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/participation.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/polisLogo.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/polisLogo.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/profilePicView.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/profilePicView.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/readReactView.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/readReactView.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/results-view.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/results-view.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/root.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/root.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/settings.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/settings.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/topComments.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/topComments.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/topCommentsItem.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/topCommentsItem.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/vote-view.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/vote-view.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/voteMore.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/voteMore.handlebars -------------------------------------------------------------------------------- /client-participation/js/templates/writingTips.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/templates/writingTips.handlebars -------------------------------------------------------------------------------- /client-participation/js/util/ab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/util/ab.js -------------------------------------------------------------------------------- /client-participation/js/util/assemble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/util/assemble.js -------------------------------------------------------------------------------- /client-participation/js/util/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/util/constants.js -------------------------------------------------------------------------------- /client-participation/js/util/display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/util/display.js -------------------------------------------------------------------------------- /client-participation/js/util/facebookButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/util/facebookButton.js -------------------------------------------------------------------------------- /client-participation/js/util/gaMetric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/util/gaMetric.js -------------------------------------------------------------------------------- /client-participation/js/util/metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/util/metrics.js -------------------------------------------------------------------------------- /client-participation/js/util/net.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/util/net.js -------------------------------------------------------------------------------- /client-participation/js/util/polisAlert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/util/polisAlert.js -------------------------------------------------------------------------------- /client-participation/js/util/polisStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/util/polisStorage.js -------------------------------------------------------------------------------- /client-participation/js/util/popoverEach.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/util/popoverEach.js -------------------------------------------------------------------------------- /client-participation/js/util/postMessageUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/util/postMessageUtils.js -------------------------------------------------------------------------------- /client-participation/js/util/preloadHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/util/preloadHelper.js -------------------------------------------------------------------------------- /client-participation/js/util/randomWithSeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/util/randomWithSeed.js -------------------------------------------------------------------------------- /client-participation/js/util/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/util/serialize.js -------------------------------------------------------------------------------- /client-participation/js/util/shuffleWithSeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/util/shuffleWithSeed.js -------------------------------------------------------------------------------- /client-participation/js/util/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/util/url.js -------------------------------------------------------------------------------- /client-participation/js/util/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/util/utils.js -------------------------------------------------------------------------------- /client-participation/js/views/DivisiveCommentsView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/views/DivisiveCommentsView.js -------------------------------------------------------------------------------- /client-participation/js/views/ReadReactView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/views/ReadReactView.js -------------------------------------------------------------------------------- /client-participation/js/views/TopCommentsView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/views/TopCommentsView.js -------------------------------------------------------------------------------- /client-participation/js/views/analyzeGroupParticipantsView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/views/analyzeGroupParticipantsView.js -------------------------------------------------------------------------------- /client-participation/js/views/comment-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/views/comment-form.js -------------------------------------------------------------------------------- /client-participation/js/views/commentCarousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/views/commentCarousel.js -------------------------------------------------------------------------------- /client-participation/js/views/commentCarouselGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/views/commentCarouselGroup.js -------------------------------------------------------------------------------- /client-participation/js/views/commentCarouselMajority.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/views/commentCarouselMajority.js -------------------------------------------------------------------------------- /client-participation/js/views/commentView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/views/commentView.js -------------------------------------------------------------------------------- /client-participation/js/views/conversation-stats-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/views/conversation-stats-header.js -------------------------------------------------------------------------------- /client-participation/js/views/conversation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/views/conversation.js -------------------------------------------------------------------------------- /client-participation/js/views/conversationInfoSlideView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/views/conversationInfoSlideView.js -------------------------------------------------------------------------------- /client-participation/js/views/conversationTabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/views/conversationTabs.js -------------------------------------------------------------------------------- /client-participation/js/views/groupSelectionView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/views/groupSelectionView.js -------------------------------------------------------------------------------- /client-participation/js/views/participation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/views/participation.js -------------------------------------------------------------------------------- /client-participation/js/views/profilePicView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/views/profilePicView.js -------------------------------------------------------------------------------- /client-participation/js/views/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/views/root.js -------------------------------------------------------------------------------- /client-participation/js/views/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/views/settings.js -------------------------------------------------------------------------------- /client-participation/js/views/vote-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/views/vote-view.js -------------------------------------------------------------------------------- /client-participation/js/views/voteMoreView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/views/voteMoreView.js -------------------------------------------------------------------------------- /client-participation/js/views/writingTips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/js/views/writingTips.js -------------------------------------------------------------------------------- /client-participation/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/package-lock.json -------------------------------------------------------------------------------- /client-participation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/package.json -------------------------------------------------------------------------------- /client-participation/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/public/favicon.ico -------------------------------------------------------------------------------- /client-participation/public/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/public/index.ejs -------------------------------------------------------------------------------- /client-participation/public/twitterAuthReturn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/public/twitterAuthReturn.html -------------------------------------------------------------------------------- /client-participation/sparklines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/sparklines.svg -------------------------------------------------------------------------------- /client-participation/unsupportedBrowser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/unsupportedBrowser.html -------------------------------------------------------------------------------- /client-participation/vis2/components/barChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/vis2/components/barChart.js -------------------------------------------------------------------------------- /client-participation/vis2/components/barChartCompact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/vis2/components/barChartCompact.js -------------------------------------------------------------------------------- /client-participation/vis2/components/barChartsForGroupVotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/vis2/components/barChartsForGroupVotes.js -------------------------------------------------------------------------------- /client-participation/vis2/components/curate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/vis2/components/curate.js -------------------------------------------------------------------------------- /client-participation/vis2/components/exploreTid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/vis2/components/exploreTid.js -------------------------------------------------------------------------------- /client-participation/vis2/components/gear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/vis2/components/gear.js -------------------------------------------------------------------------------- /client-participation/vis2/components/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/vis2/components/globals.js -------------------------------------------------------------------------------- /client-participation/vis2/components/graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/vis2/components/graph.js -------------------------------------------------------------------------------- /client-participation/vis2/components/graphAxes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/vis2/components/graphAxes.js -------------------------------------------------------------------------------- /client-participation/vis2/components/graphComments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/vis2/components/graphComments.js -------------------------------------------------------------------------------- /client-participation/vis2/components/graphParticipants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/vis2/components/graphParticipants.js -------------------------------------------------------------------------------- /client-participation/vis2/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/vis2/components/header.js -------------------------------------------------------------------------------- /client-participation/vis2/components/hexLogo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/vis2/components/hexLogo.js -------------------------------------------------------------------------------- /client-participation/vis2/components/hull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/vis2/components/hull.js -------------------------------------------------------------------------------- /client-participation/vis2/components/hullLabels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/vis2/components/hullLabels.js -------------------------------------------------------------------------------- /client-participation/vis2/components/tidCarousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/vis2/components/tidCarousel.js -------------------------------------------------------------------------------- /client-participation/vis2/util/closestPointOnPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/vis2/util/closestPointOnPath.js -------------------------------------------------------------------------------- /client-participation/vis2/util/graphUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/vis2/util/graphUtil.js -------------------------------------------------------------------------------- /client-participation/vis2/vis2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/vis2/vis2.js -------------------------------------------------------------------------------- /client-participation/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-participation/webpack.config.js -------------------------------------------------------------------------------- /client-report/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/.babelrc -------------------------------------------------------------------------------- /client-report/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/.dockerignore -------------------------------------------------------------------------------- /client-report/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/.editorconfig -------------------------------------------------------------------------------- /client-report/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/.eslintrc.yml -------------------------------------------------------------------------------- /client-report/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/.gitignore -------------------------------------------------------------------------------- /client-report/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "esnext": true 3 | } 4 | -------------------------------------------------------------------------------- /client-report/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client-report/.nvmrc: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /client-report/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/Dockerfile -------------------------------------------------------------------------------- /client-report/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/LICENSE -------------------------------------------------------------------------------- /client-report/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/README.md -------------------------------------------------------------------------------- /client-report/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/package-lock.json -------------------------------------------------------------------------------- /client-report/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/package.json -------------------------------------------------------------------------------- /client-report/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/public/favicon.ico -------------------------------------------------------------------------------- /client-report/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/public/index.html -------------------------------------------------------------------------------- /client-report/src/COMPONENT_TEMPLATE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/COMPONENT_TEMPLATE.js -------------------------------------------------------------------------------- /client-report/src/STATELESS_TEMPLATE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/STATELESS_TEMPLATE.js -------------------------------------------------------------------------------- /client-report/src/components/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/app.js -------------------------------------------------------------------------------- /client-report/src/components/barChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/barChart.js -------------------------------------------------------------------------------- /client-report/src/components/beeswarm/beeswarm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/beeswarm/beeswarm.js -------------------------------------------------------------------------------- /client-report/src/components/boxPlot/boxPlot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/boxPlot/boxPlot.js -------------------------------------------------------------------------------- /client-report/src/components/boxPlot/drawBoxPlot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/boxPlot/drawBoxPlot.js -------------------------------------------------------------------------------- /client-report/src/components/boxPlot/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/boxPlot/lib.js -------------------------------------------------------------------------------- /client-report/src/components/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/comment.js -------------------------------------------------------------------------------- /client-report/src/components/commentsGraph/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/commentsGraph/comments.js -------------------------------------------------------------------------------- /client-report/src/components/commentsGraph/commentsGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/commentsGraph/commentsGraph.js -------------------------------------------------------------------------------- /client-report/src/components/controls/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/controls/controls.js -------------------------------------------------------------------------------- /client-report/src/components/correlationMatrix/matrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/correlationMatrix/matrix.js -------------------------------------------------------------------------------- /client-report/src/components/framework/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/framework/Footer.js -------------------------------------------------------------------------------- /client-report/src/components/framework/checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/framework/checkbox.js -------------------------------------------------------------------------------- /client-report/src/components/framework/flex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/framework/flex.js -------------------------------------------------------------------------------- /client-report/src/components/framework/heading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/framework/heading.js -------------------------------------------------------------------------------- /client-report/src/components/framework/legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/framework/legend.js -------------------------------------------------------------------------------- /client-report/src/components/framework/logoLargeShort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/framework/logoLargeShort.js -------------------------------------------------------------------------------- /client-report/src/components/framework/logoSmallLong.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/framework/logoSmallLong.js -------------------------------------------------------------------------------- /client-report/src/components/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/globals.js -------------------------------------------------------------------------------- /client-report/src/components/graphAxes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/graphAxes.js -------------------------------------------------------------------------------- /client-report/src/components/lists/allCommentsModeratedIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/lists/allCommentsModeratedIn.js -------------------------------------------------------------------------------- /client-report/src/components/lists/commentList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/lists/commentList.js -------------------------------------------------------------------------------- /client-report/src/components/lists/majorityStrict.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/lists/majorityStrict.js -------------------------------------------------------------------------------- /client-report/src/components/lists/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/lists/metadata.js -------------------------------------------------------------------------------- /client-report/src/components/lists/participantGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/lists/participantGroup.js -------------------------------------------------------------------------------- /client-report/src/components/lists/participantGroups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/lists/participantGroups.js -------------------------------------------------------------------------------- /client-report/src/components/lists/uncertainty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/lists/uncertainty.js -------------------------------------------------------------------------------- /client-report/src/components/overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/overview.js -------------------------------------------------------------------------------- /client-report/src/components/participantsGraph/groupLabels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/participantsGraph/groupLabels.js -------------------------------------------------------------------------------- /client-report/src/components/participantsGraph/hull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/participantsGraph/hull.js -------------------------------------------------------------------------------- /client-report/src/components/participantsGraph/participantsGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/components/participantsGraph/participantsGraph.js -------------------------------------------------------------------------------- /client-report/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/index.css -------------------------------------------------------------------------------- /client-report/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/index.js -------------------------------------------------------------------------------- /client-report/src/sampleData/correlation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/sampleData/correlation.js -------------------------------------------------------------------------------- /client-report/src/sampleData/correlationHClust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/sampleData/correlationHClust.js -------------------------------------------------------------------------------- /client-report/src/sampleData/covariance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/sampleData/covariance.js -------------------------------------------------------------------------------- /client-report/src/sampleData/probabilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/sampleData/probabilities.js -------------------------------------------------------------------------------- /client-report/src/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/settings.js -------------------------------------------------------------------------------- /client-report/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/store/index.js -------------------------------------------------------------------------------- /client-report/src/util/dataUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/util/dataUtils.js -------------------------------------------------------------------------------- /client-report/src/util/graphUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/util/graphUtil.js -------------------------------------------------------------------------------- /client-report/src/util/net.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/util/net.js -------------------------------------------------------------------------------- /client-report/src/util/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/util/style.js -------------------------------------------------------------------------------- /client-report/src/util/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/src/util/url.js -------------------------------------------------------------------------------- /client-report/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/webpack.common.js -------------------------------------------------------------------------------- /client-report/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/webpack.config.js -------------------------------------------------------------------------------- /client-report/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/webpack.dev.js -------------------------------------------------------------------------------- /client-report/writeHeadersJsonTask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/client-report/writeHeadersJsonTask.js -------------------------------------------------------------------------------- /docker-compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/docker-compose.dev.yml -------------------------------------------------------------------------------- /docker-compose.test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/docker-compose.test.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/docker-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/docs/docker-architecture.png -------------------------------------------------------------------------------- /docs/docker-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/docs/docker-machine.md -------------------------------------------------------------------------------- /docs/migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/docs/migrations.md -------------------------------------------------------------------------------- /docs/scaling-roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/docs/scaling-roadmap.md -------------------------------------------------------------------------------- /docs/scaling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/docs/scaling.md -------------------------------------------------------------------------------- /docs/ssl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/docs/ssl.md -------------------------------------------------------------------------------- /docs/upgrading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/docs/upgrading.md -------------------------------------------------------------------------------- /e2e/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/.dockerignore -------------------------------------------------------------------------------- /e2e/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/.eslintrc.js -------------------------------------------------------------------------------- /e2e/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/.gitignore -------------------------------------------------------------------------------- /e2e/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/.prettierrc -------------------------------------------------------------------------------- /e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/README.md -------------------------------------------------------------------------------- /e2e/build-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/build-embed.js -------------------------------------------------------------------------------- /e2e/build-integrated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/build-integrated.js -------------------------------------------------------------------------------- /e2e/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/cypress.config.js -------------------------------------------------------------------------------- /e2e/cypress/e2e/client-admin/access-control.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/cypress/e2e/client-admin/access-control.cy.js -------------------------------------------------------------------------------- /e2e/cypress/e2e/client-admin/conversation.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/cypress/e2e/client-admin/conversation.cy.js -------------------------------------------------------------------------------- /e2e/cypress/e2e/client-admin/create-user.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/cypress/e2e/client-admin/create-user.cy.js -------------------------------------------------------------------------------- /e2e/cypress/e2e/client-admin/emails.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/cypress/e2e/client-admin/emails.cy.js -------------------------------------------------------------------------------- /e2e/cypress/e2e/client-admin/home.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/cypress/e2e/client-admin/home.cy.js -------------------------------------------------------------------------------- /e2e/cypress/e2e/client-admin/public-pages.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/cypress/e2e/client-admin/public-pages.cy.js -------------------------------------------------------------------------------- /e2e/cypress/e2e/client-admin/routes.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/cypress/e2e/client-admin/routes.cy.js -------------------------------------------------------------------------------- /e2e/cypress/e2e/client-admin/share.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/cypress/e2e/client-admin/share.cy.js -------------------------------------------------------------------------------- /e2e/cypress/e2e/client-participation/embeds.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/cypress/e2e/client-participation/embeds.cy.js -------------------------------------------------------------------------------- /e2e/cypress/e2e/client-participation/i18n.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/cypress/e2e/client-participation/i18n.cy.js -------------------------------------------------------------------------------- /e2e/cypress/e2e/client-participation/integrated.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/cypress/e2e/client-participation/integrated.cy.js -------------------------------------------------------------------------------- /e2e/cypress/e2e/client-participation/social-login.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/cypress/e2e/client-participation/social-login.cy.js -------------------------------------------------------------------------------- /e2e/cypress/e2e/client-participation/visualization.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/cypress/e2e/client-participation/visualization.cy.js -------------------------------------------------------------------------------- /e2e/cypress/e2e/third-party/comment-translation.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/cypress/e2e/third-party/comment-translation.cy.js -------------------------------------------------------------------------------- /e2e/cypress/fixtures/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/cypress/fixtures/users.json -------------------------------------------------------------------------------- /e2e/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/cypress/support/commands.js -------------------------------------------------------------------------------- /e2e/cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/cypress/support/e2e.js -------------------------------------------------------------------------------- /e2e/cypress/support/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/cypress/support/helpers.js -------------------------------------------------------------------------------- /e2e/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/docker-compose.yml -------------------------------------------------------------------------------- /e2e/embed/integrated-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/embed/integrated-template.html -------------------------------------------------------------------------------- /e2e/embed/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/embed/template.html -------------------------------------------------------------------------------- /e2e/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/package-lock.json -------------------------------------------------------------------------------- /e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/e2e/package.json -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/example.env -------------------------------------------------------------------------------- /file-server/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/file-server/.dockerignore -------------------------------------------------------------------------------- /file-server/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/file-server/.editorconfig -------------------------------------------------------------------------------- /file-server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | fs_config.json 4 | -------------------------------------------------------------------------------- /file-server/.nvmrc: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /file-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/file-server/Dockerfile -------------------------------------------------------------------------------- /file-server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/file-server/app.js -------------------------------------------------------------------------------- /file-server/nginx.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/file-server/nginx.Dockerfile -------------------------------------------------------------------------------- /file-server/nginx/certs/snakeoil.cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/file-server/nginx/certs/snakeoil.cert.pem -------------------------------------------------------------------------------- /file-server/nginx/certs/snakeoil.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/file-server/nginx/certs/snakeoil.key.pem -------------------------------------------------------------------------------- /file-server/nginx/nginx-ssl.site.default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/file-server/nginx/nginx-ssl.site.default.conf -------------------------------------------------------------------------------- /file-server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/file-server/package-lock.json -------------------------------------------------------------------------------- /file-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/file-server/package.json -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/heroku.yml -------------------------------------------------------------------------------- /math/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/.dockerignore -------------------------------------------------------------------------------- /math/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/.gitignore -------------------------------------------------------------------------------- /math/.nrepl.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/.nrepl.edn -------------------------------------------------------------------------------- /math/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/CONTRIBUTING.md -------------------------------------------------------------------------------- /math/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/Dockerfile -------------------------------------------------------------------------------- /math/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/LICENSE -------------------------------------------------------------------------------- /math/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/README.md -------------------------------------------------------------------------------- /math/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/bin/run -------------------------------------------------------------------------------- /math/bin/util-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/bin/util-server -------------------------------------------------------------------------------- /math/data/legalization_conv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/data/legalization_conv.json -------------------------------------------------------------------------------- /math/deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/deps.edn -------------------------------------------------------------------------------- /math/dev/density_plotting.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/dev/density_plotting.clj -------------------------------------------------------------------------------- /math/dev/plumbing_viz.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/dev/plumbing_viz.clj -------------------------------------------------------------------------------- /math/dev/user.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/dev/user.clj -------------------------------------------------------------------------------- /math/doc/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/doc/configuration.md -------------------------------------------------------------------------------- /math/misc/silh_test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/misc/silh_test.R -------------------------------------------------------------------------------- /math/perf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/perf -------------------------------------------------------------------------------- /math/resources/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/resources/config.edn -------------------------------------------------------------------------------- /math/src/data_readers.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/data_readers.clj -------------------------------------------------------------------------------- /math/src/polismath/components/config.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/components/config.clj -------------------------------------------------------------------------------- /math/src/polismath/components/core_matrix_boot.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/components/core_matrix_boot.clj -------------------------------------------------------------------------------- /math/src/polismath/components/env.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/components/env.clj -------------------------------------------------------------------------------- /math/src/polismath/components/logger.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/components/logger.clj -------------------------------------------------------------------------------- /math/src/polismath/components/postgres.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/components/postgres.clj -------------------------------------------------------------------------------- /math/src/polismath/components/random.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/components/random.clj -------------------------------------------------------------------------------- /math/src/polismath/components/server.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/components/server.clj -------------------------------------------------------------------------------- /math/src/polismath/conv_man.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/conv_man.clj -------------------------------------------------------------------------------- /math/src/polismath/darwin/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/darwin/core.clj -------------------------------------------------------------------------------- /math/src/polismath/darwin/export.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/darwin/export.clj -------------------------------------------------------------------------------- /math/src/polismath/math/clusters.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/math/clusters.clj -------------------------------------------------------------------------------- /math/src/polismath/math/conversation.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/math/conversation.clj -------------------------------------------------------------------------------- /math/src/polismath/math/corr.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/math/corr.clj -------------------------------------------------------------------------------- /math/src/polismath/math/named_matrix.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/math/named_matrix.clj -------------------------------------------------------------------------------- /math/src/polismath/math/pca.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/math/pca.clj -------------------------------------------------------------------------------- /math/src/polismath/math/repness.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/math/repness.clj -------------------------------------------------------------------------------- /math/src/polismath/math/stats.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/math/stats.clj -------------------------------------------------------------------------------- /math/src/polismath/meta/metrics.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/meta/metrics.clj -------------------------------------------------------------------------------- /math/src/polismath/meta/microscope.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/meta/microscope.clj -------------------------------------------------------------------------------- /math/src/polismath/meta/notify.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/meta/notify.clj -------------------------------------------------------------------------------- /math/src/polismath/meta/simulation.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/meta/simulation.clj -------------------------------------------------------------------------------- /math/src/polismath/poller.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/poller.clj -------------------------------------------------------------------------------- /math/src/polismath/runner.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/runner.clj -------------------------------------------------------------------------------- /math/src/polismath/stormspec.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/stormspec.clj -------------------------------------------------------------------------------- /math/src/polismath/system.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/system.clj -------------------------------------------------------------------------------- /math/src/polismath/tasks.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/tasks.clj -------------------------------------------------------------------------------- /math/src/polismath/util/pretty_printers.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/util/pretty_printers.clj -------------------------------------------------------------------------------- /math/src/polismath/utils.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/src/polismath/utils.clj -------------------------------------------------------------------------------- /math/system.properties: -------------------------------------------------------------------------------- 1 | java.runtime.version=1.8 2 | -------------------------------------------------------------------------------- /math/test/cluster_tests.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/test/cluster_tests.clj -------------------------------------------------------------------------------- /math/test/conv_man_tests.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/test/conv_man_tests.clj -------------------------------------------------------------------------------- /math/test/conversation_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/test/conversation_test.clj -------------------------------------------------------------------------------- /math/test/index_hash_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/test/index_hash_test.clj -------------------------------------------------------------------------------- /math/test/named_matrix_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/test/named_matrix_test.clj -------------------------------------------------------------------------------- /math/test/pca_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/test/pca_test.clj -------------------------------------------------------------------------------- /math/test/ptpt_stats_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/test/ptpt_stats_test.clj -------------------------------------------------------------------------------- /math/test/silhouette_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/test/silhouette_test.clj -------------------------------------------------------------------------------- /math/test/stats_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/test/stats_test.clj -------------------------------------------------------------------------------- /math/test/test_helpers.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/test/test_helpers.clj -------------------------------------------------------------------------------- /math/test/test_runner.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/test/test_runner.clj -------------------------------------------------------------------------------- /math/test/utils_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/math/test/utils_test.clj -------------------------------------------------------------------------------- /math/tmp/.touchfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/package.json -------------------------------------------------------------------------------- /server/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/.dockerignore -------------------------------------------------------------------------------- /server/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/.eslintrc.js -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/.nvmrc: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /server/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/.vscode/settings.json -------------------------------------------------------------------------------- /server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/Dockerfile -------------------------------------------------------------------------------- /server/Dockerfile-db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/Dockerfile-db -------------------------------------------------------------------------------- /server/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/LICENSE -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/README.md -------------------------------------------------------------------------------- /server/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/app.ts -------------------------------------------------------------------------------- /server/bin/copyGoogleCredsToHeroku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/bin/copyGoogleCredsToHeroku -------------------------------------------------------------------------------- /server/bin/herokuConfigExport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/bin/herokuConfigExport -------------------------------------------------------------------------------- /server/bin/stringifyGoogleCreds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/bin/stringifyGoogleCreds.js -------------------------------------------------------------------------------- /server/example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/example.env -------------------------------------------------------------------------------- /server/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/jest.config.ts -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/package.json -------------------------------------------------------------------------------- /server/postgres/migrations/000000_initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/postgres/migrations/000000_initial.sql -------------------------------------------------------------------------------- /server/postgres/migrations/000001_update_pwreset_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/postgres/migrations/000001_update_pwreset_table.sql -------------------------------------------------------------------------------- /server/postgres/migrations/000002_add_xid_constraint.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/postgres/migrations/000002_add_xid_constraint.sql -------------------------------------------------------------------------------- /server/postgres/migrations/000003_add_origin_permanent_cookie_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/postgres/migrations/000003_add_origin_permanent_cookie_columns.sql -------------------------------------------------------------------------------- /server/postgres/migrations/000004_drop_waitinglist_table.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS waitinglist; 2 | -------------------------------------------------------------------------------- /server/postgres/migrations/000005_drop_slack_stripe_canvas.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/postgres/migrations/000005_drop_slack_stripe_canvas.sql -------------------------------------------------------------------------------- /server/postgres/migrations/000006_update_votes_rule.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/postgres/migrations/000006_update_votes_rule.sql -------------------------------------------------------------------------------- /server/postgres/migrations/archived/db_000002.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/postgres/migrations/archived/db_000002.sql -------------------------------------------------------------------------------- /server/postgres/migrations/archived/db_000004.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/postgres/migrations/archived/db_000004.sql -------------------------------------------------------------------------------- /server/postgres/migrations/archived/db_000006.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/postgres/migrations/archived/db_000006.sql -------------------------------------------------------------------------------- /server/postgres/migrations/archived/db_000008.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/postgres/migrations/archived/db_000008.sql -------------------------------------------------------------------------------- /server/postgres/migrations/archived/db_000010.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/postgres/migrations/archived/db_000010.sql -------------------------------------------------------------------------------- /server/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/prettier.config.js -------------------------------------------------------------------------------- /server/src/auth/create-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/src/auth/create-user.ts -------------------------------------------------------------------------------- /server/src/auth/password.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/src/auth/password.ts -------------------------------------------------------------------------------- /server/src/comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/src/comment.ts -------------------------------------------------------------------------------- /server/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/src/config.ts -------------------------------------------------------------------------------- /server/src/conversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/src/conversation.ts -------------------------------------------------------------------------------- /server/src/d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/src/d.ts -------------------------------------------------------------------------------- /server/src/db/pg-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/src/db/pg-query.ts -------------------------------------------------------------------------------- /server/src/db/sql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/src/db/sql.ts -------------------------------------------------------------------------------- /server/src/email/senders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/src/email/senders.ts -------------------------------------------------------------------------------- /server/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/src/server.ts -------------------------------------------------------------------------------- /server/src/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/src/session.ts -------------------------------------------------------------------------------- /server/src/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/src/user.ts -------------------------------------------------------------------------------- /server/src/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/src/utils/common.ts -------------------------------------------------------------------------------- /server/src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/src/utils/constants.ts -------------------------------------------------------------------------------- /server/src/utils/cookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/src/utils/cookies.ts -------------------------------------------------------------------------------- /server/src/utils/fail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/src/utils/fail.ts -------------------------------------------------------------------------------- /server/src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/src/utils/logger.ts -------------------------------------------------------------------------------- /server/src/utils/metered.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/src/utils/metered.ts -------------------------------------------------------------------------------- /server/src/utils/parameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/src/utils/parameter.ts -------------------------------------------------------------------------------- /server/test/api.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/test/api.test.ts -------------------------------------------------------------------------------- /server/test/config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/test/config.test.ts -------------------------------------------------------------------------------- /server/test/settings/env-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/test/settings/env-setup.ts -------------------------------------------------------------------------------- /server/test/settings/test.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/test/settings/test.env -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/tsconfig.json -------------------------------------------------------------------------------- /server/types/akismet.d.ts: -------------------------------------------------------------------------------- 1 | declare module "akismet"; 2 | -------------------------------------------------------------------------------- /server/types/badwords.d.ts: -------------------------------------------------------------------------------- 1 | declare module "badwords/object"; 2 | -------------------------------------------------------------------------------- /server/types/boolean.d.ts: -------------------------------------------------------------------------------- 1 | declare module "boolean"; 2 | -------------------------------------------------------------------------------- /server/types/google-cloud__translate.d.ts: -------------------------------------------------------------------------------- 1 | declare module "@google-cloud/translate"; 2 | -------------------------------------------------------------------------------- /server/unsupportedBrowser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/server/unsupportedBrowser.html -------------------------------------------------------------------------------- /test.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CivicTechTO/polis/HEAD/test.env --------------------------------------------------------------------------------