From bdb3937e0f4c8faceb463e23cb28676930ddbd9e Mon Sep 17 00:00:00 2001 From: Eric Davis <edavis@littlestreamsoftware.com> Date: Fri, 10 Sep 2010 03:09:02 +0000 Subject: Rewrite the Gantt chart. #6276 This version of the Gantt chart supports nested charts. So Projects, Versions, and Issues will be nested underneath their parents correctly. Additional features: * Move all Gantt code to Redmine::Helpers::Gantt class instead of having it in the Gantt class, controller, and view * Recursive and nest sub-projects * Recursive and nest versions * Recursive and nest issues * Draw a line showing when a Project is active and it's progress * Draw a line showing when a Version is active and it's progress * Show a version's % complete * Change the color of Projects, Versions, and Issues if they are late or behind schedule * Added Project#start_date and #due_date * Added Project#completed_percent * Use a mini-gravatar on the Gantt chart * Added tests for the Gantt rendering git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4072 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- public/images/milestone.png | Bin 122 -> 0 bytes public/images/milestone_done.png | Bin 0 -> 137 bytes public/images/milestone_late.png | Bin 0 -> 160 bytes public/images/milestone_todo.png | Bin 0 -> 155 bytes public/images/project_marker.png | Bin 0 -> 204 bytes public/images/task_done.png | Bin 855 -> 137 bytes public/images/version_marker.png | Bin 0 -> 174 bytes 7 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 public/images/milestone.png create mode 100644 public/images/milestone_done.png create mode 100644 public/images/milestone_late.png create mode 100644 public/images/milestone_todo.png create mode 100644 public/images/project_marker.png create mode 100644 public/images/version_marker.png (limited to 'public/images') diff --git a/public/images/milestone.png b/public/images/milestone.png deleted file mode 100644 index a89791cf5..000000000 Binary files a/public/images/milestone.png and /dev/null differ diff --git a/public/images/milestone_done.png b/public/images/milestone_done.png new file mode 100644 index 000000000..5fdcb415c Binary files /dev/null and b/public/images/milestone_done.png differ diff --git a/public/images/milestone_late.png b/public/images/milestone_late.png new file mode 100644 index 000000000..cf922e954 Binary files /dev/null and b/public/images/milestone_late.png differ diff --git a/public/images/milestone_todo.png b/public/images/milestone_todo.png new file mode 100644 index 000000000..4c051c857 Binary files /dev/null and b/public/images/milestone_todo.png differ diff --git a/public/images/project_marker.png b/public/images/project_marker.png new file mode 100644 index 000000000..4124787d0 Binary files /dev/null and b/public/images/project_marker.png differ diff --git a/public/images/task_done.png b/public/images/task_done.png index 954ebedce..5fdcb415c 100644 Binary files a/public/images/task_done.png and b/public/images/task_done.png differ diff --git a/public/images/version_marker.png b/public/images/version_marker.png new file mode 100644 index 000000000..0368ca290 Binary files /dev/null and b/public/images/version_marker.png differ -- cgit v1.2.3