Eventum to TaskJuggler: Difference between revisions
New page: The following code when added to Eventum 1.7.1 will provide a new 'report' in the reporting interface that outputs open issues according to a simple keyword search. The output is formatte... |
No edit summary |
||
| Line 1: | Line 1: | ||
The following code when added to Eventum 1.7.1 will provide a new 'report' in the reporting interface that outputs open issues according to a simple keyword search. The output is formatted in the syntax of TaskJuggler so that you can then play with planning, prioritizing, scheduling these issues using TaskJuggler. | The following code when added to Eventum 1.7.1 will provide a new 'report' in the reporting interface that outputs open issues according to a simple keyword search. The output is formatted in the syntax of TaskJuggler so that you can then play with planning, prioritizing, scheduling these issues using TaskJuggler. | ||
The code is a working prototype, but there are surely improvements to be made. The idea with this release is to get more eyeballs early to enlist more ideas and release improvements often. Of course, one next step is to see what if anything needs to change to make this work in version 2.0 of Eventum. | '''WARNING: Beta quality.''' | ||
The code is a working prototype, but there are surely improvements to be made. There is no sanitization of user input. The idea with this release is to get more eyeballs early to enlist more ideas and release improvements often. Of course, one next step is to see what if anything needs to change to make this work in version 2.0 of Eventum. | |||
This code still needs to be authorized for release to MySQL according to their contribution guidelines. | |||
== Additions to existing Files == | == Additions to existing Files == | ||
| Line 326: | Line 330: | ||
<source lang=php> | <source lang=php> | ||
<?php | <?php | ||
/* | /** | ||
* Copyright (c) 2007 OASIS | |||
* Authors: Greg Rundlett <greg.rundlett@oasis-open.org> | | |||
*/ | |||
include_once("../config.inc.php"); | include_once("../config.inc.php"); | ||
include_once(APP_INC_PATH . "class.template.php"); | include_once(APP_INC_PATH . "class.template.php"); | ||