├── .editorconfig ├── .env.development ├── .github ├── ISSUE_TEMPLATE │ ├── 1-bug_report.md │ ├── 1-bug_report.md.license │ ├── 2-feature_request.md │ ├── 2-feature_request.md.license │ └── config.yml ├── dependabot.yml └── workflows │ ├── appstore-build-publish.yml │ ├── dependabot-approve-merge.yml │ ├── fixup.yml │ ├── lint-eslint.yml │ ├── lint-info-xml.yml │ ├── lint-php-cs.yml │ ├── lint-php.yml │ ├── node-test.yml │ ├── openapi.yml │ ├── phpunit-mariadb.yml │ ├── phpunit-mysql.yml │ ├── phpunit-oci.yml │ ├── phpunit-pgsql.yml │ ├── phpunit-sqlite.yml │ ├── playwright.yml │ ├── pr-feedback.yml │ ├── psalm-matrix.yml │ └── reuse.yml ├── .gitignore ├── .php-cs-fixer.dist.php ├── .prettierignore ├── .prettierrc.json ├── .tx ├── backport └── config ├── AUTHORS.md ├── CHANGELOG.en.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── COPYING ├── LICENSE ├── LICENSES ├── AGPL-3.0-only.txt ├── AGPL-3.0-or-later.txt ├── Apache-2.0.txt ├── CC0-1.0.txt └── MIT.txt ├── Makefile ├── README.md ├── REUSE.toml ├── appinfo └── info.xml ├── codecov.yml ├── composer.json ├── composer.lock ├── css ├── embedded.css ├── forms.css └── public.css ├── docs ├── API_v3.md ├── DataStructure.md └── Embedding.md ├── eslint.config.js ├── img ├── clock_loader_20.svg ├── clock_loader_80.svg ├── event.svg ├── favicon-mask.svg ├── favicon-touch.png ├── favicon-touch.svg ├── favicon.ico ├── favicon.png ├── favicon.svg ├── forms-dark.svg ├── forms.svg ├── lock_open.svg └── today.svg ├── l10n ├── .gitkeep ├── af.js ├── af.json ├── ar.js ├── ar.json ├── ast.js ├── ast.json ├── az.js ├── az.json ├── be.js ├── be.json ├── bg.js ├── bg.json ├── bn_BD.js ├── bn_BD.json ├── br.js ├── br.json ├── bs.js ├── bs.json ├── ca.js ├── ca.json ├── cs.js ├── cs.json ├── cy_GB.js ├── cy_GB.json ├── da.js ├── da.json ├── de.js ├── de.json ├── de_DE.js ├── de_DE.json ├── el.js ├── el.json ├── en_GB.js ├── en_GB.json ├── eo.js ├── eo.json ├── es.js ├── es.json ├── es_419.js ├── es_419.json ├── es_AR.js ├── es_AR.json ├── es_CL.js ├── es_CL.json ├── es_CO.js ├── es_CO.json ├── es_CR.js ├── es_CR.json ├── es_DO.js ├── es_DO.json ├── es_EC.js ├── es_EC.json ├── es_GT.js ├── es_GT.json ├── es_HN.js ├── es_HN.json ├── es_MX.js ├── es_MX.json ├── es_NI.js ├── es_NI.json ├── es_PA.js ├── es_PA.json ├── es_PE.js ├── es_PE.json ├── es_PR.js ├── es_PR.json ├── es_PY.js ├── es_PY.json ├── es_SV.js ├── es_SV.json ├── es_UY.js ├── es_UY.json ├── et_EE.js ├── et_EE.json ├── eu.js ├── eu.json ├── fa.js ├── fa.json ├── fi.js ├── fi.json ├── fr.js ├── fr.json ├── ga.js ├── ga.json ├── gl.js ├── gl.json ├── he.js ├── he.json ├── hr.js ├── hr.json ├── hu.js ├── hu.json ├── hy.js ├── hy.json ├── ia.js ├── ia.json ├── id.js ├── id.json ├── is.js ├── is.json ├── it.js ├── it.json ├── ja.js ├── ja.json ├── ka.js ├── ka.json ├── ka_GE.js ├── ka_GE.json ├── kab.js ├── kab.json ├── km.js ├── km.json ├── kn.js ├── kn.json ├── ko.js ├── ko.json ├── lb.js ├── lb.json ├── lo.js ├── lo.json ├── lt_LT.js ├── lt_LT.json ├── lv.js ├── lv.json ├── mk.js ├── mk.json ├── mn.js ├── mn.json ├── nb.js ├── nb.json ├── nl.js ├── nl.json ├── nn_NO.js ├── nn_NO.json ├── oc.js ├── oc.json ├── pl.js ├── pl.json ├── pt_BR.js ├── pt_BR.json ├── pt_PT.js ├── pt_PT.json ├── ro.js ├── ro.json ├── ru.js ├── ru.json ├── sc.js ├── sc.json ├── si.js ├── si.json ├── sk.js ├── sk.json ├── sl.js ├── sl.json ├── sq.js ├── sq.json ├── sr.js ├── sr.json ├── sr@latin.js ├── sr@latin.json ├── sv.js ├── sv.json ├── sw.js ├── sw.json ├── ta.js ├── ta.json ├── th.js ├── th.json ├── tr.js ├── tr.json ├── ug.js ├── ug.json ├── uk.js ├── uk.json ├── uz.js ├── uz.json ├── vi.js ├── vi.json ├── zh_CN.js ├── zh_CN.json ├── zh_HK.js ├── zh_HK.json ├── zh_TW.js └── zh_TW.json ├── lib ├── Activity │ ├── ActivityConstants.php │ ├── ActivityManager.php │ ├── Filter.php │ ├── Provider.php │ └── Settings │ │ ├── FormsActivitySettings.php │ │ ├── NewShare.php │ │ ├── NewSharedSubmission.php │ │ └── NewSubmission.php ├── Analytics │ └── AnalyticsDatasource.php ├── AppInfo │ └── Application.php ├── BackgroundJob │ ├── CleanupUploadedFilesJob.php │ ├── SyncSubmissionsWithLinkedFileJob.php │ └── UserDeletedJob.php ├── Capabilities.php ├── Constants.php ├── Controller │ ├── ApiController.php │ ├── ConfigController.php │ ├── PageController.php │ └── ShareApiController.php ├── Db │ ├── Answer.php │ ├── AnswerMapper.php │ ├── Form.php │ ├── FormMapper.php │ ├── Option.php │ ├── OptionMapper.php │ ├── Question.php │ ├── QuestionMapper.php │ ├── Share.php │ ├── ShareMapper.php │ ├── Submission.php │ ├── SubmissionMapper.php │ ├── UploadedFile.php │ └── UploadedFileMapper.php ├── Events │ ├── AbstractFormEvent.php │ └── FormSubmittedEvent.php ├── Exception │ └── NoSuchFormException.php ├── FormsMigrator.php ├── Listener │ ├── AnalyticsDatasourceListener.php │ └── UserDeletedListener.php ├── Middleware │ └── ThrottleFormAccessMiddleware.php ├── Migration │ ├── Version0010Date20190000000007.php │ ├── Version010102Date20200323120846.php │ ├── Version010200Date20200323141300.php │ ├── Version020002Date20200729205932.php │ ├── Version020200Date20210120082018.php │ ├── Version020202Date20210311150843.php │ ├── Version020300Date20210403214012.php │ ├── Version020300Date20210406114130.php │ ├── Version020300Date20210406133704.php │ ├── Version030000Date20211206213004.php │ ├── Version030000Date20220402100057.php │ ├── Version030000Date20220402151229.php │ ├── Version030000Date20220414203511.php │ ├── Version030000Date20220705192811.php │ ├── Version030000Date20220707130109.php │ ├── Version030000Date20220831195000.php │ ├── Version030000Date20220926200602.php │ ├── Version030100Date20221231100426.php │ ├── Version030100Date20230115214242.php │ ├── Version030100Date20230123182700.php │ ├── Version030100Date20230202175747.php │ ├── Version030200Date20230307141800.php │ ├── Version030400Date20230628011500.php │ ├── Version040010Date20240122133700.php │ ├── Version040200Date20240219201500.php │ ├── Version040200Date20240402200139.php │ ├── Version040200Date20240402224725.php │ ├── Version040300Date20240420155356.php │ ├── Version040300Date20240523123456.php │ ├── Version040300Date20240708163401.php │ ├── Version050000Date20241005173955.php │ ├── Version050004Date20250319180638.php │ ├── Version050200Date20250109201500.php │ └── Version050200Date20250512004000.php ├── ResponseDefinitions.php ├── Search │ ├── FormsSearchResultEntry.php │ └── SearchProvider.php ├── Service │ ├── CirclesService.php │ ├── ConfigService.php │ ├── FormsService.php │ └── SubmissionService.php └── Settings │ ├── Settings.php │ └── SettingsSection.php ├── license.php ├── openapi.json ├── package.json ├── playwright.config.ts ├── playwright ├── e2e │ ├── create-empty-form.spec.ts │ ├── form-description.spec.ts │ └── ime-input.spec.ts ├── start-nextcloud-server.mjs └── support │ ├── fixtures │ ├── form.ts │ ├── navigation.ts │ ├── random-user.ts │ └── topBar.ts │ ├── sections │ ├── AppNavigationSection.ts │ ├── FormSection.ts │ ├── QuestionSection.ts │ ├── QuestionType.ts │ └── TopBarSection.ts │ └── setup.ts ├── psalm.xml ├── screenshots ├── forms1.png ├── forms2.png └── forms3.png ├── src ├── Forms.vue ├── FormsEmptyContent.vue ├── FormsSettings.vue ├── FormsSubmit.vue ├── components │ ├── AppNavigationForm.vue │ ├── ArchivedFormsModal.vue │ ├── Icons │ │ ├── FormsIcon.vue │ │ ├── IconCopyAll.vue │ │ ├── IconDragIndicator.vue │ │ ├── IconLinearScale.vue │ │ ├── IconOverlay.vue │ │ └── IconPalette.vue │ ├── OptionInputDialog.vue │ ├── PaginationToolbar.vue │ ├── PillMenu.vue │ ├── QRDialog.vue │ ├── Questions │ │ ├── AnswerInput.vue │ │ ├── Question.vue │ │ ├── QuestionColor.vue │ │ ├── QuestionDate.vue │ │ ├── QuestionDropdown.vue │ │ ├── QuestionFile.vue │ │ ├── QuestionLinearScale.vue │ │ ├── QuestionLong.vue │ │ ├── QuestionMultiple.vue │ │ └── QuestionShort.vue │ ├── Results │ │ ├── Answer.vue │ │ ├── ResultsSummary.vue │ │ └── Submission.vue │ ├── SidebarTabs │ │ ├── SettingsSidebarTab.vue │ │ ├── SharingSearchDiv.vue │ │ ├── SharingShareDiv.vue │ │ ├── SharingSidebarTab.vue │ │ └── TransferOwnership.vue │ └── TopBar.vue ├── emptyContent.js ├── main.js ├── mixins │ ├── PermissionTypes.js │ ├── QuestionMixin.js │ ├── QuestionMultipleMixin.ts │ ├── ShareLinkMixin.js │ ├── ShareTypes.js │ ├── UserSearchMixin.js │ └── ViewsMixin.js ├── models │ ├── AnswerTypes.js │ ├── Constants.ts │ ├── Entities.d.ts │ ├── FileTypes.js │ └── ValidationTypes.js ├── router.js ├── scssmixins │ └── markdownOutput.scss ├── settings.js ├── submit.js ├── utils │ ├── CancelableRequest.js │ ├── Logger.js │ ├── OcsResponse2Data.js │ ├── RegularExpression.js │ └── SetWindowTitle.js └── views │ ├── Create.vue │ ├── Results.vue │ ├── Sidebar.vue │ └── Submit.vue ├── stylelint.config.cjs ├── templates ├── main.php └── settings.php ├── tests ├── Integration │ ├── Api │ │ ├── ApiV3Test.php │ │ └── RespectAdminSettingsTest.php │ ├── DB │ │ ├── SharedFormsTest.php │ │ └── SubmissionMapperTest.php │ └── IntegrationBase.php ├── Unit │ ├── Activity │ │ ├── ActivityManagerTest.php │ │ ├── FilterTest.php │ │ ├── ProviderTest.php │ │ └── Settings │ │ │ ├── FormsActivitySettingsTest.php │ │ │ ├── NewShareTest.php │ │ │ ├── NewSharedSubmissionTest.php │ │ │ └── NewSubmissionTest.php │ ├── Analytics │ │ └── AnalyticsDatasourceTest.php │ ├── BackgroundJob │ │ ├── CleanupUploadedFilesJobTest.php │ │ ├── SyncSubmissionsWithLinkedFileJobTest.php │ │ └── UserDeletedJobTest.php │ ├── Controller │ │ ├── ApiControllerTest.php │ │ ├── ConfigControllerTest.php │ │ ├── PageControllerTest.php │ │ └── ShareApiControllerTest.php │ ├── FormsMigratorTest.php │ ├── Listener │ │ └── UserDeletedListenerTest.php │ ├── MockedMapperException.php │ └── Service │ │ ├── CirclesServiceTest.php │ │ ├── ConfigServiceTest.php │ │ ├── FormsServiceTest.php │ │ └── SubmissionServiceTest.php ├── bootstrap.php ├── phpunit.integration.xml ├── phpunit.xml ├── psalm-baseline.xml └── stubs │ ├── oc_hooks_emitter.php │ └── oca-analytics-idatasource.php ├── tsconfig.json ├── vendor-bin ├── cs-fixer │ ├── composer.json │ └── composer.lock ├── openapi-extractor │ ├── composer.json │ └── composer.lock └── psalm │ ├── composer.json │ └── composer.lock └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- 1 | NODE_ENV=development 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.github/ISSUE_TEMPLATE/1-bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-bug_report.md.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.github/ISSUE_TEMPLATE/1-bug_report.md.license -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.github/ISSUE_TEMPLATE/2-feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-feature_request.md.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.github/ISSUE_TEMPLATE/2-feature_request.md.license -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/appstore-build-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.github/workflows/appstore-build-publish.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-approve-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.github/workflows/dependabot-approve-merge.yml -------------------------------------------------------------------------------- /.github/workflows/fixup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.github/workflows/fixup.yml -------------------------------------------------------------------------------- /.github/workflows/lint-eslint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.github/workflows/lint-eslint.yml -------------------------------------------------------------------------------- /.github/workflows/lint-info-xml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.github/workflows/lint-info-xml.yml -------------------------------------------------------------------------------- /.github/workflows/lint-php-cs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.github/workflows/lint-php-cs.yml -------------------------------------------------------------------------------- /.github/workflows/lint-php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.github/workflows/lint-php.yml -------------------------------------------------------------------------------- /.github/workflows/node-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.github/workflows/node-test.yml -------------------------------------------------------------------------------- /.github/workflows/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.github/workflows/openapi.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-mariadb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.github/workflows/phpunit-mariadb.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.github/workflows/phpunit-mysql.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-oci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.github/workflows/phpunit-oci.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-pgsql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.github/workflows/phpunit-pgsql.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-sqlite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.github/workflows/phpunit-sqlite.yml -------------------------------------------------------------------------------- /.github/workflows/playwright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.github/workflows/playwright.yml -------------------------------------------------------------------------------- /.github/workflows/pr-feedback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.github/workflows/pr-feedback.yml -------------------------------------------------------------------------------- /.github/workflows/psalm-matrix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.github/workflows/psalm-matrix.yml -------------------------------------------------------------------------------- /.github/workflows/reuse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.github/workflows/reuse.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | "@nextcloud/prettier-config" 2 | -------------------------------------------------------------------------------- /.tx/backport: -------------------------------------------------------------------------------- 1 | stable5.2 2 | -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/.tx/config -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/CHANGELOG.en.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/AGPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/LICENSES/AGPL-3.0-only.txt -------------------------------------------------------------------------------- /LICENSES/AGPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/LICENSES/AGPL-3.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/REUSE.toml -------------------------------------------------------------------------------- /appinfo/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/appinfo/info.xml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/codecov.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/composer.lock -------------------------------------------------------------------------------- /css/embedded.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/css/embedded.css -------------------------------------------------------------------------------- /css/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/css/forms.css -------------------------------------------------------------------------------- /css/public.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/css/public.css -------------------------------------------------------------------------------- /docs/API_v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/docs/API_v3.md -------------------------------------------------------------------------------- /docs/DataStructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/docs/DataStructure.md -------------------------------------------------------------------------------- /docs/Embedding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/docs/Embedding.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/eslint.config.js -------------------------------------------------------------------------------- /img/clock_loader_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/img/clock_loader_20.svg -------------------------------------------------------------------------------- /img/clock_loader_80.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/img/clock_loader_80.svg -------------------------------------------------------------------------------- /img/event.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/img/event.svg -------------------------------------------------------------------------------- /img/favicon-mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/img/favicon-mask.svg -------------------------------------------------------------------------------- /img/favicon-touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/img/favicon-touch.png -------------------------------------------------------------------------------- /img/favicon-touch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/img/favicon-touch.svg -------------------------------------------------------------------------------- /img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/img/favicon.ico -------------------------------------------------------------------------------- /img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/img/favicon.png -------------------------------------------------------------------------------- /img/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/img/favicon.svg -------------------------------------------------------------------------------- /img/forms-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/img/forms-dark.svg -------------------------------------------------------------------------------- /img/forms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/img/forms.svg -------------------------------------------------------------------------------- /img/lock_open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/img/lock_open.svg -------------------------------------------------------------------------------- /img/today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/img/today.svg -------------------------------------------------------------------------------- /l10n/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /l10n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/af.js -------------------------------------------------------------------------------- /l10n/af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/af.json -------------------------------------------------------------------------------- /l10n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/ar.js -------------------------------------------------------------------------------- /l10n/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/ar.json -------------------------------------------------------------------------------- /l10n/ast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/ast.js -------------------------------------------------------------------------------- /l10n/ast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/ast.json -------------------------------------------------------------------------------- /l10n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/az.js -------------------------------------------------------------------------------- /l10n/az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/az.json -------------------------------------------------------------------------------- /l10n/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/be.js -------------------------------------------------------------------------------- /l10n/be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/be.json -------------------------------------------------------------------------------- /l10n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/bg.js -------------------------------------------------------------------------------- /l10n/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/bg.json -------------------------------------------------------------------------------- /l10n/bn_BD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/bn_BD.js -------------------------------------------------------------------------------- /l10n/bn_BD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/bn_BD.json -------------------------------------------------------------------------------- /l10n/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/br.js -------------------------------------------------------------------------------- /l10n/br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/br.json -------------------------------------------------------------------------------- /l10n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/bs.js -------------------------------------------------------------------------------- /l10n/bs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/bs.json -------------------------------------------------------------------------------- /l10n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/ca.js -------------------------------------------------------------------------------- /l10n/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/ca.json -------------------------------------------------------------------------------- /l10n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/cs.js -------------------------------------------------------------------------------- /l10n/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/cs.json -------------------------------------------------------------------------------- /l10n/cy_GB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/cy_GB.js -------------------------------------------------------------------------------- /l10n/cy_GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/cy_GB.json -------------------------------------------------------------------------------- /l10n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/da.js -------------------------------------------------------------------------------- /l10n/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/da.json -------------------------------------------------------------------------------- /l10n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/de.js -------------------------------------------------------------------------------- /l10n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/de.json -------------------------------------------------------------------------------- /l10n/de_DE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/de_DE.js -------------------------------------------------------------------------------- /l10n/de_DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/de_DE.json -------------------------------------------------------------------------------- /l10n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/el.js -------------------------------------------------------------------------------- /l10n/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/el.json -------------------------------------------------------------------------------- /l10n/en_GB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/en_GB.js -------------------------------------------------------------------------------- /l10n/en_GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/en_GB.json -------------------------------------------------------------------------------- /l10n/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/eo.js -------------------------------------------------------------------------------- /l10n/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/eo.json -------------------------------------------------------------------------------- /l10n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es.js -------------------------------------------------------------------------------- /l10n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es.json -------------------------------------------------------------------------------- /l10n/es_419.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_419.js -------------------------------------------------------------------------------- /l10n/es_419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_419.json -------------------------------------------------------------------------------- /l10n/es_AR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_AR.js -------------------------------------------------------------------------------- /l10n/es_AR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_AR.json -------------------------------------------------------------------------------- /l10n/es_CL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_CL.js -------------------------------------------------------------------------------- /l10n/es_CL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_CL.json -------------------------------------------------------------------------------- /l10n/es_CO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_CO.js -------------------------------------------------------------------------------- /l10n/es_CO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_CO.json -------------------------------------------------------------------------------- /l10n/es_CR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_CR.js -------------------------------------------------------------------------------- /l10n/es_CR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_CR.json -------------------------------------------------------------------------------- /l10n/es_DO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_DO.js -------------------------------------------------------------------------------- /l10n/es_DO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_DO.json -------------------------------------------------------------------------------- /l10n/es_EC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_EC.js -------------------------------------------------------------------------------- /l10n/es_EC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_EC.json -------------------------------------------------------------------------------- /l10n/es_GT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_GT.js -------------------------------------------------------------------------------- /l10n/es_GT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_GT.json -------------------------------------------------------------------------------- /l10n/es_HN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_HN.js -------------------------------------------------------------------------------- /l10n/es_HN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_HN.json -------------------------------------------------------------------------------- /l10n/es_MX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_MX.js -------------------------------------------------------------------------------- /l10n/es_MX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_MX.json -------------------------------------------------------------------------------- /l10n/es_NI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_NI.js -------------------------------------------------------------------------------- /l10n/es_NI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_NI.json -------------------------------------------------------------------------------- /l10n/es_PA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_PA.js -------------------------------------------------------------------------------- /l10n/es_PA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_PA.json -------------------------------------------------------------------------------- /l10n/es_PE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_PE.js -------------------------------------------------------------------------------- /l10n/es_PE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_PE.json -------------------------------------------------------------------------------- /l10n/es_PR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_PR.js -------------------------------------------------------------------------------- /l10n/es_PR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_PR.json -------------------------------------------------------------------------------- /l10n/es_PY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_PY.js -------------------------------------------------------------------------------- /l10n/es_PY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_PY.json -------------------------------------------------------------------------------- /l10n/es_SV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_SV.js -------------------------------------------------------------------------------- /l10n/es_SV.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_SV.json -------------------------------------------------------------------------------- /l10n/es_UY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_UY.js -------------------------------------------------------------------------------- /l10n/es_UY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/es_UY.json -------------------------------------------------------------------------------- /l10n/et_EE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/et_EE.js -------------------------------------------------------------------------------- /l10n/et_EE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/et_EE.json -------------------------------------------------------------------------------- /l10n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/eu.js -------------------------------------------------------------------------------- /l10n/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/eu.json -------------------------------------------------------------------------------- /l10n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/fa.js -------------------------------------------------------------------------------- /l10n/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/fa.json -------------------------------------------------------------------------------- /l10n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/fi.js -------------------------------------------------------------------------------- /l10n/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/fi.json -------------------------------------------------------------------------------- /l10n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/fr.js -------------------------------------------------------------------------------- /l10n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/fr.json -------------------------------------------------------------------------------- /l10n/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/ga.js -------------------------------------------------------------------------------- /l10n/ga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/ga.json -------------------------------------------------------------------------------- /l10n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/gl.js -------------------------------------------------------------------------------- /l10n/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/gl.json -------------------------------------------------------------------------------- /l10n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/he.js -------------------------------------------------------------------------------- /l10n/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/he.json -------------------------------------------------------------------------------- /l10n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/hr.js -------------------------------------------------------------------------------- /l10n/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/hr.json -------------------------------------------------------------------------------- /l10n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/hu.js -------------------------------------------------------------------------------- /l10n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/hu.json -------------------------------------------------------------------------------- /l10n/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/hy.js -------------------------------------------------------------------------------- /l10n/hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/hy.json -------------------------------------------------------------------------------- /l10n/ia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/ia.js -------------------------------------------------------------------------------- /l10n/ia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/ia.json -------------------------------------------------------------------------------- /l10n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/id.js -------------------------------------------------------------------------------- /l10n/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/id.json -------------------------------------------------------------------------------- /l10n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/is.js -------------------------------------------------------------------------------- /l10n/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/is.json -------------------------------------------------------------------------------- /l10n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/it.js -------------------------------------------------------------------------------- /l10n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/it.json -------------------------------------------------------------------------------- /l10n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/ja.js -------------------------------------------------------------------------------- /l10n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/ja.json -------------------------------------------------------------------------------- /l10n/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/ka.js -------------------------------------------------------------------------------- /l10n/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/ka.json -------------------------------------------------------------------------------- /l10n/ka_GE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/ka_GE.js -------------------------------------------------------------------------------- /l10n/ka_GE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/ka_GE.json -------------------------------------------------------------------------------- /l10n/kab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/kab.js -------------------------------------------------------------------------------- /l10n/kab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/kab.json -------------------------------------------------------------------------------- /l10n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/km.js -------------------------------------------------------------------------------- /l10n/km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/km.json -------------------------------------------------------------------------------- /l10n/kn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/kn.js -------------------------------------------------------------------------------- /l10n/kn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/kn.json -------------------------------------------------------------------------------- /l10n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/ko.js -------------------------------------------------------------------------------- /l10n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/ko.json -------------------------------------------------------------------------------- /l10n/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/lb.js -------------------------------------------------------------------------------- /l10n/lb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/lb.json -------------------------------------------------------------------------------- /l10n/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/lo.js -------------------------------------------------------------------------------- /l10n/lo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/lo.json -------------------------------------------------------------------------------- /l10n/lt_LT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/lt_LT.js -------------------------------------------------------------------------------- /l10n/lt_LT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/lt_LT.json -------------------------------------------------------------------------------- /l10n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/lv.js -------------------------------------------------------------------------------- /l10n/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/lv.json -------------------------------------------------------------------------------- /l10n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/mk.js -------------------------------------------------------------------------------- /l10n/mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/mk.json -------------------------------------------------------------------------------- /l10n/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/mn.js -------------------------------------------------------------------------------- /l10n/mn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/mn.json -------------------------------------------------------------------------------- /l10n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/nb.js -------------------------------------------------------------------------------- /l10n/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/nb.json -------------------------------------------------------------------------------- /l10n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/nl.js -------------------------------------------------------------------------------- /l10n/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/nl.json -------------------------------------------------------------------------------- /l10n/nn_NO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/nn_NO.js -------------------------------------------------------------------------------- /l10n/nn_NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/nn_NO.json -------------------------------------------------------------------------------- /l10n/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/oc.js -------------------------------------------------------------------------------- /l10n/oc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/oc.json -------------------------------------------------------------------------------- /l10n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/pl.js -------------------------------------------------------------------------------- /l10n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/pl.json -------------------------------------------------------------------------------- /l10n/pt_BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/pt_BR.js -------------------------------------------------------------------------------- /l10n/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/pt_BR.json -------------------------------------------------------------------------------- /l10n/pt_PT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/pt_PT.js -------------------------------------------------------------------------------- /l10n/pt_PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/pt_PT.json -------------------------------------------------------------------------------- /l10n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/ro.js -------------------------------------------------------------------------------- /l10n/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/ro.json -------------------------------------------------------------------------------- /l10n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/ru.js -------------------------------------------------------------------------------- /l10n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/ru.json -------------------------------------------------------------------------------- /l10n/sc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/sc.js -------------------------------------------------------------------------------- /l10n/sc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/sc.json -------------------------------------------------------------------------------- /l10n/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/si.js -------------------------------------------------------------------------------- /l10n/si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/si.json -------------------------------------------------------------------------------- /l10n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/sk.js -------------------------------------------------------------------------------- /l10n/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/sk.json -------------------------------------------------------------------------------- /l10n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/sl.js -------------------------------------------------------------------------------- /l10n/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/sl.json -------------------------------------------------------------------------------- /l10n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/sq.js -------------------------------------------------------------------------------- /l10n/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/sq.json -------------------------------------------------------------------------------- /l10n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/sr.js -------------------------------------------------------------------------------- /l10n/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/sr.json -------------------------------------------------------------------------------- /l10n/sr@latin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/sr@latin.js -------------------------------------------------------------------------------- /l10n/sr@latin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/sr@latin.json -------------------------------------------------------------------------------- /l10n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/sv.js -------------------------------------------------------------------------------- /l10n/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/sv.json -------------------------------------------------------------------------------- /l10n/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/sw.js -------------------------------------------------------------------------------- /l10n/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/sw.json -------------------------------------------------------------------------------- /l10n/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/ta.js -------------------------------------------------------------------------------- /l10n/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/ta.json -------------------------------------------------------------------------------- /l10n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/th.js -------------------------------------------------------------------------------- /l10n/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/th.json -------------------------------------------------------------------------------- /l10n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/tr.js -------------------------------------------------------------------------------- /l10n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/tr.json -------------------------------------------------------------------------------- /l10n/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/ug.js -------------------------------------------------------------------------------- /l10n/ug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/ug.json -------------------------------------------------------------------------------- /l10n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/uk.js -------------------------------------------------------------------------------- /l10n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/uk.json -------------------------------------------------------------------------------- /l10n/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/uz.js -------------------------------------------------------------------------------- /l10n/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/uz.json -------------------------------------------------------------------------------- /l10n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/vi.js -------------------------------------------------------------------------------- /l10n/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/vi.json -------------------------------------------------------------------------------- /l10n/zh_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/zh_CN.js -------------------------------------------------------------------------------- /l10n/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/zh_CN.json -------------------------------------------------------------------------------- /l10n/zh_HK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/zh_HK.js -------------------------------------------------------------------------------- /l10n/zh_HK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/zh_HK.json -------------------------------------------------------------------------------- /l10n/zh_TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/zh_TW.js -------------------------------------------------------------------------------- /l10n/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/l10n/zh_TW.json -------------------------------------------------------------------------------- /lib/Activity/ActivityConstants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Activity/ActivityConstants.php -------------------------------------------------------------------------------- /lib/Activity/ActivityManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Activity/ActivityManager.php -------------------------------------------------------------------------------- /lib/Activity/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Activity/Filter.php -------------------------------------------------------------------------------- /lib/Activity/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Activity/Provider.php -------------------------------------------------------------------------------- /lib/Activity/Settings/FormsActivitySettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Activity/Settings/FormsActivitySettings.php -------------------------------------------------------------------------------- /lib/Activity/Settings/NewShare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Activity/Settings/NewShare.php -------------------------------------------------------------------------------- /lib/Activity/Settings/NewSharedSubmission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Activity/Settings/NewSharedSubmission.php -------------------------------------------------------------------------------- /lib/Activity/Settings/NewSubmission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Activity/Settings/NewSubmission.php -------------------------------------------------------------------------------- /lib/Analytics/AnalyticsDatasource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Analytics/AnalyticsDatasource.php -------------------------------------------------------------------------------- /lib/AppInfo/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/AppInfo/Application.php -------------------------------------------------------------------------------- /lib/BackgroundJob/CleanupUploadedFilesJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/BackgroundJob/CleanupUploadedFilesJob.php -------------------------------------------------------------------------------- /lib/BackgroundJob/SyncSubmissionsWithLinkedFileJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/BackgroundJob/SyncSubmissionsWithLinkedFileJob.php -------------------------------------------------------------------------------- /lib/BackgroundJob/UserDeletedJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/BackgroundJob/UserDeletedJob.php -------------------------------------------------------------------------------- /lib/Capabilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Capabilities.php -------------------------------------------------------------------------------- /lib/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Constants.php -------------------------------------------------------------------------------- /lib/Controller/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Controller/ApiController.php -------------------------------------------------------------------------------- /lib/Controller/ConfigController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Controller/ConfigController.php -------------------------------------------------------------------------------- /lib/Controller/PageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Controller/PageController.php -------------------------------------------------------------------------------- /lib/Controller/ShareApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Controller/ShareApiController.php -------------------------------------------------------------------------------- /lib/Db/Answer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Db/Answer.php -------------------------------------------------------------------------------- /lib/Db/AnswerMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Db/AnswerMapper.php -------------------------------------------------------------------------------- /lib/Db/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Db/Form.php -------------------------------------------------------------------------------- /lib/Db/FormMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Db/FormMapper.php -------------------------------------------------------------------------------- /lib/Db/Option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Db/Option.php -------------------------------------------------------------------------------- /lib/Db/OptionMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Db/OptionMapper.php -------------------------------------------------------------------------------- /lib/Db/Question.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Db/Question.php -------------------------------------------------------------------------------- /lib/Db/QuestionMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Db/QuestionMapper.php -------------------------------------------------------------------------------- /lib/Db/Share.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Db/Share.php -------------------------------------------------------------------------------- /lib/Db/ShareMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Db/ShareMapper.php -------------------------------------------------------------------------------- /lib/Db/Submission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Db/Submission.php -------------------------------------------------------------------------------- /lib/Db/SubmissionMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Db/SubmissionMapper.php -------------------------------------------------------------------------------- /lib/Db/UploadedFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Db/UploadedFile.php -------------------------------------------------------------------------------- /lib/Db/UploadedFileMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Db/UploadedFileMapper.php -------------------------------------------------------------------------------- /lib/Events/AbstractFormEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Events/AbstractFormEvent.php -------------------------------------------------------------------------------- /lib/Events/FormSubmittedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Events/FormSubmittedEvent.php -------------------------------------------------------------------------------- /lib/Exception/NoSuchFormException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Exception/NoSuchFormException.php -------------------------------------------------------------------------------- /lib/FormsMigrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/FormsMigrator.php -------------------------------------------------------------------------------- /lib/Listener/AnalyticsDatasourceListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Listener/AnalyticsDatasourceListener.php -------------------------------------------------------------------------------- /lib/Listener/UserDeletedListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Listener/UserDeletedListener.php -------------------------------------------------------------------------------- /lib/Middleware/ThrottleFormAccessMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Middleware/ThrottleFormAccessMiddleware.php -------------------------------------------------------------------------------- /lib/Migration/Version0010Date20190000000007.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version0010Date20190000000007.php -------------------------------------------------------------------------------- /lib/Migration/Version010102Date20200323120846.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version010102Date20200323120846.php -------------------------------------------------------------------------------- /lib/Migration/Version010200Date20200323141300.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version010200Date20200323141300.php -------------------------------------------------------------------------------- /lib/Migration/Version020002Date20200729205932.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version020002Date20200729205932.php -------------------------------------------------------------------------------- /lib/Migration/Version020200Date20210120082018.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version020200Date20210120082018.php -------------------------------------------------------------------------------- /lib/Migration/Version020202Date20210311150843.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version020202Date20210311150843.php -------------------------------------------------------------------------------- /lib/Migration/Version020300Date20210403214012.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version020300Date20210403214012.php -------------------------------------------------------------------------------- /lib/Migration/Version020300Date20210406114130.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version020300Date20210406114130.php -------------------------------------------------------------------------------- /lib/Migration/Version020300Date20210406133704.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version020300Date20210406133704.php -------------------------------------------------------------------------------- /lib/Migration/Version030000Date20211206213004.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version030000Date20211206213004.php -------------------------------------------------------------------------------- /lib/Migration/Version030000Date20220402100057.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version030000Date20220402100057.php -------------------------------------------------------------------------------- /lib/Migration/Version030000Date20220402151229.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version030000Date20220402151229.php -------------------------------------------------------------------------------- /lib/Migration/Version030000Date20220414203511.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version030000Date20220414203511.php -------------------------------------------------------------------------------- /lib/Migration/Version030000Date20220705192811.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version030000Date20220705192811.php -------------------------------------------------------------------------------- /lib/Migration/Version030000Date20220707130109.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version030000Date20220707130109.php -------------------------------------------------------------------------------- /lib/Migration/Version030000Date20220831195000.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version030000Date20220831195000.php -------------------------------------------------------------------------------- /lib/Migration/Version030000Date20220926200602.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version030000Date20220926200602.php -------------------------------------------------------------------------------- /lib/Migration/Version030100Date20221231100426.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version030100Date20221231100426.php -------------------------------------------------------------------------------- /lib/Migration/Version030100Date20230115214242.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version030100Date20230115214242.php -------------------------------------------------------------------------------- /lib/Migration/Version030100Date20230123182700.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version030100Date20230123182700.php -------------------------------------------------------------------------------- /lib/Migration/Version030100Date20230202175747.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version030100Date20230202175747.php -------------------------------------------------------------------------------- /lib/Migration/Version030200Date20230307141800.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version030200Date20230307141800.php -------------------------------------------------------------------------------- /lib/Migration/Version030400Date20230628011500.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version030400Date20230628011500.php -------------------------------------------------------------------------------- /lib/Migration/Version040010Date20240122133700.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version040010Date20240122133700.php -------------------------------------------------------------------------------- /lib/Migration/Version040200Date20240219201500.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version040200Date20240219201500.php -------------------------------------------------------------------------------- /lib/Migration/Version040200Date20240402200139.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version040200Date20240402200139.php -------------------------------------------------------------------------------- /lib/Migration/Version040200Date20240402224725.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version040200Date20240402224725.php -------------------------------------------------------------------------------- /lib/Migration/Version040300Date20240420155356.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version040300Date20240420155356.php -------------------------------------------------------------------------------- /lib/Migration/Version040300Date20240523123456.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version040300Date20240523123456.php -------------------------------------------------------------------------------- /lib/Migration/Version040300Date20240708163401.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version040300Date20240708163401.php -------------------------------------------------------------------------------- /lib/Migration/Version050000Date20241005173955.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version050000Date20241005173955.php -------------------------------------------------------------------------------- /lib/Migration/Version050004Date20250319180638.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version050004Date20250319180638.php -------------------------------------------------------------------------------- /lib/Migration/Version050200Date20250109201500.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version050200Date20250109201500.php -------------------------------------------------------------------------------- /lib/Migration/Version050200Date20250512004000.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Migration/Version050200Date20250512004000.php -------------------------------------------------------------------------------- /lib/ResponseDefinitions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/ResponseDefinitions.php -------------------------------------------------------------------------------- /lib/Search/FormsSearchResultEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Search/FormsSearchResultEntry.php -------------------------------------------------------------------------------- /lib/Search/SearchProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Search/SearchProvider.php -------------------------------------------------------------------------------- /lib/Service/CirclesService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Service/CirclesService.php -------------------------------------------------------------------------------- /lib/Service/ConfigService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Service/ConfigService.php -------------------------------------------------------------------------------- /lib/Service/FormsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Service/FormsService.php -------------------------------------------------------------------------------- /lib/Service/SubmissionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Service/SubmissionService.php -------------------------------------------------------------------------------- /lib/Settings/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Settings/Settings.php -------------------------------------------------------------------------------- /lib/Settings/SettingsSection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/lib/Settings/SettingsSection.php -------------------------------------------------------------------------------- /license.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/license.php -------------------------------------------------------------------------------- /openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/openapi.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /playwright/e2e/create-empty-form.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/playwright/e2e/create-empty-form.spec.ts -------------------------------------------------------------------------------- /playwright/e2e/form-description.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/playwright/e2e/form-description.spec.ts -------------------------------------------------------------------------------- /playwright/e2e/ime-input.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/playwright/e2e/ime-input.spec.ts -------------------------------------------------------------------------------- /playwright/start-nextcloud-server.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/playwright/start-nextcloud-server.mjs -------------------------------------------------------------------------------- /playwright/support/fixtures/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/playwright/support/fixtures/form.ts -------------------------------------------------------------------------------- /playwright/support/fixtures/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/playwright/support/fixtures/navigation.ts -------------------------------------------------------------------------------- /playwright/support/fixtures/random-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/playwright/support/fixtures/random-user.ts -------------------------------------------------------------------------------- /playwright/support/fixtures/topBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/playwright/support/fixtures/topBar.ts -------------------------------------------------------------------------------- /playwright/support/sections/AppNavigationSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/playwright/support/sections/AppNavigationSection.ts -------------------------------------------------------------------------------- /playwright/support/sections/FormSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/playwright/support/sections/FormSection.ts -------------------------------------------------------------------------------- /playwright/support/sections/QuestionSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/playwright/support/sections/QuestionSection.ts -------------------------------------------------------------------------------- /playwright/support/sections/QuestionType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/playwright/support/sections/QuestionType.ts -------------------------------------------------------------------------------- /playwright/support/sections/TopBarSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/playwright/support/sections/TopBarSection.ts -------------------------------------------------------------------------------- /playwright/support/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/playwright/support/setup.ts -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/psalm.xml -------------------------------------------------------------------------------- /screenshots/forms1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/screenshots/forms1.png -------------------------------------------------------------------------------- /screenshots/forms2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/screenshots/forms2.png -------------------------------------------------------------------------------- /screenshots/forms3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/screenshots/forms3.png -------------------------------------------------------------------------------- /src/Forms.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/Forms.vue -------------------------------------------------------------------------------- /src/FormsEmptyContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/FormsEmptyContent.vue -------------------------------------------------------------------------------- /src/FormsSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/FormsSettings.vue -------------------------------------------------------------------------------- /src/FormsSubmit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/FormsSubmit.vue -------------------------------------------------------------------------------- /src/components/AppNavigationForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/AppNavigationForm.vue -------------------------------------------------------------------------------- /src/components/ArchivedFormsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/ArchivedFormsModal.vue -------------------------------------------------------------------------------- /src/components/Icons/FormsIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/Icons/FormsIcon.vue -------------------------------------------------------------------------------- /src/components/Icons/IconCopyAll.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/Icons/IconCopyAll.vue -------------------------------------------------------------------------------- /src/components/Icons/IconDragIndicator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/Icons/IconDragIndicator.vue -------------------------------------------------------------------------------- /src/components/Icons/IconLinearScale.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/Icons/IconLinearScale.vue -------------------------------------------------------------------------------- /src/components/Icons/IconOverlay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/Icons/IconOverlay.vue -------------------------------------------------------------------------------- /src/components/Icons/IconPalette.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/Icons/IconPalette.vue -------------------------------------------------------------------------------- /src/components/OptionInputDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/OptionInputDialog.vue -------------------------------------------------------------------------------- /src/components/PaginationToolbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/PaginationToolbar.vue -------------------------------------------------------------------------------- /src/components/PillMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/PillMenu.vue -------------------------------------------------------------------------------- /src/components/QRDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/QRDialog.vue -------------------------------------------------------------------------------- /src/components/Questions/AnswerInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/Questions/AnswerInput.vue -------------------------------------------------------------------------------- /src/components/Questions/Question.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/Questions/Question.vue -------------------------------------------------------------------------------- /src/components/Questions/QuestionColor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/Questions/QuestionColor.vue -------------------------------------------------------------------------------- /src/components/Questions/QuestionDate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/Questions/QuestionDate.vue -------------------------------------------------------------------------------- /src/components/Questions/QuestionDropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/Questions/QuestionDropdown.vue -------------------------------------------------------------------------------- /src/components/Questions/QuestionFile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/Questions/QuestionFile.vue -------------------------------------------------------------------------------- /src/components/Questions/QuestionLinearScale.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/Questions/QuestionLinearScale.vue -------------------------------------------------------------------------------- /src/components/Questions/QuestionLong.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/Questions/QuestionLong.vue -------------------------------------------------------------------------------- /src/components/Questions/QuestionMultiple.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/Questions/QuestionMultiple.vue -------------------------------------------------------------------------------- /src/components/Questions/QuestionShort.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/Questions/QuestionShort.vue -------------------------------------------------------------------------------- /src/components/Results/Answer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/Results/Answer.vue -------------------------------------------------------------------------------- /src/components/Results/ResultsSummary.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/Results/ResultsSummary.vue -------------------------------------------------------------------------------- /src/components/Results/Submission.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/Results/Submission.vue -------------------------------------------------------------------------------- /src/components/SidebarTabs/SettingsSidebarTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/SidebarTabs/SettingsSidebarTab.vue -------------------------------------------------------------------------------- /src/components/SidebarTabs/SharingSearchDiv.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/SidebarTabs/SharingSearchDiv.vue -------------------------------------------------------------------------------- /src/components/SidebarTabs/SharingShareDiv.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/SidebarTabs/SharingShareDiv.vue -------------------------------------------------------------------------------- /src/components/SidebarTabs/SharingSidebarTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/SidebarTabs/SharingSidebarTab.vue -------------------------------------------------------------------------------- /src/components/SidebarTabs/TransferOwnership.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/SidebarTabs/TransferOwnership.vue -------------------------------------------------------------------------------- /src/components/TopBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/components/TopBar.vue -------------------------------------------------------------------------------- /src/emptyContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/emptyContent.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/main.js -------------------------------------------------------------------------------- /src/mixins/PermissionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/mixins/PermissionTypes.js -------------------------------------------------------------------------------- /src/mixins/QuestionMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/mixins/QuestionMixin.js -------------------------------------------------------------------------------- /src/mixins/QuestionMultipleMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/mixins/QuestionMultipleMixin.ts -------------------------------------------------------------------------------- /src/mixins/ShareLinkMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/mixins/ShareLinkMixin.js -------------------------------------------------------------------------------- /src/mixins/ShareTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/mixins/ShareTypes.js -------------------------------------------------------------------------------- /src/mixins/UserSearchMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/mixins/UserSearchMixin.js -------------------------------------------------------------------------------- /src/mixins/ViewsMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/mixins/ViewsMixin.js -------------------------------------------------------------------------------- /src/models/AnswerTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/models/AnswerTypes.js -------------------------------------------------------------------------------- /src/models/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/models/Constants.ts -------------------------------------------------------------------------------- /src/models/Entities.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/models/Entities.d.ts -------------------------------------------------------------------------------- /src/models/FileTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/models/FileTypes.js -------------------------------------------------------------------------------- /src/models/ValidationTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/models/ValidationTypes.js -------------------------------------------------------------------------------- /src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/router.js -------------------------------------------------------------------------------- /src/scssmixins/markdownOutput.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/scssmixins/markdownOutput.scss -------------------------------------------------------------------------------- /src/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/settings.js -------------------------------------------------------------------------------- /src/submit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/submit.js -------------------------------------------------------------------------------- /src/utils/CancelableRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/utils/CancelableRequest.js -------------------------------------------------------------------------------- /src/utils/Logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/utils/Logger.js -------------------------------------------------------------------------------- /src/utils/OcsResponse2Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/utils/OcsResponse2Data.js -------------------------------------------------------------------------------- /src/utils/RegularExpression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/utils/RegularExpression.js -------------------------------------------------------------------------------- /src/utils/SetWindowTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/utils/SetWindowTitle.js -------------------------------------------------------------------------------- /src/views/Create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/views/Create.vue -------------------------------------------------------------------------------- /src/views/Results.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/views/Results.vue -------------------------------------------------------------------------------- /src/views/Sidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/views/Sidebar.vue -------------------------------------------------------------------------------- /src/views/Submit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/src/views/Submit.vue -------------------------------------------------------------------------------- /stylelint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/stylelint.config.cjs -------------------------------------------------------------------------------- /templates/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/templates/main.php -------------------------------------------------------------------------------- /templates/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/templates/settings.php -------------------------------------------------------------------------------- /tests/Integration/Api/ApiV3Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/Integration/Api/ApiV3Test.php -------------------------------------------------------------------------------- /tests/Integration/Api/RespectAdminSettingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/Integration/Api/RespectAdminSettingsTest.php -------------------------------------------------------------------------------- /tests/Integration/DB/SharedFormsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/Integration/DB/SharedFormsTest.php -------------------------------------------------------------------------------- /tests/Integration/DB/SubmissionMapperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/Integration/DB/SubmissionMapperTest.php -------------------------------------------------------------------------------- /tests/Integration/IntegrationBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/Integration/IntegrationBase.php -------------------------------------------------------------------------------- /tests/Unit/Activity/ActivityManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/Unit/Activity/ActivityManagerTest.php -------------------------------------------------------------------------------- /tests/Unit/Activity/FilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/Unit/Activity/FilterTest.php -------------------------------------------------------------------------------- /tests/Unit/Activity/ProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/Unit/Activity/ProviderTest.php -------------------------------------------------------------------------------- /tests/Unit/Activity/Settings/FormsActivitySettingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/Unit/Activity/Settings/FormsActivitySettingsTest.php -------------------------------------------------------------------------------- /tests/Unit/Activity/Settings/NewShareTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/Unit/Activity/Settings/NewShareTest.php -------------------------------------------------------------------------------- /tests/Unit/Activity/Settings/NewSharedSubmissionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/Unit/Activity/Settings/NewSharedSubmissionTest.php -------------------------------------------------------------------------------- /tests/Unit/Activity/Settings/NewSubmissionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/Unit/Activity/Settings/NewSubmissionTest.php -------------------------------------------------------------------------------- /tests/Unit/Analytics/AnalyticsDatasourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/Unit/Analytics/AnalyticsDatasourceTest.php -------------------------------------------------------------------------------- /tests/Unit/BackgroundJob/CleanupUploadedFilesJobTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/Unit/BackgroundJob/CleanupUploadedFilesJobTest.php -------------------------------------------------------------------------------- /tests/Unit/BackgroundJob/SyncSubmissionsWithLinkedFileJobTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/Unit/BackgroundJob/SyncSubmissionsWithLinkedFileJobTest.php -------------------------------------------------------------------------------- /tests/Unit/BackgroundJob/UserDeletedJobTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/Unit/BackgroundJob/UserDeletedJobTest.php -------------------------------------------------------------------------------- /tests/Unit/Controller/ApiControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/Unit/Controller/ApiControllerTest.php -------------------------------------------------------------------------------- /tests/Unit/Controller/ConfigControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/Unit/Controller/ConfigControllerTest.php -------------------------------------------------------------------------------- /tests/Unit/Controller/PageControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/Unit/Controller/PageControllerTest.php -------------------------------------------------------------------------------- /tests/Unit/Controller/ShareApiControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/Unit/Controller/ShareApiControllerTest.php -------------------------------------------------------------------------------- /tests/Unit/FormsMigratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/Unit/FormsMigratorTest.php -------------------------------------------------------------------------------- /tests/Unit/Listener/UserDeletedListenerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/Unit/Listener/UserDeletedListenerTest.php -------------------------------------------------------------------------------- /tests/Unit/MockedMapperException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/Unit/MockedMapperException.php -------------------------------------------------------------------------------- /tests/Unit/Service/CirclesServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/Unit/Service/CirclesServiceTest.php -------------------------------------------------------------------------------- /tests/Unit/Service/ConfigServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/Unit/Service/ConfigServiceTest.php -------------------------------------------------------------------------------- /tests/Unit/Service/FormsServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/Unit/Service/FormsServiceTest.php -------------------------------------------------------------------------------- /tests/Unit/Service/SubmissionServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/Unit/Service/SubmissionServiceTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/phpunit.integration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/phpunit.integration.xml -------------------------------------------------------------------------------- /tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/phpunit.xml -------------------------------------------------------------------------------- /tests/psalm-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/psalm-baseline.xml -------------------------------------------------------------------------------- /tests/stubs/oc_hooks_emitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/stubs/oc_hooks_emitter.php -------------------------------------------------------------------------------- /tests/stubs/oca-analytics-idatasource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tests/stubs/oca-analytics-idatasource.php -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vendor-bin/cs-fixer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/vendor-bin/cs-fixer/composer.json -------------------------------------------------------------------------------- /vendor-bin/cs-fixer/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/vendor-bin/cs-fixer/composer.lock -------------------------------------------------------------------------------- /vendor-bin/openapi-extractor/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/vendor-bin/openapi-extractor/composer.json -------------------------------------------------------------------------------- /vendor-bin/openapi-extractor/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/vendor-bin/openapi-extractor/composer.lock -------------------------------------------------------------------------------- /vendor-bin/psalm/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/vendor-bin/psalm/composer.json -------------------------------------------------------------------------------- /vendor-bin/psalm/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/vendor-bin/psalm/composer.lock -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/forms/HEAD/vite.config.js --------------------------------------------------------------------------------