]> source.dussan.org Git - sonarqube.git/commit
SONAR-3034 API: default value of WidgetProperty is not injected in Ruby widgets
authorSimon Brandhof <simon.brandhof@gmail.com>
Thu, 15 Dec 2011 15:28:55 +0000 (16:28 +0100)
committerSimon Brandhof <simon.brandhof@gmail.com>
Thu, 15 Dec 2011 15:28:55 +0000 (16:28 +0100)
commitf149f41b21b5d630bdaf98eaa80f15e47ef990e9
tree1b43deecd7b27f89afb937231a1fc1370f4b2773
parent9531dd36097580a30fa9cb9e307659719a22bc18
SONAR-3034 API: default value of WidgetProperty is not injected in Ruby widgets

The column WIDGET_PROPERTIES.VALUE_TYPE is removed because it duplicates the Java extensions.
29 files changed:
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/HotspotMostViolatedRulesWidget.java
plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/hotspots/hotspot_metric.html.erb
plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/hotspots/hotspot_most_violated_resources.html.erb
plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/hotspots/hotspot_most_violated_rules.html.erb
plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/reviews/false_positive_reviews.html.erb
plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/reviews/my_reviews.html.erb
plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/reviews/project_reviews.html.erb
plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/time_machine.html.erb
plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/timeline.html.erb
sonar-core/src/main/java/org/sonar/jpa/entity/SchemaMigration.java
sonar-core/src/main/java/org/sonar/persistence/dashboard/WidgetPropertyDto.java
sonar-core/src/main/resources/org/sonar/persistence/dashboard/WidgetPropertyMapper-oracle.xml
sonar-core/src/main/resources/org/sonar/persistence/dashboard/WidgetPropertyMapper.xml
sonar-core/src/main/resources/org/sonar/persistence/rows-derby.sql
sonar-core/src/main/resources/org/sonar/persistence/schema-derby.ddl
sonar-core/src/test/java/org/sonar/persistence/dashboard/DashboardDaoTest.java
sonar-core/src/test/resources/org/sonar/persistence/dashboard/DashboardDaoTest/shouldInsert-result.xml
sonar-core/src/test/resources/org/sonar/persistence/dashboard/DashboardDaoTest/shouldInsertWithNullableColumns-result.xml
sonar-server/src/main/java/org/sonar/server/ui/ViewProxy.java
sonar-server/src/main/webapp/WEB-INF/app/controllers/dashboard_controller.rb
sonar-server/src/main/webapp/WEB-INF/app/models/widget.rb
sonar-server/src/main/webapp/WEB-INF/app/models/widget_property.rb
sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/_configure_widget.html.erb
sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/_widget.html.erb
sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/_widget_definition.html.erb
sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/_widget_properties.html.erb
sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/configure.html.erb
sonar-server/src/main/webapp/WEB-INF/db/migrate/237_delete_value_type_from_widget_properties.rb [new file with mode: 0644]
sonar-server/src/test/java/org/sonar/server/ui/ViewProxyTest.java