<?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.
=========================================================================*/

// If the project name is not set we display the table of projects.
if (!isset($_GET['project'])) {
    header('Location: viewProjects.php');
    exit;
}

require_once dirname(__DIR__) . '/config/config.php';
include_once 'include/common.php';
load_view('index');
