stable

Clone or download

Read-only

Display properties to edit in modal

This is part of story #10173 Have multiple dashboards Every widgets that are editable display their form in the edit modal. Currently if you submit the form it does nothing, it will be done in a next commit to not clutter too much the review. Change-Id: Icc86470aebc58cb235b9489e8e412738f6a2c723

Modified Files

Name
M plugins/docman/include/Docman_Widget_Embedded.class.php +61 −34 Go to diff View file
M plugins/git/include/Git_Widget_UserPushes.class.php +35 −2 Go to diff View file
M plugins/graphontrackersv5/include/GraphOnTrackersV5_Widget_Chart.class.php +29 −0 Go to diff View file
M plugins/hudson/include/HudsonJobWidget.class.php +68 −21 Go to diff View file
M plugins/hudson/include/hudsonPlugin.class.php +34 −35 Go to diff View file
M plugins/hudson/include/hudson_Widget_JobBuildHistory.class.php +17 −19 Go to diff View file
M plugins/hudson/include/hudson_Widget_JobLastArtifacts.class.php +19 −22 Go to diff View file
M plugins/hudson/include/hudson_Widget_JobLastBuilds.class.php +18 −20 Go to diff View file
M plugins/hudson/include/hudson_Widget_JobTestResults.class.php +21 −23 Go to diff View file
M plugins/hudson/include/hudson_Widget_JobTestTrend.class.php +12 −14 Go to diff View file
M plugins/hudson/include/hudson_Widget_MyMonitoredJobs.class.php +74 −33 Go to diff View file
M plugins/hudson/include/hudson_Widget_ProjectJobsOverview.class.php +32 −18 Go to diff View file
M plugins/hudson/site-content/en_US/hudson.tab +3 −3 Go to diff View file
M plugins/hudson/site-content/fr_FR/hudson.tab +3 −3 Go to diff View file
M plugins/hudson/tests/HudsonJobWidgetTest.php +3 −3 Go to diff View file
M plugins/tracker/include/Tracker/Widget/Tracker_Widget_MyArtifacts.class.php +50 −17 Go to diff View file
M plugins/tracker/include/Tracker/Widget/Tracker_Widget_Renderer.class.php +34 −1 Go to diff View file
M plugins/tracker/site-content/fr_FR/LC_MESSAGES/tuleap-tracker.po +6 −0 Go to diff View file
M plugins/tracker/site-content/tuleap-tracker.pot +6 −0 Go to diff View file
M site-content/fr_FR/LC_MESSAGES/tuleap-core.po +16 −0 Go to diff View file
M site-content/tuleap-core.pot +15 −0 Go to diff View file
M src/common/Dashboard/Widget/DashboardWidgetDao.php +30 −0 Go to diff View file
M src/common/widget/Widget.class.php +5 −0 Go to diff View file
M src/common/widget/Widget_ImageViewer.class.php +32 −1 Go to diff View file
M src/common/widget/Widget_MyArtifacts.class.php +59 −26 Go to diff View file
M src/common/widget/Widget_MyLatestSvnCommits.class.php +32 −10 Go to diff View file
M src/common/widget/Widget_Rss.class.php +39 −6 Go to diff View file
M src/templates/dashboard/edit-widget-modal.mustache +1 −1 Go to diff View file
M src/www/scripts/dashboards/dashboard-modals.js +5 −0 Go to diff View file
M src/www/widgets/get_edit_modal_content.php +32 −3 Go to diff View file