1 | | |
2 | | |
3 | | |
4 | | |
5 | | |
6 | | |
7 | | |
8 | | |
9 | | |
10 | | |
11 | | |
12 | | |
13 | | |
14 | | |
15 | | |
16 | | |
17 | | |
18 | | |
19 | | |
20 | | |
21 | | |
22 | | |
23 | | |
| inherit "../logutil.pike"; | #include <config.h> | #include <roxen.h> | | #define LOCALE(X,Y) _STR_LOCALE("roxen_config",X,Y) | | string parse(RequestID id) | { | mapping log = id->misc->current_configuration->error_log; | array report = indices(log), r2; | | last_time=0; | r2 = map(values(log),lambda(array a){ | return id->variables->reversed?-a[-1]:a[0]; | }); | sort(r2,report); | for(int i=0;i<sizeof(report);i++) | report[i] = describe_error(report[i], log[report[i]], | id->misc->cf_locale, 1); | return (sizeof(report)?(report*""):LOCALE(250, "Empty")); | } | | |
|