]> source.dussan.org Git - sonarqube.git/commit
SONAR-3755 remove code related to reviews and violations
authorSimon Brandhof <simon.brandhof@gmail.com>
Thu, 23 May 2013 12:59:34 +0000 (14:59 +0200)
committerSimon Brandhof <simon.brandhof@gmail.com>
Thu, 23 May 2013 15:46:59 +0000 (17:46 +0200)
commitf1187355aa041dc5dd183574bf43a52ca535db5f
tree216884f51336af7941227496ecd0606b9f9e26e7
parent6a0ee5725ed9fd514f177d9c07ade38cf1cf8272
SONAR-3755 remove code related to reviews and violations
176 files changed:
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/issue/CountOpenIssuesDecorator.java
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/issue/IssueTrackingDecorator.java
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/issue/IssuesDensityDecorator.java
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/issue/SeverityUtils.java
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/issue/WeightedIssuesDecorator.java
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/sensors/ManualViolationInjector.java [deleted file]
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/sensors/ReviewWorkflowDecorator.java [deleted file]
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/sensors/ReviewsMeasuresDecorator.java [deleted file]
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/sensors/SeverityUtils.java [deleted file]
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/sensors/ViolationSeverityUpdater.java [deleted file]
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/sensors/ViolationsDecorator.java [deleted file]
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/sensors/ViolationsDensityDecorator.java [deleted file]
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/sensors/WeightedViolationsDecorator.java [deleted file]
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/timemachine/NewViolationsDecorator.java [deleted file]
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/timemachine/ViolationPersisterDecorator.java [deleted file]
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/timemachine/ViolationTrackingDecorator.java [deleted file]
plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties
plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/hotspots/hotspot_most_violated_rules.html.erb
plugins/sonar-core-plugin/src/test/java/org/sonar/plugins/core/issue/CountOpenIssuesDecoratorTest.java
plugins/sonar-core-plugin/src/test/java/org/sonar/plugins/core/issue/IssuesDensityDecoratorTest.java
plugins/sonar-core-plugin/src/test/java/org/sonar/plugins/core/issue/WeightedIssuesDecoratorTest.java
plugins/sonar-core-plugin/src/test/java/org/sonar/plugins/core/sensors/ManualViolationInjectorTest.java [deleted file]
plugins/sonar-core-plugin/src/test/java/org/sonar/plugins/core/sensors/ReviewWorkflowDecoratorTest.java [deleted file]
plugins/sonar-core-plugin/src/test/java/org/sonar/plugins/core/sensors/ReviewsMeasuresDecoratorTest.java [deleted file]
plugins/sonar-core-plugin/src/test/java/org/sonar/plugins/core/sensors/SeverityUtilsTest.java [deleted file]
plugins/sonar-core-plugin/src/test/java/org/sonar/plugins/core/sensors/ViolationSeverityUpdaterTest.java [deleted file]
plugins/sonar-core-plugin/src/test/java/org/sonar/plugins/core/sensors/ViolationsDecoratorTest.java [deleted file]
plugins/sonar-core-plugin/src/test/java/org/sonar/plugins/core/sensors/ViolationsDensityDecoratorTest.java [deleted file]
plugins/sonar-core-plugin/src/test/java/org/sonar/plugins/core/sensors/WeightedViolationsDecoratorTest.java [deleted file]
plugins/sonar-core-plugin/src/test/java/org/sonar/plugins/core/timemachine/NewViolationsDecoratorTest.java [deleted file]
plugins/sonar-core-plugin/src/test/java/org/sonar/plugins/core/timemachine/ViolationPersisterDecoratorTest.java [deleted file]
plugins/sonar-core-plugin/src/test/java/org/sonar/plugins/core/timemachine/ViolationTrackingDecoratorTest.java [deleted file]
plugins/sonar-core-plugin/src/test/java/org/sonar/plugins/core/timemachine/ViolationTrackingTest.java [deleted file]
plugins/sonar-core-plugin/src/test/resources/org/sonar/plugins/core/sensors/ReviewWorkflowDecoratorTest/shouldCloseResolvedManualViolations-result.xml [deleted file]
plugins/sonar-core-plugin/src/test/resources/org/sonar/plugins/core/sensors/ReviewWorkflowDecoratorTest/shouldCloseResolvedManualViolations.xml [deleted file]
plugins/sonar-core-plugin/src/test/resources/org/sonar/plugins/core/sensors/ReviewWorkflowDecoratorTest/shouldCloseReviewsOnDeletedResources.xml [deleted file]
plugins/sonar-core-plugin/src/test/resources/org/sonar/plugins/core/sensors/ReviewWorkflowDecoratorTest/shouldCloseReviewsOnResolvedViolations-result.xml [deleted file]
plugins/sonar-core-plugin/src/test/resources/org/sonar/plugins/core/sensors/ReviewWorkflowDecoratorTest/shouldCloseReviewsOnResolvedViolations.xml [deleted file]
plugins/sonar-core-plugin/src/test/resources/org/sonar/plugins/core/sensors/ReviewWorkflowDecoratorTest/shouldReopenViolations-result.xml [deleted file]
plugins/sonar-core-plugin/src/test/resources/org/sonar/plugins/core/sensors/ReviewWorkflowDecoratorTest/shouldReopenViolations.xml [deleted file]
plugins/sonar-core-plugin/src/test/resources/org/sonar/plugins/core/sensors/ReviewsMeasuresDecoratorTest/fixture.xml [deleted file]
plugins/sonar-core-plugin/src/test/resources/org/sonar/plugins/core/timemachine/ViolationPersisterDecoratorTest/shared.xml
plugins/sonar-core-plugin/src/test/resources/org/sonar/plugins/core/timemachine/ViolationPersisterDecoratorTest/shouldCopyPermanentIdFromReferenceViolation-result.xml
plugins/sonar-core-plugin/src/test/resources/org/sonar/plugins/core/timemachine/ViolationPersisterDecoratorTest/shouldSaveViolations-result.xml
sonar-batch/src/main/java/org/sonar/batch/scan/LastSnapshots.java
sonar-batch/src/test/java/org/sonar/batch/scan/LastSnapshotsTest.java
sonar-batch/src/test/resources/org/sonar/batch/phases/UpdateStatusJobTest/shouldNotEnableSnapshotWhenNotLatest-result.xml
sonar-batch/src/test/resources/org/sonar/batch/phases/UpdateStatusJobTest/shouldNotEnableSnapshotWhenNotLatest.xml
sonar-batch/src/test/resources/org/sonar/batch/scan/LastSnapshotsTest/last_snapshot.xml
sonar-core/src/main/java/org/sonar/core/persistence/DaoUtils.java
sonar-core/src/main/java/org/sonar/core/persistence/DatabaseUtils.java
sonar-core/src/main/java/org/sonar/core/persistence/DryRunDatabaseFactory.java
sonar-core/src/main/java/org/sonar/core/persistence/MyBatis.java
sonar-core/src/main/java/org/sonar/core/purge/PurgeCommands.java
sonar-core/src/main/java/org/sonar/core/purge/PurgeDao.java
sonar-core/src/main/java/org/sonar/core/purge/PurgeMapper.java
sonar-core/src/main/java/org/sonar/core/review/ReviewCommentDao.java [deleted file]
sonar-core/src/main/java/org/sonar/core/review/ReviewCommentDto.java [deleted file]
sonar-core/src/main/java/org/sonar/core/review/ReviewCommentMapper.java [deleted file]
sonar-core/src/main/java/org/sonar/core/review/ReviewDao.java [deleted file]
sonar-core/src/main/java/org/sonar/core/review/ReviewMapper.java [deleted file]
sonar-core/src/main/java/org/sonar/core/review/ReviewPredicates.java [deleted file]
sonar-core/src/main/java/org/sonar/core/review/package-info.java [deleted file]
sonar-core/src/main/java/org/sonar/core/workflow/ReviewDatabaseStore.java [deleted file]
sonar-core/src/main/resources/META-INF/persistence.xml
sonar-core/src/main/resources/org/sonar/core/persistence/schema-h2.ddl
sonar-core/src/main/resources/org/sonar/core/purge/PurgeMapper.xml
sonar-core/src/main/resources/org/sonar/core/review/ReviewCommentMapper.xml [deleted file]
sonar-core/src/main/resources/org/sonar/core/review/ReviewMapper.xml [deleted file]
sonar-core/src/test/java/org/sonar/core/persistence/DryRunDatabaseFactoryTest.java
sonar-core/src/test/java/org/sonar/core/purge/PurgeCommandsTest.java
sonar-core/src/test/java/org/sonar/core/purge/PurgeDaoTest.java
sonar-core/src/test/java/org/sonar/core/review/ReviewCommentDaoTest.java [deleted file]
sonar-core/src/test/java/org/sonar/core/review/ReviewDaoTest.java [deleted file]
sonar-core/src/test/java/org/sonar/core/review/ReviewDtoTest.java [deleted file]
sonar-core/src/test/java/org/sonar/core/review/ReviewPredicatesTest.java [deleted file]
sonar-core/src/test/java/org/sonar/core/workflow/ReviewDatabaseStoreTest.java [deleted file]
sonar-core/src/test/resources/org/sonar/core/persistence/DryRunDatabaseFactoryTest/should_create_database_with_violations_and_reviews.xml [deleted file]
sonar-core/src/test/resources/org/sonar/core/purge/PurgeCommandsTest/shouldDeleteResource.xml
sonar-core/src/test/resources/org/sonar/core/purge/PurgeCommandsTest/shouldDeleteSnapshot-result.xml
sonar-core/src/test/resources/org/sonar/core/purge/PurgeCommandsTest/shouldDeleteSnapshot.xml
sonar-core/src/test/resources/org/sonar/core/purge/PurgeCommandsTest/shouldPurgeSnapshot-result.xml
sonar-core/src/test/resources/org/sonar/core/purge/PurgeCommandsTest/shouldPurgeSnapshot.xml
sonar-core/src/test/resources/org/sonar/core/purge/PurgeDaoTest/shouldCloseReviewWhenDisablingResource-result.xml [deleted file]
sonar-core/src/test/resources/org/sonar/core/purge/PurgeDaoTest/shouldCloseReviewWhenDisablingResource.xml [deleted file]
sonar-core/src/test/resources/org/sonar/core/purge/PurgeDaoTest/shouldDeleteProject.xml
sonar-core/src/test/resources/org/sonar/core/review/ReviewCommentDaoTest/insert-result.xml [deleted file]
sonar-core/src/test/resources/org/sonar/core/review/ReviewCommentDaoTest/insert.xml [deleted file]
sonar-core/src/test/resources/org/sonar/core/review/ReviewDaoTest/shared.xml [deleted file]
sonar-core/src/test/resources/org/sonar/core/review/ReviewDaoTest/update-result.xml [deleted file]
sonar-core/src/test/resources/org/sonar/core/review/ReviewDaoTest/update.xml [deleted file]
sonar-core/src/test/resources/org/sonar/core/workflow/ReviewDatabaseStoreTest/completeProjectSettings.xml [deleted file]
sonar-core/src/test/resources/org/sonar/core/workflow/ReviewDatabaseStoreTest/store-result.xml [deleted file]
sonar-core/src/test/resources/org/sonar/core/workflow/ReviewDatabaseStoreTest/store.xml [deleted file]
sonar-plugin-api/src/main/java/org/sonar/api/database/model/RuleFailureModel.java [deleted file]
sonar-plugin-api/src/main/java/org/sonar/api/measures/CoreMetrics.java
sonar-plugin-api/src/test/java/org/sonar/api/database/model/RuleFailureModelTest.java [deleted file]
sonar-server/src/main/java/org/sonar/server/platform/Platform.java
sonar-server/src/main/java/org/sonar/server/ui/DefaultPages.java
sonar-server/src/main/webapp/WEB-INF/app/controllers/api/gwp_resources_controller.rb
sonar-server/src/main/webapp/WEB-INF/app/controllers/api/reviews_controller.rb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/controllers/api/violations_controller.rb
sonar-server/src/main/webapp/WEB-INF/app/controllers/drilldown_controller.rb
sonar-server/src/main/webapp/WEB-INF/app/controllers/issues_action_plans_controller.rb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/controllers/project_reviews_controller.rb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/controllers/resource_controller.rb
sonar-server/src/main/webapp/WEB-INF/app/controllers/reviews_controller.rb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/helpers/application_helper.rb
sonar-server/src/main/webapp/WEB-INF/app/helpers/drilldown_helper.rb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/helpers/reviews_helper.rb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/helpers/source_helper.rb
sonar-server/src/main/webapp/WEB-INF/app/models/action_plan.rb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/models/review.rb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/models/review_comment.rb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/models/rule.rb
sonar-server/src/main/webapp/WEB-INF/app/models/rule_failure.rb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/models/snapshot.rb
sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/_severity.html.erb
sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/_severity_issues.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/issues.html.erb
sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/violations.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/issues_action_plans/_new.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/issues_action_plans/_progress.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/issues_action_plans/index.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/layouts/_breadcrumb.html.erb
sonar-server/src/main/webapp/WEB-INF/app/views/layouts/_layout.html.erb
sonar-server/src/main/webapp/WEB-INF/app/views/project_reviews/_action_plan_form.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/project_reviews/_assign_form.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/project_reviews/_change_severity_form.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/project_reviews/_change_status_form.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/project_reviews/_comment_form.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/project_reviews/_false_positive_form.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/project_reviews/_review.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/project_reviews/_view.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/project_reviews/index.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/project_reviews/screens/_comment.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/resource/_header_issues.html.erb
sonar-server/src/main/webapp/WEB-INF/app/views/resource/_header_violations.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/resource/_index.html.erb
sonar-server/src/main/webapp/WEB-INF/app/views/resource/_index_issues.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/resource/_rules_filter_issues.html.erb
sonar-server/src/main/webapp/WEB-INF/app/views/resource/_violation.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/reviews/_list.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/reviews/_violation_action_plan_form.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/reviews/_violation_assign_form.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/reviews/_violation_change_severity_form.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/reviews/_violation_change_status_form.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/reviews/_violation_comment_form.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/reviews/_violation_false_positive_form.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/reviews/index.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/reviews/screens/_comment.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/shared/_source_display.erb
sonar-server/src/main/webapp/WEB-INF/app/views/shared/_source_issue_form.html.erb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/app/views/shared/_source_violation_form.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/shared/_source_violations.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/config/routes.rb
sonar-server/src/main/webapp/javascripts/resource.js
sonar-server/src/main/webapp/stylesheets/style.css
sonar-server/src/test/java/org/sonar/server/ui/ViewsTest.java
sonar-ws-client/src/main/java/org/sonar/wsclient/services/Review.java [deleted file]
sonar-ws-client/src/main/java/org/sonar/wsclient/services/ReviewCreateQuery.java [deleted file]
sonar-ws-client/src/main/java/org/sonar/wsclient/services/ReviewQuery.java [deleted file]
sonar-ws-client/src/main/java/org/sonar/wsclient/services/ReviewUpdateQuery.java [deleted file]
sonar-ws-client/src/main/java/org/sonar/wsclient/services/Violation.java
sonar-ws-client/src/main/java/org/sonar/wsclient/services/ViolationQuery.java
sonar-ws-client/src/main/java/org/sonar/wsclient/unmarshallers/ReviewUnmarshaller.java [deleted file]
sonar-ws-client/src/main/java/org/sonar/wsclient/unmarshallers/Unmarshallers.java
sonar-ws-client/src/main/java/org/sonar/wsclient/unmarshallers/ViolationUnmarshaller.java
sonar-ws-client/src/test/java/org/sonar/wsclient/services/ReviewCreateQueryTest.java [deleted file]
sonar-ws-client/src/test/java/org/sonar/wsclient/services/ReviewQueryTest.java [deleted file]
sonar-ws-client/src/test/java/org/sonar/wsclient/services/ReviewUpdateQueryTest.java [deleted file]
sonar-ws-client/src/test/java/org/sonar/wsclient/services/ViolationQueryTest.java
sonar-ws-client/src/test/java/org/sonar/wsclient/unmarshallers/ReviewUnmarshallerTest.java [deleted file]
sonar-ws-client/src/test/java/org/sonar/wsclient/unmarshallers/ViolationUnmarshallerTest.java
sonar-ws-client/src/test/resources/violations/violation-with-review.json [deleted file]