Roxen.git
/
server
/
base_server
/
module.pike
version
»
Context lines:
10
20
40
80
file
none
3
Roxen.git/server/base_server/module.pike:1:
// This file is part of Roxen Webserver. // Copyright © 1996 - 2000, Roxen IS.
-
// $Id: module.pike,v 1.
85
2000/03/
06
12
:
34
:
19
jonasw
Exp $
+
// $Id: module.pike,v 1.
86
2000/03/
14
05
:
10
:
37
nilsson
Exp $
#include <module_constants.h> #include <module.h> #include <request_trace.h> mapping (string:array) variables=([]); RoxenModule this = this_object(); mapping(string:array(int)) error_log=([]); constant is_module = 1;
Roxen.git/server/base_server/module.pike:655:
mapping query_container_callers() { mapping m = ([]); foreach(glob("container_*", indices( this_object())), string q) if(functionp( this_object()[q] )) m[replace(q[10..], "_", "-")] = this_object()[q]; return m; }
-
mapping query_
simple
_
tag_
callers()
+
mapping query_
simpletag
_callers()
{ mapping m = ([]); foreach(glob("simpletag_*", indices(this_object())), string q) if(functionp(this_object()[q])) m[replace(q[10..],"_","-")] = ({ intp (this_object()[q + "_flags"]) && this_object()[q + "_flags"], this_object()[q] }); return m; }