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:
-
/* $Id: module.pike,v 1.
76
2000/02/
08
00
:
37
:
46
mast
Exp $ */
+
/* $Id: module.pike,v 1.
77
2000/02/
09
20
:
18
:
04
nilsson
Exp $ */
#include <module.h> #include <request_trace.h> mapping (string:mixed *) variables=([]); RoxenModule this = this_object(); mapping(string:array(int)) error_log=([]); constant is_module = 1; constant module_type = MODULE_ZERO; constant module_name = "Unnamed module";
Roxen.git/server/base_server/module.pike:32:
{ return ({ module_type, module_name, module_doc, 0, module_unique, }); }
+
mapping tagdocumentation() { return ([]); }
+
string fix_cvs(string from) { from = replace(from, ({ "$", "Id: "," Exp $" }), ({"","",""})); sscanf(from, "%*s,v %s", from); return replace(from,"/","-"); } int module_dependencies(Configuration configuration, array (string) modules, int|void now)