diff options
author | Eric Davis <edavis@littlestreamsoftware.com> | 2010-09-10 03:09:02 +0000 |
---|---|---|
committer | Eric Davis <edavis@littlestreamsoftware.com> | 2010-09-10 03:09:02 +0000 |
commit | bdb3937e0f4c8faceb463e23cb28676930ddbd9e (patch) | |
tree | 8d8a5d1b5b78b1b206363549f8635a2e3b29ff32 /public/images | |
parent | 8d52608dbad63d504ec4b48ffe5ea09cfbe95bd9 (diff) | |
download | redmine-bdb3937e0f4c8faceb463e23cb28676930ddbd9e.tar.gz redmine-bdb3937e0f4c8faceb463e23cb28676930ddbd9e.zip |
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
Diffstat (limited to 'public/images')
-rw-r--r-- | public/images/milestone.png | bin | 122 -> 0 bytes |
-rw-r--r-- | public/images/milestone_done.png | bin | 0 -> 137 bytes |
-rw-r--r-- | public/images/milestone_late.png | bin | 0 -> 160 bytes |
-rw-r--r-- | public/images/milestone_todo.png | bin | 0 -> 155 bytes |
-rw-r--r-- | public/images/project_marker.png | bin | 0 -> 204 bytes |
-rw-r--r-- | public/images/task_done.png | bin | 855 -> 137 bytes |
-rw-r--r-- | public/images/version_marker.png | bin | 0 -> 174 bytes |
7 files changed, 0 insertions, 0 deletions
diff --git a/public/images/milestone.png b/public/images/milestone.png Binary files differdeleted file mode 100644 index a89791cf5..000000000 --- a/public/images/milestone.png +++ /dev/null diff --git a/public/images/milestone_done.png b/public/images/milestone_done.png Binary files differnew file mode 100644 index 000000000..5fdcb415c --- /dev/null +++ b/public/images/milestone_done.png diff --git a/public/images/milestone_late.png b/public/images/milestone_late.png Binary files differnew file mode 100644 index 000000000..cf922e954 --- /dev/null +++ b/public/images/milestone_late.png diff --git a/public/images/milestone_todo.png b/public/images/milestone_todo.png Binary files differnew file mode 100644 index 000000000..4c051c857 --- /dev/null +++ b/public/images/milestone_todo.png diff --git a/public/images/project_marker.png b/public/images/project_marker.png Binary files differnew file mode 100644 index 000000000..4124787d0 --- /dev/null +++ b/public/images/project_marker.png diff --git a/public/images/task_done.png b/public/images/task_done.png Binary files differindex 954ebedce..5fdcb415c 100644 --- a/public/images/task_done.png +++ b/public/images/task_done.png diff --git a/public/images/version_marker.png b/public/images/version_marker.png Binary files differnew file mode 100644 index 000000000..0368ca290 --- /dev/null +++ b/public/images/version_marker.png |