├── .dockerignore ├── .env ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── stale.yml ├── .gitignore ├── .semaphore ├── clojars.yml ├── deploy.yml └── semaphore.yml ├── AUTHORS.txt ├── Config ├── appengine-enable-remote-api-python │ ├── LICENSE │ ├── README.md │ ├── app.yaml │ └── appengine_config.py ├── ide │ └── eclipse │ │ ├── Preferences.epf │ │ └── eclipse-preferences.xml └── instanceConfigurator │ ├── .gitignore │ ├── README.md │ ├── build.xml │ ├── lib │ ├── aws-java-sdk-1.11.8.jar │ ├── commons-cli-1.3.1.jar │ ├── commons-codec-1.9.jar │ ├── commons-logging-1.1.3.jar │ ├── docs │ │ ├── commons-cli-1.3.1-javadoc.jar │ │ └── freemarker-2.3.18-javadoc.jar │ ├── freemarker-2.3.18.jar │ ├── httpclient-4.5.2.jar │ ├── httpcore-4.4.4.jar │ ├── jackson-annotations-2.6.0.jar │ ├── jackson-core-2.6.6.jar │ ├── jackson-databind-2.6.6.jar │ ├── joda-time-2.8.1.jar │ ├── src │ │ ├── commons-cli-1.3.1-src.jar │ │ └── freemarker-2.3.18-src.jar │ ├── stax-1.2.0.jar │ └── stax-api-1.0.1.jar │ └── src │ └── org │ └── akvo │ └── flow │ ├── InstanceConfigurator.java │ └── templates │ ├── apk-s3-policy.ftl │ ├── appengine-web.xml.ftl │ ├── bucket-policy.ftl │ ├── gae-s3-policy.ftl │ └── survey.properties.ftl ├── Dashboard ├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .prettierrc ├── LICENSE-ember-skeleton ├── README.md ├── __mocks__ │ ├── fileMock.js │ └── styleMock.js ├── app │ ├── cljs │ │ ├── cp-html.sh │ │ ├── project.clj │ │ ├── src │ │ │ └── org │ │ │ │ └── akvo │ │ │ │ └── flow │ │ │ │ └── dashboard │ │ │ │ ├── ajax_helpers.cljs │ │ │ │ ├── app_state.cljs │ │ │ │ ├── components │ │ │ │ ├── bootstrap.cljs │ │ │ │ ├── dialog.cljs │ │ │ │ └── grid.cljs │ │ │ │ ├── dispatcher.clj │ │ │ │ ├── dispatcher.cljs │ │ │ │ ├── dom_helpers.cljs │ │ │ │ ├── projects │ │ │ │ └── store.cljs │ │ │ │ ├── t.clj │ │ │ │ ├── user_auth │ │ │ │ └── store.cljs │ │ │ │ └── users │ │ │ │ ├── core.cljs │ │ │ │ ├── role_details.cljs │ │ │ │ ├── roles.cljs │ │ │ │ ├── store.cljs │ │ │ │ ├── user_details.cljs │ │ │ │ └── users_list.cljs │ │ └── users.html │ ├── css │ │ ├── custom-theme │ │ │ ├── images │ │ │ │ ├── ui-bg_dots-small_40_000000_2x2.png │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_10_eceadf_40x100.png │ │ │ │ ├── ui-bg_flat_10_f8f7f6_40x100.png │ │ │ │ ├── ui-bg_flat_15_eceadf_40x100.png │ │ │ │ ├── ui-bg_flat_15_f7f3de_40x100.png │ │ │ │ ├── ui-bg_flat_15_ffffff_40x100.png │ │ │ │ ├── ui-bg_flat_20_6e4f1c_40x100.png │ │ │ │ ├── ui-bg_flat_65_654b24_40x100.png │ │ │ │ ├── ui-bg_flat_68_b83400_40x100.png │ │ │ │ ├── ui-bg_flat_75_cccccc_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-hard_55_fbf9ee_1x100.png │ │ │ │ ├── ui-bg_highlight-hard_75_dadada_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_65_ffffff_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_75_e6e6e6_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_3572ac_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ ├── ui-icons_8c291d_256x240.png │ │ │ │ ├── ui-icons_b83400_256x240.png │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── ui-icons_fbdb93_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ └── jquery-ui-1.8.21.custom.css │ │ ├── form.scss │ │ ├── forms.scss │ │ ├── library.scss │ │ ├── main.scss │ │ ├── reset.scss │ │ ├── screen.scss │ │ └── users.scss │ ├── dashboard.ejs │ ├── js │ │ ├── lib │ │ │ ├── analytics.js │ │ │ ├── components │ │ │ │ ├── ChildOption.jsx │ │ │ │ ├── devices │ │ │ │ │ ├── AssignmentsEditView │ │ │ │ │ │ ├── MainBody.jsx │ │ │ │ │ │ ├── __partials │ │ │ │ │ │ │ ├── DeviceEmpty.jsx │ │ │ │ │ │ │ └── SidebarDropdown.jsx │ │ │ │ │ │ ├── assignment-context.js │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ ├── screens │ │ │ │ │ │ │ ├── AddDevices.jsx │ │ │ │ │ │ │ ├── AssignDatapoints │ │ │ │ │ │ │ │ ├── AllDatapoints.jsx │ │ │ │ │ │ │ │ ├── DatapointList.jsx │ │ │ │ │ │ │ │ ├── SearchDatapoints.jsx │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── DevicesSection.jsx │ │ │ │ │ │ │ ├── EditDatapoints.jsx │ │ │ │ │ │ │ ├── EditDevices.jsx │ │ │ │ │ │ │ └── FormSection.jsx │ │ │ │ │ │ └── styles.scss │ │ │ │ │ └── AssignmentsList.jsx │ │ │ │ ├── forms │ │ │ │ │ └── form-share │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── style.scss │ │ │ │ ├── reusable │ │ │ │ │ ├── Checkbox │ │ │ │ │ │ ├── Checkbox.test.jsx │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── Checkbox.test.jsx.snap │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── style.scss │ │ │ │ │ ├── DatePicker │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── style.scss │ │ │ │ │ ├── Dropdown │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── styles.scss │ │ │ │ │ ├── Modal │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── style.scss │ │ │ │ │ ├── OfflineIndicator │ │ │ │ │ │ └── index.jsx │ │ │ │ │ ├── SwitchBox │ │ │ │ │ │ ├── SwitchBox.test.jsx │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── SwitchBox.test.jsx.snap │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── style.scss │ │ │ │ │ └── Tooltip │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── style.scss │ │ │ │ ├── selectors │ │ │ │ │ ├── DeviceSelector │ │ │ │ │ │ ├── DeviceAccordion.jsx │ │ │ │ │ │ ├── DeviceSelector.test.jsx │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── DeviceSelector.test.jsx.snap │ │ │ │ │ │ └── index.jsx │ │ │ │ │ ├── FolderSurveySelector │ │ │ │ │ │ ├── FolderSurveySelector.test.jsx │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── FolderSurveySelector.test.jsx.snap │ │ │ │ │ │ └── index.jsx │ │ │ │ │ └── FormSelector │ │ │ │ │ │ ├── FormSelector.test.jsx │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── FormSelector.test.jsx.snap │ │ │ │ │ │ └── index.jsx │ │ │ │ └── stats │ │ │ │ │ ├── NewStats.jsx │ │ │ │ │ ├── StatsLists.jsx │ │ │ │ │ └── __tests__ │ │ │ │ │ ├── NewStats.test.jsx │ │ │ │ │ ├── StatsLists.test.jsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ ├── NewStats.test.jsx.snap │ │ │ │ │ └── StatsLists.test.jsx.snap │ │ │ ├── controllers │ │ │ │ ├── controllers-public.js │ │ │ │ ├── controllers.js │ │ │ │ ├── data-controllers.js │ │ │ │ ├── device-controllers.js │ │ │ │ ├── general-controllers-common.js │ │ │ │ ├── languages.js │ │ │ │ ├── maps-controllers-common.js │ │ │ │ ├── messages-controllers.js │ │ │ │ ├── permissions.js │ │ │ │ ├── reports-controllers.js │ │ │ │ ├── survey-controllers.js │ │ │ │ ├── survey-selection.js │ │ │ │ └── user-controllers.js │ │ │ ├── core-common.js │ │ │ ├── main-public.js │ │ │ ├── main.js │ │ │ ├── mixins │ │ │ │ ├── observe.js │ │ │ │ └── template.js │ │ │ ├── models │ │ │ │ ├── FLOWrest-adapter-v2-common.js │ │ │ │ ├── models-public.js │ │ │ │ ├── models.js │ │ │ │ └── store_def-common.js │ │ │ ├── router │ │ │ │ ├── router-public.js │ │ │ │ └── router.js │ │ │ ├── tooltip.js │ │ │ ├── utils │ │ │ │ └── index.js │ │ │ ├── version.js │ │ │ ├── views │ │ │ │ ├── data │ │ │ │ │ ├── bulk-upload-images-view.js │ │ │ │ │ ├── bulk-upload-view.js │ │ │ │ │ ├── cascade-resources-view.js │ │ │ │ │ ├── data-approval-views.js │ │ │ │ │ ├── inspect-data-table-views.js │ │ │ │ │ ├── monitoring-data-table-view.js │ │ │ │ │ └── question-answer-view.js │ │ │ │ ├── devices │ │ │ │ │ ├── assignment-edit-views.jsx │ │ │ │ │ ├── assignments-list-view.jsx │ │ │ │ │ ├── devices-views.js │ │ │ │ │ └── survey-bootstrap-view.js │ │ │ │ ├── maps │ │ │ │ │ ├── map-views-common-public.js │ │ │ │ │ └── map-views-common.js │ │ │ │ ├── messages │ │ │ │ │ └── message-view.js │ │ │ │ ├── react-component.js │ │ │ │ ├── reports │ │ │ │ │ ├── export-reports-views.js │ │ │ │ │ └── report-views.js │ │ │ │ ├── stats │ │ │ │ │ ├── new-stats.jsx │ │ │ │ │ └── stats-lists.jsx │ │ │ │ ├── surveys │ │ │ │ │ ├── form-share.jsx │ │ │ │ │ ├── form-view.js │ │ │ │ │ ├── notifications-view.js │ │ │ │ │ ├── offline-state.jsx │ │ │ │ │ ├── preview-view.js │ │ │ │ │ ├── question-view.js │ │ │ │ │ ├── survey-details-views.js │ │ │ │ │ ├── survey-group-views.js │ │ │ │ │ └── translations-view.js │ │ │ │ ├── views-public.js │ │ │ │ └── views.js │ │ │ └── webpack-public-path.js │ │ ├── plugins │ │ │ ├── flowDashboard.js │ │ │ ├── geocells.js │ │ │ └── loader.js │ │ ├── templates │ │ │ ├── application │ │ │ │ ├── application-public.handlebars │ │ │ │ ├── application.handlebars │ │ │ │ ├── footer-public.handlebars │ │ │ │ ├── footer.handlebars │ │ │ │ ├── header-common.handlebars │ │ │ │ └── navigation.handlebars │ │ │ ├── navData │ │ │ │ ├── bulk-upload-images.handlebars │ │ │ │ ├── bulk-upload.handlebars │ │ │ │ ├── cascade-resources.handlebars │ │ │ │ ├── data-approval-group-list.handlebars │ │ │ │ ├── data-approval-group.handlebars │ │ │ │ ├── data-approval-steps.handlebars │ │ │ │ ├── data-cleaning.handlebars │ │ │ │ ├── data-subnav.handlebars │ │ │ │ ├── inspect-data.handlebars │ │ │ │ ├── monitoring-data-row.handlebars │ │ │ │ ├── monitoring-data.handlebars │ │ │ │ ├── nav-data.handlebars │ │ │ │ └── question-answer.handlebars │ │ │ ├── navDevices │ │ │ │ ├── assignment-edit-tab │ │ │ │ │ └── assignment-edit.handlebars │ │ │ │ ├── assignment-list-tab │ │ │ │ │ └── assignment-list.handlebars │ │ │ │ ├── bootstrap-tab │ │ │ │ │ └── survey-bootstrap.handlebars │ │ │ │ ├── devices-list-tab │ │ │ │ │ └── devices-list.handlebars │ │ │ │ ├── devices-subnav.handlebars │ │ │ │ └── nav-devices.handlebars │ │ │ ├── navMaps │ │ │ │ ├── geoshape-map.handlebars │ │ │ │ └── nav-maps-common.handlebars │ │ │ ├── navMessages │ │ │ │ └── nav-messages.handlebars │ │ │ ├── navReports │ │ │ │ ├── chart-reports.handlebars │ │ │ │ ├── export-reports.handlebars │ │ │ │ ├── nav-reports.handlebars │ │ │ │ ├── report.handlebars │ │ │ │ ├── reports-list.handlebars │ │ │ │ └── reports-subnav.handlebars │ │ │ ├── navResources │ │ │ │ ├── nav-resources.handlebars │ │ │ │ └── resources-subnav.handlebars │ │ │ ├── navStats │ │ │ │ ├── new-stats.handlebars │ │ │ │ └── stats-list.handlebars │ │ │ ├── navSurveys │ │ │ │ ├── edit-questions.handlebars │ │ │ │ ├── form.handlebars │ │ │ │ ├── manage-notifications.handlebars │ │ │ │ ├── manage-translations.handlebars │ │ │ │ ├── nav-surveys-main.handlebars │ │ │ │ ├── nav-surveys.handlebars │ │ │ │ ├── preview-view.handlebars │ │ │ │ ├── project-list.handlebars │ │ │ │ ├── project.handlebars │ │ │ │ ├── question-option.handlebars │ │ │ │ └── question-view.handlebars │ │ │ └── navUsers │ │ │ │ └── nav-users.handlebars │ │ ├── tests │ │ │ ├── core_tests.js │ │ │ └── setupTests.js │ │ └── vendor │ │ │ ├── Google.js │ │ │ ├── Math.uuid.js │ │ │ ├── d3.v2.min.js │ │ │ ├── ember-1.0.0.pre-2-36.js │ │ │ ├── ember-1.0.0.pre-2-36.min.js │ │ │ ├── ember-data-rev10.js │ │ │ ├── ember-data-rev10.min.js │ │ │ ├── handlebars-1.0.rc.1.js │ │ │ ├── iframeResizer.contentWindow.min.js │ │ │ ├── iframeResizer.min.js │ │ │ ├── jquery-1.8.2.min.js │ │ │ ├── jquery-ui-1.8.21.custom.js │ │ │ ├── jquery.dataTables.js │ │ │ ├── resumable.js │ │ │ ├── resumable.min.js │ │ │ ├── underscore-1.4.2.min.js │ │ │ └── underscore.string-2.3.0.min.js │ ├── public.ejs │ └── static │ │ ├── fonts │ │ ├── Arvo-Bold-webfont.eot │ │ ├── Arvo-Bold-webfont.svg │ │ ├── Arvo-Bold-webfont.ttf │ │ ├── Arvo-Bold-webfont.woff │ │ ├── Arvo-BoldItalic-webfont.eot │ │ ├── Arvo-BoldItalic-webfont.svg │ │ ├── Arvo-BoldItalic-webfont.ttf │ │ ├── Arvo-BoldItalic-webfont.woff │ │ ├── Arvo-Italic-webfont.eot │ │ ├── Arvo-Italic-webfont.svg │ │ ├── Arvo-Italic-webfont.ttf │ │ ├── Arvo-Italic-webfont.woff │ │ ├── Arvo-Regular-webfont.eot │ │ ├── Arvo-Regular-webfont.svg │ │ ├── Arvo-Regular-webfont.ttf │ │ ├── Arvo-Regular-webfont.woff │ │ ├── Podkova-Regular-webfont.eot │ │ ├── Podkova-Regular-webfont.svg │ │ ├── Podkova-Regular-webfont.ttf │ │ ├── Podkova-Regular-webfont.woff │ │ ├── Rokkitt-webfont.eot │ │ ├── Rokkitt-webfont.svg │ │ ├── Rokkitt-webfont.ttf │ │ ├── Rokkitt-webfont.woff │ │ ├── StMarie-Thin-webfont.eot │ │ ├── StMarie-Thin-webfont.svg │ │ ├── StMarie-Thin-webfont.ttf │ │ └── StMarie-Thin-webfont.woff │ │ └── images │ │ ├── AkvoLogo.svg │ │ ├── D4D111337E702C1A._t_ │ │ ├── Export01.svg │ │ ├── Export02.svg │ │ ├── Export03.svg │ │ ├── Export04.svg │ │ ├── Export05.svg │ │ ├── FieldSetSep.png │ │ ├── IconAPI.svg │ │ ├── IconAPIOrange.svg │ │ ├── IconAddGroup.svg │ │ ├── IconAddGroupOrange.svg │ │ ├── IconBack.svg │ │ ├── IconBackOrange.svg │ │ ├── IconCancelFolder.svg │ │ ├── IconCancelFolderHover.svg │ │ ├── IconCascadeWhite.png │ │ ├── IconCopy.svg │ │ ├── IconCopyGrey.svg │ │ ├── IconCopyOrange.svg │ │ ├── IconDelete.svg │ │ ├── IconDeleteOrange.svg │ │ ├── IconEdit.svg │ │ ├── IconEditGrey.svg │ │ ├── IconEditGreyLight.svg │ │ ├── IconEditOrange.svg │ │ ├── IconFormPub.png │ │ ├── IconFormPubOrange.png │ │ ├── IconForms.png │ │ ├── IconForms.svg │ │ ├── IconFormsBlack.png │ │ ├── IconFormsOrange.png │ │ ├── IconFormsWhite.svg │ │ ├── IconImportWhite.svg │ │ ├── IconInsert.svg │ │ ├── IconInsertOrange.svg │ │ ├── IconLeftBlue.svg │ │ ├── IconLeftOrange.svg │ │ ├── IconLeftWhite.svg │ │ ├── IconMonitorEnable.svg │ │ ├── IconMove.svg │ │ ├── IconMoveOrange.svg │ │ ├── IconMoveWhite.svg │ │ ├── IconNotif.svg │ │ ├── IconNotifOrange.svg │ │ ├── IconPlus.svg │ │ ├── IconPlusOrange.svg │ │ ├── IconPlusWhite.svg │ │ ├── IconPreview.svg │ │ ├── IconPreviewOrange.svg │ │ ├── IconPreviewOrange_big.svg │ │ ├── IconPreview_big.svg │ │ ├── IconPublish.svg │ │ ├── IconPublishOrange.svg │ │ ├── IconPublishWhite.svg │ │ ├── IconRightBlue.svg │ │ ├── IconRightOrange.svg │ │ ├── IconRightWhite.svg │ │ ├── IconSave.svg │ │ ├── IconSaveOrange.svg │ │ ├── IconSaveWhite.svg │ │ ├── IconShow.svg │ │ ├── IconShowHover.svg │ │ ├── IconShowOrange.svg │ │ ├── IconTranslate.svg │ │ ├── IconTranslateOrange.svg │ │ ├── IconTrashGrey.svg │ │ ├── aSurveyNavSep.png │ │ ├── addPlus.png │ │ ├── addSet.png │ │ ├── addbtn.png │ │ ├── akvo.orgLogo.svg │ │ ├── akvo.org_footer1.png │ │ ├── akvoFlowLogo.svg │ │ ├── akvoFlowLogo2.png │ │ ├── apiList.png │ │ ├── apostrophe.png │ │ ├── borderMiddle.png │ │ ├── breadCrumb-Root.png │ │ ├── breadCrumb-last.png │ │ ├── breadCrumb-leftSide.png │ │ ├── breadCrumb-rightSide.png │ │ ├── carret.svg │ │ ├── carretFolder.svg │ │ ├── carretFolderSelected.svg │ │ ├── carretFolderSelectedWhite.svg │ │ ├── closeDialog.png │ │ ├── dataPointing.png │ │ ├── editList.png │ │ ├── editTinyIcon.png │ │ ├── folderIcn.svg │ │ ├── folderIcnEmpty.svg │ │ ├── folderSelectBullet.svg │ │ ├── folderUp.svg │ │ ├── folderUpHover.svg │ │ ├── gdpr01.svg │ │ ├── gdpr02.svg │ │ ├── gdpr03.svg │ │ ├── gdprStep01.png │ │ ├── gdprStep02.png │ │ ├── gdprStep03.png │ │ ├── infolnc.png │ │ ├── infolnc.svg │ │ ├── insertGroupIcn.png │ │ ├── insertQuestion.png │ │ ├── invisible.png │ │ ├── loader.gif │ │ ├── loading.svg │ │ ├── lowerCorner.png │ │ ├── mapPointDetailSep.png │ │ ├── mapSlider.png │ │ ├── maps │ │ ├── blueMarker.png │ │ └── redMarker.png │ │ ├── marker.svg │ │ ├── media-marker-selected.png │ │ ├── media-marker.png │ │ ├── menu-icon.svg │ │ ├── mngNotificationIcn.png │ │ ├── navSeparator.png │ │ ├── nextBtn.png │ │ ├── pause.png │ │ ├── removeList.png │ │ ├── resume.png │ │ ├── scrollDown.png │ │ ├── scrollUp.png │ │ ├── search-icon.png │ │ ├── selectArrows.png │ │ ├── selectFolder.svg │ │ ├── selectIndictr.png │ │ ├── sepHorDark.png │ │ ├── showQuestion.png │ │ ├── shownCollapse.png │ │ ├── sortTableArrows.png │ │ ├── sortTableDown.png │ │ ├── sortTableUp.png │ │ ├── surveyGroupBg.png │ │ ├── surveySeperator.png │ │ ├── tabBG.png │ │ ├── tabBGinactive.png │ │ ├── tickBox.svg │ │ ├── topbarSeperator.png │ │ ├── topnavAdmin.svg │ │ ├── topnavAdminOrange.svg │ │ ├── topnavDashboards.svg │ │ ├── topnavDashboardsOrange.svg │ │ ├── topnavData.svg │ │ ├── topnavDataOrange.svg │ │ ├── topnavDevices.svg │ │ ├── topnavDevicesOrange.svg │ │ ├── topnavMaps.svg │ │ ├── topnavMapsOrange.svg │ │ ├── topnavMessages.svg │ │ ├── topnavMessagesOrange.svg │ │ ├── topnavReports.svg │ │ ├── topnavReportsOrange.svg │ │ ├── topnavSurveys.svg │ │ ├── topnavSurveysOrange.svg │ │ ├── topnavSurveysWhite.svg │ │ ├── topnavUsers.svg │ │ ├── topnavUsersOrange.svg │ │ ├── up-arrow.png │ │ ├── whiteBg.jpg │ │ └── zipIcn.svg ├── jest.config.json ├── package-lock.json ├── package.json ├── scripts │ ├── .eslintrc │ ├── buildDev.js │ ├── buildProd.js │ ├── buildUsersCss.js │ ├── chalkConfig.js │ └── checkEslintInstalled.sh ├── tests │ ├── casperjs │ │ ├── Readme.md │ │ ├── flow_bulkUpload.js │ │ ├── flow_createAssignment.js │ │ ├── flow_deviceIdentification.js │ │ ├── flow_importUpdateSurvey.js │ │ ├── flow_manageDevices.js │ │ ├── flow_sandbox.js │ │ ├── flow_template.js │ │ ├── importdata.feature │ │ ├── lib │ │ │ ├── flow_getCase.js │ │ │ ├── loginGAE.js │ │ │ ├── loginTestrail.js │ │ │ └── testrailPost.js │ │ ├── screenshots │ │ │ └── evaluate-diagram.png │ │ └── surveys │ │ │ └── SURVEY_FORM-2205003.xls │ ├── index.html │ ├── qunit │ │ ├── qunit.css │ │ └── qunit.js │ └── run-tests.js ├── update_ui.sh ├── webpack.config.dev.js ├── webpack.config.prod.js ├── webpack.config.public.dev.js └── webpack.config.public.prod.js ├── GAE ├── License │ └── ConsolidatedLicenses.xlsx ├── NOTICE ├── README ├── appletBuild.xml ├── build.properties.template ├── build.xml ├── docs │ └── Report_process.pu ├── gwtlibs │ ├── gwt-dnd-3.0.1.jar │ ├── gwt-maps.jar │ └── gwt-visualization.jar ├── pom.xml ├── src │ ├── META-INF │ │ └── jdoconfig.xml │ ├── com │ │ ├── beoui │ │ │ └── geocell │ │ │ │ ├── GeocellManager.java │ │ │ │ ├── GeocellUtils.java │ │ │ │ └── model │ │ │ │ ├── BoundingBox.java │ │ │ │ ├── Point.java │ │ │ │ └── Tuple.java │ │ ├── gallatinsystems │ │ │ ├── auth │ │ │ │ ├── dao │ │ │ │ │ └── WebActivityAuthorizationDao.java │ │ │ │ └── domain │ │ │ │ │ └── WebActivityAuthorization.java │ │ │ ├── common │ │ │ │ ├── Constants.java │ │ │ │ ├── domain │ │ │ │ │ └── UploadStatusContainer.java │ │ │ │ └── util │ │ │ │ │ ├── CSVUtil.java │ │ │ │ │ ├── ClassAttributeUtil.java │ │ │ │ │ ├── DateUtil.java │ │ │ │ │ ├── FileUtil.java │ │ │ │ │ ├── HttpUtil.java │ │ │ │ │ ├── ImageUtil.java │ │ │ │ │ ├── MD5Util.java │ │ │ │ │ ├── MailUtil.java │ │ │ │ │ ├── MappableField.java │ │ │ │ │ ├── MemCacheUtils.java │ │ │ │ │ ├── PropertyUtil.java │ │ │ │ │ ├── S3Util.java │ │ │ │ │ ├── StringUtil.java │ │ │ │ │ ├── VelocityUtil.java │ │ │ │ │ └── ZipUtil.java │ │ │ ├── device │ │ │ │ ├── DeviceSurveyJobQueueUpdater.java │ │ │ │ ├── app │ │ │ │ │ └── web │ │ │ │ │ │ └── DeviceManagerServlet.java │ │ │ │ ├── dao │ │ │ │ │ ├── DeviceDAO.java │ │ │ │ │ ├── DeviceFileJobQueueDAO.java │ │ │ │ │ └── DeviceGroupDAO.java │ │ │ │ └── domain │ │ │ │ │ ├── Device.java │ │ │ │ │ ├── DeviceFileJobQueue.java │ │ │ │ │ ├── DeviceFiles.java │ │ │ │ │ ├── DeviceGroup.java │ │ │ │ │ └── DeviceSurveyJobQueue.java │ │ │ ├── diagnostics │ │ │ │ └── app │ │ │ │ │ └── web │ │ │ │ │ └── RemoteExceptionRestServlet.java │ │ │ ├── editorial │ │ │ │ ├── dao │ │ │ │ │ └── EditorialPageDao.java │ │ │ │ └── domain │ │ │ │ │ ├── EditorialPage.java │ │ │ │ │ └── EditorialPageContent.java │ │ │ ├── framework │ │ │ │ ├── analytics │ │ │ │ │ └── summarization │ │ │ │ │ │ ├── DataSummarizationHandler.java │ │ │ │ │ │ ├── DataSummarizationRequest.java │ │ │ │ │ │ └── DataSummarizer.java │ │ │ │ ├── dao │ │ │ │ │ └── BaseDAO.java │ │ │ │ ├── dataexport │ │ │ │ │ └── applet │ │ │ │ │ │ ├── AbstractDataExporter.java │ │ │ │ │ │ ├── DataExporter.java │ │ │ │ │ │ ├── DataImportExportFactory.java │ │ │ │ │ │ └── DataImporter.java │ │ │ │ ├── domain │ │ │ │ │ ├── BaseDomain.java │ │ │ │ │ └── DataChangeRecord.java │ │ │ │ ├── exceptions │ │ │ │ │ ├── IllegalDeletionException.java │ │ │ │ │ └── SignedDataException.java │ │ │ │ ├── gwt │ │ │ │ │ └── dto │ │ │ │ │ │ └── client │ │ │ │ │ │ ├── BaseDto.java │ │ │ │ │ │ ├── NamedObject.java │ │ │ │ │ │ └── ResponseDto.java │ │ │ │ ├── rest │ │ │ │ │ ├── AbstractRestApiServlet.java │ │ │ │ │ ├── RestError.java │ │ │ │ │ ├── RestRequest.java │ │ │ │ │ ├── RestResponse.java │ │ │ │ │ └── exception │ │ │ │ │ │ ├── RestException.java │ │ │ │ │ │ └── RestValidationException.java │ │ │ │ └── servlet │ │ │ │ │ ├── ExecuteRequestAsTaskFilter.java │ │ │ │ │ ├── MultiReadFilter.java │ │ │ │ │ ├── MultiReadHttpServletRequest.java │ │ │ │ │ ├── PersistenceFilter.java │ │ │ │ │ └── RestAuthFilter.java │ │ │ ├── gis │ │ │ │ ├── coordinate │ │ │ │ │ └── utilities │ │ │ │ │ │ ├── Coordinate.java │ │ │ │ │ │ └── CoordinateUtilities.java │ │ │ │ ├── geography │ │ │ │ │ ├── dao │ │ │ │ │ │ ├── CountryDao.java │ │ │ │ │ │ └── SubCountryDao.java │ │ │ │ │ └── domain │ │ │ │ │ │ ├── Country.java │ │ │ │ │ │ └── SubCountry.java │ │ │ │ ├── location │ │ │ │ │ ├── GeoLocationService.java │ │ │ │ │ ├── GeoLocationServiceGeonamesImpl.java │ │ │ │ │ ├── GeoPlace.java │ │ │ │ │ └── GeoPlaces.java │ │ │ │ └── map │ │ │ │ │ ├── dao │ │ │ │ │ ├── MapControlDao.java │ │ │ │ │ ├── MapFragmentDao.java │ │ │ │ │ └── OGRFeatureDao.java │ │ │ │ │ └── domain │ │ │ │ │ ├── Coordinate.java │ │ │ │ │ ├── GeoMeasure.java │ │ │ │ │ ├── Geometry.java │ │ │ │ │ ├── MapControl.java │ │ │ │ │ ├── MapFragment.java │ │ │ │ │ └── OGRFeature.java │ │ │ ├── image │ │ │ │ ├── GAEImageAdapter.java │ │ │ │ └── ImageUtils.java │ │ │ ├── notification │ │ │ │ ├── NotificationHandler.java │ │ │ │ ├── NotificationProcessor.java │ │ │ │ ├── NotificationRequest.java │ │ │ │ ├── app │ │ │ │ │ └── gwt │ │ │ │ │ │ └── client │ │ │ │ │ │ └── NotificationSubscriptionDto.java │ │ │ │ ├── dao │ │ │ │ │ └── NotificationSubscriptionDao.java │ │ │ │ ├── domain │ │ │ │ │ ├── NotificationHistory.java │ │ │ │ │ └── NotificationSubscription.java │ │ │ │ └── helper │ │ │ │ │ └── NotificationHelper.java │ │ │ ├── operations │ │ │ │ ├── dao │ │ │ │ │ └── ProcessingStatusDao.java │ │ │ │ └── domain │ │ │ │ │ └── ProcessingStatus.java │ │ │ ├── survey │ │ │ │ ├── dao │ │ │ │ │ ├── ApprovalGroupDAO.java │ │ │ │ │ ├── ApprovalStepDAO.java │ │ │ │ │ ├── CaddisflyResourceDao.java │ │ │ │ │ ├── CascadeNodeDao.java │ │ │ │ │ ├── CascadeResourceDao.java │ │ │ │ │ ├── DataPointApprovalDAO.java │ │ │ │ │ ├── DeviceSurveyJobQueueDAO.java │ │ │ │ │ ├── QuestionDao.java │ │ │ │ │ ├── QuestionGroupDao.java │ │ │ │ │ ├── QuestionHelpMediaDao.java │ │ │ │ │ ├── QuestionOptionDao.java │ │ │ │ │ ├── ScoringRuleDao.java │ │ │ │ │ ├── SurveyDAO.java │ │ │ │ │ ├── SurveyGroupDAO.java │ │ │ │ │ ├── SurveyTaskUtil.java │ │ │ │ │ ├── SurveyUtils.java │ │ │ │ │ └── TranslationDao.java │ │ │ │ ├── domain │ │ │ │ │ ├── ApprovalGroup.java │ │ │ │ │ ├── ApprovalStep.java │ │ │ │ │ ├── CascadeNode.java │ │ │ │ │ ├── CascadeResource.java │ │ │ │ │ ├── DataPointApproval.java │ │ │ │ │ ├── Question.java │ │ │ │ │ ├── QuestionGroup.java │ │ │ │ │ ├── QuestionHelpMedia.java │ │ │ │ │ ├── QuestionOption.java │ │ │ │ │ ├── ScoringRule.java │ │ │ │ │ ├── Survey.java │ │ │ │ │ ├── SurveyContainer.java │ │ │ │ │ ├── SurveyGroup.java │ │ │ │ │ ├── Translation.java │ │ │ │ │ └── WebForm.java │ │ │ │ └── helper │ │ │ │ │ └── SurveyGroupHelper.java │ │ │ ├── surveyal │ │ │ │ ├── app │ │ │ │ │ └── web │ │ │ │ │ │ ├── SurveyalRestRequest.java │ │ │ │ │ │ └── SurveyalRestServlet.java │ │ │ │ ├── dao │ │ │ │ │ └── SurveyedLocaleDao.java │ │ │ │ └── domain │ │ │ │ │ └── SurveyedLocale.java │ │ │ ├── task │ │ │ │ ├── dao │ │ │ │ │ └── TaskDao.java │ │ │ │ ├── domain │ │ │ │ │ └── Task.java │ │ │ │ └── helper │ │ │ │ │ └── TaskHelper.java │ │ │ ├── user │ │ │ │ ├── app │ │ │ │ │ └── gwt │ │ │ │ │ │ └── client │ │ │ │ │ │ └── UserDto.java │ │ │ │ ├── dao │ │ │ │ │ ├── UserAuthorizationDAO.java │ │ │ │ │ ├── UserDao.java │ │ │ │ │ └── UserRoleDao.java │ │ │ │ └── domain │ │ │ │ │ ├── Permission.java │ │ │ │ │ ├── User.java │ │ │ │ │ ├── UserAuthorization.java │ │ │ │ │ └── UserRole.java │ │ │ └── weightsmeasures │ │ │ │ └── domain │ │ │ │ ├── Currency.java │ │ │ │ └── UnitOfMeasure.java │ │ └── ibm │ │ │ └── util │ │ │ └── CoordinateConversion.java │ ├── locale │ │ ├── en.properties │ │ ├── es.properties │ │ ├── fr.properties │ │ ├── id.properties │ │ ├── pt.properties │ │ ├── ui-strings.properties │ │ └── vi.properties │ ├── log4j.properties │ ├── org │ │ ├── akvo │ │ │ ├── AkvoColours.java │ │ │ └── flow │ │ │ │ ├── api │ │ │ │ ├── app │ │ │ │ │ ├── DataPointOnlyServlet.java │ │ │ │ │ ├── DataPointRequest.java │ │ │ │ │ ├── DataPointResponse.java │ │ │ │ │ ├── DataPointServlet.java │ │ │ │ │ ├── DataPointUtil.java │ │ │ │ │ ├── FormInstanceResponse.java │ │ │ │ │ ├── FormInstanceUtil.java │ │ │ │ │ ├── NoDataPointsAssignedException.java │ │ │ │ │ ├── SurveyedLocaleRequest.java │ │ │ │ │ ├── SurveyedLocaleResponse.java │ │ │ │ │ ├── SurveyedLocaleServlet.java │ │ │ │ │ ├── WebFormRequest.java │ │ │ │ │ └── WebFormServlet.java │ │ │ │ └── export │ │ │ │ │ ├── DataBackoutServlet.java │ │ │ │ │ ├── SurveyRestResponse.java │ │ │ │ │ └── SurveyRestServlet.java │ │ │ │ ├── dao │ │ │ │ ├── DataPointAssignmentDao.java │ │ │ │ ├── MessageDao.java │ │ │ │ ├── ReportDao.java │ │ │ │ └── SurveyAssignmentDao.java │ │ │ │ ├── domain │ │ │ │ ├── DataUtils.java │ │ │ │ ├── DefaultUserAuthorization.java │ │ │ │ ├── FormSubmissionsLimit.java │ │ │ │ ├── Message.java │ │ │ │ ├── RootFolder.java │ │ │ │ ├── SecuredObject.java │ │ │ │ ├── UserFormSubmissionsCounter.java │ │ │ │ ├── mapper │ │ │ │ │ ├── QuestionDtoMappableFields.java │ │ │ │ │ ├── QuestionDtoMapper.java │ │ │ │ │ ├── QuestionGroupDtoMapper.java │ │ │ │ │ └── QuestionOptionDtoMapper.java │ │ │ │ └── persistent │ │ │ │ │ ├── DataPointAssignment.java │ │ │ │ │ ├── Report.java │ │ │ │ │ └── SurveyAssignment.java │ │ │ │ ├── events │ │ │ │ ├── EventLogger.java │ │ │ │ ├── EventQueue.java │ │ │ │ └── EventUtils.java │ │ │ │ ├── locale │ │ │ │ └── UIStrings.java │ │ │ │ ├── rest │ │ │ │ ├── CountFormSubmissionsRestService.java │ │ │ │ ├── DataPointAssignmentRestService.java │ │ │ │ ├── ImageUploadRestService.java │ │ │ │ ├── MessageRestService.java │ │ │ │ ├── ReportRestService.java │ │ │ │ ├── SurveyAssignmentRestService.java │ │ │ │ ├── dto │ │ │ │ │ ├── DataPointAssignmentDto.java │ │ │ │ │ ├── DataPointAssignmentPayload.java │ │ │ │ │ ├── MessageDto.java │ │ │ │ │ ├── PostUserRegistrationRestRequest.java │ │ │ │ │ ├── ReportDto.java │ │ │ │ │ ├── ReportPayload.java │ │ │ │ │ ├── ReportTaskRequest.java │ │ │ │ │ ├── SurveyAssignmentDto.java │ │ │ │ │ └── SurveyAssignmentPayload.java │ │ │ │ ├── form │ │ │ │ │ ├── FormAssembler.java │ │ │ │ │ ├── FormAssemblyRestService.java │ │ │ │ │ ├── FormMapper.java │ │ │ │ │ ├── FormUploadXml.java │ │ │ │ │ ├── QuestionGroupMapper.java │ │ │ │ │ ├── QuestionMapper.java │ │ │ │ │ ├── QuestionOptionMapper.java │ │ │ │ │ ├── TranslationsAppender.java │ │ │ │ │ └── XmlFormAssembler.java │ │ │ │ ├── handler │ │ │ │ │ └── FormInstanceRequestHandler.java │ │ │ │ └── security │ │ │ │ │ ├── AppRole.java │ │ │ │ │ ├── GaeUserAuthentication.java │ │ │ │ │ ├── LogoutController.java │ │ │ │ │ ├── NewUserRegistrationRedirectFilter.java │ │ │ │ │ ├── RedirectIndexFilter.java │ │ │ │ │ ├── RequestUriVoter.java │ │ │ │ │ ├── google │ │ │ │ │ ├── GoogleAccountsAuthenticationEntryPoint.java │ │ │ │ │ ├── GoogleAccountsAuthenticationProvider.java │ │ │ │ │ └── GoogleAuthenticationFilter.java │ │ │ │ │ ├── oidc │ │ │ │ │ ├── AppConfig.java │ │ │ │ │ ├── CallbackController.java │ │ │ │ │ ├── EntryPoint.java │ │ │ │ │ └── TokenAuthentication.java │ │ │ │ │ └── user │ │ │ │ │ └── GaeUser.java │ │ │ │ ├── servlet │ │ │ │ ├── PostUserRegistrationServlet.java │ │ │ │ ├── ReportServlet.java │ │ │ │ └── config │ │ │ │ │ └── ProductionEnvironmentXmlWebApplicationContext.java │ │ │ │ ├── util │ │ │ │ ├── ExifTagExtractor.java │ │ │ │ ├── ExifTagInfo.java │ │ │ │ ├── FileResponse.java │ │ │ │ ├── FlowJsonObjectReader.java │ │ │ │ ├── FlowJsonObjectWriter.java │ │ │ │ ├── JFreechartChartUtil.java │ │ │ │ └── OneTimePadCypher.java │ │ │ │ └── xml │ │ │ │ ├── PublishedForm.java │ │ │ │ ├── XmlAltText.java │ │ │ │ ├── XmlDependency.java │ │ │ │ ├── XmlForm.java │ │ │ │ ├── XmlHelp.java │ │ │ │ ├── XmlLevel.java │ │ │ │ ├── XmlOption.java │ │ │ │ ├── XmlOptions.java │ │ │ │ ├── XmlQuestion.java │ │ │ │ ├── XmlQuestionGroup.java │ │ │ │ └── XmlValidationRule.java │ │ └── waterforpeople │ │ │ └── mapping │ │ │ ├── analytics │ │ │ ├── NameQuestionDataCleanser.java │ │ │ ├── SurveyDataSummarizationHandler.java │ │ │ ├── SurveyDataUpdateHandler.java │ │ │ ├── SurveyQuestionSummarizer.java │ │ │ ├── SurveyQuestionSummaryUpdater.java │ │ │ ├── dao │ │ │ │ └── SurveyQuestionSummaryDao.java │ │ │ └── domain │ │ │ │ └── SurveyQuestionSummary.java │ │ │ ├── app │ │ │ ├── gwt │ │ │ │ ├── client │ │ │ │ │ ├── community │ │ │ │ │ │ ├── CommunityDto.java │ │ │ │ │ │ ├── CountryDto.java │ │ │ │ │ │ └── SubCountryDto.java │ │ │ │ │ ├── device │ │ │ │ │ │ ├── DeviceApplicationDto.java │ │ │ │ │ │ ├── DeviceDto.java │ │ │ │ │ │ └── DeviceGroupDto.java │ │ │ │ │ ├── devicefiles │ │ │ │ │ │ └── DeviceFilesDto.java │ │ │ │ │ ├── diagnostics │ │ │ │ │ │ └── RemoteStacktraceDto.java │ │ │ │ │ ├── survey │ │ │ │ │ │ ├── CascadeNodeDto.java │ │ │ │ │ │ ├── CascadeResourceDto.java │ │ │ │ │ │ ├── OptionContainerDto.java │ │ │ │ │ │ ├── QuestionDependencyDto.java │ │ │ │ │ │ ├── QuestionDto.java │ │ │ │ │ │ ├── QuestionGroupDto.java │ │ │ │ │ │ ├── QuestionHelpDto.java │ │ │ │ │ │ ├── QuestionOptionDto.java │ │ │ │ │ │ ├── SurveyAssignmentDto.java │ │ │ │ │ │ ├── SurveyAttributeMappingDto.java │ │ │ │ │ │ ├── SurveyDto.java │ │ │ │ │ │ ├── SurveyGroupDto.java │ │ │ │ │ │ ├── SurveyMetricMappingDto.java │ │ │ │ │ │ ├── SurveyQuestionSummaryDto.java │ │ │ │ │ │ ├── SurveySummaryDto.java │ │ │ │ │ │ └── TranslationDto.java │ │ │ │ │ └── surveyinstance │ │ │ │ │ │ ├── QuestionAnswerStoreDto.java │ │ │ │ │ │ └── SurveyInstanceDto.java │ │ │ │ └── server │ │ │ │ │ └── survey │ │ │ │ │ └── SurveyServiceImpl.java │ │ │ ├── util │ │ │ │ ├── DatastoreTextConverter.java │ │ │ │ ├── DtoMarshaller.java │ │ │ │ └── TypeEnumConverter.java │ │ │ └── web │ │ │ │ ├── ApkRedirectServlet.java │ │ │ │ ├── BootstrapGeneratorServlet.java │ │ │ │ ├── CronCommanderServlet.java │ │ │ │ ├── CurrentUserServlet.java │ │ │ │ ├── DataProcessorRestServlet.java │ │ │ │ ├── DeviceApplicationRestService.java │ │ │ │ ├── DeviceFileRestServlet.java │ │ │ │ ├── DeviceNotificationRestServlet.java │ │ │ │ ├── DeviceTimeRestService.java │ │ │ │ ├── EnvServlet.java │ │ │ │ ├── ExternalGISDataServlet.java │ │ │ │ ├── GeoServlet.java │ │ │ │ ├── ImageCheckServlet.java │ │ │ │ ├── LocationBeaconServlet.java │ │ │ │ ├── MappingSummarizationServlet.java │ │ │ │ ├── ProcessorServlet.java │ │ │ │ ├── RawDataRestServlet.java │ │ │ │ ├── StartupServlet.java │ │ │ │ ├── StringsServlet.java │ │ │ │ ├── SurveyAssemblyServlet.java │ │ │ │ ├── SurveyEventHandlerServlet.java │ │ │ │ ├── SurveyInstanceServlet.java │ │ │ │ ├── SurveyManagerServlet.java │ │ │ │ ├── SurveyTaskServlet.java │ │ │ │ ├── TaskServlet.java │ │ │ │ ├── TestHarnessServlet.java │ │ │ │ ├── dto │ │ │ │ ├── ApprovalGroupDTO.java │ │ │ │ ├── ApprovalStepDTO.java │ │ │ │ ├── BootstrapGeneratorRequest.java │ │ │ │ ├── ChartUrlRequest.java │ │ │ │ ├── DataBackoutRequest.java │ │ │ │ ├── DataPointApprovalDTO.java │ │ │ │ ├── DataProcessorRequest.java │ │ │ │ ├── DeleteTaskRequest.java │ │ │ │ ├── DeviceApplicationRestRequest.java │ │ │ │ ├── DeviceApplicationRestResponse.java │ │ │ │ ├── DeviceFileFindRestResponse.java │ │ │ │ ├── DeviceFileRestRequest.java │ │ │ │ ├── DeviceFileRestResponse.java │ │ │ │ ├── DeviceNotificationRequest.java │ │ │ │ ├── DeviceNotificationResponse.java │ │ │ │ ├── DeviceTimeRestRequest.java │ │ │ │ ├── DeviceTimeRestResponse.java │ │ │ │ ├── ExternalGISRequest.java │ │ │ │ ├── GeoRequest.java │ │ │ │ ├── GeoResponse.java │ │ │ │ ├── ImageCheckRequest.java │ │ │ │ ├── InstanceDataDto.java │ │ │ │ ├── LocationBeaconRequest.java │ │ │ │ ├── MapAssemblyRestRequest.java │ │ │ │ ├── MappingSummarizationRequest.java │ │ │ │ ├── MappingSummarizationResponse.java │ │ │ │ ├── OGRFeatureDto.java │ │ │ │ ├── OGRFeatureRestResponse.java │ │ │ │ ├── QuestionAnswerResponse.java │ │ │ │ ├── RawDataImportRequest.java │ │ │ │ ├── SpreadsheetImportRequest.java │ │ │ │ ├── SurveyAssemblyRequest.java │ │ │ │ ├── SurveyEventRequest.java │ │ │ │ ├── SurveyInstanceRequest.java │ │ │ │ ├── SurveyInstanceResponse.java │ │ │ │ ├── SurveyManagerRequest.java │ │ │ │ ├── SurveyRestRequest.java │ │ │ │ ├── SurveyTaskRequest.java │ │ │ │ ├── SurveyedLocaleDto.java │ │ │ │ └── TaskRequest.java │ │ │ │ ├── rest │ │ │ │ ├── ActionRestService.java │ │ │ │ ├── ApprovalGroupRestService.java │ │ │ │ ├── ApprovalStepRestService.java │ │ │ │ ├── CascadeNodeRestService.java │ │ │ │ ├── CascadeResourceRestService.java │ │ │ │ ├── DataPointApprovalRestService.java │ │ │ │ ├── DeviceGroupRestService.java │ │ │ │ ├── DeviceRestService.java │ │ │ │ ├── NotificationSubscriptionRestService.java │ │ │ │ ├── PlacemarkRestService.java │ │ │ │ ├── QuestionAnswerRestService.java │ │ │ │ ├── QuestionGroupRestService.java │ │ │ │ ├── QuestionOptionRestService.java │ │ │ │ ├── QuestionRestService.java │ │ │ │ ├── ResourceNotFoundException.java │ │ │ │ ├── SubCountryRestService.java │ │ │ │ ├── SurveyGroupRestService.java │ │ │ │ ├── SurveyInstanceRestService.java │ │ │ │ ├── SurveyNotValidAsWebformException.java │ │ │ │ ├── SurveyQuestionSummaryRestService.java │ │ │ │ ├── SurveyRestService.java │ │ │ │ ├── SurveyedLocaleCountRestService.java │ │ │ │ ├── SurveyedLocaleRestService.java │ │ │ │ ├── TranslationRestService.java │ │ │ │ ├── UserAuthorizationRestService.java │ │ │ │ ├── UserRestService.java │ │ │ │ ├── UserRolesRestService.java │ │ │ │ └── dto │ │ │ │ │ ├── ApprovalGroupPayload.java │ │ │ │ │ ├── ApprovalStepPayload.java │ │ │ │ │ ├── CascadeNodeBulkPayload.java │ │ │ │ │ ├── CascadeNodePayload.java │ │ │ │ │ ├── CascadeResourcePayload.java │ │ │ │ │ ├── DataPointApprovalPayload.java │ │ │ │ │ ├── DeviceGroupPayload.java │ │ │ │ │ ├── DevicePayload.java │ │ │ │ │ ├── NamedMapPayload.java │ │ │ │ │ ├── NotificationSubscriptionPayload.java │ │ │ │ │ ├── PlacemarkDto.java │ │ │ │ │ ├── QuestionAnswerStorePayload.java │ │ │ │ │ ├── QuestionGroupListPayload.java │ │ │ │ │ ├── QuestionGroupPayload.java │ │ │ │ │ ├── QuestionListPayload.java │ │ │ │ │ ├── QuestionOptionPayload.java │ │ │ │ │ ├── QuestionPayload.java │ │ │ │ │ ├── RestStatusDto.java │ │ │ │ │ ├── SurveyGroupPayload.java │ │ │ │ │ ├── SurveyInstancePayload.java │ │ │ │ │ ├── SurveyPayload.java │ │ │ │ │ ├── TranslationBulkDeletePayload.java │ │ │ │ │ ├── TranslationBulkPayload.java │ │ │ │ │ ├── TranslationPayload.java │ │ │ │ │ ├── UserAuthorizationPayload.java │ │ │ │ │ ├── UserPayload.java │ │ │ │ │ └── UserRolePayload.java │ │ │ │ └── test │ │ │ │ └── DeleteObjectUtil.java │ │ │ ├── dao │ │ │ ├── CommunityDao.java │ │ │ ├── DeviceApplicationDao.java │ │ │ ├── DeviceFilesDao.java │ │ │ ├── DisplayTemplateMappingDAO.java │ │ │ ├── GeoIndexDao.java │ │ │ ├── GeoRegionDAO.java │ │ │ ├── KMLDAO.java │ │ │ ├── QuestionAnswerStoreDao.java │ │ │ ├── SurveyAttributeMappingDao.java │ │ │ ├── SurveyContainerDao.java │ │ │ └── SurveyInstanceDAO.java │ │ │ ├── dataexport │ │ │ ├── ExportImportConstants.java │ │ │ ├── ExportImportUtils.java │ │ │ ├── GraphicalSurveySummaryExporter.java │ │ │ ├── InstanceData.java │ │ │ ├── RawDataExporter.java │ │ │ ├── RawDataSpreadsheetImporter.java │ │ │ ├── StatisticsExporter.java │ │ │ ├── SurveyDataImportExportFactory.java │ │ │ ├── SurveyFormExporter.java │ │ │ ├── SurveyReplicationImporter.java │ │ │ ├── SurveySummaryExporter.java │ │ │ └── service │ │ │ │ ├── BulkDataServiceClient.java │ │ │ │ └── NameValuePair.java │ │ │ ├── domain │ │ │ ├── CaddisflyResource.java │ │ │ ├── CaddisflyResult.java │ │ │ ├── Community.java │ │ │ ├── DeviceApplication.java │ │ │ ├── DisplayTemplateMapping.java │ │ │ ├── GeoCoordinates.java │ │ │ ├── GeoRegion.java │ │ │ ├── KML.java │ │ │ ├── ProcessingAction.java │ │ │ ├── QuestionAnswerStore.java │ │ │ ├── Status.java │ │ │ ├── SurveyAttributeMapping.java │ │ │ ├── SurveyInstance.java │ │ │ ├── SurveyQuestion.java │ │ │ ├── SurveyQuestionGroup.java │ │ │ ├── SurveyQuestionOption.java │ │ │ ├── TechnologyType.java │ │ │ └── response │ │ │ │ ├── FormInstance.java │ │ │ │ ├── Response.java │ │ │ │ └── value │ │ │ │ ├── Location.java │ │ │ │ └── Media.java │ │ │ ├── helper │ │ │ ├── MappingSummarizationHelper.java │ │ │ ├── SurveyEventHelper.java │ │ │ └── TechnologyTypeHelper.java │ │ │ ├── notification │ │ │ ├── AbstractReportNotificationHandler.java │ │ │ ├── BaseNotificationHandler.java │ │ │ ├── FieldStatusReportNotificationHandler.java │ │ │ ├── MappingNotificationProcessor.java │ │ │ ├── RawDataReportNotificationHandler.java │ │ │ └── SurveyEventNotificationHandler.java │ │ │ └── serialization │ │ │ ├── SurveyInstanceHandler.java │ │ │ └── response │ │ │ └── MediaResponse.java │ └── services │ │ └── TranslationGenerator.java ├── test │ ├── com │ │ └── gallatinsystems │ │ │ ├── framework │ │ │ ├── dao │ │ │ │ └── BaseDAOTests.java │ │ │ └── servlet │ │ │ │ ├── ExecuteRequestAsTaskFilterTests.java │ │ │ │ └── RestAuthFilterTests.java │ │ │ ├── survey │ │ │ └── dao │ │ │ │ ├── CopySurveyFromAnotherInstanceTest.java │ │ │ │ └── SurveyDAOTest.java │ │ │ └── surveyal │ │ │ └── dao │ │ │ ├── SurveyInstanceDAOTest.java │ │ │ ├── SurveyUtilsTest.java │ │ │ └── SurveyedLocaleDaoTest.java │ └── org │ │ ├── akvo │ │ └── flow │ │ │ ├── api │ │ │ └── app │ │ │ │ ├── DataPointUtilTest.java │ │ │ │ ├── DataStoreTestUtil.java │ │ │ │ └── FormInstanceUtilTest.java │ │ │ ├── domain │ │ │ ├── DefaultUserAuthorizationTest.java │ │ │ ├── UserFormSubmissionsCounterTest.java │ │ │ └── UserFormSubmissionsCounterTestUtil.java │ │ │ ├── rest │ │ │ ├── ImageUploadRestServiceTest.java │ │ │ ├── form │ │ │ │ ├── QuestionGroupMapperTest.java │ │ │ │ ├── QuestionMapperTest.java │ │ │ │ ├── QuestionOptionMapperTest.java │ │ │ │ ├── TranslationsAppenderTest.java │ │ │ │ └── XmlFormAssemblerTest.java │ │ │ ├── handler │ │ │ │ └── FormInstanceRequestHandlerTests.java │ │ │ └── security │ │ │ │ └── google │ │ │ │ └── GoogleAuthenticationFilterTest.java │ │ │ ├── util │ │ │ ├── Base64Test.java │ │ │ ├── FlowJsonObjectReaderTests.java │ │ │ ├── FlowJsonObjectWriterTests.java │ │ │ └── OneTimePadCypherTest.java │ │ │ └── xml │ │ │ ├── FlowXmlObjectReaderTests.java │ │ │ ├── FlowXmlObjectWriterTests.java │ │ │ └── XmlQuestionTest.java │ │ └── waterforpeople │ │ └── mapping │ │ ├── app │ │ └── web │ │ │ └── dto │ │ │ └── RawDataImportRequestTest.java │ │ ├── dataexport │ │ ├── GraphicalSurveySummaryExporterTests.java │ │ ├── RawDataSpreadsheetImporterTests.java │ │ └── SurveyReplicationImporterTests.java │ │ └── serialization │ │ └── SurveyInstanceHandlerTests.java ├── war │ ├── CurrentUser.vm │ ├── Env.vm │ ├── WEB-INF │ │ ├── cron.xml │ │ ├── datastore-indexes.xml │ │ ├── dev-logging.properties │ │ ├── logging.properties │ │ ├── oidcservlet-servlet.xml │ │ ├── queue.xml │ │ ├── rest-servlet.xml │ │ ├── web.xml │ │ └── webapp-security.xml │ ├── auth0 │ │ └── error.html │ ├── commons-beanutils-1.7.0.jar │ ├── commons-pool-1.5.3.jar │ ├── dom4j-1.6.1.jar │ ├── favicon.ico │ ├── gdata-core-1.0.jar │ ├── geoapi-2.3-M1.jar │ ├── geoapi-pending-2.3-M1.jar │ ├── gt-api-2.6.5.jar │ ├── gt-metadata-2.6.5.jar │ ├── gt-shapefile-2.6.5.jar │ ├── jcommon-1.0.16.jar │ ├── jdom-1.0.jar │ ├── jfreechart-1.0.13.jar │ ├── jquery-1.4.2.min.js │ ├── js │ │ ├── activatables.js │ │ ├── flow-script.js │ │ ├── jqURL.js │ │ ├── jquery-1.4.4.min.js │ │ ├── jquery-1.5.1.js │ │ ├── jquery-1.6.1.js │ │ ├── jquery-ui-1.8.7.custom.min.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.min.js │ │ ├── jscrollpane │ │ │ ├── jquery-1.6.min.js │ │ │ ├── jquery.jscrollpane.min.js │ │ │ ├── jquery.mousewheel.js │ │ │ └── mwheelIntent.js │ │ ├── legend.js │ │ ├── legend │ │ │ ├── demos.js │ │ │ ├── jquery-ui-i18n.min.js │ │ │ ├── jquery-ui.css │ │ │ ├── jquery-ui.min.js │ │ │ ├── jquery.bgiframe-2.1.2.js │ │ │ ├── jquery.min.js │ │ │ └── themeswitchertool.js │ │ ├── smartinfowindow.js │ │ ├── tooltip-public.js │ │ ├── ui │ │ │ ├── i18n │ │ │ │ ├── jquery-ui-i18n.js │ │ │ │ ├── jquery.ui.datepicker-af.js │ │ │ │ ├── jquery.ui.datepicker-ar.js │ │ │ │ ├── jquery.ui.datepicker-az.js │ │ │ │ ├── jquery.ui.datepicker-bg.js │ │ │ │ ├── jquery.ui.datepicker-bs.js │ │ │ │ ├── jquery.ui.datepicker-ca.js │ │ │ │ ├── jquery.ui.datepicker-cs.js │ │ │ │ ├── jquery.ui.datepicker-da.js │ │ │ │ ├── jquery.ui.datepicker-de.js │ │ │ │ ├── jquery.ui.datepicker-el.js │ │ │ │ ├── jquery.ui.datepicker-en-GB.js │ │ │ │ ├── jquery.ui.datepicker-eo.js │ │ │ │ ├── jquery.ui.datepicker-es.js │ │ │ │ ├── jquery.ui.datepicker-et.js │ │ │ │ ├── jquery.ui.datepicker-eu.js │ │ │ │ ├── jquery.ui.datepicker-fa.js │ │ │ │ ├── jquery.ui.datepicker-fi.js │ │ │ │ ├── jquery.ui.datepicker-fo.js │ │ │ │ ├── jquery.ui.datepicker-fr-CH.js │ │ │ │ ├── jquery.ui.datepicker-fr.js │ │ │ │ ├── jquery.ui.datepicker-gl.js │ │ │ │ ├── jquery.ui.datepicker-he.js │ │ │ │ ├── jquery.ui.datepicker-hr.js │ │ │ │ ├── jquery.ui.datepicker-hu.js │ │ │ │ ├── jquery.ui.datepicker-hy.js │ │ │ │ ├── jquery.ui.datepicker-id.js │ │ │ │ ├── jquery.ui.datepicker-is.js │ │ │ │ ├── jquery.ui.datepicker-it.js │ │ │ │ ├── jquery.ui.datepicker-ja.js │ │ │ │ ├── jquery.ui.datepicker-ko.js │ │ │ │ ├── jquery.ui.datepicker-kz.js │ │ │ │ ├── jquery.ui.datepicker-lt.js │ │ │ │ ├── jquery.ui.datepicker-lv.js │ │ │ │ ├── jquery.ui.datepicker-ms.js │ │ │ │ ├── jquery.ui.datepicker-nl.js │ │ │ │ ├── jquery.ui.datepicker-no.js │ │ │ │ ├── jquery.ui.datepicker-pl.js │ │ │ │ ├── jquery.ui.datepicker-pt-BR.js │ │ │ │ ├── jquery.ui.datepicker-pt.js │ │ │ │ ├── jquery.ui.datepicker-rm.js │ │ │ │ ├── jquery.ui.datepicker-ro.js │ │ │ │ ├── jquery.ui.datepicker-ru.js │ │ │ │ ├── jquery.ui.datepicker-sk.js │ │ │ │ ├── jquery.ui.datepicker-sl.js │ │ │ │ ├── jquery.ui.datepicker-sq.js │ │ │ │ ├── jquery.ui.datepicker-sr-SR.js │ │ │ │ ├── jquery.ui.datepicker-sr.js │ │ │ │ ├── jquery.ui.datepicker-sv.js │ │ │ │ ├── jquery.ui.datepicker-ta.js │ │ │ │ ├── jquery.ui.datepicker-th.js │ │ │ │ ├── jquery.ui.datepicker-tr.js │ │ │ │ ├── jquery.ui.datepicker-uk.js │ │ │ │ ├── jquery.ui.datepicker-vi.js │ │ │ │ ├── jquery.ui.datepicker-zh-CN.js │ │ │ │ ├── jquery.ui.datepicker-zh-HK.js │ │ │ │ └── jquery.ui.datepicker-zh-TW.js │ │ │ ├── jquery-ui-1.8.7.custom.js │ │ │ ├── jquery.effects.blind.js │ │ │ ├── jquery.effects.bounce.js │ │ │ ├── jquery.effects.clip.js │ │ │ ├── jquery.effects.core.js │ │ │ ├── jquery.effects.drop.js │ │ │ ├── jquery.effects.explode.js │ │ │ ├── jquery.effects.fade.js │ │ │ ├── jquery.effects.fold.js │ │ │ ├── jquery.effects.highlight.js │ │ │ ├── jquery.effects.pulsate.js │ │ │ ├── jquery.effects.scale.js │ │ │ ├── jquery.effects.shake.js │ │ │ ├── jquery.effects.slide.js │ │ │ ├── jquery.effects.transfer.js │ │ │ ├── jquery.ui.accordion.js │ │ │ ├── jquery.ui.autocomplete.js │ │ │ ├── jquery.ui.button.js │ │ │ ├── jquery.ui.core.js │ │ │ ├── jquery.ui.datepicker.js │ │ │ ├── jquery.ui.dialog.js │ │ │ ├── jquery.ui.draggable.js │ │ │ ├── jquery.ui.droppable.js │ │ │ ├── jquery.ui.mouse.js │ │ │ ├── jquery.ui.position.js │ │ │ ├── jquery.ui.progressbar.js │ │ │ ├── jquery.ui.resizable.js │ │ │ ├── jquery.ui.selectable.js │ │ │ ├── jquery.ui.slider.js │ │ │ ├── jquery.ui.sortable.js │ │ │ ├── jquery.ui.tabs.js │ │ │ ├── jquery.ui.widget.js │ │ │ └── minified │ │ │ │ ├── jquery.effects.blind.min.js │ │ │ │ ├── jquery.effects.bounce.min.js │ │ │ │ ├── jquery.effects.clip.min.js │ │ │ │ ├── jquery.effects.core.min.js │ │ │ │ ├── jquery.effects.drop.min.js │ │ │ │ ├── jquery.effects.explode.min.js │ │ │ │ ├── jquery.effects.fade.min.js │ │ │ │ ├── jquery.effects.fold.min.js │ │ │ │ ├── jquery.effects.highlight.min.js │ │ │ │ ├── jquery.effects.pulsate.min.js │ │ │ │ ├── jquery.effects.scale.min.js │ │ │ │ ├── jquery.effects.shake.min.js │ │ │ │ ├── jquery.effects.slide.min.js │ │ │ │ ├── jquery.effects.transfer.min.js │ │ │ │ ├── jquery.ui.accordion.min.js │ │ │ │ ├── jquery.ui.autocomplete.min.js │ │ │ │ ├── jquery.ui.button.min.js │ │ │ │ ├── jquery.ui.core.min.js │ │ │ │ ├── jquery.ui.datepicker.min.js │ │ │ │ ├── jquery.ui.dialog.min.js │ │ │ │ ├── jquery.ui.draggable.min.js │ │ │ │ ├── jquery.ui.droppable.min.js │ │ │ │ ├── jquery.ui.mouse.min.js │ │ │ │ ├── jquery.ui.position.min.js │ │ │ │ ├── jquery.ui.progressbar.min.js │ │ │ │ ├── jquery.ui.resizable.min.js │ │ │ │ ├── jquery.ui.selectable.min.js │ │ │ │ ├── jquery.ui.slider.min.js │ │ │ │ ├── jquery.ui.sortable.min.js │ │ │ │ ├── jquery.ui.tabs.min.js │ │ │ │ └── jquery.ui.widget.min.js │ │ └── vendors.js │ ├── jsr-275-1.0-beta-2.jar │ ├── jts-1.10.jar │ ├── jts-1.11-serializable-indexes.jar │ ├── jtsio-1.8.jar │ ├── register.html │ ├── robots.txt │ ├── vecmath-1.3.2.jar │ └── velocity-1.6.2-dep.jar └── xml │ └── survey.xsd ├── LICENSE.md ├── README.md ├── RELEASE_NOTES.md ├── ci ├── bootstrap-build.sh ├── build.sh ├── check-property-encoding.sh ├── clojars-deploy.sh ├── deploy.sh ├── devserver.sh ├── flip-production-traffic.sh ├── mvn-deploy.sh ├── promote-test-to-prod.sh └── run-as-user.sh ├── dev-deploy.sh ├── doc └── dev.md ├── docker-compose.together.yml ├── docker-compose.yml ├── jsconfig.json ├── maven-ci-settings.xml ├── scripts ├── Readme.md ├── data │ ├── add_dev_environment_users.sh │ ├── add_initial_admin_users.sh │ ├── add_users.sh │ ├── build.xml │ ├── check-datapoint-location.sh │ ├── check-missing-files.sh │ ├── check-survey-structure.sh │ ├── check_options.sh │ ├── correct_folder_survey_path.sh │ ├── count-forminstances.sh │ ├── delete-kind.sh │ ├── delete-repeat-iterations.sh │ ├── delete_data.sh │ ├── delete_users.sh │ ├── dev_environment_users.csv │ ├── export_auth_data_to_event_log.sh │ ├── find-folder-forms.sh │ ├── find_question_responses.sh │ ├── fix-device-file-job-queue.sh │ ├── fix-old-translations.sh │ ├── fix-question-dependency.sh │ ├── fix-surveyed-locale.sh │ ├── fix_imagecheck_queue.sh │ ├── instance_with_webforms.sh │ ├── instance_with_webforms_all.sh │ ├── lets-encrypt-app-url.sh │ ├── lib │ │ ├── appengine-api-1.0-sdk-1.9.77.jar │ │ ├── appengine-api-labs-1.8.8.jar │ │ ├── appengine-jsr107cache-1.8.8.jar │ │ ├── appengine-remote-api-1.9.30.jar │ │ ├── commons-lang-2.4.jar │ │ ├── guava-18.0.jar │ │ ├── jackson-annotations-2.9.9.jar │ │ ├── jackson-core-2.9.9.jar │ │ ├── jackson-databind-2.9.9.jar │ │ ├── jsr107cache-1.1.jar │ │ ├── log4j-1.2.12.jar │ │ └── postgresql-9.4-1201.jdbc4.jar │ ├── print-tree-structure.sh │ ├── public_private_instance_count.sh │ ├── remove_orphaned_answers.sh │ ├── remove_orphaned_instances_all_instances.sh │ ├── remove_orphaned_survey_instances.sh │ ├── remove_user.sh │ ├── remove_user_all_instances.sh │ ├── replace-caddisfly-image.sh │ ├── split-assignments.sh │ ├── src │ │ └── org │ │ │ └── akvo │ │ │ └── gae │ │ │ └── remoteapi │ │ │ ├── AddPermission.java │ │ │ ├── AddUsers.java │ │ │ ├── CheckDataPointLocation.java │ │ │ ├── CheckImages.java │ │ │ ├── CheckMissingFiles.java │ │ │ ├── CheckOptions.java │ │ │ ├── CheckParentPath.java │ │ │ ├── CheckSurveyInstance.java │ │ │ ├── CheckSurveyStructure.java │ │ │ ├── CorrectFolderSurveyPath.java │ │ │ ├── CorrectSurveyedLocale.java │ │ │ ├── CountFormInstances.java │ │ │ ├── DataPoints.java │ │ │ ├── DataStoreWithUnilog.java │ │ │ ├── DataUtils.java │ │ │ ├── DefaultUserRoles.java │ │ │ ├── DeleteData.java │ │ │ ├── DeleteFormCompletely.java │ │ │ ├── DeleteQuestionWithoutQuestionGroup.java │ │ │ ├── DeleteRepeatQuestionGroupIteration.java │ │ │ ├── DeleteSurveyIfEmpty.java │ │ │ ├── DeleteSurveyInstances.java │ │ │ ├── DeleteUsers.java │ │ │ ├── DeviceList.java │ │ │ ├── ExportAuthDataToEventLog.java │ │ │ ├── ExportDataToEventLog.java │ │ │ ├── ExportDataToPG.java │ │ │ ├── ExtractImageGeotag.java │ │ │ ├── FindFormsInFolder.java │ │ │ ├── FindQuestionResponses.java │ │ │ ├── FixCopyDependency.java │ │ │ ├── FixDeviceFileJobQueue.java │ │ │ ├── FixOldTranslations.java │ │ │ ├── FixOrphanedQuestionAnswers.java │ │ │ ├── FixOrphanedSubmissions.java │ │ │ ├── FixSurveyedLocale.java │ │ │ ├── InstanceStats.java │ │ │ ├── InstanceWithWebFormSubmissions.java │ │ │ ├── LetsEncryptAppUrl.java │ │ │ ├── NameEqualsCodeCleanup.java │ │ │ ├── PathToIdMigration.java │ │ │ ├── PilotDataFix.java │ │ │ ├── PrintTreeStructure.java │ │ │ ├── Process.java │ │ │ ├── ProjectMigration.java │ │ │ ├── PublicPrivateInstanceCount.java │ │ │ ├── RemoteAPI.java │ │ │ ├── RemoveUsers.java │ │ │ ├── ReplaceCaddisflyImage.java │ │ │ ├── SatStatUpdater.java │ │ │ ├── SplitAssignments.java │ │ │ ├── SurveyedLocaleFix.java │ │ │ ├── UnAssignUnPublishedForms.java │ │ │ ├── UnifyDataPointAssignment.java │ │ │ └── UserList.java │ ├── unassign_unpublished_forms.sh │ └── unify.sh └── deploy │ ├── bootstrap-deploy.sh │ ├── deploy.sh │ └── run.sh ├── switch_tenant.sh ├── switch_to_local_tenant.sh └── tests ├── clojure └── akvo-tests │ ├── README.md │ ├── project.clj │ ├── resources │ └── config.clj │ ├── src │ └── akvo_tests │ │ └── api_key.clj │ └── test │ └── akvo_tests │ └── core_test.clj ├── dev-appengine-web.xml └── java └── src └── org └── akvo └── flow └── test └── DataSerializationTest.java /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | GAE_FULL_SCAN_SECS=30 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh text eol=lf 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/.gitignore -------------------------------------------------------------------------------- /.semaphore/clojars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/.semaphore/clojars.yml -------------------------------------------------------------------------------- /.semaphore/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/.semaphore/deploy.yml -------------------------------------------------------------------------------- /.semaphore/semaphore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/.semaphore/semaphore.yml -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /Config/appengine-enable-remote-api-python/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Config/appengine-enable-remote-api-python/LICENSE -------------------------------------------------------------------------------- /Config/appengine-enable-remote-api-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Config/appengine-enable-remote-api-python/README.md -------------------------------------------------------------------------------- /Config/appengine-enable-remote-api-python/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Config/appengine-enable-remote-api-python/app.yaml -------------------------------------------------------------------------------- /Config/ide/eclipse/Preferences.epf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Config/ide/eclipse/Preferences.epf -------------------------------------------------------------------------------- /Config/ide/eclipse/eclipse-preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Config/ide/eclipse/eclipse-preferences.xml -------------------------------------------------------------------------------- /Config/instanceConfigurator/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /dist 3 | .DS_Store 4 | .classpath 5 | .idea 6 | .project 7 | .settings 8 | -------------------------------------------------------------------------------- /Config/instanceConfigurator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Config/instanceConfigurator/README.md -------------------------------------------------------------------------------- /Config/instanceConfigurator/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Config/instanceConfigurator/build.xml -------------------------------------------------------------------------------- /Config/instanceConfigurator/lib/aws-java-sdk-1.11.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Config/instanceConfigurator/lib/aws-java-sdk-1.11.8.jar -------------------------------------------------------------------------------- /Config/instanceConfigurator/lib/commons-cli-1.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Config/instanceConfigurator/lib/commons-cli-1.3.1.jar -------------------------------------------------------------------------------- /Config/instanceConfigurator/lib/commons-codec-1.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Config/instanceConfigurator/lib/commons-codec-1.9.jar -------------------------------------------------------------------------------- /Config/instanceConfigurator/lib/commons-logging-1.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Config/instanceConfigurator/lib/commons-logging-1.1.3.jar -------------------------------------------------------------------------------- /Config/instanceConfigurator/lib/freemarker-2.3.18.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Config/instanceConfigurator/lib/freemarker-2.3.18.jar -------------------------------------------------------------------------------- /Config/instanceConfigurator/lib/httpclient-4.5.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Config/instanceConfigurator/lib/httpclient-4.5.2.jar -------------------------------------------------------------------------------- /Config/instanceConfigurator/lib/httpcore-4.4.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Config/instanceConfigurator/lib/httpcore-4.4.4.jar -------------------------------------------------------------------------------- /Config/instanceConfigurator/lib/jackson-core-2.6.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Config/instanceConfigurator/lib/jackson-core-2.6.6.jar -------------------------------------------------------------------------------- /Config/instanceConfigurator/lib/jackson-databind-2.6.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Config/instanceConfigurator/lib/jackson-databind-2.6.6.jar -------------------------------------------------------------------------------- /Config/instanceConfigurator/lib/joda-time-2.8.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Config/instanceConfigurator/lib/joda-time-2.8.1.jar -------------------------------------------------------------------------------- /Config/instanceConfigurator/lib/stax-1.2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Config/instanceConfigurator/lib/stax-1.2.0.jar -------------------------------------------------------------------------------- /Config/instanceConfigurator/lib/stax-api-1.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Config/instanceConfigurator/lib/stax-api-1.0.1.jar -------------------------------------------------------------------------------- /Dashboard/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/.babelrc -------------------------------------------------------------------------------- /Dashboard/.eslintignore: -------------------------------------------------------------------------------- 1 | app/js/plugins -------------------------------------------------------------------------------- /Dashboard/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/.eslintrc -------------------------------------------------------------------------------- /Dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/.gitignore -------------------------------------------------------------------------------- /Dashboard/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/.prettierrc -------------------------------------------------------------------------------- /Dashboard/LICENSE-ember-skeleton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/LICENSE-ember-skeleton -------------------------------------------------------------------------------- /Dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/README.md -------------------------------------------------------------------------------- /Dashboard/__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /Dashboard/__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /Dashboard/app/cljs/cp-html.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/cljs/cp-html.sh -------------------------------------------------------------------------------- /Dashboard/app/cljs/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/cljs/project.clj -------------------------------------------------------------------------------- /Dashboard/app/cljs/src/org/akvo/flow/dashboard/t.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/cljs/src/org/akvo/flow/dashboard/t.clj -------------------------------------------------------------------------------- /Dashboard/app/cljs/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/cljs/users.html -------------------------------------------------------------------------------- /Dashboard/app/css/custom-theme/jquery-ui-1.8.21.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/css/custom-theme/jquery-ui-1.8.21.custom.css -------------------------------------------------------------------------------- /Dashboard/app/css/form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/css/form.scss -------------------------------------------------------------------------------- /Dashboard/app/css/forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/css/forms.scss -------------------------------------------------------------------------------- /Dashboard/app/css/library.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/css/library.scss -------------------------------------------------------------------------------- /Dashboard/app/css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/css/main.scss -------------------------------------------------------------------------------- /Dashboard/app/css/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/css/reset.scss -------------------------------------------------------------------------------- /Dashboard/app/css/screen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/css/screen.scss -------------------------------------------------------------------------------- /Dashboard/app/css/users.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/css/users.scss -------------------------------------------------------------------------------- /Dashboard/app/dashboard.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/dashboard.ejs -------------------------------------------------------------------------------- /Dashboard/app/js/lib/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/analytics.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/components/ChildOption.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/components/ChildOption.jsx -------------------------------------------------------------------------------- /Dashboard/app/js/lib/components/devices/AssignmentsList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/components/devices/AssignmentsList.jsx -------------------------------------------------------------------------------- /Dashboard/app/js/lib/components/forms/form-share/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/components/forms/form-share/index.jsx -------------------------------------------------------------------------------- /Dashboard/app/js/lib/components/forms/form-share/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/components/forms/form-share/style.scss -------------------------------------------------------------------------------- /Dashboard/app/js/lib/components/reusable/Checkbox/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/components/reusable/Checkbox/index.jsx -------------------------------------------------------------------------------- /Dashboard/app/js/lib/components/reusable/Dropdown/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/components/reusable/Dropdown/index.jsx -------------------------------------------------------------------------------- /Dashboard/app/js/lib/components/reusable/Modal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/components/reusable/Modal/index.jsx -------------------------------------------------------------------------------- /Dashboard/app/js/lib/components/reusable/Modal/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/components/reusable/Modal/style.scss -------------------------------------------------------------------------------- /Dashboard/app/js/lib/components/reusable/Tooltip/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/components/reusable/Tooltip/index.jsx -------------------------------------------------------------------------------- /Dashboard/app/js/lib/components/reusable/Tooltip/style.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dashboard/app/js/lib/components/stats/NewStats.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/components/stats/NewStats.jsx -------------------------------------------------------------------------------- /Dashboard/app/js/lib/components/stats/StatsLists.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/components/stats/StatsLists.jsx -------------------------------------------------------------------------------- /Dashboard/app/js/lib/controllers/controllers-public.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/controllers/controllers-public.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/controllers/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/controllers/controllers.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/controllers/data-controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/controllers/data-controllers.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/controllers/device-controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/controllers/device-controllers.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/controllers/languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/controllers/languages.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/controllers/maps-controllers-common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/controllers/maps-controllers-common.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/controllers/messages-controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/controllers/messages-controllers.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/controllers/permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/controllers/permissions.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/controllers/reports-controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/controllers/reports-controllers.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/controllers/survey-controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/controllers/survey-controllers.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/controllers/survey-selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/controllers/survey-selection.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/controllers/user-controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/controllers/user-controllers.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/core-common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/core-common.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/main-public.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/main-public.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/main.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/mixins/observe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/mixins/observe.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/mixins/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/mixins/template.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/models/FLOWrest-adapter-v2-common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/models/FLOWrest-adapter-v2-common.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/models/models-public.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/models/models-public.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/models/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/models/models.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/models/store_def-common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/models/store_def-common.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/router/router-public.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/router/router-public.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/router/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/router/router.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/tooltip.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/utils/index.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/version.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/views/data/bulk-upload-images-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/views/data/bulk-upload-images-view.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/views/data/bulk-upload-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/views/data/bulk-upload-view.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/views/data/cascade-resources-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/views/data/cascade-resources-view.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/views/data/data-approval-views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/views/data/data-approval-views.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/views/data/inspect-data-table-views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/views/data/inspect-data-table-views.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/views/data/question-answer-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/views/data/question-answer-view.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/views/devices/devices-views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/views/devices/devices-views.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/views/devices/survey-bootstrap-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/views/devices/survey-bootstrap-view.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/views/maps/map-views-common-public.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/views/maps/map-views-common-public.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/views/maps/map-views-common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/views/maps/map-views-common.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/views/messages/message-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/views/messages/message-view.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/views/react-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/views/react-component.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/views/reports/export-reports-views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/views/reports/export-reports-views.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/views/reports/report-views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/views/reports/report-views.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/views/stats/new-stats.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/views/stats/new-stats.jsx -------------------------------------------------------------------------------- /Dashboard/app/js/lib/views/stats/stats-lists.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/views/stats/stats-lists.jsx -------------------------------------------------------------------------------- /Dashboard/app/js/lib/views/surveys/form-share.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/views/surveys/form-share.jsx -------------------------------------------------------------------------------- /Dashboard/app/js/lib/views/surveys/form-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/views/surveys/form-view.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/views/surveys/notifications-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/views/surveys/notifications-view.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/views/surveys/offline-state.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/views/surveys/offline-state.jsx -------------------------------------------------------------------------------- /Dashboard/app/js/lib/views/surveys/preview-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/views/surveys/preview-view.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/views/surveys/question-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/views/surveys/question-view.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/views/surveys/survey-details-views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/views/surveys/survey-details-views.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/views/surveys/survey-group-views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/views/surveys/survey-group-views.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/views/surveys/translations-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/views/surveys/translations-view.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/views/views-public.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/views/views-public.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/views/views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/views/views.js -------------------------------------------------------------------------------- /Dashboard/app/js/lib/webpack-public-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/lib/webpack-public-path.js -------------------------------------------------------------------------------- /Dashboard/app/js/plugins/flowDashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/plugins/flowDashboard.js -------------------------------------------------------------------------------- /Dashboard/app/js/plugins/geocells.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/plugins/geocells.js -------------------------------------------------------------------------------- /Dashboard/app/js/plugins/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/plugins/loader.js -------------------------------------------------------------------------------- /Dashboard/app/js/templates/application/footer.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/templates/application/footer.handlebars -------------------------------------------------------------------------------- /Dashboard/app/js/templates/navData/bulk-upload.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/templates/navData/bulk-upload.handlebars -------------------------------------------------------------------------------- /Dashboard/app/js/templates/navData/data-cleaning.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/templates/navData/data-cleaning.handlebars -------------------------------------------------------------------------------- /Dashboard/app/js/templates/navData/data-subnav.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/templates/navData/data-subnav.handlebars -------------------------------------------------------------------------------- /Dashboard/app/js/templates/navData/inspect-data.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/templates/navData/inspect-data.handlebars -------------------------------------------------------------------------------- /Dashboard/app/js/templates/navData/nav-data.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/templates/navData/nav-data.handlebars -------------------------------------------------------------------------------- /Dashboard/app/js/templates/navMaps/geoshape-map.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/templates/navMaps/geoshape-map.handlebars -------------------------------------------------------------------------------- /Dashboard/app/js/templates/navReports/report.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/templates/navReports/report.handlebars -------------------------------------------------------------------------------- /Dashboard/app/js/templates/navStats/new-stats.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/templates/navStats/new-stats.handlebars -------------------------------------------------------------------------------- /Dashboard/app/js/templates/navStats/stats-list.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/templates/navStats/stats-list.handlebars -------------------------------------------------------------------------------- /Dashboard/app/js/templates/navSurveys/form.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/templates/navSurveys/form.handlebars -------------------------------------------------------------------------------- /Dashboard/app/js/templates/navSurveys/project.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/templates/navSurveys/project.handlebars -------------------------------------------------------------------------------- /Dashboard/app/js/templates/navUsers/nav-users.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/templates/navUsers/nav-users.handlebars -------------------------------------------------------------------------------- /Dashboard/app/js/tests/core_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/tests/core_tests.js -------------------------------------------------------------------------------- /Dashboard/app/js/tests/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/tests/setupTests.js -------------------------------------------------------------------------------- /Dashboard/app/js/vendor/Google.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/vendor/Google.js -------------------------------------------------------------------------------- /Dashboard/app/js/vendor/Math.uuid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/vendor/Math.uuid.js -------------------------------------------------------------------------------- /Dashboard/app/js/vendor/d3.v2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/vendor/d3.v2.min.js -------------------------------------------------------------------------------- /Dashboard/app/js/vendor/ember-1.0.0.pre-2-36.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/vendor/ember-1.0.0.pre-2-36.js -------------------------------------------------------------------------------- /Dashboard/app/js/vendor/ember-1.0.0.pre-2-36.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/vendor/ember-1.0.0.pre-2-36.min.js -------------------------------------------------------------------------------- /Dashboard/app/js/vendor/ember-data-rev10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/vendor/ember-data-rev10.js -------------------------------------------------------------------------------- /Dashboard/app/js/vendor/ember-data-rev10.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/vendor/ember-data-rev10.min.js -------------------------------------------------------------------------------- /Dashboard/app/js/vendor/handlebars-1.0.rc.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/vendor/handlebars-1.0.rc.1.js -------------------------------------------------------------------------------- /Dashboard/app/js/vendor/iframeResizer.contentWindow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/vendor/iframeResizer.contentWindow.min.js -------------------------------------------------------------------------------- /Dashboard/app/js/vendor/iframeResizer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/vendor/iframeResizer.min.js -------------------------------------------------------------------------------- /Dashboard/app/js/vendor/jquery-1.8.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/vendor/jquery-1.8.2.min.js -------------------------------------------------------------------------------- /Dashboard/app/js/vendor/jquery-ui-1.8.21.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/vendor/jquery-ui-1.8.21.custom.js -------------------------------------------------------------------------------- /Dashboard/app/js/vendor/jquery.dataTables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/vendor/jquery.dataTables.js -------------------------------------------------------------------------------- /Dashboard/app/js/vendor/resumable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/vendor/resumable.js -------------------------------------------------------------------------------- /Dashboard/app/js/vendor/resumable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/vendor/resumable.min.js -------------------------------------------------------------------------------- /Dashboard/app/js/vendor/underscore-1.4.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/vendor/underscore-1.4.2.min.js -------------------------------------------------------------------------------- /Dashboard/app/js/vendor/underscore.string-2.3.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/js/vendor/underscore.string-2.3.0.min.js -------------------------------------------------------------------------------- /Dashboard/app/public.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/public.ejs -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/Arvo-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/Arvo-Bold-webfont.eot -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/Arvo-Bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/Arvo-Bold-webfont.svg -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/Arvo-Bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/Arvo-Bold-webfont.ttf -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/Arvo-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/Arvo-Bold-webfont.woff -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/Arvo-BoldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/Arvo-BoldItalic-webfont.eot -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/Arvo-BoldItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/Arvo-BoldItalic-webfont.svg -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/Arvo-BoldItalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/Arvo-BoldItalic-webfont.ttf -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/Arvo-BoldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/Arvo-BoldItalic-webfont.woff -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/Arvo-Italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/Arvo-Italic-webfont.eot -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/Arvo-Italic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/Arvo-Italic-webfont.svg -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/Arvo-Italic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/Arvo-Italic-webfont.ttf -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/Arvo-Italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/Arvo-Italic-webfont.woff -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/Arvo-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/Arvo-Regular-webfont.eot -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/Arvo-Regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/Arvo-Regular-webfont.svg -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/Arvo-Regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/Arvo-Regular-webfont.ttf -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/Arvo-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/Arvo-Regular-webfont.woff -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/Podkova-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/Podkova-Regular-webfont.eot -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/Podkova-Regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/Podkova-Regular-webfont.svg -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/Podkova-Regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/Podkova-Regular-webfont.ttf -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/Podkova-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/Podkova-Regular-webfont.woff -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/Rokkitt-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/Rokkitt-webfont.eot -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/Rokkitt-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/Rokkitt-webfont.svg -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/Rokkitt-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/Rokkitt-webfont.ttf -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/Rokkitt-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/Rokkitt-webfont.woff -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/StMarie-Thin-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/StMarie-Thin-webfont.eot -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/StMarie-Thin-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/StMarie-Thin-webfont.svg -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/StMarie-Thin-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/StMarie-Thin-webfont.ttf -------------------------------------------------------------------------------- /Dashboard/app/static/fonts/StMarie-Thin-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/fonts/StMarie-Thin-webfont.woff -------------------------------------------------------------------------------- /Dashboard/app/static/images/AkvoLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/AkvoLogo.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/D4D111337E702C1A._t_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/D4D111337E702C1A._t_ -------------------------------------------------------------------------------- /Dashboard/app/static/images/Export01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/Export01.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/Export02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/Export02.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/Export03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/Export03.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/Export04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/Export04.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/Export05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/Export05.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/FieldSetSep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/FieldSetSep.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconAPI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconAPI.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconAPIOrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconAPIOrange.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconAddGroup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconAddGroup.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconAddGroupOrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconAddGroupOrange.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconBack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconBack.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconBackOrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconBackOrange.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconCancelFolder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconCancelFolder.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconCancelFolderHover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconCancelFolderHover.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconCascadeWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconCascadeWhite.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconCopy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconCopy.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconCopyGrey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconCopyGrey.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconCopyOrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconCopyOrange.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconDelete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconDelete.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconDeleteOrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconDeleteOrange.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconEdit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconEdit.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconEditGrey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconEditGrey.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconEditGreyLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconEditGreyLight.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconEditOrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconEditOrange.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconFormPub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconFormPub.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconFormPubOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconFormPubOrange.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconForms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconForms.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconForms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconForms.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconFormsBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconFormsBlack.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconFormsOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconFormsOrange.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconFormsWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconFormsWhite.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconImportWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconImportWhite.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconInsert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconInsert.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconInsertOrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconInsertOrange.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconLeftBlue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconLeftBlue.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconLeftOrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconLeftOrange.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconLeftWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconLeftWhite.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconMonitorEnable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconMonitorEnable.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconMove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconMove.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconMoveOrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconMoveOrange.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconMoveWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconMoveWhite.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconNotif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconNotif.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconNotifOrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconNotifOrange.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconPlus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconPlus.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconPlusOrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconPlusOrange.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconPlusWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconPlusWhite.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconPreview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconPreview.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconPreviewOrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconPreviewOrange.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconPreviewOrange_big.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconPreviewOrange_big.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconPreview_big.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconPreview_big.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconPublish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconPublish.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconPublishOrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconPublishOrange.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconPublishWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconPublishWhite.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconRightBlue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconRightBlue.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconRightOrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconRightOrange.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconRightWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconRightWhite.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconSave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconSave.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconSaveOrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconSaveOrange.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconSaveWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconSaveWhite.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconShow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconShow.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconShowHover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconShowHover.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconShowOrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconShowOrange.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconTranslate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconTranslate.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconTranslateOrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconTranslateOrange.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/IconTrashGrey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/IconTrashGrey.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/aSurveyNavSep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/aSurveyNavSep.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/addPlus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/addPlus.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/addSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/addSet.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/addbtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/addbtn.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/akvo.orgLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/akvo.orgLogo.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/akvo.org_footer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/akvo.org_footer1.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/akvoFlowLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/akvoFlowLogo.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/akvoFlowLogo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/akvoFlowLogo2.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/apiList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/apiList.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/apostrophe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/apostrophe.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/borderMiddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/borderMiddle.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/breadCrumb-Root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/breadCrumb-Root.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/breadCrumb-last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/breadCrumb-last.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/breadCrumb-leftSide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/breadCrumb-leftSide.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/breadCrumb-rightSide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/breadCrumb-rightSide.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/carret.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/carret.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/carretFolder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/carretFolder.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/carretFolderSelected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/carretFolderSelected.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/carretFolderSelectedWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/carretFolderSelectedWhite.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/closeDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/closeDialog.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/dataPointing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/dataPointing.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/editList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/editList.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/editTinyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/editTinyIcon.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/folderIcn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/folderIcn.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/folderIcnEmpty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/folderIcnEmpty.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/folderSelectBullet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/folderSelectBullet.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/folderUp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/folderUp.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/folderUpHover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/folderUpHover.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/gdpr01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/gdpr01.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/gdpr02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/gdpr02.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/gdpr03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/gdpr03.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/gdprStep01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/gdprStep01.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/gdprStep02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/gdprStep02.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/gdprStep03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/gdprStep03.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/infolnc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/infolnc.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/infolnc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/infolnc.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/insertGroupIcn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/insertGroupIcn.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/insertQuestion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/insertQuestion.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/invisible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/invisible.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/loader.gif -------------------------------------------------------------------------------- /Dashboard/app/static/images/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/loading.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/lowerCorner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/lowerCorner.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/mapPointDetailSep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/mapPointDetailSep.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/mapSlider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/mapSlider.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/maps/blueMarker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/maps/blueMarker.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/maps/redMarker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/maps/redMarker.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/marker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/marker.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/media-marker-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/media-marker-selected.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/media-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/media-marker.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/menu-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/menu-icon.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/mngNotificationIcn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/mngNotificationIcn.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/navSeparator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/navSeparator.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/nextBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/nextBtn.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/pause.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/removeList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/removeList.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/resume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/resume.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/scrollDown.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/scrollUp.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/search-icon.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/selectArrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/selectArrows.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/selectFolder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/selectFolder.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/selectIndictr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/selectIndictr.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/sepHorDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/sepHorDark.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/showQuestion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/showQuestion.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/shownCollapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/shownCollapse.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/sortTableArrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/sortTableArrows.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/sortTableDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/sortTableDown.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/sortTableUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/sortTableUp.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/surveyGroupBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/surveyGroupBg.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/surveySeperator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/surveySeperator.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/tabBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/tabBG.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/tabBGinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/tabBGinactive.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/tickBox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/tickBox.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/topbarSeperator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/topbarSeperator.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/topnavAdmin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/topnavAdmin.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/topnavAdminOrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/topnavAdminOrange.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/topnavDashboards.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/topnavDashboards.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/topnavDashboardsOrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/topnavDashboardsOrange.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/topnavData.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/topnavData.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/topnavDataOrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/topnavDataOrange.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/topnavDevices.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/topnavDevices.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/topnavDevicesOrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/topnavDevicesOrange.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/topnavMaps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/topnavMaps.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/topnavMapsOrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/topnavMapsOrange.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/topnavMessages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/topnavMessages.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/topnavMessagesOrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/topnavMessagesOrange.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/topnavReports.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/topnavReports.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/topnavReportsOrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/topnavReportsOrange.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/topnavSurveys.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/topnavSurveys.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/topnavSurveysOrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/topnavSurveysOrange.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/topnavSurveysWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/topnavSurveysWhite.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/topnavUsers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/topnavUsers.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/topnavUsersOrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/topnavUsersOrange.svg -------------------------------------------------------------------------------- /Dashboard/app/static/images/up-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/up-arrow.png -------------------------------------------------------------------------------- /Dashboard/app/static/images/whiteBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/whiteBg.jpg -------------------------------------------------------------------------------- /Dashboard/app/static/images/zipIcn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/app/static/images/zipIcn.svg -------------------------------------------------------------------------------- /Dashboard/jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/jest.config.json -------------------------------------------------------------------------------- /Dashboard/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/package-lock.json -------------------------------------------------------------------------------- /Dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/package.json -------------------------------------------------------------------------------- /Dashboard/scripts/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/scripts/.eslintrc -------------------------------------------------------------------------------- /Dashboard/scripts/buildDev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/scripts/buildDev.js -------------------------------------------------------------------------------- /Dashboard/scripts/buildProd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/scripts/buildProd.js -------------------------------------------------------------------------------- /Dashboard/scripts/buildUsersCss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/scripts/buildUsersCss.js -------------------------------------------------------------------------------- /Dashboard/scripts/chalkConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/scripts/chalkConfig.js -------------------------------------------------------------------------------- /Dashboard/scripts/checkEslintInstalled.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/scripts/checkEslintInstalled.sh -------------------------------------------------------------------------------- /Dashboard/tests/casperjs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/tests/casperjs/Readme.md -------------------------------------------------------------------------------- /Dashboard/tests/casperjs/flow_bulkUpload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/tests/casperjs/flow_bulkUpload.js -------------------------------------------------------------------------------- /Dashboard/tests/casperjs/flow_createAssignment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/tests/casperjs/flow_createAssignment.js -------------------------------------------------------------------------------- /Dashboard/tests/casperjs/flow_deviceIdentification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/tests/casperjs/flow_deviceIdentification.js -------------------------------------------------------------------------------- /Dashboard/tests/casperjs/flow_importUpdateSurvey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/tests/casperjs/flow_importUpdateSurvey.js -------------------------------------------------------------------------------- /Dashboard/tests/casperjs/flow_manageDevices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/tests/casperjs/flow_manageDevices.js -------------------------------------------------------------------------------- /Dashboard/tests/casperjs/flow_sandbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/tests/casperjs/flow_sandbox.js -------------------------------------------------------------------------------- /Dashboard/tests/casperjs/flow_template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/tests/casperjs/flow_template.js -------------------------------------------------------------------------------- /Dashboard/tests/casperjs/importdata.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/tests/casperjs/importdata.feature -------------------------------------------------------------------------------- /Dashboard/tests/casperjs/lib/flow_getCase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/tests/casperjs/lib/flow_getCase.js -------------------------------------------------------------------------------- /Dashboard/tests/casperjs/lib/loginGAE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/tests/casperjs/lib/loginGAE.js -------------------------------------------------------------------------------- /Dashboard/tests/casperjs/lib/loginTestrail.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dashboard/tests/casperjs/lib/testrailPost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/tests/casperjs/lib/testrailPost.js -------------------------------------------------------------------------------- /Dashboard/tests/casperjs/screenshots/evaluate-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/tests/casperjs/screenshots/evaluate-diagram.png -------------------------------------------------------------------------------- /Dashboard/tests/casperjs/surveys/SURVEY_FORM-2205003.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/tests/casperjs/surveys/SURVEY_FORM-2205003.xls -------------------------------------------------------------------------------- /Dashboard/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/tests/index.html -------------------------------------------------------------------------------- /Dashboard/tests/qunit/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/tests/qunit/qunit.css -------------------------------------------------------------------------------- /Dashboard/tests/qunit/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/tests/qunit/qunit.js -------------------------------------------------------------------------------- /Dashboard/tests/run-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/tests/run-tests.js -------------------------------------------------------------------------------- /Dashboard/update_ui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/update_ui.sh -------------------------------------------------------------------------------- /Dashboard/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/webpack.config.dev.js -------------------------------------------------------------------------------- /Dashboard/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/webpack.config.prod.js -------------------------------------------------------------------------------- /Dashboard/webpack.config.public.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/webpack.config.public.dev.js -------------------------------------------------------------------------------- /Dashboard/webpack.config.public.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/Dashboard/webpack.config.public.prod.js -------------------------------------------------------------------------------- /GAE/License/ConsolidatedLicenses.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/License/ConsolidatedLicenses.xlsx -------------------------------------------------------------------------------- /GAE/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/NOTICE -------------------------------------------------------------------------------- /GAE/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/README -------------------------------------------------------------------------------- /GAE/appletBuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/appletBuild.xml -------------------------------------------------------------------------------- /GAE/build.properties.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/build.properties.template -------------------------------------------------------------------------------- /GAE/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/build.xml -------------------------------------------------------------------------------- /GAE/docs/Report_process.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/docs/Report_process.pu -------------------------------------------------------------------------------- /GAE/gwtlibs/gwt-dnd-3.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/gwtlibs/gwt-dnd-3.0.1.jar -------------------------------------------------------------------------------- /GAE/gwtlibs/gwt-maps.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/gwtlibs/gwt-maps.jar -------------------------------------------------------------------------------- /GAE/gwtlibs/gwt-visualization.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/gwtlibs/gwt-visualization.jar -------------------------------------------------------------------------------- /GAE/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/pom.xml -------------------------------------------------------------------------------- /GAE/src/META-INF/jdoconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/META-INF/jdoconfig.xml -------------------------------------------------------------------------------- /GAE/src/com/beoui/geocell/GeocellManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/beoui/geocell/GeocellManager.java -------------------------------------------------------------------------------- /GAE/src/com/beoui/geocell/GeocellUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/beoui/geocell/GeocellUtils.java -------------------------------------------------------------------------------- /GAE/src/com/beoui/geocell/model/BoundingBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/beoui/geocell/model/BoundingBox.java -------------------------------------------------------------------------------- /GAE/src/com/beoui/geocell/model/Point.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/beoui/geocell/model/Point.java -------------------------------------------------------------------------------- /GAE/src/com/beoui/geocell/model/Tuple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/beoui/geocell/model/Tuple.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/common/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/common/Constants.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/common/util/CSVUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/common/util/CSVUtil.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/common/util/DateUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/common/util/DateUtil.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/common/util/FileUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/common/util/FileUtil.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/common/util/HttpUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/common/util/HttpUtil.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/common/util/ImageUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/common/util/ImageUtil.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/common/util/MD5Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/common/util/MD5Util.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/common/util/MailUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/common/util/MailUtil.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/common/util/MappableField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/common/util/MappableField.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/common/util/MemCacheUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/common/util/MemCacheUtils.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/common/util/PropertyUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/common/util/PropertyUtil.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/common/util/S3Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/common/util/S3Util.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/common/util/StringUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/common/util/StringUtil.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/common/util/VelocityUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/common/util/VelocityUtil.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/common/util/ZipUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/common/util/ZipUtil.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/device/dao/DeviceDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/device/dao/DeviceDAO.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/device/dao/DeviceGroupDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/device/dao/DeviceGroupDAO.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/device/domain/Device.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/device/domain/Device.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/device/domain/DeviceFiles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/device/domain/DeviceFiles.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/device/domain/DeviceGroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/device/domain/DeviceGroup.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/framework/dao/BaseDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/framework/dao/BaseDAO.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/framework/rest/RestError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/framework/rest/RestError.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/framework/rest/RestRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/framework/rest/RestRequest.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/gis/location/GeoPlace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/gis/location/GeoPlace.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/gis/location/GeoPlaces.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/gis/location/GeoPlaces.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/gis/map/dao/MapControlDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/gis/map/dao/MapControlDao.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/gis/map/dao/MapFragmentDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/gis/map/dao/MapFragmentDao.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/gis/map/dao/OGRFeatureDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/gis/map/dao/OGRFeatureDao.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/gis/map/domain/Coordinate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/gis/map/domain/Coordinate.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/gis/map/domain/GeoMeasure.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/gis/map/domain/GeoMeasure.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/gis/map/domain/Geometry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/gis/map/domain/Geometry.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/gis/map/domain/MapControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/gis/map/domain/MapControl.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/gis/map/domain/MapFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/gis/map/domain/MapFragment.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/image/GAEImageAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/image/GAEImageAdapter.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/image/ImageUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/image/ImageUtils.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/survey/dao/QuestionDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/survey/dao/QuestionDao.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/survey/dao/SurveyDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/survey/dao/SurveyDAO.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/survey/dao/SurveyUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/survey/dao/SurveyUtils.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/survey/domain/Question.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/survey/domain/Question.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/survey/domain/Survey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/survey/domain/Survey.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/survey/domain/WebForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/survey/domain/WebForm.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/task/dao/TaskDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/task/dao/TaskDao.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/task/domain/Task.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/task/domain/Task.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/task/helper/TaskHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/task/helper/TaskHelper.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/user/dao/UserDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/user/dao/UserDao.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/user/dao/UserRoleDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/user/dao/UserRoleDao.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/user/domain/Permission.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/user/domain/Permission.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/user/domain/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/user/domain/User.java -------------------------------------------------------------------------------- /GAE/src/com/gallatinsystems/user/domain/UserRole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/gallatinsystems/user/domain/UserRole.java -------------------------------------------------------------------------------- /GAE/src/com/ibm/util/CoordinateConversion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/com/ibm/util/CoordinateConversion.java -------------------------------------------------------------------------------- /GAE/src/locale/en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/locale/en.properties -------------------------------------------------------------------------------- /GAE/src/locale/es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/locale/es.properties -------------------------------------------------------------------------------- /GAE/src/locale/fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/locale/fr.properties -------------------------------------------------------------------------------- /GAE/src/locale/id.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/locale/id.properties -------------------------------------------------------------------------------- /GAE/src/locale/pt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/locale/pt.properties -------------------------------------------------------------------------------- /GAE/src/locale/ui-strings.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/locale/ui-strings.properties -------------------------------------------------------------------------------- /GAE/src/locale/vi.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/locale/vi.properties -------------------------------------------------------------------------------- /GAE/src/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/log4j.properties -------------------------------------------------------------------------------- /GAE/src/org/akvo/AkvoColours.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/AkvoColours.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/api/app/DataPointOnlyServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/api/app/DataPointOnlyServlet.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/api/app/DataPointRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/api/app/DataPointRequest.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/api/app/DataPointResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/api/app/DataPointResponse.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/api/app/DataPointServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/api/app/DataPointServlet.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/api/app/DataPointUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/api/app/DataPointUtil.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/api/app/FormInstanceResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/api/app/FormInstanceResponse.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/api/app/FormInstanceUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/api/app/FormInstanceUtil.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/api/app/SurveyedLocaleRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/api/app/SurveyedLocaleRequest.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/api/app/SurveyedLocaleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/api/app/SurveyedLocaleServlet.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/api/app/WebFormRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/api/app/WebFormRequest.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/api/app/WebFormServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/api/app/WebFormServlet.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/api/export/DataBackoutServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/api/export/DataBackoutServlet.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/api/export/SurveyRestResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/api/export/SurveyRestResponse.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/api/export/SurveyRestServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/api/export/SurveyRestServlet.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/dao/DataPointAssignmentDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/dao/DataPointAssignmentDao.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/dao/MessageDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/dao/MessageDao.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/dao/ReportDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/dao/ReportDao.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/dao/SurveyAssignmentDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/dao/SurveyAssignmentDao.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/domain/DataUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/domain/DataUtils.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/domain/FormSubmissionsLimit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/domain/FormSubmissionsLimit.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/domain/Message.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/domain/Message.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/domain/RootFolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/domain/RootFolder.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/domain/SecuredObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/domain/SecuredObject.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/domain/persistent/Report.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/domain/persistent/Report.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/events/EventLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/events/EventLogger.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/events/EventQueue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/events/EventQueue.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/events/EventUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/events/EventUtils.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/locale/UIStrings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/locale/UIStrings.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/rest/ImageUploadRestService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/rest/ImageUploadRestService.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/rest/MessageRestService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/rest/MessageRestService.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/rest/ReportRestService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/rest/ReportRestService.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/rest/dto/MessageDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/rest/dto/MessageDto.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/rest/dto/ReportDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/rest/dto/ReportDto.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/rest/dto/ReportPayload.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/rest/dto/ReportPayload.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/rest/dto/ReportTaskRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/rest/dto/ReportTaskRequest.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/rest/dto/SurveyAssignmentDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/rest/dto/SurveyAssignmentDto.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/rest/form/FormAssembler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/rest/form/FormAssembler.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/rest/form/FormMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/rest/form/FormMapper.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/rest/form/FormUploadXml.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/rest/form/FormUploadXml.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/rest/form/QuestionGroupMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/rest/form/QuestionGroupMapper.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/rest/form/QuestionMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/rest/form/QuestionMapper.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/rest/form/XmlFormAssembler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/rest/form/XmlFormAssembler.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/rest/security/AppRole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/rest/security/AppRole.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/rest/security/RequestUriVoter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/rest/security/RequestUriVoter.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/rest/security/oidc/AppConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/rest/security/oidc/AppConfig.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/rest/security/oidc/EntryPoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/rest/security/oidc/EntryPoint.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/rest/security/user/GaeUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/rest/security/user/GaeUser.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/servlet/ReportServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/servlet/ReportServlet.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/util/ExifTagExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/util/ExifTagExtractor.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/util/ExifTagInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/util/ExifTagInfo.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/util/FileResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/util/FileResponse.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/util/FlowJsonObjectReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/util/FlowJsonObjectReader.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/util/FlowJsonObjectWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/util/FlowJsonObjectWriter.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/util/JFreechartChartUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/util/JFreechartChartUtil.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/util/OneTimePadCypher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/util/OneTimePadCypher.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/xml/PublishedForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/xml/PublishedForm.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/xml/XmlAltText.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/xml/XmlAltText.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/xml/XmlDependency.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/xml/XmlDependency.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/xml/XmlForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/xml/XmlForm.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/xml/XmlHelp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/xml/XmlHelp.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/xml/XmlLevel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/xml/XmlLevel.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/xml/XmlOption.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/xml/XmlOption.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/xml/XmlOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/xml/XmlOptions.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/xml/XmlQuestion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/xml/XmlQuestion.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/xml/XmlQuestionGroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/xml/XmlQuestionGroup.java -------------------------------------------------------------------------------- /GAE/src/org/akvo/flow/xml/XmlValidationRule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/akvo/flow/xml/XmlValidationRule.java -------------------------------------------------------------------------------- /GAE/src/org/waterforpeople/mapping/dao/CommunityDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/waterforpeople/mapping/dao/CommunityDao.java -------------------------------------------------------------------------------- /GAE/src/org/waterforpeople/mapping/dao/GeoIndexDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/waterforpeople/mapping/dao/GeoIndexDao.java -------------------------------------------------------------------------------- /GAE/src/org/waterforpeople/mapping/dao/GeoRegionDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/waterforpeople/mapping/dao/GeoRegionDAO.java -------------------------------------------------------------------------------- /GAE/src/org/waterforpeople/mapping/dao/KMLDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/waterforpeople/mapping/dao/KMLDAO.java -------------------------------------------------------------------------------- /GAE/src/org/waterforpeople/mapping/domain/Community.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/waterforpeople/mapping/domain/Community.java -------------------------------------------------------------------------------- /GAE/src/org/waterforpeople/mapping/domain/GeoRegion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/waterforpeople/mapping/domain/GeoRegion.java -------------------------------------------------------------------------------- /GAE/src/org/waterforpeople/mapping/domain/KML.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/waterforpeople/mapping/domain/KML.java -------------------------------------------------------------------------------- /GAE/src/org/waterforpeople/mapping/domain/Status.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/org/waterforpeople/mapping/domain/Status.java -------------------------------------------------------------------------------- /GAE/src/services/TranslationGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/src/services/TranslationGenerator.java -------------------------------------------------------------------------------- /GAE/test/org/akvo/flow/api/app/DataPointUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/test/org/akvo/flow/api/app/DataPointUtilTest.java -------------------------------------------------------------------------------- /GAE/test/org/akvo/flow/api/app/DataStoreTestUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/test/org/akvo/flow/api/app/DataStoreTestUtil.java -------------------------------------------------------------------------------- /GAE/test/org/akvo/flow/api/app/FormInstanceUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/test/org/akvo/flow/api/app/FormInstanceUtilTest.java -------------------------------------------------------------------------------- /GAE/test/org/akvo/flow/rest/form/QuestionMapperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/test/org/akvo/flow/rest/form/QuestionMapperTest.java -------------------------------------------------------------------------------- /GAE/test/org/akvo/flow/util/Base64Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/test/org/akvo/flow/util/Base64Test.java -------------------------------------------------------------------------------- /GAE/test/org/akvo/flow/util/OneTimePadCypherTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/test/org/akvo/flow/util/OneTimePadCypherTest.java -------------------------------------------------------------------------------- /GAE/test/org/akvo/flow/xml/FlowXmlObjectReaderTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/test/org/akvo/flow/xml/FlowXmlObjectReaderTests.java -------------------------------------------------------------------------------- /GAE/test/org/akvo/flow/xml/FlowXmlObjectWriterTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/test/org/akvo/flow/xml/FlowXmlObjectWriterTests.java -------------------------------------------------------------------------------- /GAE/test/org/akvo/flow/xml/XmlQuestionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/test/org/akvo/flow/xml/XmlQuestionTest.java -------------------------------------------------------------------------------- /GAE/war/CurrentUser.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/CurrentUser.vm -------------------------------------------------------------------------------- /GAE/war/Env.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/Env.vm -------------------------------------------------------------------------------- /GAE/war/WEB-INF/cron.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/WEB-INF/cron.xml -------------------------------------------------------------------------------- /GAE/war/WEB-INF/datastore-indexes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/WEB-INF/datastore-indexes.xml -------------------------------------------------------------------------------- /GAE/war/WEB-INF/dev-logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/WEB-INF/dev-logging.properties -------------------------------------------------------------------------------- /GAE/war/WEB-INF/logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/WEB-INF/logging.properties -------------------------------------------------------------------------------- /GAE/war/WEB-INF/oidcservlet-servlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/WEB-INF/oidcservlet-servlet.xml -------------------------------------------------------------------------------- /GAE/war/WEB-INF/queue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/WEB-INF/queue.xml -------------------------------------------------------------------------------- /GAE/war/WEB-INF/rest-servlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/WEB-INF/rest-servlet.xml -------------------------------------------------------------------------------- /GAE/war/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/WEB-INF/web.xml -------------------------------------------------------------------------------- /GAE/war/WEB-INF/webapp-security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/WEB-INF/webapp-security.xml -------------------------------------------------------------------------------- /GAE/war/auth0/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/auth0/error.html -------------------------------------------------------------------------------- /GAE/war/commons-beanutils-1.7.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/commons-beanutils-1.7.0.jar -------------------------------------------------------------------------------- /GAE/war/commons-pool-1.5.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/commons-pool-1.5.3.jar -------------------------------------------------------------------------------- /GAE/war/dom4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/dom4j-1.6.1.jar -------------------------------------------------------------------------------- /GAE/war/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/favicon.ico -------------------------------------------------------------------------------- /GAE/war/gdata-core-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/gdata-core-1.0.jar -------------------------------------------------------------------------------- /GAE/war/geoapi-2.3-M1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/geoapi-2.3-M1.jar -------------------------------------------------------------------------------- /GAE/war/geoapi-pending-2.3-M1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/geoapi-pending-2.3-M1.jar -------------------------------------------------------------------------------- /GAE/war/gt-api-2.6.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/gt-api-2.6.5.jar -------------------------------------------------------------------------------- /GAE/war/gt-metadata-2.6.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/gt-metadata-2.6.5.jar -------------------------------------------------------------------------------- /GAE/war/gt-shapefile-2.6.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/gt-shapefile-2.6.5.jar -------------------------------------------------------------------------------- /GAE/war/jcommon-1.0.16.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/jcommon-1.0.16.jar -------------------------------------------------------------------------------- /GAE/war/jdom-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/jdom-1.0.jar -------------------------------------------------------------------------------- /GAE/war/jfreechart-1.0.13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/jfreechart-1.0.13.jar -------------------------------------------------------------------------------- /GAE/war/jquery-1.4.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/jquery-1.4.2.min.js -------------------------------------------------------------------------------- /GAE/war/js/activatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/activatables.js -------------------------------------------------------------------------------- /GAE/war/js/flow-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/flow-script.js -------------------------------------------------------------------------------- /GAE/war/js/jqURL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/jqURL.js -------------------------------------------------------------------------------- /GAE/war/js/jquery-1.4.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/jquery-1.4.4.min.js -------------------------------------------------------------------------------- /GAE/war/js/jquery-1.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/jquery-1.5.1.js -------------------------------------------------------------------------------- /GAE/war/js/jquery-1.6.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/jquery-1.6.1.js -------------------------------------------------------------------------------- /GAE/war/js/jquery-ui-1.8.7.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/jquery-ui-1.8.7.custom.min.js -------------------------------------------------------------------------------- /GAE/war/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/jquery-ui.min.js -------------------------------------------------------------------------------- /GAE/war/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/jquery.min.js -------------------------------------------------------------------------------- /GAE/war/js/jscrollpane/jquery-1.6.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/jscrollpane/jquery-1.6.min.js -------------------------------------------------------------------------------- /GAE/war/js/jscrollpane/jquery.jscrollpane.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/jscrollpane/jquery.jscrollpane.min.js -------------------------------------------------------------------------------- /GAE/war/js/jscrollpane/jquery.mousewheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/jscrollpane/jquery.mousewheel.js -------------------------------------------------------------------------------- /GAE/war/js/jscrollpane/mwheelIntent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/jscrollpane/mwheelIntent.js -------------------------------------------------------------------------------- /GAE/war/js/legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/legend.js -------------------------------------------------------------------------------- /GAE/war/js/legend/demos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/legend/demos.js -------------------------------------------------------------------------------- /GAE/war/js/legend/jquery-ui-i18n.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/legend/jquery-ui-i18n.min.js -------------------------------------------------------------------------------- /GAE/war/js/legend/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/legend/jquery-ui.css -------------------------------------------------------------------------------- /GAE/war/js/legend/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/legend/jquery-ui.min.js -------------------------------------------------------------------------------- /GAE/war/js/legend/jquery.bgiframe-2.1.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/legend/jquery.bgiframe-2.1.2.js -------------------------------------------------------------------------------- /GAE/war/js/legend/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/legend/jquery.min.js -------------------------------------------------------------------------------- /GAE/war/js/legend/themeswitchertool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/legend/themeswitchertool.js -------------------------------------------------------------------------------- /GAE/war/js/smartinfowindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/smartinfowindow.js -------------------------------------------------------------------------------- /GAE/war/js/tooltip-public.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/tooltip-public.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery-ui-i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery-ui-i18n.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-af.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-ar.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-az.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-bg.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-bs.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-ca.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-cs.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-da.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-de.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-el.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-en-GB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-en-GB.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-eo.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-es.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-et.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-eu.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-fa.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-fi.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-fo.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-fr-CH.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-fr-CH.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-fr.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-gl.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-he.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-hr.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-hu.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-hy.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-id.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-is.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-it.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-ja.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-ko.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-kz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-kz.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-lt.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-lv.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-ms.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-nl.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-no.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-pl.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-pt-BR.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-pt.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-rm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-rm.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-ro.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-ru.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-sk.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-sl.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-sq.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-sr-SR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-sr-SR.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-sr.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-sv.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-ta.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-th.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-tr.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-uk.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-vi.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-zh-CN.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-zh-HK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-zh-HK.js -------------------------------------------------------------------------------- /GAE/war/js/ui/i18n/jquery.ui.datepicker-zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/i18n/jquery.ui.datepicker-zh-TW.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery-ui-1.8.7.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery-ui-1.8.7.custom.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.effects.blind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.effects.blind.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.effects.bounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.effects.bounce.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.effects.clip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.effects.clip.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.effects.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.effects.core.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.effects.drop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.effects.drop.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.effects.explode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.effects.explode.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.effects.fade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.effects.fade.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.effects.fold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.effects.fold.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.effects.highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.effects.highlight.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.effects.pulsate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.effects.pulsate.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.effects.scale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.effects.scale.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.effects.shake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.effects.shake.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.effects.slide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.effects.slide.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.effects.transfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.effects.transfer.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.ui.accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.ui.accordion.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.ui.autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.ui.autocomplete.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.ui.button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.ui.button.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.ui.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.ui.core.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.ui.datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.ui.datepicker.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.ui.dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.ui.dialog.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.ui.draggable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.ui.draggable.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.ui.droppable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.ui.droppable.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.ui.mouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.ui.mouse.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.ui.position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.ui.position.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.ui.progressbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.ui.progressbar.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.ui.resizable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.ui.resizable.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.ui.selectable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.ui.selectable.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.ui.slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.ui.slider.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.ui.sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.ui.sortable.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.ui.tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.ui.tabs.js -------------------------------------------------------------------------------- /GAE/war/js/ui/jquery.ui.widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/jquery.ui.widget.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.effects.blind.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.effects.blind.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.effects.bounce.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.effects.bounce.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.effects.clip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.effects.clip.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.effects.core.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.effects.core.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.effects.drop.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.effects.drop.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.effects.explode.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.effects.explode.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.effects.fade.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.effects.fade.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.effects.fold.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.effects.fold.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.effects.highlight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.effects.highlight.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.effects.pulsate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.effects.pulsate.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.effects.scale.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.effects.scale.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.effects.shake.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.effects.shake.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.effects.slide.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.effects.slide.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.effects.transfer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.effects.transfer.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.ui.accordion.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.ui.accordion.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.ui.autocomplete.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.ui.autocomplete.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.ui.button.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.ui.button.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.ui.core.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.ui.core.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.ui.datepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.ui.datepicker.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.ui.dialog.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.ui.dialog.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.ui.draggable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.ui.draggable.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.ui.droppable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.ui.droppable.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.ui.mouse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.ui.mouse.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.ui.position.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.ui.position.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.ui.progressbar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.ui.progressbar.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.ui.resizable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.ui.resizable.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.ui.selectable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.ui.selectable.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.ui.slider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.ui.slider.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.ui.sortable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.ui.sortable.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.ui.tabs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.ui.tabs.min.js -------------------------------------------------------------------------------- /GAE/war/js/ui/minified/jquery.ui.widget.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/ui/minified/jquery.ui.widget.min.js -------------------------------------------------------------------------------- /GAE/war/js/vendors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/js/vendors.js -------------------------------------------------------------------------------- /GAE/war/jsr-275-1.0-beta-2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/jsr-275-1.0-beta-2.jar -------------------------------------------------------------------------------- /GAE/war/jts-1.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/jts-1.10.jar -------------------------------------------------------------------------------- /GAE/war/jts-1.11-serializable-indexes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/jts-1.11-serializable-indexes.jar -------------------------------------------------------------------------------- /GAE/war/jtsio-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/jtsio-1.8.jar -------------------------------------------------------------------------------- /GAE/war/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/register.html -------------------------------------------------------------------------------- /GAE/war/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/robots.txt -------------------------------------------------------------------------------- /GAE/war/vecmath-1.3.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/vecmath-1.3.2.jar -------------------------------------------------------------------------------- /GAE/war/velocity-1.6.2-dep.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/war/velocity-1.6.2-dep.jar -------------------------------------------------------------------------------- /GAE/xml/survey.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/GAE/xml/survey.xsd -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /ci/bootstrap-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/ci/bootstrap-build.sh -------------------------------------------------------------------------------- /ci/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/ci/build.sh -------------------------------------------------------------------------------- /ci/check-property-encoding.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/ci/check-property-encoding.sh -------------------------------------------------------------------------------- /ci/clojars-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/ci/clojars-deploy.sh -------------------------------------------------------------------------------- /ci/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/ci/deploy.sh -------------------------------------------------------------------------------- /ci/devserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/ci/devserver.sh -------------------------------------------------------------------------------- /ci/flip-production-traffic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/ci/flip-production-traffic.sh -------------------------------------------------------------------------------- /ci/mvn-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/ci/mvn-deploy.sh -------------------------------------------------------------------------------- /ci/promote-test-to-prod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/ci/promote-test-to-prod.sh -------------------------------------------------------------------------------- /ci/run-as-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/ci/run-as-user.sh -------------------------------------------------------------------------------- /dev-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/dev-deploy.sh -------------------------------------------------------------------------------- /doc/dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/doc/dev.md -------------------------------------------------------------------------------- /docker-compose.together.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/docker-compose.together.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/jsconfig.json -------------------------------------------------------------------------------- /maven-ci-settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/maven-ci-settings.xml -------------------------------------------------------------------------------- /scripts/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/Readme.md -------------------------------------------------------------------------------- /scripts/data/add_dev_environment_users.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/add_dev_environment_users.sh -------------------------------------------------------------------------------- /scripts/data/add_initial_admin_users.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/add_initial_admin_users.sh -------------------------------------------------------------------------------- /scripts/data/add_users.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/add_users.sh -------------------------------------------------------------------------------- /scripts/data/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/build.xml -------------------------------------------------------------------------------- /scripts/data/check-datapoint-location.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/check-datapoint-location.sh -------------------------------------------------------------------------------- /scripts/data/check-missing-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/check-missing-files.sh -------------------------------------------------------------------------------- /scripts/data/check-survey-structure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/check-survey-structure.sh -------------------------------------------------------------------------------- /scripts/data/check_options.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/check_options.sh -------------------------------------------------------------------------------- /scripts/data/correct_folder_survey_path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/correct_folder_survey_path.sh -------------------------------------------------------------------------------- /scripts/data/count-forminstances.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/count-forminstances.sh -------------------------------------------------------------------------------- /scripts/data/delete-kind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/delete-kind.sh -------------------------------------------------------------------------------- /scripts/data/delete-repeat-iterations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/delete-repeat-iterations.sh -------------------------------------------------------------------------------- /scripts/data/delete_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/delete_data.sh -------------------------------------------------------------------------------- /scripts/data/delete_users.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/delete_users.sh -------------------------------------------------------------------------------- /scripts/data/dev_environment_users.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/dev_environment_users.csv -------------------------------------------------------------------------------- /scripts/data/export_auth_data_to_event_log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/export_auth_data_to_event_log.sh -------------------------------------------------------------------------------- /scripts/data/find-folder-forms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/find-folder-forms.sh -------------------------------------------------------------------------------- /scripts/data/find_question_responses.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/find_question_responses.sh -------------------------------------------------------------------------------- /scripts/data/fix-device-file-job-queue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/fix-device-file-job-queue.sh -------------------------------------------------------------------------------- /scripts/data/fix-old-translations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/fix-old-translations.sh -------------------------------------------------------------------------------- /scripts/data/fix-question-dependency.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/fix-question-dependency.sh -------------------------------------------------------------------------------- /scripts/data/fix-surveyed-locale.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/fix-surveyed-locale.sh -------------------------------------------------------------------------------- /scripts/data/fix_imagecheck_queue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/fix_imagecheck_queue.sh -------------------------------------------------------------------------------- /scripts/data/instance_with_webforms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/instance_with_webforms.sh -------------------------------------------------------------------------------- /scripts/data/instance_with_webforms_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/instance_with_webforms_all.sh -------------------------------------------------------------------------------- /scripts/data/lets-encrypt-app-url.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/lets-encrypt-app-url.sh -------------------------------------------------------------------------------- /scripts/data/lib/appengine-api-1.0-sdk-1.9.77.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/lib/appengine-api-1.0-sdk-1.9.77.jar -------------------------------------------------------------------------------- /scripts/data/lib/appengine-api-labs-1.8.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/lib/appengine-api-labs-1.8.8.jar -------------------------------------------------------------------------------- /scripts/data/lib/appengine-jsr107cache-1.8.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/lib/appengine-jsr107cache-1.8.8.jar -------------------------------------------------------------------------------- /scripts/data/lib/appengine-remote-api-1.9.30.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/lib/appengine-remote-api-1.9.30.jar -------------------------------------------------------------------------------- /scripts/data/lib/commons-lang-2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/lib/commons-lang-2.4.jar -------------------------------------------------------------------------------- /scripts/data/lib/guava-18.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/lib/guava-18.0.jar -------------------------------------------------------------------------------- /scripts/data/lib/jackson-annotations-2.9.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/lib/jackson-annotations-2.9.9.jar -------------------------------------------------------------------------------- /scripts/data/lib/jackson-core-2.9.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/lib/jackson-core-2.9.9.jar -------------------------------------------------------------------------------- /scripts/data/lib/jackson-databind-2.9.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/lib/jackson-databind-2.9.9.jar -------------------------------------------------------------------------------- /scripts/data/lib/jsr107cache-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/lib/jsr107cache-1.1.jar -------------------------------------------------------------------------------- /scripts/data/lib/log4j-1.2.12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/lib/log4j-1.2.12.jar -------------------------------------------------------------------------------- /scripts/data/lib/postgresql-9.4-1201.jdbc4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/lib/postgresql-9.4-1201.jdbc4.jar -------------------------------------------------------------------------------- /scripts/data/print-tree-structure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/print-tree-structure.sh -------------------------------------------------------------------------------- /scripts/data/public_private_instance_count.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/public_private_instance_count.sh -------------------------------------------------------------------------------- /scripts/data/remove_orphaned_answers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/remove_orphaned_answers.sh -------------------------------------------------------------------------------- /scripts/data/remove_orphaned_instances_all_instances.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/remove_orphaned_instances_all_instances.sh -------------------------------------------------------------------------------- /scripts/data/remove_orphaned_survey_instances.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/remove_orphaned_survey_instances.sh -------------------------------------------------------------------------------- /scripts/data/remove_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/remove_user.sh -------------------------------------------------------------------------------- /scripts/data/remove_user_all_instances.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/remove_user_all_instances.sh -------------------------------------------------------------------------------- /scripts/data/replace-caddisfly-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/replace-caddisfly-image.sh -------------------------------------------------------------------------------- /scripts/data/split-assignments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/split-assignments.sh -------------------------------------------------------------------------------- /scripts/data/src/org/akvo/gae/remoteapi/AddUsers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/src/org/akvo/gae/remoteapi/AddUsers.java -------------------------------------------------------------------------------- /scripts/data/src/org/akvo/gae/remoteapi/CheckImages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/src/org/akvo/gae/remoteapi/CheckImages.java -------------------------------------------------------------------------------- /scripts/data/src/org/akvo/gae/remoteapi/DataPoints.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/src/org/akvo/gae/remoteapi/DataPoints.java -------------------------------------------------------------------------------- /scripts/data/src/org/akvo/gae/remoteapi/DataUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/src/org/akvo/gae/remoteapi/DataUtils.java -------------------------------------------------------------------------------- /scripts/data/src/org/akvo/gae/remoteapi/DeleteData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/src/org/akvo/gae/remoteapi/DeleteData.java -------------------------------------------------------------------------------- /scripts/data/src/org/akvo/gae/remoteapi/DeleteUsers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/src/org/akvo/gae/remoteapi/DeleteUsers.java -------------------------------------------------------------------------------- /scripts/data/src/org/akvo/gae/remoteapi/DeviceList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/src/org/akvo/gae/remoteapi/DeviceList.java -------------------------------------------------------------------------------- /scripts/data/src/org/akvo/gae/remoteapi/Process.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/src/org/akvo/gae/remoteapi/Process.java -------------------------------------------------------------------------------- /scripts/data/src/org/akvo/gae/remoteapi/RemoteAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/src/org/akvo/gae/remoteapi/RemoteAPI.java -------------------------------------------------------------------------------- /scripts/data/src/org/akvo/gae/remoteapi/RemoveUsers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/src/org/akvo/gae/remoteapi/RemoveUsers.java -------------------------------------------------------------------------------- /scripts/data/src/org/akvo/gae/remoteapi/UserList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/src/org/akvo/gae/remoteapi/UserList.java -------------------------------------------------------------------------------- /scripts/data/unassign_unpublished_forms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/unassign_unpublished_forms.sh -------------------------------------------------------------------------------- /scripts/data/unify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/data/unify.sh -------------------------------------------------------------------------------- /scripts/deploy/bootstrap-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/deploy/bootstrap-deploy.sh -------------------------------------------------------------------------------- /scripts/deploy/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/deploy/deploy.sh -------------------------------------------------------------------------------- /scripts/deploy/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/scripts/deploy/run.sh -------------------------------------------------------------------------------- /switch_tenant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/switch_tenant.sh -------------------------------------------------------------------------------- /switch_to_local_tenant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/switch_to_local_tenant.sh -------------------------------------------------------------------------------- /tests/clojure/akvo-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/tests/clojure/akvo-tests/README.md -------------------------------------------------------------------------------- /tests/clojure/akvo-tests/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/tests/clojure/akvo-tests/project.clj -------------------------------------------------------------------------------- /tests/clojure/akvo-tests/resources/config.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/tests/clojure/akvo-tests/resources/config.clj -------------------------------------------------------------------------------- /tests/clojure/akvo-tests/src/akvo_tests/api_key.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/tests/clojure/akvo-tests/src/akvo_tests/api_key.clj -------------------------------------------------------------------------------- /tests/clojure/akvo-tests/test/akvo_tests/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/tests/clojure/akvo-tests/test/akvo_tests/core_test.clj -------------------------------------------------------------------------------- /tests/dev-appengine-web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akvo/akvo-flow/HEAD/tests/dev-appengine-web.xml --------------------------------------------------------------------------------