-
Notifications
You must be signed in to change notification settings - Fork 13
/
html.arc
416 lines (334 loc) · 11.4 KB
/
html.arc
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
; HTML Utils.
(use strings)
(def color (r g b)
(with (c (table)
f (fn (x) (if (< x 0) 0 (> x 255) 255 x)))
(= (c 'r) (f r) (c 'g) (f g) (c 'b) (f b))
c))
(def dehex (str) (errsafe (coerce str 'int 16)))
(defmemo hex>color (str)
(and (is (len str) 6)
(with (r (dehex (cut str 0 2))
g (dehex (cut str 2 4))
b (dehex (cut str 4 6)))
(and r g b
(color r g b)))))
(defmemo gray (n) (color n n n))
(= white (gray 255)
black (gray 0)
linkblue (color 0 0 190)
orange (color 255 102 0)
darkred (color 180 0 0)
darkblue (color 0 0 120)
)
(= opmeths* (table))
(mac opmeth args
`(opmeths* (list ,@args)))
(mac attribute (tag opt f)
`(= (opmeths* (list ',tag ',opt)) ,f))
(= hexreps (table))
(for i 0 255 (= (hexreps i)
(let s (coerce i 'string 16)
(if (is (len s) 1) (+ "0" s) s))))
(defmemo hexrep (col)
(+ (hexreps (col 'r)) (hexreps (col 'g)) (hexreps (col 'b))))
(def opcolor (key val)
(w/uniq gv
`(whenlet ,gv ,val
(pr ,(string " " key "=#") (hexrep ,gv)))))
(def opstring (key val)
`(aif ,val (pr ,(+ " " key "=\"") it #\")))
(def opnum (key val)
`(aif ,val (pr ,(+ " " key "=") it)))
(def opsym (key val)
`(pr ,(+ " " key "=") ,val))
(def opsel (key val)
`(if ,val (pr " selected")))
(def opcheck (key val)
`(if ,val (pr " checked")))
(def opesc (key val)
`(awhen ,val
(pr ,(string " " key "=\""))
(if (isa it 'string) (pr-escaped it) (pr it))
(pr #\")))
; need to escape more? =?
(def pr-escaped (x)
(each c x
(pr (case c #\< "<"
#\> ">"
#\" """
#\& "&"
c))))
(attribute a href opstring)
(attribute a rel opstring)
(attribute a class opstring)
(attribute a id opsym)
(attribute a onclick opstring)
(attribute body alink opcolor)
(attribute body bgcolor opcolor)
(attribute body leftmargin opnum)
(attribute body link opcolor)
(attribute body marginheight opnum)
(attribute body marginwidth opnum)
(attribute body topmargin opnum)
(attribute body vlink opcolor)
(attribute font color opcolor)
(attribute font face opstring)
(attribute font size opnum)
(attribute form action opstring)
(attribute form method opsym)
(attribute img align opsym)
(attribute img border opnum)
(attribute img height opnum)
(attribute img width opnum)
(attribute img vspace opnum)
(attribute img hspace opnum)
(attribute img src opstring)
(attribute input name opstring)
(attribute input size opnum)
(attribute input type opsym)
(attribute input value opesc)
(attribute input checked opcheck)
(attribute select name opstring)
(attribute option selected opsel)
(attribute table bgcolor opcolor)
(attribute table border opnum)
(attribute table cellpadding opnum)
(attribute table cellspacing opnum)
(attribute table width opstring)
(attribute textarea cols opnum)
(attribute textarea name opstring)
(attribute textarea rows opnum)
(attribute textarea wrap opsym)
(attribute td align opsym)
(attribute td bgcolor opcolor)
(attribute td colspan opnum)
(attribute td width opnum)
(attribute td valign opsym)
(attribute td class opstring)
(attribute tr bgcolor opcolor)
(attribute hr color opcolor)
(attribute span class opstring)
(attribute span align opstring)
(attribute span id opsym)
(attribute rss version opstring)
(mac gentag args (start-tag args))
(mac tag (spec . body)
`(do ,(start-tag spec)
,@body
,(end-tag spec)))
(mac tag-if (test spec . body)
`(if ,test
(tag ,spec ,@body)
(do ,@body)))
(def start-tag (spec)
(if (atom spec)
`(pr ,(string "<" spec ">"))
(let opts (tag-options (car spec) (pair (cdr spec)))
(if (all [isa _ 'string] opts)
`(pr ,(string "<" (car spec) (apply string opts) ">"))
`(do (pr ,(string "<" (car spec)))
,@(map (fn (opt)
(if (isa opt 'string)
`(pr ,opt)
opt))
opts)
(pr ">"))))))
(def end-tag (spec)
`(pr ,(string "</" (carif spec) ">")))
(def literal (x)
(case (type x)
sym (in x nil t)
cons (caris x 'quote)
t))
; Returns a list whose elements are either strings, which can
; simply be printed out, or expressions, which when evaluated
; generate output.
(def tag-options (spec options)
(if (no options)
'()
(let ((opt val) . rest) options
(let meth (if (is opt 'style) opstring (opmeth spec opt))
(if meth
(if val
(cons (if (precomputable-tagopt val)
(tostring (eval (meth opt val)))
(meth opt val))
(tag-options spec rest))
(tag-options spec rest))
(do
(pr "<!-- ignoring " opt " for " spec "-->")
(tag-options spec rest)))))))
(def precomputable-tagopt (val)
(and (literal val)
(no (and (is (type val) 'string) (find #\@ val)))))
(def br ((o n 1))
(repeat n (pr "<br>"))
(prn))
(def br2 () (prn "<br><br>"))
(mac center body `(tag center ,@body))
(mac underline body `(tag u ,@body))
(mac tab body `(tag (table border 0) ,@body))
(mac tr body `(tag tr ,@body))
(let pratoms (fn (body)
(if (or (no body)
(all [and (acons _) (isnt (car _) 'quote)]
body))
body
`((pr ,@body))))
(mac td body `(tag td ,@(pratoms body)))
(mac trtd body `(tr (td ,@(pratoms body))))
(mac tdr body `(tag (td align 'right) ,@(pratoms body)))
(mac tdcolor (col . body) `(tag (td bgcolor ,col) ,@(pratoms body)))
)
(mac row args
`(tr ,@(map [list 'td _] args)))
(mac prrow args
(w/uniq g
`(tr ,@(map (fn (a)
`(let ,g ,a
(if (number ,g)
(tdr (pr ,g))
(td (pr ,g)))))
args))))
(mac prbold body `(tag b (pr ,@body)))
(def para args
(gentag p)
(when args (apply pr args)))
(def menu (name items (o sel nil))
(tag (select name name)
(each i items
(tag (option selected (is i sel))
(pr i)))))
(mac whitepage body
`(tag html
(tag (body bgcolor white alink linkblue) ,@body)))
(def errpage args (whitepage (apply prn args)))
(def blank-url () "s.gif")
; Could memoize these.
; If h = 0, doesn't affect table column widths in some Netscapes.
(def hspace (n) (gentag img src (blank-url) height 1 width n))
(def vspace (n) (gentag img src (blank-url) height n width 0))
(def vhspace (h w) (gentag img src (blank-url) height h width w))
(mac new-hspace (n)
(if (number n)
`(pr ,(string "<span style=\"padding-left:" n "px\" />"))
`(pr "<span style=\"padding-left:" ,n "px\" />")))
;(def spacerow (h) (tr (td (vspace h))))
(def spacerow (h) (pr "<tr style=\"height:" h "px\"></tr>"))
; For use as nested table.
(mac zerotable body
`(tag (table border 0 cellpadding 0 cellspacing 0)
,@body))
; was `(tag (table border 0 cellpadding 0 cellspacing 7) ,@body)
(mac sptab body
`(tag (table style "border-spacing: 7px 0px;") ,@body))
(mac widtable (w . body)
`(tag (table width ,w) (tr (td ,@body))))
(def cellpr (x) (pr (or x " ")))
(def but ((o text "submit") (o name nil))
(gentag input type 'submit name name value text))
(def submit ((o val "submit"))
(gentag input type 'submit value val))
(def buts (name . texts)
(if (no texts)
(but)
(do (but (car texts) name)
(each text (cdr texts)
(pr " ")
(but text name)))))
(mac spanrow (n . body)
`(tr (tag (td colspan ,n) ,@body)))
(mac form (action . body)
`(tag (form method "post" action ,action) ,@body))
(mac textarea (name rows cols . body)
`(tag (textarea name ,name rows ,rows cols ,cols) ,@body))
(def input (name (o val "") (o size 10))
(gentag input type 'text name name value val size size))
(mac inputs args
`(tag (table border 0)
,@(map (fn ((name label len text))
(w/uniq (gl gt)
`(let ,gl ,len
(tr (td (pr ',label ":"))
(if (isa ,gl 'cons)
(td (textarea ',name (car ,gl) (cadr ,gl)
(let ,gt ,text (if ,gt (pr ,gt)))))
(td (gentag input type ',(if (is label 'password)
'password
'text)
name ',name
size ,len
value ,text)))))))
(tuples args 4))))
(def single-input (label name chars btext (o pwd))
(pr label)
(gentag input type (if pwd 'password 'text) name name size chars)
(sp)
(submit btext))
(mac cdata body
`(do (pr "<![CDATA[")
,@body
(pr "]]>")))
(def eschtml (str)
(tostring
(each c str
(pr (case c #\< "<"
#\> ">"
#\" """
#\' "'"
#\& "&"
c)))))
(def esc-tags (str)
(tostring
(each c str
(pr (case c #\< "<"
#\> ">"
#\& "&"
c)))))
(def nbsp () (pr " "))
(def link (text (o dest text) (o color))
(tag (a href dest)
(tag-if color (font color color)
(pr text))))
(def underlink (text (o dest text))
(tag (a href dest) (tag u (pr text))))
(def striptags (s)
(let intag nil
(tostring
(each c s
(if (is c #\<) (set intag)
(is c #\>) (wipe intag)
(no intag) (pr c))))))
(def clean-url (u)
(rem [in _ #\" #\' #\< #\>] u))
(def shortlink (url)
(unless (or (no url) (< (len url) 7))
(link (cut url 7) url)))
; this should be one regexp
(def parafy (str)
(let ink nil
(tostring
(each c str
(pr c)
(unless (whitec c) (set ink))
(when (is c #\newline)
(unless ink (pr "<p>"))
(wipe ink))))))
(mac spanclass (name . body)
`(tag (span class ',name) ,@body))
(def pagemessage (text)
(when text (prn text) (br2)))
; Could be stricter. Memoized because looking for chars in Unicode
; strings is terribly inefficient in Mzscheme.
(defmemo valid-url (url)
(and (len> url 10)
(or (begins url "http://")
(begins url "https://"))
(~find [in _ #\< #\> #\" #\'] url)))
(mac fontcolor (c . body)
(w/uniq g
`(let ,g ,c
(if ,g
(tag (font color ,g) ,@body)
(do ,@body)))))