1<?php
2/*=========================================================================
3
4  Program:   CDash - Cross-Platform Dashboard System
5  Module:    $Id$
6  Language:  PHP
7  Date:      $Date$
8  Version:   $Revision$
9
10  Copyright (c) 2002 Kitware, Inc.  All rights reserved.
11  See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
12
13     This software is distributed WITHOUT ANY WARRANTY; without even
14     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15     PURPOSE.  See the above copyright notices for more information.
16
17=========================================================================*/
18
19define("FMT_TIME", 'H:i:s');  // time
20define("FMT_DATE", 'Y-m-d');  // date
21define("FMT_DATETIMESTD", 'Y-m-d H:i:s');  // date and time standard
22define("FMT_DATETIME", 'Y-m-d\TH:i:s');  // date and time
23define("FMT_DATETIMETZ", 'Y-m-d\TH:i:s T');  // date and time with time zone
24define("FMT_DATETIMEMS", 'Y-m-d\TH:i:s.u');  // date and time with milliseconds
25define("FMT_DATETIMEDISPLAY", 'M d, Y - H:i T');  // date and time standard
26define("LOG_TESTING","log_testing");
27
28?>
29