<?php
/**
* @file index.php
* @brief Index Page
* @author Kenneth Smith <hide@address.com>
*
* This file forms the base of almost all accessible pages.
*
* Modularized Information Environment (MIE)
* Copyright (C) 2005-2006 by Kenneth Smith. All rights reserved.
*
* 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.
*/
//$m = explode(' ', microtime());
//$gen_start = $m[0] + $m[1];
define('VALIE_MIE', true);
$conf['root'] = dirname(__FILE__);
$conf['file'] = basename(__FILE__);
require_once 'includes/start.inc';
require_once 'includes/page.inc';
$page = new PAGE();
$page->render();
//$m = explode(' ', microtime());
//printf("generation: %0.3f secs", $m[0] + $m[1] - $gen_start);
?>