-
Notifications
You must be signed in to change notification settings - Fork 0
/
library.dylan
64 lines (57 loc) · 1.31 KB
/
library.dylan
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
module: dylan-user
author: Hannes Mehnert <[email protected]>
define library buddha
use base64;
use common-dylan;
use io;
use http-server, import: { http-server };
use dsp;
use dood;
use strings;
use regular-expressions;
use network;
use system, import: { file-system, date };
use xml-parser;
use dylan;
use web-framework;
use xmpp-bot;
export buddha;
end;
define module utils
use common-dylan;
use dylan-extensions, import: { debug-name };
use regular-expressions;
export exclude,
get-url-from-type,
<wrapper-sequence>,
<mutable-wrapper-sequence>,
data;
end;
define module buddha
use regular-expressions;
use common-dylan;
use dylan-extensions, exclude: { slot-type };
use threads;
use format-out;
use format, import: { format };
use print, import: { print-object };
use streams;
use standard-io;
use strings, import: { hexadecimal-digit? };
use date;
use http-server, exclude: { print-object };
use dsp, import: { set-attribute, get-attribute };
use sockets, import: { <tcp-socket>,
<internet-address> };
use dood;
use file-system;
use base64, import: { base64-encode, base64-decode };
use simple-xml;
use web-framework;
use storage;
use object-table;
use users;
use change;
use utils;
use xmpp-bot;
end;