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.
89
2000/03/
28
20
:
58
:
42
jhs
Exp $
+
// $Id: module.pike,v 1.
90
2000/03/
30
13
:
37
:
33
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:53:
{ 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)