]> source.dussan.org Git - sonarqube.git/commit
SONAR-4326 Allow to add and remove tags on a rule
authorJean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com>
Tue, 21 Jan 2014 15:19:48 +0000 (16:19 +0100)
committerJean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com>
Tue, 21 Jan 2014 15:20:09 +0000 (16:20 +0100)
commitd075d50dec37ed658ee3deff4df7e5fea5b8259d
tree079c67fc4d71b8f83049ca0d05ec80cb8666fc0e
parenta727dd69450e2c17b64be163b32a221195303b2d
SONAR-4326 Allow to add and remove tags on a rule
15 files changed:
sonar-core/src/main/java/org/sonar/core/rule/RuleTagDao.java
sonar-core/src/main/java/org/sonar/core/rule/RuleTagMapper.java
sonar-core/src/main/resources/org/sonar/core/rule/RuleTagMapper.xml
sonar-core/src/test/java/org/sonar/core/rule/RuleTagDaoTest.java [new file with mode: 0644]
sonar-core/src/test/resources/org/sonar/core/rule/RuleTagDaoTest/delete-result.xml [new file with mode: 0644]
sonar-core/src/test/resources/org/sonar/core/rule/RuleTagDaoTest/insert-result.xml [new file with mode: 0644]
sonar-core/src/test/resources/org/sonar/core/rule/RuleTagDaoTest/shared.xml [new file with mode: 0644]
sonar-server/src/main/java/org/sonar/server/qualityprofile/QProfileRuleOperations.java
sonar-server/src/main/java/org/sonar/server/qualityprofile/QProfiles.java
sonar-server/src/main/webapp/WEB-INF/app/controllers/rules_configuration_controller.rb
sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/_rule.html.erb
sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/_rule_tags.html.erb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/_select_tags.html.erb [new file with mode: 0644]
sonar-server/src/test/java/org/sonar/server/qualityprofile/QProfileRuleOperationsTest.java
sonar-server/src/test/java/org/sonar/server/qualityprofile/QProfilesTest.java