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
/* vim: set expandtab tabstop=4 shiftwidth=4: */
/**
// +----------------------------------------------------------------------+
* Copyright (c) 2007 OASIS
// | Eventum - Issue Tracking System                                      |
  * Authors: Greg Rundlett <greg.rundlett@oasis-open.org>               |
// +----------------------------------------------------------------------+
*/
// | Copyright (c) 2003, 2004, 2005 MySQL AB                              |
// |                                                                      |
// | This program is free software; you can redistribute it and/or modify |
// | it under the terms of the GNU General Public License as published by |
// | the Free Software Foundation; either version 2 of the License, or    |
// | (at your option) any later version.                                  |
// |                                                                      |
// | This program is distributed in the hope that it will be useful,      |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of      |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the        |
// | GNU General Public License for more details.                        |
// |                                                                      |
// | You should have received a copy of the GNU General Public License    |
// | along with this program; if not, write to:                          |
// |                                                                      |
// | Free Software Foundation, Inc.                                      |
// | 59 Temple Place - Suite 330                                          |
// | Boston, MA 02111-1307, USA.                                          |
// +----------------------------------------------------------------------+
// | Authors: Jo�o Prado Maia <jpm@mysql.com>                             |
// +----------------------------------------------------------------------+
//
// @(#) $Id: s.open_issues.php 1.1 03/08/12 20:04:44-00:00 jpm $
//
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");