1 | | |
2 | | |
3 | | |
4 | | |
5 | | |
6 | | |
7 | | |
8 | | |
9 | | |
10 | | |
11 | | |
12 | | |
13 | | |
14 | | |
15 | | |
16 | | |
17 | | |
18 | | |
19 | | |
20 | | |
21 | | |
22 | | |
23 | | |
24 | | |
25 | | |
26 | | |
27 | | |
28 | | |
29 | | |
| 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<min(sizeof(report),1000);i++) | report[i] = describe_error(report[i], log[report[i]], | id->misc->cf_locale, 1); | | if( sizeof( report ) >= 1000 ) | report[1000] = | sprintf(LOCALE(386,"%d entries skipped. Present in log on disk"), | sizeof( report )-999 ); | | return (sizeof(report)?(report[..1000]*""):LOCALE(250, "Empty")); | } | | |
|