Roxen.git/
server/
config_interface/
actions/
debug_summary.pike
Branch:
Tag:
Non-build tags
All tags
No tags
2003-08-26
2003-08-26 15:05:30 by Anders Johansson <anders@roxen.com>
12236a19b842820d667ffc876a0ec88b98e35335 (
12
lines) (+
11
/-
1
)
[
Show
|
Annotate
]
Branch:
3.4
Show global variables in debug summary.
Rev: server/config_interface/actions/debug_summary.pike:1.8
1:
/*
-
* $Id: debug_summary.pike,v 1.
7
2003/
01
/
27
15:
36
:
59
mast
Exp $
+
* $Id: debug_summary.pike,v 1.
8
2003/
08
/
26
15:
05
:
30
anders
Exp $
*/ #include <stat.h> #include <roxen.h>
136:
return res; }
+
string make_global_summary()
+
{
+
string res = make_headline("Global Variables");
+
res += make_variables_summary(roxen->getvars());
+
return res + "\n";
+
}
+
string make_summary() { string res = make_environment_summary()+"\n";
143:
// res +=make_headline("CVS file versions"); // res +=indent(get_cvs_versions(getcwd()), 1);
+
res += make_global_summary();
+
foreach(roxen->list_all_configurations(), string configuration) { res+=make_headline("Configuration: "+configuration)+"\n";