]> source.dussan.org Git - sonarqube.git/commit
refactor quality profiles page (#1056)
authorStas Vilchik <vilchiks@gmail.com>
Mon, 27 Jun 2016 14:08:44 +0000 (16:08 +0200)
committerGitHub <noreply@github.com>
Mon, 27 Jun 2016 14:08:44 +0000 (16:08 +0200)
commit4ecb6fc3ec08ee37a1bb5c19d8ca44e2b832b5a7
tree763ce4b5a9d7b37982ab54fc64a0597167c2bc3d
parentc467e84eed1a60bbe8c0fe800e2cada2bb26bb4c
refactor quality profiles page (#1056)
127 files changed:
it/it-tests/src/test/java/it/Category4Suite.java
it/it-tests/src/test/java/it/qualityProfile/QualityProfilesPageTest.java [new file with mode: 0644]
it/it-tests/src/test/java/it/qualityProfile/ToDoTest.java [deleted file]
it/it-tests/src/test/resources/authorisation/QualityProfileAdminPermissionTest/normal-user.html
it/it-tests/src/test/resources/authorisation/QualityProfileAdminPermissionTest/profile-admin.html
it/it-tests/src/test/resources/qualityProfile/QualityProfilesPageTest/not_found.html [new file with mode: 0644]
it/it-tests/src/test/resources/qualityProfile/QualityProfilesPageTest/should_compare.html [new file with mode: 0644]
it/it-tests/src/test/resources/qualityProfile/QualityProfilesPageTest/should_copy.html [new file with mode: 0644]
it/it-tests/src/test/resources/qualityProfile/QualityProfilesPageTest/should_create.html [new file with mode: 0644]
it/it-tests/src/test/resources/qualityProfile/QualityProfilesPageTest/should_delete.html [new file with mode: 0644]
it/it-tests/src/test/resources/qualityProfile/QualityProfilesPageTest/should_display_changelog.html [new file with mode: 0644]
it/it-tests/src/test/resources/qualityProfile/QualityProfilesPageTest/should_display_list.html [new file with mode: 0644]
it/it-tests/src/test/resources/qualityProfile/QualityProfilesPageTest/should_display_profile_exporters.html [new file with mode: 0644]
it/it-tests/src/test/resources/qualityProfile/QualityProfilesPageTest/should_display_profile_inheritance.html [new file with mode: 0644]
it/it-tests/src/test/resources/qualityProfile/QualityProfilesPageTest/should_display_profile_projects.html [new file with mode: 0644]
it/it-tests/src/test/resources/qualityProfile/QualityProfilesPageTest/should_display_profile_rules.html [new file with mode: 0644]
it/it-tests/src/test/resources/qualityProfile/QualityProfilesPageTest/should_filter_by_language.html [new file with mode: 0644]
it/it-tests/src/test/resources/qualityProfile/QualityProfilesPageTest/should_open_from_list.html [new file with mode: 0644]
it/it-tests/src/test/resources/qualityProfile/QualityProfilesPageTest/should_rename.html [new file with mode: 0644]
it/it-tests/src/test/resources/qualityProfile/QualityProfilesPageTest/should_restore.html [new file with mode: 0644]
it/it-tests/src/test/resources/qualityProfile/QualityProfilesPageTest/should_restore_built_in.html [new file with mode: 0644]
it/it-tests/src/test/resources/qualityProfile/QualityProfilesPageTest/should_set_default.html [new file with mode: 0644]
server/sonar-web/src/main/js/api/quality-profiles.js
server/sonar-web/src/main/js/api/rules.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/__tests__/utils-test.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/actions-view.js [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/app.js
server/sonar-web/src/main/js/apps/quality-profiles/change-profile-parent-view.js [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/changelog/Changelog.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/changelog/ChangelogContainer.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/changelog/ChangelogEmpty.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/changelog/ChangelogSearch.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/changelog/ChangesList.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/changelog/ParameterChange.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/changelog/SeverityChange.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/changelog/__tests__/Changelog-test.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/changelog/__tests__/ChangelogSearch-test.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/changelog/__tests__/ChangesList-test.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/changelog/__tests__/ParameterChange-test.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/changelog/__tests__/SeverityChange-test.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/compare/ComparisonContainer.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/compare/ComparisonEmpty.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/compare/ComparisonForm.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/compare/ComparisonResults.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/compare/__tests__/ComparisonForm-test.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/compare/__tests__/ComparisonResults-test.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/components/App.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/components/ProfileContainer.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/components/ProfileDate.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/components/ProfileLink.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/components/ProfileNotFound.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/components/__tests__/ProfileContainer-test.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/controller.js [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/copy-profile-view.js [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/create-profile-view.js [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/delete-profile-view.js [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileDetails.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileEvolution.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileExporters.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileHeader.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileInheritance.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileInheritanceBox.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileProjects.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileRules.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileRulesRow.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/details/ProgressBar.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/home/Evolution.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/home/EvolutionDeprecated.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/home/EvolutionRules.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/home/EvolutionStagnant.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/home/HomeContainer.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/home/PageHeader.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/home/ProfilesList.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/home/ProfilesListHeader.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/home/ProfilesListRow.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/intro-view.js [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/layout.js [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/profile-changelog-view.js [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/profile-comparison-view.js [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/profile-details-view.js [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/profile-header-view.js [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/profile-view.js [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/profile.js [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/profiles-empty-view.js [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/profiles-view.js [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/profiles.js [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/propTypes.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/rename-profile-view.js [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/restore-built-in-profiles-view.js [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/restore-profile-view.js [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/router.js [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/styles.css [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/templates/quality-profile-changelog.hbs [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/templates/quality-profile-comparison.hbs [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/templates/quality-profiles-actions.hbs [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/templates/quality-profiles-change-projects.hbs [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/templates/quality-profiles-create-profile.hbs
server/sonar-web/src/main/js/apps/quality-profiles/templates/quality-profiles-delete-profile.hbs
server/sonar-web/src/main/js/apps/quality-profiles/templates/quality-profiles-empty.hbs [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/templates/quality-profiles-intro.hbs [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/templates/quality-profiles-layout.hbs [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/templates/quality-profiles-profile-details.hbs [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/templates/quality-profiles-profile-header.hbs [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/templates/quality-profiles-profile.hbs [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/templates/quality-profiles-profiles-language.hbs [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/templates/quality-profiles-profiles.hbs [deleted file]
server/sonar-web/src/main/js/apps/quality-profiles/templates/quality-profiles-restore-built-in-profiles-success.hbs
server/sonar-web/src/main/js/apps/quality-profiles/templates/quality-profiles-restore-built-in-profiles.hbs
server/sonar-web/src/main/js/apps/quality-profiles/utils.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/views/ChangeParentView.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/views/ChangeProjectsView.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/views/CopyProfileView.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/views/CreateProfileView.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/views/DeleteProfileView.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/views/RenameProfileView.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/views/RestoreBuiltInProfilesView.js [new file with mode: 0644]
server/sonar-web/src/main/js/apps/quality-profiles/views/RestoreProfileView.js [new file with mode: 0644]
server/sonar-web/src/main/js/components/controls/DateInput.js [new file with mode: 0644]
server/sonar-web/src/main/js/components/controls/styles.css [new file with mode: 0644]
server/sonar-web/src/main/js/components/mixins/tooltips-mixin.js
server/sonar-web/src/main/js/components/shared/severity-helper.js
server/sonar-web/src/main/js/helpers/urls.js
server/sonar-web/src/main/less/components/page.less
server/sonar-web/src/main/webapp/WEB-INF/app/controllers/profiles_controller.rb
server/sonar-web/tests/mocha.opts
server/sonar-web/tests/null-compiler.js
sonar-core/src/main/resources/org/sonar/l10n/core.properties