stable
Clone or download
Read-only
Part of request #30743: Merge external plugin repositories into the main repository Change-Id: Idd733976a4feb748846e7eba1ee76c5c6172ec62
Modified Files
Name | ||||
---|---|---|---|---|
A | plugins/botmattermost/Jenkinsfile | +85 | −0 | Go to diff View file |
A | plugins/botmattermost/Makefile | +65 | −0 | Go to diff View file |
A | plugins/botmattermost/README.mkd | +10 | −0 | Go to diff View file |
A | plugins/botmattermost/VERSION | +1 | −0 | Go to diff View file |
A | plugins/botmattermost/build-manifest.json | +4 | −0 | Go to diff View file |
A | plugins/botmattermost/build-rpm.sh | +33 | −0 | Go to diff View file |
A | plugins/botmattermost/composer.json | +8 | −0 | Go to diff View file |
A | plugins/botmattermost/composer.lock | +18 | −0 | Go to diff View file |
A | plugins/botmattermost/db/install.sql | +11 | −0 | Go to diff View file |
A | plugins/botmattermost/db/mysql/updates/2016/201605271655_add_channels.php | +53 | −0 | Go to diff View file |
A | plugins/botmattermost/db/mysql/updates/2016/201605311330_add_avatar_url_column.php | +50 | −0 | Go to diff View file |
A | plugins/botmattermost/db/mysql/updates/2017/201703221547_delete_channels.php | +49 | −0 | Go to diff View file |
A | plugins/botmattermost/db/mysql/updates/2021/202109151500_add_bot_project_id.php | +43 | −0 | Go to diff View file |
A | plugins/botmattermost/db/uninstall.sql | +4 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/Administration/Project/CreateBotController.php | +109 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/Administration/Project/DeleteBotController.php | +81 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/Administration/Project/EditBotController.php | +121 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/Administration/Project/ListBotController.php | +82 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/Administration/Project/ProjectAdministrationPresenter.php | +67 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/Administration/Request/ParameterValidator.php | +54 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/Bot/Bot.php | +69 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/Bot/BotCreator.php | +86 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/Bot/BotDao.php | +164 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/Bot/BotDeletor.php | +50 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/Bot/BotEditor.php | +58 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/Bot/BotFactory.php | +206 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/Bot/BotValidityChecker.php | +45 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/BotMattermostDeleted.php | +41 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/Controller/AdminController.php | +199 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/Exception/BotAlreadyExistException.php | +33 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/Exception/BotCannotBeUsedInProjectException.php | +35 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/Exception/BotNotFoundExceptionException.php | +33 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/Exception/CannotCreateBotException.php | +33 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/Exception/CannotDeleteBotException.php | +33 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/Exception/CannotUpdateBotException.php | +33 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/Exception/ChannelsNotFoundException.php | +33 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/Exception/EmptyUpdateException.php | +33 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/Exception/ProvidedBotParameterIsNotValidException.php | +33 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/Plugin/PluginInfo.php | +37 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/Presenter/AdminPresenter.php | +63 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/Presenter/BotPresenter.php | +64 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermost/Router.php | +76 | −0 | Go to diff View file |
A | plugins/botmattermost/include/BotMattermostLogger.php | +37 | −0 | Go to diff View file |
A | plugins/botmattermost/include/SenderServices/Attachment.php | +66 | −0 | Go to diff View file |
A | plugins/botmattermost/include/SenderServices/ClientBotMattermost.php | +72 | −0 | Go to diff View file |
A | plugins/botmattermost/include/SenderServices/EncoderMessage.php | +69 | −0 | Go to diff View file |
A | plugins/botmattermost/include/SenderServices/Exception/HasNoMessageContentException.php | +33 | −0 | Go to diff View file |
A | plugins/botmattermost/include/SenderServices/MarkdownEngine/MarkdownMustacheRenderer.php | +63 | −0 | Go to diff View file |
A | plugins/botmattermost/include/SenderServices/MarkdownEngine/MarkdownTemplateRendererFactory.php | +31 | −0 | Go to diff View file |
A | plugins/botmattermost/include/SenderServices/Message.php | +62 | −0 | Go to diff View file |
A | plugins/botmattermost/include/SenderServices/Sender.php | +93 | −0 | Go to diff View file |
A | plugins/botmattermost/include/botmattermostPlugin.php | +227 | −0 | Go to diff View file |
A | plugins/botmattermost/include/constants.php | +22 | −0 | Go to diff View file |
A | plugins/botmattermost/package.json | +17 | −0 | Go to diff View file |
A | plugins/botmattermost/scripts/modals.js | +52 | −0 | Go to diff View file |
A | plugins/botmattermost/scripts/project-admin/modals.ts | +64 | −0 | Go to diff View file |
A | plugins/botmattermost/site-content/fr_FR/LC_MESSAGES/tuleap-botmattermost.po | +138 | −0 | Go to diff View file |
A | plugins/botmattermost/templates/index.mustache | +61 | −0 | Go to diff View file |
A | plugins/botmattermost/templates/modals/modal-add-bot.mustache | +48 | −0 | Go to diff View file |
A | plugins/botmattermost/templates/modals/modal-delete-bot.mustache | +28 | −0 | Go to diff View file |
A | plugins/botmattermost/templates/modals/modal-edit-bot.mustache | +54 | −0 | Go to diff View file |
A | plugins/botmattermost/templates/project-admin/admin.mustache | +67 | −0 | Go to diff View file |
A | plugins/botmattermost/tests/unit/BotMattermost/Administration/Request/ParameterValidatorTest.php | +86 | −0 | Go to diff View file |
A | plugins/botmattermost/tests/unit/BotMattermost/Bot/BotCreatorTest.php | +134 | −0 | Go to diff View file |
A | plugins/botmattermost/tests/unit/BotMattermost/Bot/BotDeletorTest.php | +94 | −0 | Go to diff View file |
A | plugins/botmattermost/tests/unit/BotMattermost/Bot/BotEditorTest.php | +140 | −0 | Go to diff View file |
A | plugins/botmattermost/tests/unit/BotMattermost/Bot/BotFactoryTest.php | +138 | −0 | Go to diff View file |
A | plugins/botmattermost/tests/unit/BotMattermost/Bot/BotValidityCheckerTest.php | +58 | −0 | Go to diff View file |
A | plugins/botmattermost/tests/unit/BotMattermost/SenderServices/EncoderMessageTest.php | +74 | −0 | Go to diff View file |
A | plugins/botmattermost/tests/unit/BotMattermost/SenderServices/MarkdownEngine/MarkdownMustacheRendererTest.php | +53 | −0 | Go to diff View file |
A | plugins/botmattermost/tests/unit/BotMattermost/SenderServices/MarkdownEngine/MarkdownTemplateRendererFactoryTest.php | +36 | −0 | Go to diff View file |
A | plugins/botmattermost/tests/unit/BotMattermost/SenderServices/MarkdownEngine/templates/simple-text.mustache | +1 | −0 | Go to diff View file |
A | plugins/botmattermost/tests/unit/BotMattermost/SenderServices/SenderTest.php | +72 | −0 | Go to diff View file |
A | plugins/botmattermost/tests/unit/bootstrap.php | +28 | −0 | Go to diff View file |
A | plugins/botmattermost/themes/botmattermost.scss | +10 | −0 | Go to diff View file |
A | plugins/botmattermost/tsconfig.json | +8 | −0 | Go to diff View file |
A | plugins/botmattermost/tuleap-plugin-botmattermost.conf | +7 | −0 | Go to diff View file |
A | plugins/botmattermost/tuleap-plugin-botmattermost.spec | +57 | −0 | Go to diff View file |
A | plugins/botmattermost/webpack.common.js | +53 | −0 | Go to diff View file |
A | plugins/botmattermost/webpack.dev.js | +23 | −0 | Go to diff View file |
A | plugins/botmattermost/webpack.prod.js | +23 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/.gitignore | +11 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/Jenkinsfile | +87 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/Makefile | +65 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/README.mkd | +14 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/VERSION | +1 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/build-manifest.json | +4 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/build-rpm.sh | +34 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/composer.json | +8 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/composer.lock | +18 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/db/install.sql | +16 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/db/mysql/updates/2016/201611030908_replace_start_date_and_duration_columns_by_send_time.php | +53 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/db/mysql/updates/2017/201704110929_add_channel_for_stand_up_summary.php | +66 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/db/uninstall.sql | +5 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/include/BotMattermostAgileDashboard/BotMattermostStandUpSummary/BotMattermostStandUpSummary.php | +86 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/include/BotMattermostAgileDashboard/BotMattermostStandUpSummary/Dao.php | +221 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/include/BotMattermostAgileDashboard/BotMattermostStandUpSummary/Factory.php | +133 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/include/BotMattermostAgileDashboard/BotMattermostStandUpSummary/NotificationCreator.php | +52 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/include/BotMattermostAgileDashboard/BotMattermostStandUpSummary/Validator.php | +108 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/include/BotMattermostAgileDashboard/Exception/CannotCreateBotNotificationException.php | +33 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/include/BotMattermostAgileDashboard/Exception/CannotDeleteBotNotificationException.php | +33 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/include/BotMattermostAgileDashboard/Exception/CannotUpdateBotNotificationException.php | +33 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/include/BotMattermostAgileDashboard/Plugin/PluginInfo.php | +37 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/include/BotMattermostAgileDashboard/Presenter/AdminNotificationPresenter.php | +133 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/include/BotMattermostAgileDashboard/Presenter/StandUpSummaryPresenter.php | +61 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/include/BotMattermostAgileDashboard/SenderServices/StandUpNotificationBuilder.php | +236 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/include/BotMattermostAgileDashboard/SenderServices/StandUpNotificationSender.php | +99 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/include/botmattermost_agiledashboardPlugin.php | +178 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/include/constants.php | +21 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/package.json | +17 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/pnpm-lock.yaml | +18 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/scripts/autocompleter.js | +71 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/scripts/modal.js | +55 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/site-content/fr_FR/LC_MESSAGES/tuleap-botmattermost_agiledashboard.po | +177 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/templates/adminConfiguration.mustache | +61 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/templates/modal-add-bot.mustache | +99 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/templates/modal-delete-bot.mustache | +36 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/templates/modal-edit-bot.mustache | +71 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/templates/stand-up-summary.mustache | +44 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/tests/unit/BotMattermostAgileDashboard/BotMattermostStandUpSummary/NotificationCreator.php | +99 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/tests/unit/BotMattermostAgileDashboard/SenderServices/StandUpNotificationBuilderTest.php | +89 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/tests/unit/bootstrap.php | +23 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/tuleap-plugin-botmattermost-agiledashboard.spec | +52 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/webpack.common.js | +39 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/webpack.dev.js | +23 | −0 | Go to diff View file |
A | plugins/botmattermost_agiledashboard/webpack.prod.js | +23 | −0 | Go to diff View file |
A | plugins/botmattermost_git/.gitignore | +9 | −0 | Go to diff View file |
A | plugins/botmattermost_git/Jenkinsfile | +87 | −0 | Go to diff View file |
A | plugins/botmattermost_git/Makefile | +65 | −0 | Go to diff View file |
A | plugins/botmattermost_git/README.mkd | +15 | −0 | Go to diff View file |
A | plugins/botmattermost_git/VERSION | +1 | −0 | Go to diff View file |
A | plugins/botmattermost_git/build-manifest.json | +4 | −0 | Go to diff View file |
A | plugins/botmattermost_git/build-rpm.sh | +34 | −0 | Go to diff View file |
A | plugins/botmattermost_git/composer.json | +8 | −0 | Go to diff View file |
A | plugins/botmattermost_git/composer.lock | +18 | −0 | Go to diff View file |
A | plugins/botmattermost_git/db/install.sql | +14 | −0 | Go to diff View file |
A | plugins/botmattermost_git/db/mysql/updates/2017/201703221614_add_channel_for_git_notification.php | +64 | −0 | Go to diff View file |
A | plugins/botmattermost_git/db/uninstall.sql | +5 | −0 | Go to diff View file |
A | plugins/botmattermost_git/include/BotMattermostGit/BotMattermostGitNotification/BotMattermostGitNotification.php | +62 | −0 | Go to diff View file |
A | plugins/botmattermost_git/include/BotMattermostGit/BotMattermostGitNotification/Dao.php | +188 | −0 | Go to diff View file |
A | plugins/botmattermost_git/include/BotMattermostGit/BotMattermostGitNotification/Factory.php | +100 | −0 | Go to diff View file |
A | plugins/botmattermost_git/include/BotMattermostGit/BotMattermostGitNotification/Validator.php | +132 | −0 | Go to diff View file |
A | plugins/botmattermost_git/include/BotMattermostGit/Controller.php | +166 | −0 | Go to diff View file |
A | plugins/botmattermost_git/include/BotMattermostGit/Exception/CannotCreateBotNotificationException.php | +33 | −0 | Go to diff View file |
A | plugins/botmattermost_git/include/BotMattermostGit/Exception/CannotDeleteBotNotificationException.php | +33 | −0 | Go to diff View file |
A | plugins/botmattermost_git/include/BotMattermostGit/Exception/CannotUpdateBotNotificationException.php | +33 | −0 | Go to diff View file |
A | plugins/botmattermost_git/include/BotMattermostGit/Plugin/PluginInfo.php | +37 | −0 | Go to diff View file |
A | plugins/botmattermost_git/include/BotMattermostGit/Presenter/AttachmentPreTextPresenter.php | +65 | −0 | Go to diff View file |
A | plugins/botmattermost_git/include/BotMattermostGit/Presenter/Presenter.php | +104 | −0 | Go to diff View file |
A | plugins/botmattermost_git/include/BotMattermostGit/SenderServices/GitNotificationBuilder.php | +55 | −0 | Go to diff View file |
A | plugins/botmattermost_git/include/BotMattermostGit/SenderServices/GitNotificationSender.php | +66 | −0 | Go to diff View file |
A | plugins/botmattermost_git/include/BotMattermostGit/SenderServices/PullRequestNotificationBuilder.php | +99 | −0 | Go to diff View file |
A | plugins/botmattermost_git/include/BotMattermostGit/SenderServices/PullRequestNotificationSender.php | +82 | −0 | Go to diff View file |
A | plugins/botmattermost_git/include/botmattermost_gitPlugin.php | +240 | −0 | Go to diff View file |
A | plugins/botmattermost_git/include/constants.php | +21 | −0 | Go to diff View file |
A | plugins/botmattermost_git/package.json | +17 | −0 | Go to diff View file |
A | plugins/botmattermost_git/pnpm-lock.yaml | +11 | −0 | Go to diff View file |
A | plugins/botmattermost_git/scripts/autocompleter.js | +78 | −0 | Go to diff View file |
A | plugins/botmattermost_git/site-content/fr_FR/LC_MESSAGES/tuleap-botmattermost_git.po | +131 | −0 | Go to diff View file |
A | plugins/botmattermost_git/templates/attachment/pretext.mustache | +1 | −0 | Go to diff View file |
A | plugins/botmattermost_git/templates/index.mustache | +49 | −0 | Go to diff View file |
A | plugins/botmattermost_git/templates/modal-add-bot.mustache | +79 | −0 | Go to diff View file |
A | plugins/botmattermost_git/templates/modal-delete-bot.mustache | +34 | −0 | Go to diff View file |
A | plugins/botmattermost_git/templates/modal-edit-bot.mustache | +42 | −0 | Go to diff View file |
A | plugins/botmattermost_git/themes/FlamingParrot/css/style.scss | +24 | −0 | Go to diff View file |
A | plugins/botmattermost_git/themes/default/css/_style.scss | +74 | −0 | Go to diff View file |
A | plugins/botmattermost_git/tuleap-plugin-botmattermost-git.spec | +52 | −0 | Go to diff View file |
A | plugins/botmattermost_git/webpack.common.js | +43 | −0 | Go to diff View file |
A | plugins/botmattermost_git/webpack.dev.js | +23 | −0 | Go to diff View file |
A | plugins/botmattermost_git/webpack.prod.js | +23 | −0 | Go to diff View file |
A | plugins/enalean_licensemanager/.gitignore | +3 | −0 | Go to diff View file |
A | plugins/enalean_licensemanager/Jenkinsfile | +117 | −0 | Go to diff View file |
A | plugins/enalean_licensemanager/Makefile | +64 | −0 | Go to diff View file |
A | plugins/enalean_licensemanager/README.mkd | +1 | −0 | Go to diff View file |
A | plugins/enalean_licensemanager/VERSION | +1 | −0 | Go to diff View file |
A | plugins/enalean_licensemanager/build-rpm.sh | +29 | −0 | Go to diff View file |
A | plugins/enalean_licensemanager/composer.json | +11 | −0 | Go to diff View file |
A | plugins/enalean_licensemanager/composer.lock | +18 | −0 | Go to diff View file |
A | plugins/enalean_licensemanager/include/LicenseManager/CountDueLicenses/CountDueLicensesController.php | +148 | −0 | Go to diff View file |
A | plugins/enalean_licensemanager/include/LicenseManager/CountDueLicenses/DueLicencesDao.php | +57 | −0 | Go to diff View file |
A | plugins/enalean_licensemanager/include/LicenseManager/CountDueLicenses/LicenseManagerCountDueLicensesCommand.php | +156 | −0 | Go to diff View file |
A | plugins/enalean_licensemanager/include/LicenseManager/CountDueLicenses/UserEvolutionHistoryExporter.php | +98 | −0 | Go to diff View file |
A | plugins/enalean_licensemanager/include/LicenseManager/LicenseManagerComputedMetricsCollector.php | +50 | −0 | Go to diff View file |
A | plugins/enalean_licensemanager/include/LicenseManager/PluginInfo.php | +37 | −0 | Go to diff View file |
A | plugins/enalean_licensemanager/include/LicenseManager/StatusActivityEmitter.php | +54 | −0 | Go to diff View file |
A | plugins/enalean_licensemanager/include/LicenseManager/Webhook/StatusLogger.php | +32 | −0 | Go to diff View file |
A | plugins/enalean_licensemanager/include/LicenseManager/Webhook/UserCounterPayload.php | +52 | −0 | Go to diff View file |
A | plugins/enalean_licensemanager/include/LicenseManager/Webhook/UserCounterWebhook.php | +50 | −0 | Go to diff View file |
A | plugins/enalean_licensemanager/include/enalean_licensemanagerPlugin.php | +311 | −0 | Go to diff View file |
A | plugins/enalean_licensemanager/site-content/en_US/enalean_licensemanager.tab | +2 | −0 | Go to diff View file |
A | plugins/enalean_licensemanager/site-content/fr_FR/LC_MESSAGES/tuleap-enalean_licensemanager.po | +58 | −0 | Go to diff View file |
A | plugins/enalean_licensemanager/site-content/fr_FR/enalean_licensemanager.tab | +2 | −0 | Go to diff View file |
A | plugins/enalean_licensemanager/tests/unit/LicenseManager/LicenseManagerComputedMetricsCollectorTest.php | +37 | −0 | Go to diff View file |
A | plugins/enalean_licensemanager/tests/unit/LicenseManager/StatusActivityEmitterTest.php | +55 | −0 | Go to diff View file |
A | plugins/enalean_licensemanager/tests/unit/bootstrap.php | +21 | −0 | Go to diff View file |
A | plugins/enalean_licensemanager/tuleap-plugin-enalean-licensemanager.spec | +41 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/.gitignore | +8 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/.use-front-controller | +0 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/Jenkinsfile | +114 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/Makefile | +79 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/README.md | +1 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/VERSION | +1 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/build-manifest.json | +4 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/build-rpm.sh | +35 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/composer.json | +11 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/composer.lock | +18 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/etc/config.inc.dist | +2 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/include/ContactSupportFormController.php | +85 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/include/EmailSendException.php | +25 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/include/Plugin/Info.php | +45 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/include/Presenter/ConfirmationEmailToUserPresenter.php | +65 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/include/Presenter/EmailToSupportPresenter.php | +44 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/include/Presenter/FormPresenter.php | +32 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/include/Presenter/ModalPresenter.php | +35 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/include/SendMailSupportController.php | +137 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/include/constants.php | +21 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/include/mytuleap_contact_supportPlugin.php | +155 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/package.json | +19 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/pnpm-lock.yaml | +57 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/scripts/help-page.ts | +23 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/scripts/modal-burning-parrot.ts | +46 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/scripts/modal-flaming-parrot.ts | +42 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/scripts/modal.ts | +120 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/scripts/setup-contact-support-modal.ts | +93 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/site-content/fr_FR/LC_MESSAGES/tuleap-mytuleap_contact_support.po | +48 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/site-content/tuleap-mytuleap_contact_support.pot | +32 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/templates/confirmation-email-to-user.mustache | +753 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/templates/email-to-support.mustache | +689 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/templates/form-burning-parrot.mustache | +42 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/templates/form-flaming-parrot.mustache | +37 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/templates/modal-burning-parrot.mustache | +17 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/templates/modal-flaming-parrot.mustache | +17 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/themes/BurningParrot/css/mytuleap-contact-support.scss | +83 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/themes/FlamingParrot/css/style.scss | +43 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/themes/default/css/_style.scss | +106 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/tsconfig.json | +10 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/tuleap-plugin-mytuleap-contact-support.spec | +45 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/webpack.common.js | +54 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/webpack.dev.js | +23 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/webpack.prod.js | +23 | −0 | Go to diff View file |
A | plugins/mytuleap_contact_support/www/img/email-header.png | Binary file | Go to diff View file |