mirror of
https://github.com/jimeh/dlist.git
synced 2026-02-19 07:56:41 +00:00
- edited init script so it will only look for specific file names. "index.html", "index.php", so on, instead of running glob() on "index.*". - moved internal timer to seperate exec file. git-svn-id: file:///Users/jimeh/Desktop/dlist/trunk@7 a5845835-ea0f-0410-a762-dd0bfe9bfde8
36 lines
455 B
PHP
36 lines
455 B
PHP
<?php die();
|
|
|
|
//
|
|
// Exec: timer
|
|
//
|
|
// Copyright © 2006 Jim Myhrberg. All rights reserved.
|
|
// zynode@gmail.com
|
|
//
|
|
|
|
//_HEAD;
|
|
/* --- Configuration ---
|
|
Name: timer
|
|
Priority: 10
|
|
Author: Jim Myhrberg
|
|
*/
|
|
//_SCRIPT;
|
|
|
|
//==========================
|
|
//>STAGE> init
|
|
//==========================
|
|
|
|
|
|
//>Section> start
|
|
$timer = new speedometer();
|
|
|
|
|
|
//==========================
|
|
//>STAGE> render
|
|
//==========================
|
|
|
|
|
|
//>Section> end
|
|
$timer->end();
|
|
|
|
//_END;
|
|
?>
|