Roxen.git/server/config_actions/profile.pike:1:
- // $Id: profile.pike,v 1.2 1998/03/02 18:44:16 grubba Exp $
- #ifdef PROFILE
+ // $Id: profile.pike,v 1.3 1998/06/01 13:34:41 grubba Exp $
+ #ifndef PROFILE
+ constant action_disabled = 1;
+ #else /* PROFILE */
inherit "wizard";
- constant name= "Maintenance//Profiling information...";
+ constant name = "Maintenance//Profiling information...";
constant doc = "Show average access time for all pages accessed on your server.";
constant wizard_name = "Profiling information";
mapping preprocess(mapping in)
{
// remove final part after '/' if any.
mapping q = ([]);
foreach(indices(in), string i)
{
string oi = i;
Roxen.git/server/config_actions/profile.pike:58: Inside #if defined(PROFILE)
string page_1(object id)
{
return page_0(id,0,1);
}
string handle(object id)
{
return wizard_for(id,0);
}
- #endif
+ #endif /* PROFILE */