]> source.dussan.org Git - sonarqube.git/commit
SONAR-1927 Global dashboards
authorDavid Gageot <david@gageot.net>
Wed, 2 May 2012 11:27:59 +0000 (13:27 +0200)
committerDavid Gageot <david@gageot.net>
Wed, 2 May 2012 15:31:58 +0000 (17:31 +0200)
commitca300f5c972bfcd39e362d0dd8cc514bdf6fb4a4
tree01b4560522812a13cc13a40c4831fd5ba27a39c0
parent06eff341677daf1dd73c8d03da76f154c642f785
SONAR-1927 Global dashboards
28 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/dashboards/GlobalDashboard.java [new file with mode: 0644]
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/GlobalWidget.java [new file with mode: 0644]
plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/global.html.erb [new file with mode: 0644]
sonar-core/src/main/java/org/sonar/core/dashboard/DashboardDto.java
sonar-core/src/main/java/org/sonar/core/persistence/DatabaseVersion.java
sonar-core/src/main/resources/org/sonar/core/dashboard/DashboardMapper-oracle.xml
sonar-core/src/main/resources/org/sonar/core/dashboard/DashboardMapper.xml
sonar-core/src/main/resources/org/sonar/core/persistence/rows-derby.sql
sonar-core/src/main/resources/org/sonar/core/persistence/schema-derby.ddl
sonar-core/src/test/resources/org/sonar/core/dashboard/DashboardDaoTest/shouldInsert-result.xml
sonar-core/src/test/resources/org/sonar/core/dashboard/DashboardDaoTest/shouldInsertWithNullableColumns-result.xml
sonar-core/src/test/resources/org/sonar/core/dashboard/DashboardDaoTest/shouldSelectGlobalDashboard.xml
sonar-plugin-api/src/main/java/org/sonar/api/web/WidgetCategory.java
sonar-server/src/main/java/org/sonar/server/ui/ViewProxy.java
sonar-server/src/main/webapp/WEB-INF/app/controllers/detached_controller.rb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/app/views/detached/_configure_widget.html.erb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/app/views/detached/_header.html.erb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/app/views/detached/_widget.html.erb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/app/views/detached/_widget_definition.html.erb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/app/views/detached/_widget_definitions.html.erb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/app/views/detached/_widget_properties.html.erb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/app/views/detached/configure.html.erb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/app/views/detached/edit_layout.html.erb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/app/views/detached/index.html.erb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/app/views/layouts/_layout.html.erb
sonar-server/src/main/webapp/WEB-INF/db/migrate/300_add_global_to_dashboards.rb [new file with mode: 0644]
sonar-server/src/test/java/org/sonar/server/ui/ViewProxyTest.java