Roxen.git/server/modules/misc/pathinfo.pike:1:
// This is a ChiliMoon module. Copyright © 1998 - 2001, Roxen IS.
inherit "module";
- constant cvs_version = "$Id: pathinfo.pike,v 1.21 2004/05/23 22:49:38 mani Exp $";
+ constant cvs_version = "$Id: pathinfo.pike,v 1.22 2004/06/04 08:29:23 _cvs_stephen Exp $";
constant thread_safe = 1;
#ifdef PATHINFO_DEBUG
# define PATHINFO_WERR(X) werror("PATHINFO: "+X+"\n");
#else
# define PATHINFO_WERR(X)
#endif
constant module_type = MODULE_LAST;
constant module_name = "Scripting: Path info support";
Roxen.git/server/modules/misc/pathinfo.pike:68: Inside #if undefined(PATHINFO_LINEAR)
return 1; // Go through id->handle_request() one more time...
}
PATHINFO_WERR(sprintf("Directory: %O", file));
lo = probe + 1;
} else {
hi = probe - 1;
}
}
#else /* PATHINFO_LINEAR */
string pi = "";
- while( has_value( query[1..], "/" ) ) && strlen( query ) > 0 )
+ while( has_value( query[1..], "/" ) ) && sizeof( query ) > 0 )
{
query = reverse(query);
string add_path_info;
sscanf( query, "%[^/]/%s", add_path_info, query );
query = reverse( query );
pi = "/"+reverse( add_path_info )+pi;
id->misc->path_info = pi;
PATHINFO_WERR(sprintf("Trying: %O (%O)", query, pi));
array st = id->conf->stat_file( query, id );
if( st && (st[ ST_SIZE ] > 0))
{
id->not_query = query;
PATHINFO_WERR(sprintf("Found: %O:%O",
id->not_query, id->misc->path_info));
return 1;
}
}
#endif /* !PATHINFO_LINEAR */
return 0;
}