/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Copyright ©2006 by sTEFANs
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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 the Free Software
Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* The detailed output page for command execution.
* Results as provided by $_SESSION[IDX_EXEC_RES]
* @copyright Copyright ©2006 by sTEFANs
* @license http://opensource.org/licenses/lgpl-license.php GNU General Public License
/** SVN execution library */
require_once('svn_lib.inc.php');
/** Common definitions */
require_once('var.inc.php');
/** HTML generation library */
require_once('page.inc.php');
* Prints all execution results provided within
* $_SESSION[IDX_EXEC_RES] array or via given
* @param array $exec_res Array of result arrays as
* provided by <i>ExecSvnCmd</i> and related functions.
* If this argument is NULL (default), $_SESSION[IDX_EXEC_RES]
* is used instead. This is needed to enable the
* details be shown within a sparate browser window.
//PrintDebugArray($_SESSION, 'SESSION');
foreach($exec_res as $result){
* Prints the default statement for unknown actions.
* Prints the HTML friendly entire result of a command.
* @param array $cmd_result a single result array as provided by ExecSvnCmd.