<?php
/*=========================================================================
  Program:   CDash - Cross-Platform Dashboard System
  Module:    $Id$
  Language:  PHP
  Date:      $Date$
  Version:   $Revision$

  Copyright (c) Kitware, Inc. All rights reserved.
  See LICENSE or http://www.cdash.org/licensing/ for details.

  This software is distributed WITHOUT ANY WARRANTY; without even
  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  PURPOSE. See the above copyright notices for more information.
=========================================================================*/

/** WARNING: JUST ADD TO THIS TABLE. NEVER MODIFY THE ENUMS */
define('CDASH_JOB_SCHEDULED', '0');
define('CDASH_JOB_RUNNING', '2');
define('CDASH_JOB_FINISHED', '3');
define('CDASH_JOB_ABORTED', '4');
define('CDASH_JOB_FAILED', '5');

define('CDASH_JOB_EXPERIMENTAL', '0');
define('CDASH_JOB_NIGHTLY', '1');
define('CDASH_JOB_CONTINUOUS', '2');

define('CDASH_REPOSITORY_CVS', '0');
define('CDASH_REPOSITORY_SVN', '1');

define('CDASH_OBJECT_PROJECT', '1');
define('CDASH_OBJECT_BUILD', '2');
define('CDASH_OBJECT_UPDATE', '3');
define('CDASH_OBJECT_CONFIGURE', '4');
define('CDASH_OBJECT_TEST', '5');
define('CDASH_OBJECT_COVERAGE', '6');
define('CDASH_OBJECT_DYNAMICANALYSIS', '7');
define('CDASH_OBJECT_USER', '8');
