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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
|
-- Copyright (c) 1991-2002, The Numerical Algorithms Group Ltd.
-- All rights reserved.
-- Copyright (C) 2007-2010, Gabriel Dos Reis.
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
-- modification, are permitted provided that the following conditions are
-- met:
--
-- - Redistributions of source code must retain the above copyright
-- notice, this list of conditions and the following disclaimer.
--
-- - Redistributions in binary form must reproduce the above copyright
-- notice, this list of conditions and the following disclaimer in
-- the documentation and/or other materials provided with the
-- distribution.
--
-- - Neither the name of The Numerical Algorithms Group Ltd. nor the
-- names of its contributors may be used to endorse or promote products
-- derived from this software without specific prior written permission.
--
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
-- IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
-- TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
-- PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
-- OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-- EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-- PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
import bc_-util
namespace BOOT
--====================> WAS b-saturn.boot <================================
-- New file as of 6/95
$aixTestSaturn := false
--These will be set in patches.lisp:
--$saturn := false --true to write SATURN output to $browserOutputStream
--$standard:= true --true to write browser output on AIX
$saturnAmpersand := '"\&\&"
$saturnFileNumber --true to write DOS files for Thinkpad (testing only)
:= false
$kPageSaturnArguments := nil --bound by $kPageSaturn
$atLeastOneUnexposed := false
$saturnContextMenuLines := nil
$saturnContextMenuIndex := 0
$saturnMacros := '(
"\def\unixcommand#1#2{{\em #1}}"_
"\def\lispFunctionLink#1#2{\lispLink[d]{#1}{{\bf #2}}}"_
"\def\lispTypeLink#1#2{\lispLink[d]{#1}{{\sf #2}}}"_
"\def\menuitemstyle{\menubutton}"_
"\def\browseTitle#1{\windowTitle{#1}\section{#1}}"_
"\def\ttrarrow{$\rightarrow$}"_
"\def\spadtype#1{\lispLink[d]{\verb!(|spadtype| '|#1|)!}{\sf #1}}"_
"\def\spad#1{{\em #1}}"_
"\def\spadfun#1{{\em #1}}"_
)
$FormalFunctionParameterList := '(_#_#1 _#_#2 _#_#3 _#_#4 _#_#5 _#_#6 _#_#7 _#_#8 _#_#9 _#_#10 _#_#11 _#_#12 _#_#13 _#_#14 _#_#15)
on() ==
$saturn := true
$standard := false
off()==
$saturn := false
$standard := true
--=======================================================================
-- Function for testing SATURN output
--=======================================================================
-- protectedEVAL x ==
-- $saturn =>
-- protectedEVAL0(x, true, false)
-- if $aixTestSaturn then protectedEVAL0(x, false, true)
-- protectedEVAL1 x
--
--protectedEVAL0(x, $saturn, $standard) ==
-- protectedEVAL1 x
--
--protectedEVAL1 x ==
-- error := true
-- val := NIL
-- UNWIND_-PROTECT((val := saturnEVAL x; error := NIL),
-- error => (resetStackLimits(); sendHTErrorSignal()))
-- val
--
--saturnEVAL x ==
-- fn :=
-- $aixTestSaturn => '"/tmp/sat.text"
-- '"/windows/temp/browser.text"
-- $saturn =>
-- saturnEvalToFile(x, fn)
-- runCommand '"cat /tmp/sat.text"
-- eval x
--=======================================================================
-- Functions to write DOS files to disk
--=======================================================================
ts(command) ==
$saturn := true
$saturnFileNumber := false
$standard := false
saturnEvalToFile(command, '"/tmp/sat.text")
ut() ==
$saturn := false
$standard := true
'done
onDisk() ==
$saturnFileNumber := 1
obey '"dosdir"
offDisk() ==
$saturnFileNumber := false
page() ==
$standard => $curPage
$saturnPage
--=======================================================================
-- Functions that affect $saturnPage
--=======================================================================
htSay(x,:options) == --say for possibly both $saturn and standard code
htSayBind(x, options)
htSayCold x ==
htSay '"\lispLink{}{"
htSay x
htSay '"}"
htSayIfStandard(x, :options) == --do only for $standard
$standard => htSayBind(x,options)
htSayStandard(x, :options) == --do AT MOST for $standard
$saturn: local := nil
htSayBind(x, options)
htSaySaturn(x, :options) == --do AT MOST for $saturn
$standard: local := nil
htSayBind(x, options)
htSayBind(x, options) ==
bcHt x
for y in options repeat bcHt y
bcHt line ==
$newPage => --this path affects both saturn and old lines
text :=
cons? line => [['text, :line]]
string? line => line
[['text, line]]
if $saturn then htpAddToPageDescription($saturnPage, text)
if $standard then htpAddToPageDescription($curPage, text)
cons? line =>
$htLineList := NCONC(nreverse mapStringize COPY_-LIST line, $htLineList)
$htLineList := [basicStringize line, :$htLineList]
--=======================================================================
-- New issueHT
--=======================================================================
htShowPage() ==
-- show the page which has been computed
htSayStandard '"\endscroll"
htShowPageNoScroll()
htShowPageNoScroll() ==
-- show the page which has been computed
htSayStandard '"\autobuttons"
if $standard then
htpSetPageDescription($curPage, nreverse htpPageDescription $curPage)
if $saturn then
htpSetPageDescription($saturnPage, nreverse htpPageDescription $saturnPage)
$newPage := false
----------------------
if $standard then
$htLineList := nil
htMakePage htpPageDescription $curPage
if $htLineList then line := apply(function strconc, nreverse $htLineList)
issueHTStandard line
----------------------
if $saturn then
$htLineList := nil
htMakePage htpPageDescription $saturnPage
if $htLineList then line := apply(function strconc, nreverse $htLineList)
issueHTSaturn line
----------------------
endHTPage()
--------------------> NEW DEFINITION <--------------------------
issueHTSaturn line == --called by htMakePageNoScroll and htMakeErrorPage
if $saturn then
$marg : local := 0
$linelength: local := 80
writeSaturn '"\inputonce{<AXIOM>/doc/browser/browmacs.tex}"
writeSaturnPrefix()
writeSaturn(line)
writeSaturnSuffix()
if $saturnFileNumber then
fn := strconc('"sat", STRINGIMAGE $saturnFileNumber, '".tex")
obey strconc('"doswrite -a saturn.tex ",fn, '".tex")
$saturnFileNumber := $saturnFileNumber + 1
writeSaturnPrefix() ==
$saturnContextMenuLines =>
index :=
STRINGIMAGE ($saturnContextMenuIndex := $saturnContextMenuIndex + 1)
writeSaturnLines
['"\newmenu{BCM", index,
'"}{",:nreverse $saturnContextMenuLines,
'"}\usemenu{BCM", index,'"}{\vbox{"]
writeSaturnSuffix() ==
$saturnContextMenuLines => saturnPRINTEXP '"}}"
issueHTStandard line == --called by htMakePageNoScroll and htMakeErrorPage
if $standard then
--unescapeStringsInForm line
sockSendInt($MenuServer, $SendLine)
sockSendString($MenuServer, line)
htMakeErrorPage htPage ==
$newPage := false
$htLineList := nil
if $standard then $curPage := htPage
if $saturn then $saturnPage := htPage
htMakePage htpPageDescription htPage
line := apply(function strconc, nreverse $htLineList)
issueHT line
endHTPage()
writeSaturnLines lines ==
for line in lines repeat
if line ~= '"" and line.0 = char '_\ then saturnTERPRI()
saturnPRINTEXP line
writeSaturn(line) ==
k := 0
n := MAXINDEX line
while --advance k if true
k > n => false
line.k ~= char '_\ => true
code := isBreakSegment?(line, k + 1,n) => false
true
repeat (k := k + 1)
k > n => writeSaturnPrint(line)
segment := SUBSTRING(line,0,k)
writeSaturnPrint(segment)
code = 1 =>
writeSaturnPrint('"\\")
writeSaturn SUBSTRING(line,k + 2, nil)
code = 2 =>
writeSaturnPrint('" &")
writeSaturn SUBSTRING(line,k + 4, nil)
code = 3 =>
writeSaturnPrint('"\item")
writeSaturn SUBSTRING(line,k + 5,nil)
code = 4 =>
writeSaturnPrint('"\newline")
writeSaturn SUBSTRING(line,k + 8,nil)
code = 5 =>
writeSaturnPrint('"\table{")
$marg := $marg + 3
writeSaturnTable SUBSTRING(line,k + 7,nil)
code = 6 =>
i := charPosition(char '_},line,k + 4)
tabCode := SUBSTRING(line,k, i - k + 1)
writeSaturnPrint tabCode
line := SUBSTRING(line,i + 1, nil)
writeSaturn line
code = 7 =>
saturnTERPRI()
writeSaturn SUBSTRING(line, k + 2,nil)
code = 8 =>
i :=
substring?('"\beginmenu", line,k) => k + 9
substring?('"\beginscroll",line,k) => k + 11
charPosition(char '_},line,k)
if char '_[ = line.(i + 1) then
i := charPosition(char '_], line, i + 2)
beginCode := SUBSTRING(line,k, i - k + 1)
writeSaturnPrint(beginCode)
line := SUBSTRING(line,i + 1,nil)
writeSaturn line
code = 9 =>
i :=
substring?('"\endmenu",line,k) => k + 7
substring?('"\endscroll",line,k) => k + 9
charPosition(char '_},line,k)
endCode := SUBSTRING(line,k, i - k + 1)
writeSaturnPrint(endCode)
line := SUBSTRING(line,i + 1,nil)
$marg := $marg - 3
writeSaturn line
systemError code
isBreakSegment?(line, k, n) ==
k > n => nil
char2 := line . k
char2 = (char '_\) => 1
char2 = (char '_&) =>
substring?('"&\&", line, k) => 2
nil
char2 = char 'i =>
substring?('"item",line,k) => 3
nil
char2 = char 'n =>
substring?('"newline",line,k) => 4
nil
char2 = char 't =>
(k := k + 2) > n => nil
line.(k - 1) = char 'a and line.k = char 'b =>
(k := k + 1) > n => nil
line.k = char "{" => 6
substring?('"table",line,k - 3) => 5
nil
char2 = (char '_!) => 7
char2 = char 'b =>
substring?('"begin",line,k) => 8
nil
char2 = (char 'e) =>
substring?('"end",line,k) => 9
nil
nil
writeSaturnPrint s ==
for i in 0..($marg - 1) repeat saturnPRINTEXP '" "
saturnPRINTEXP s
saturnTERPRI()
saturnPRINTEXP s ==
$browserOutputStream => PRINTEXP(s,$browserOutputStream)
PRINTEXP s
saturnTERPRI() ==
$browserOutputStream => TERPRI($browserOutputStream)
TERPRI()
writeSaturnTable line ==
open := charPosition(char '"_{",line,0)
close:= charPosition(char '"_}",line,0)
open < close =>
close := findBalancingBrace(line,open + 1,MAXINDEX line,0) or error '"no balancing brace"
writeSaturnPrint SUBSTRING(line,0,close + 1)
writeSaturnTable SUBSTRING(line,close + 1,nil)
$marg := $marg - 3
writeSaturnPrint SUBSTRING(line,0,close + 1)
writeSaturn SUBSTRING(line, close + 1,nil)
findBalancingBrace(s,k,n,level) ==
k > n => nil
c := s . k
c = char '_{ => findBalancingBrace(s, k + 1, n, level + 1)
c = char '_} =>
level = 0 => k
findBalancingBrace(s, k + 1, n, level - 1)
findBalancingBrace(s, k + 1, n, level)
--=======================================================================
-- htMakePage and friends
--=======================================================================
htMakePageStandard itemList ==
$saturn => nil
htMakePage itemList
htMakePageSaturn itemList ==
$standard => nil
htMakePage itemList
htMakePage itemList ==
if $newPage then
if $saturn then htpAddToPageDescription($saturnPage, saturnTran itemList)
if $standard then htpAddToPageDescription($curPage, itemList)
htMakePage1 itemList
htMakePage1 itemList ==
-- make a page given the description in itemList
for u in itemList repeat
itemType := 'text
items :=
string? u => u
atom u => STRINGIMAGE u
string? first u => u
u is ['text, :s] => s
itemType := first u
rest u
itemType = 'text => iht items
-- $saturn => bcHt items
-- $standard => iht items
itemType = 'lispLinks => htLispLinks items
itemType = 'lispmemoLinks => htLispMemoLinks items
itemType = 'bcLinks => htBcLinks items --->
itemType = 'bcLinksNS => htBcLinks(items,true)
itemType = 'bcLispLinks => htBcLispLinks items --->
itemType = 'radioButtons => htRadioButtons items
itemType = 'bcRadioButtons => htBcRadioButtons items
itemType = 'inputStrings => htInputStrings items
itemType = 'domainConditions => htProcessDomainConditions items
itemType = 'bcStrings => htProcessBcStrings items
itemType = 'toggleButtons => htProcessToggleButtons items
itemType = 'bcButtons => htProcessBcButtons items
itemType = 'doneButton => htProcessDoneButton items
itemType = 'doitButton => htProcessDoitButton items
systemError '"unexpected branch"
saturnTran x ==
x is [[kind, [s1, s2, :callTail]]] and kind in '(bcLinks bcLispLinks) =>
text := saturnTranText s2
fs := getCallBackFn callTail
y := isMenuItemStyle? s1 => ----> y is text for button in 2nd column
t1 := mkDocLink(fs, mkMenuButton())
y = '"" =>
s2 = '"" => t1
mkTabularItem [t1, text]
t2 := mkDocLink(fs, y)
mkTabularItem [t1, t2, text]
t := mkDocLink(fs, s1)
[:t, :text]
x is [['text,:r],:.] => r
error nil
mkBold s ==
secondPart :=
atom s => [s, '"}"]
[:s, '"}"]
['"{\bf ", :secondPart]
mkMenuButton() == [menuButton()]
menuButton() == '"\menuitemstyle{}"
-- Saturn must translate \menuitemstyle ==> {\menuButton}
--------------------> NEW DEFINITION (override in ht-util.boot.pamphlet)
--replaces htMakeButton
getCallBackFn form ==
func := mkCurryFun(first form, rest form)
strconc('"(|htDoneButton| '|", func, '"| ",htpName page(), '")")
mkDocLink(code,s) ==
if atom code then code := [code]
if atom s then s := [s]
['"\lispLink[d]{\verb!", :code, '"!}{", :s, '"}"]
saturnTranText x ==
string? x => [unTab x]
null x => nil
r is [s,fn,:.] and s = '"\unixcommand{" => ['"{\it ",s,'".spad}"]
x is [['text, :s],:r] => unTab [:s, :saturnTranText r]
error nil
isMenuItemStyle? s ==
15 = STRING_<('"\menuitemstyle{", s) => SUBSTRING(s,15,(MAXINDEX s) - 15)
nil
getCallBack callTail ==
LASSOC(callTail, $callTailList) or
callTail is [fn] => callTail
error nil
--=======================================================================
-- Redefinitions from hypertex.boot
--=======================================================================
endHTPage() ==
$standard => sockSendInt($MenuServer, $EndOfPage)
nil
--=======================================================================
-- Redefinitions from ht-util.boot
--=======================================================================
htSayHrule() == bcHt
$saturn => '"\hrule{}\newline{}"
'"\horizontalline{}\newline{}"
htDoneButton(func, htPage, :optionalArgs) ==
------> Handle argument values passed from page if present
if optionalArgs ~= nil then
htpSetInputAreaAlist(htPage,first optionalArgs)
typeCheckInputAreas htPage =>
htMakeErrorPage htPage
not FBOUNDP func =>
systemError ['"unknown function", func]
FUNCALL(SYMBOL_-FUNCTION func, htPage)
htBcLinks(links,:options) ==
skipStateInfo? := IFCAR options
[links,options] := beforeAfter('options,links)
for [message, info, func, :value] in links repeat
link :=
$saturn => '"\lispLink[d]"
'"\lispdownlink"
htMakeButton(link,message,
mkCurryFun(func, value),skipStateInfo?)
bcIssueHt info
htBcLispLinks links ==
[links,options] := beforeAfter('options,links)
for [message, info, func, :value] in links repeat
link :=
$saturn => '"\lispLink[n]"
'"\lisplink"
htMakeButton(link ,message, mkCurryFun(func, value))
bcIssueHt info
htMakeButton(htCommand, message, func,:options) ==
$saturn => htMakeButtonSaturn(htCommand, message, func, options)
skipStateInfo? := IFCAR options
iht [htCommand, '"{"]
bcIssueHt message
skipStateInfo? =>
iht ['"}{(|htDoneButton| '|", func, '"| ",htpName $curPage, '")}"]
iht ['"}{(|htDoneButton| '|", func, '"| (PROGN "]
for [id, ., ., ., type, :.] in htpInputAreaAlist $curPage repeat
iht ['"(|htpSetLabelInputString| ", htpName $curPage, '"'|", id, '"| "]
if type = 'string then
iht ['"_"\stringvalue{", id, '"}_""]
else
iht ['"_"\boxvalue{", id, '"}_""]
iht '") "
iht [htpName $curPage, '"))}"]
htMakeButtonSaturn(htCommand, message, func,options) ==
skipStateInfo? := IFCAR options
iht htCommand
skipStateInfo? =>
iht ['"{\verb!(|htDoneButton| '|", func, '"| ",htpName page(), '")!}{"]
bcIssueHt message
iht '"}"
iht ['"{\verb!(|htDoneButton| '|", func, '"| "]
if $kPageSaturnArguments then
iht '"(PROGN "
for id in $kPageSaturnArguments for var in $PatternVariableList repeat
iht ['"(|htpSetLabelInputString| ", htpName page(), '"'|", var, '"| "]
iht ["'|!\", id, '"\verb!|"]
iht '")"
iht htpName $saturnPage
iht '")"
else
iht htpName $saturnPage
iht '")!}{"
bcIssueHt message
iht '"}"
htpAddToPageDescription(htPage, pageDescrip) ==
newDescript :=
string? pageDescrip => [pageDescrip, :htPage.7]
nconc(nreverse COPY_-LIST pageDescrip, htPage.7)
htPage.7 := newDescript
htProcessBcStrings strings ==
for [numChars, default, stringName, spadType, :filter] in strings repeat
mess2 := '""
if null LASSOC(stringName, htpInputAreaAlist page()) then
setUpDefault(stringName, ['string, default, spadType, filter])
if htpLabelErrorMsg(page(), stringName) then
iht ['"\centerline{{\em ", htpLabelErrorMsg(page(), stringName), '"}}"]
mess2 := strconc(mess2, bcSadFaces())
htpSetLabelErrorMsg(page(), stringName, nil)
iht ['"\inputstring{", stringName, '"}{",
numChars, '"}{", htpLabelDefault(page(),stringName), '"} ", mess2]
setUpDefault(name, props) ==
htpAddInputAreaProp(page(), name, props)
htInitPage(title, propList) ==
-- start defining a hyperTeX page
htInitPageNoScroll(propList, title)
htSayStandard '"\beginscroll "
page()
--------------------> NEW DEFINITION <--------------------------
htInitPageNoScroll(propList, :options) ==
--start defining a hyperTeX page
$atLeastOneUnexposed := nil --reset every time a new page is initialized
$saturnContextMenuLines := nil
title := IFCAR options
$curPage :=
$standard => htpMakeEmptyPage(propList)
nil
if $saturn then $saturnPage := htpMakeEmptyPage(propList)
$newPage := true
$htLineList := nil
if title then
if $standard then htSayStandard ['"\begin{page}{", htpName $curPage, '"}{"]
htSaySaturn '"\browseTitle{"
htSay title
htSaySaturn '"}"
htSayStandard '"} "
page()
--------------------> NEW DEFINITION <--------------------------
htInitPageNoHeading(propList) ==
--start defining a hyperTeX page
$curPage :=
$standard => htpMakeEmptyPage(propList)
if $saturn then $saturnPage := htpMakeEmptyPage(propList)
$newPage := true
$htLineList := nil
page()
--------------------> NEW DEFINITION <--------------------------
htpMakeEmptyPage(propList,:options) ==
name := IFCAR options or GENTEMP()
if not $saturn then
$activePageList := [name, :$activePageList]
setDynamicBinding(name, val := VECTOR(name, nil, nil, nil, nil, nil, propList, nil))
val
--=======================================================================
-- Redefinitions from br-con.boot
--=======================================================================
kPage(line,:options) == --any cat, dom, package, default package
--constructors Cname\#\E\sig \args \abb \comments (C is C, D, P, X)
parts := dbXParts(line,7,1)
[kind,name,nargs,xflag,sig,args,abbrev,comments] := parts
form := IFCAR options
isFile := null kind
kind := kind or '"package"
parts.first := kind
conform := mkConform(kind,name,args)
$kPageSaturnArguments: local := rest conform
conname := opOf conform
capitalKind := capitalize kind
signature := ncParseFromString sig
sourceFileName := dbSourceFile INTERN name
constrings :=
KDR form => dbConformGenUnder form
[strconc(name,args)]
emString := ['"{\sf ",:constrings,'"}"]
heading := [capitalKind,'" ",:emString]
if not isExposedConstructor conname then heading := ['"Unexposed ",:heading]
if name=abbrev then abbrev := asyAbbreviation(conname,nargs)
page := htInitPageNoScroll nil
htAddHeading heading
htSayStandard("\beginscroll ")
htpSetProperty(page,'argSublis,mkConArgSublis rest conform)
htpSetProperty(page,'isFile,true)
htpSetProperty(page,'parts,parts)
htpSetProperty(page,'heading,heading)
htpSetProperty(page,'kind,kind)
if asharpConstructorName? conname then
htpSetProperty(page,'isAsharpConstructor,true)
htpSetProperty(page,'conform,conform)
htpSetProperty(page,'signature,signature)
---what follows is stuff from kiPage with domain = nil
$conformsAreDomains := nil
dbShowConsDoc1(page,conform,nil)
if kind ~= 'category and nargs > 0 then addParameterTemplates(page,conform)
if $atLeastOneUnexposed then htSay '"\newline{}{\em *} = unexposed"
htSayStandard("\endscroll ")
kPageContextMenu page
htShowPageNoScroll()
kPageContextMenu page ==
$saturn => kPageContextMenuSaturn page
[kind,name,nargs,xpart,sig,args,abbrev,comments] := htpProperty(page,'parts)
conform := htpProperty(page,'conform)
conname := opOf conform
htBeginTable()
htSay '"{"
htMakePage [['bcLinks,['Ancestors,'"",'kcaPage,nil]]]
htSay '"}{"
htMakePage [['bcLinks,['Attributes,'"",'koPage,'"attribute"]]]
if kind = '"category" then
htSay '"}{"
htMakePage [['bcLinks,['Children,'"",'kccPage,nil]]]
if not asharpConstructorName? conname then
htSay '"}{"
htMakePage [['bcLinks,['Dependents,'"",'kcdePage,nil]]]
if kind = '"category" then
htSay '"}{"
htMakePage [['bcLinks,['Descendents,'"",'kcdPage,nil]]]
if kind = '"category" then
htSay '"}{"
if not asharpConstructorName? conname then
htMakePage [['bcLinks,['Domains,'"",'kcdoPage,nil]]]
else htSay '"{\em Domains}"
htSay '"}{"
if kind ~= '"category" and (pathname := dbHasExamplePage conname)
then htMakePage [['bcLinks,['Examples,'"",'kxPage,pathname]]]
else htSay '"{\em Examples}"
htSay '"}{"
htMakePage [['bcLinks,['Exports,'"",'kePage,nil]]]
htSay '"}{"
htMakePage [['bcLinks,['Operations,'"",'koPage,'"operation"]]]
htSay '"}{"
htMakePage [['bcLinks,['Parents,'"",'kcpPage,'"operation"]]]
if kind ~= '"category" then
htSay '"}{"
if not asharpConstructorName? conname
then htMakePage [['bcLinks,["Search Path",'"",'ksPage,nil]]]
else htSay '"{\em Search Path}"
if kind ~= '"category" then
htSay '"}{"
htMakePage [['bcLinks,['Users,'"",'kcuPage,nil]]]
htSay '"}{"
htMakePage [['bcLinks,['Uses,'"",'kcnPage,nil]]]
htSay '"}"
if $standard then htEndTable()
kPageContextMenuSaturn page ==
$newPage : local := nil
[kind,name,nargs,xpart,sig,args,abbrev,comments] := htpProperty(page,'parts)
$htLineList : local := nil
conform := htpProperty(page,'conform)
conname := opOf conform
htMakePage [['bcLinks,['"\&Ancestors",'"",'kcaPage,nil]]]
htMakePage [['bcLinks,['"Attri\&butes",'"",'koPage,'"attribute"]]]
if kind = '"category" then
htMakePage [['bcLinks,['"\&Children",'"",'kccPage,nil]]]
if not asharpConstructorName? conname then
htMakePage [['bcLinks,['"\&Dependents",'"",'kcdePage,nil]]]
if kind = '"category" then
htMakePage [['bcLinks,['"Desce\&ndents",'"",'kcdPage,nil]]]
if kind = '"category" then
if not asharpConstructorName? conname then
htMakePage [['bcLinks,['"Do\&mains",'"",'kcdoPage,nil]]]
else htSayCold '"Do\&mains"
if kind ~= '"category" and (name := saturnHasExamplePage conname)
then saturnExampleLink name
else htSayCold '"E\&xamples"
htMakePage [['bcLinks,['"\&Exports",'"",'kePage,nil]]]
htMakePage [['bcLinks,['"\&Operations",'"",'koPage,'"operation"]]]
htMakePage [['bcLinks,['"\&Parents",'"",'kcpPage,'"operation"]]]
if not asharpConstructorName? conname
then htMakePage [['bcLinks,['"Search O\&rder",'"",'ksPage,nil]]]
else htSayCold '"Search Order"
if kind ~= '"category" or dbpHasDefaultCategory? xpart
then
htMakePage [['bcLinks,['"\&Users",'"",'kcuPage,nil]]]
htMakePage [['bcLinks,['"U\&ses",'"",'kcnPage,nil]]]
else
htSayCold '"\&Users"
htSayCold '"U\&ses"
$saturnContextMenuLines := $htLineList
saturnExampleLink lname ==
htSay '"\docLink{\csname "
htSay strconc(second lname, '"\endcsname}{E&xamples}")
$exampleConstructors := nil
saturnHasExamplePage conname ==
if not $exampleConstructors then
$exampleConstructors := getSaturnExampleList()
ASSQ(conname, $exampleConstructors)
getSaturnExampleList() ==
file := strconc(systemRootDirectory(), "/doc/axug/examples.lsp")
not PROBE_-FILE file => nil
fp := MAKE_-INSTREAM file
lst := VMREAD fp
SHUT fp
lst
dbPresentCons(htPage,kind,:exclusions) ==
$saturn => dbPresentConsSaturn(htPage,kind,exclusions)
htpSetProperty(htPage,'exclusion,first exclusions)
cAlist := htpProperty(htPage,'cAlist)
empty? := null cAlist
one? := null rest cAlist
one? := empty? or one?
exposedUnexposedFlag := $includeUnexposed? --used to be star? 4/92
star? := true --always include information on exposed/unexposed 4/92
if $standard then htBeginTable()
htSay '"{"
if one? or member('abbrs,exclusions)
then htSay '"{\em Abbreviations}"
else htMakePage [['bcLispLinks,['"Abbreviations",'"",'dbShowCons,'abbrs]]]
htSay '"}{"
if one? or member('conditions,exclusions) or "and"/[rest x = true for x in cAlist]
then htSay '"{\em Conditions}"
else htMakePage [['bcLispLinks,['"Conditions",'"",'dbShowCons,'conditions]]]
htSay '"}{"
if empty? or member('documentation,exclusions)
then htSay '"{\em Descriptions}"
else htMakePage [['bcLispLinks,['"Descriptions",'"",'dbShowCons,'documentation]]]
htSay '"}{"
if one? or null rest cAlist
then htSay '"{\em Filter}"
else htMakePage
[['bcLinks,['"Filter",'"",'htFilterPage,['dbShowCons,'filter]]]]
htSay '"}{"
if one? or member('kinds,exclusions) or kind ~= 'constructor
then htSay '"{\em Kinds}"
else htMakePage [['bcLispLinks,['"Kinds",'"",'dbShowCons,'kinds]]]
htSay '"}{"
if one? or member('names,exclusions)
then htSay '"{\em Names}"
else htMakePage [['bcLispLinks,['"Names",'"",'dbShowCons,'names]]]
htSay '"}{"
if one? or member('parameters,exclusions) or not ("or"/[CDAR x for x in cAlist])
then htSay '"{\em Parameters}"
else htMakePage [['bcLispLinks,['"Parameters",'"",'dbShowCons,'parameters]]]
htSay '"}{"
if $exposedOnlyIfTrue
then
if one?
then htSay '"{\em Unexposed Also}"
else htMakePage [['bcLinks,['"Unexposed Also",'"",'dbShowCons,'exposureOff]]]
else
if one?
then htSay '"{\em Exposed Only}"
else htMakePage [['bcLinks,['"Exposed Only",'"",'dbShowCons,'exposureOn]]]
htSay '"}"
if $standard then htEndTable()
dbPresentConsSaturn(htPage,kind,exclusions) ==
$htLineList : local := nil
$newPage : local := nil
htpSetProperty(htPage,'exclusion,first exclusions)
cAlist := htpProperty(htPage,'cAlist)
empty? := null cAlist
one? := null KDR cAlist
one? := empty? or one?
exposedUnexposedFlag := $includeUnexposed? --used to be star? 4/92
star? := true --always include information on exposed/unexposed 4/92
if $standard then htBeginTable()
if one? or member('abbrs,exclusions)
then htSayCold '"\&Abbreviations"
else htMakePage [['bcLispLinks,['"\&Abbreviations",'"",'dbShowCons,'abbrs]]]
if one? or member('conditions,exclusions) or "and"/[rest x = true for x in cAlist]
then htSayCold '"\&Conditions"
else htMakePage [['bcLispLinks,['"\&Conditions",'"",'dbShowCons,'conditions]]]
if empty? or member('documentation,exclusions)
then htSayCold '"\&Descriptions"
else htMakePage [['bcLispLinks,['"\&Descriptions",'"",'dbShowCons,'documentation]]]
if one? or null rest cAlist
then htSayCold '"\&Filter"
else htMakeSaturnFilterPage ['dbShowCons, 'filter]
if one? or member('kinds,exclusions) or kind ~= 'constructor
then htSayCold '"\&Kinds"
else htMakePage [['bcLispLinks,['"\&Kinds",'"",'dbShowCons,'kinds]]]
if one? or member('names,exclusions)
then htSayCold '"\&Names"
else htMakePage [['bcLispLinks,['"\&Names",'"",'dbShowCons,'names]]]
if one? or member('parameters,exclusions) or not ("or"/[CDAR x for x in cAlist])
then htSayCold '"\&Parameters"
else htMakePage [['bcLispLinks,['"\&Parameters",'"",'dbShowCons,'parameters]]]
htSaySaturn '"\hrule"
if $exposedOnlyIfTrue
then
if one? then htSayCold '"\&Unexposed Also"
else htMakePage [['bcLinks,['"\&Unexposed Also",'"",'dbShowCons,'exposureOff]]]
else
if one? then htSayCold '"\Exposed Only\&y"
else htMakePage [['bcLinks,['"Exposed Onl\&y",'"",'dbShowCons,'exposureOn]]]
if $standard then htEndTable()
$saturnContextMenuLines := $htLineList
htFilterPage(htPage,args) ==
htInitPage("Filter String",htCopyProplist htPage)
htSay "\centerline{Enter filter string (use {\em *} for wild card):}"
htSay '"\centerline{"
htMakePage [['bcStrings, [50,'"",'filter,'EM]]]
htSay '"}\vspace{1}\centerline{"
htMakePage [['bcLispLinks,['"\fbox{Filter}",'"",:args]]]
htSay '"}"
htShowPage()
htMakeSaturnFilterPage [fn2Call,:args] ==
htSay '"\inputboxLink[\lispLink[d]{\verb+(|"
htSay fn2Call
htSay '"| "
htSay htpName $saturnPage
for x in args repeat
htSay '" '|"
htSay x
htSay '"|"
htSay '" _"+_\FILTERSTRING\verb+_")+}{}]{\FILTERSTRING}{*}"
htSay '"{\centerline{Enter filter string (use {\em *} for wild card):}}"
htSay '"{Filter Page}{\&Filter}"
dbShowConsKinds cAlist ==
cats := doms := paks := defs := nil
for x in cAlist repeat
op := CAAR x
kind := dbConstructorKind op
kind = 'category => cats := [x,:cats]
kind = 'domain => doms := [x,:doms]
kind = 'package => paks := [x,:paks]
defs := [x,:defs]
lists := [nreverse cats,nreverse doms,nreverse paks,nreverse defs]
htBeginMenu 'description
htSayStandard '"\indent{1}"
kinds := +/[1 for x in lists | #x > 0]
firstTime := true
for kind in '("category" "domain" "package" "default package") for x in lists | #x > 0 repeat
if firstTime then firstTime := false
else htSaySaturn '"\\"
htSaySaturn '"\item["
htSayStandard '"\item"
if kinds = 1
then htSay menuButton()
else htMakePage
[['bcLinks,[menuButton(),'"",'dbShowConsKindsFilter,[kind,x]]]]
htSaySaturn '"]"
htSayStandard '"\tab{1}"
htSay('"{\em ",c := #x,'" ")
htSay(c > 1 => pluralize kind; kind)
htSay '":}"
htSaySaturn '"\\"
bcConTable removeDuplicates [CAAR y for y in x]
htEndMenu 'description
htSayStandard '"\indent{0}"
addParameterTemplates(page, conform) ==
---------------> from kPage <-----------------------
parlist := [STRINGIMAGE par for par in rest conform]
manuelsCode? := "MAX"/[#s for s in parlist] > 10
w := (manuelsCode? => 55; 23)
htSaySaturn '"\colorbuttonbox{lightgray}{"
htSay '"Optional argument value"
htSay
rest parlist => '"s:"
'":"
htSaySaturn '"}"
if rest conform then htSaySaturn '"\newline{}"
htSaySaturn '"\begin{tabular}{p{.25in}l}"
firstTime := true
odd := false
argSublis := htpProperty(page,'argSublis)
for parname in $PatternVariableList for par in rest conform repeat
htSayStandard (odd or manuelsCode? => "\newline";"\tab{29}")
if firstTime then firstTime := false
else htSaySaturn '"\\"
odd := not odd
argstring :=
$conArgstrings is [a,:r] => ($conArgstrings := r; a)
'""
htMakePageStandard [['text,'"{\em ",par,'"} = "],
['bcStrings,[w - #STRINGIMAGE par,argstring,parname,'EM]]]
if $saturn then
setUpDefault(parname, ['string, '"", 'EM, nil])
htSaySaturn '"{\em "
htSaySaturn par
htSaySaturn '" = }"
htSaySaturnAmpersand()
htSaySaturn '"\colorbuttonbox{lightgray}{\inputbox[2.5in]{\"
htSaySaturn SUBLIS(argSublis,par)
htSaySaturn '"}{"
htSaySaturn argstring
htSaySaturn '"}}"
htEndTabular()
kPageArgs([op,:args],[.,.,:source]) ==
htSaySaturn '"\begin{tabular}{p{.25in}lp{0in}}"
firstTime := true
coSig := rest getDualSignatureFromDB op
for x in args for t in source for pred in coSig repeat
if firstTime then firstTime := false
else
htSaySaturn '"\\"
htSayStandard '", and"
htSayStandard '"\newline "
htSaySaturnAmpersand()
typeForm := (t is [":",.,t1] => t1; t)
if pred = true
then htMakePage [['bcLinks,[x,'"",'kArgPage,x]]]
else htSay('"{\em ",x,'"}")
htSayStandard( '"\tab{",STRINGIMAGE( # PNAME x),'"}, ")
htSaySaturnAmpersand()
htSay
pred => '"a domain of category "
'"an element of the domain "
bcConform(typeForm,true)
htEndTabular()
--=======================================================================
-- Redefinitions from br-op1.boot
--=======================================================================
dbConform form ==
--one button for the main constructor page of a type
$saturn => ["\lispLink[d]{\verb!(|conPage| '",:form2Fence dbOuttran form,'")!}{",
:form2StringList opOf form,"}"]
["\conf{",:form2StringList opOf form,'"}{",:form2Fence dbOuttran form,'"}"]
htTab s ==
$standard => htSayStandard ('"\tab{",s,'"}")
nil
dbGatherThenShow(htPage,opAlist,which,data,constructorIfTrue,word,fn) ==
single? := null rest data
htBeginMenu 'description
bincount := 0
for [thing,exposeFlag,:items] in data repeat
htSaySaturn '"\item["
htSayStandard ('"\item")
if single? then htSay(menuButton())
else
htMakePageStandard
[['bcLinks,[menuButton(),'"",'dbShowOps,which,bincount]]]
button := mkButtonBox (1 + bincount)
htMakePageSaturn [['bcLinks,[button,'"",'dbShowOps,which,bincount]]]
htSaySaturn '"]"
htSay '"{\em "
htSay
thing = 'nowhere => '"implemented nowhere"
thing = 'constant => '"constant"
thing = '_$ => '"by the domain"
integer? thing => '"unexported"
constructorIfTrue =>
htSay word
atom thing => '" an unknown constructor"
'""
atom thing => '"unconditional"
'""
htSay '"}"
if cons? thing then
if constructorIfTrue then htSay('" {\em ",dbShowKind thing,'"}")
htSay '" "
FUNCALL(fn,thing)
htSay('":\newline ")
dbShowOpSigList(which,items,(1 + bincount) * 8192)
bincount := bincount + 1
htEndMenu 'description
dbPresentOps(htPage,which,:exclusions) ==
$saturn => dbPresentOpsSaturn(htPage,which,exclusions)
asharp? := htpProperty(htPage,'isAsharpConstructor)
fromConPage? := (conname := opOf htpProperty(htPage,'conform))
usage? := nil
star? := not fromConPage? or which = '"package operation"
implementation? := not asharp? and
$UserLevel = 'development and $conformsAreDomains --and not $includeUnexposed?
rightmost? := star? or (implementation? and not $includeUnexposed?)
if integer? first exclusions then exclusions := ['documentation]
htpSetProperty(htPage,'exclusion,first exclusions)
opAlist :=
which = '"operation" => htpProperty(htPage,'opAlist)
htpProperty(htPage,'attrAlist)
empty? := null opAlist
one? := opAlist is [entry] and 2 = #entry
one? := empty? or one?
htBeginTable()
htSay '"{"
if one? or member('conditions,exclusions)
or (htpProperty(htPage,'condition?) = 'no)
then htSay '"{\em Conditions}"
else htMakePage [['bcLispLinks,['"Conditions",'"",'dbShowOps,which,'conditions]]]
htSay '"}{"
if empty? or member('documentation,exclusions)
then htSay '"{\em Descriptions}"
else htMakePage [['bcLispLinks,['"Descriptions",'"",'dbShowOps,which,'documentation]]]
htSay '"}{"
if null IFCDR opAlist
then htSay '"{\em Filter}"
else htMakePage [['bcLinks,['"Filter ",'"",'htFilterPage,['dbShowOps,which,'filter]]]]
htSay '"}{"
if one? or member('names,exclusions) or null KDR opAlist
then htSay '"{\em Names}"
else htMakePage [['bcLispLinks,['"Names",'"",'dbShowOps,which,'names]]]
if not star? then
htSay '"}{"
if not implementation? or member('implementation,exclusions) or which = '"attribute" or
((conname := opOf htpProperty(htPage,'conform))
and getConstructorKindFromDB conname = "category")
then htSay '"{\em Implementations}"
else htMakePage
[['bcLispLinks,['"Implementations",'"",'dbShowOps,which,'implementation]]]
htSay '"}{"
if one? or member('origins,exclusions)
then htSay '"{\em Origins}"
else htMakePage [['bcLispLinks,['"Origins",'"",'dbShowOps,which,'origins]]]
htSay '"}{"
if one? or member('parameters,exclusions) --also test for some parameter
or not dbDoesOneOpHaveParameters? opAlist
then htSay '"{\em Parameters}"
else htMakePage [['bcLispLinks,['"Parameters",'"",'dbShowOps,which,'parameters]]]
htSay '"}{"
if which ~= '"attribute" then
if one? or member('signatures,exclusions)
then htSay '"{\em Signatures}"
else htMakePage [['bcLispLinks,['"Signatures",'"",'dbShowOps,which,'signatures]]]
htSay '"}"
if star? then
htSay '"{"
if $exposedOnlyIfTrue
then if one?
then htSay '"{\em Unexposed Also}"
else htMakePage [['bcLinks,['"Unexposed Also",'"",'dbShowOps,which,'exposureOff]]]
else if one?
then htSay '"{\em Exposed Only}"
else htMakePage [['bcLinks,['"Exposed Only",'"",'dbShowOps, which,'exposureOn]]]
htSay '"}"
htEndTable()
dbPresentOpsSaturn(htPage,which,exclusions) ==
$htLineList : local := nil
$newPage : local := nil
asharp? := htpProperty(htPage,'isAsharpConstructor)
fromConPage? := (conname := opOf htpProperty(htPage,'conform))
usage? := nil
star? := not fromConPage? or which = '"package operation"
implementation? := not asharp? and
$UserLevel = 'development and $conformsAreDomains --and not $includeUnexposed?
rightmost? := star? or (implementation? and not $includeUnexposed?)
if integer? first exclusions then exclusions := ['documentation]
htpSetProperty(htPage,'exclusion,first exclusions)
opAlist :=
which = '"operation" => htpProperty(htPage,'opAlist)
htpProperty(htPage,'attrAlist)
empty? := null opAlist
one? := opAlist is [entry] and 2 = #entry
one? := empty? or one?
if one? or member('conditions,exclusions)
or (htpProperty(htPage,'condition?) = 'no)
then htSayCold '"\&Conditions"
else htMakePage [['bcLispLinks,['"\&Conditions",'"",'dbShowOps,which,'conditions]]]
if empty? or member('documentation,exclusions)
then htSayCold '"\&Descriptions"
else htMakePage [['bcLispLinks,['"\&Descriptions",'"",'dbShowOps,which,'documentation]]]
if null IFCDR opAlist
then htSayCold '"\&Filter"
else htMakeSaturnFilterPage ['dbShowOps, which, 'filter]
if not implementation? or member('implementation,exclusions) or which = '"attribute" or
((conname := opOf htpProperty(htPage,'conform))
and getConstructorKindFromDB conname = "category")
then htSayCold '"\&Implementations"
else htMakePage
[['bcLispLinks,['"\&Implementations",'"",'dbShowOps,which,'implementation]]]
if one? or member('names,exclusions) or null KDR opAlist
then htSayCold '"\&Names"
else htMakePage [['bcLispLinks,['"\&Names",'"",'dbShowOps,which,'names]]]
if one? or member('origins,exclusions)
then htSayCold '"\&Origins"
else htMakePage [['bcLispLinks,['"\&Origins",'"",'dbShowOps,which,'origins]]]
if one? or member('parameters,exclusions) --also test for some parameter
or not dbDoesOneOpHaveParameters? opAlist
then htSayCold '"\&Parameters"
else htMakePage [['bcLispLinks,['"\&Parameters",'"",'dbShowOps,which,'parameters]]]
if which ~= '"attribute" then
if one? or member('signatures,exclusions)
then htSayCold '"\&Signatures"
else htMakePage [['bcLispLinks,['"\&Signatures",'"",'dbShowOps,which,'signatures]]]
if star? then
htSay '"\hrule"
if $exposedOnlyIfTrue
then if one? then htSayCold '"\&Unexposed Also"
else htMakePage [['bcLinks,['"\&Unexposed Also",'"",'dbShowOps,which,'exposureOff]]]
else
if one? then htSayCold '"Exposed Onl\&y"
else htMakePage [['bcLinks,['"Exposed Onl\&y",'"",'dbShowOps,which,'exposureOn]]]
$saturnContextMenuLines := $htLineList
--=======================================================================
-- Redefinitions from br-search.boot
--=======================================================================
htShowPageStar() ==
$saturn => htShowPageStarSaturn()
htSayStandard '"\endscroll "
if $exposedOnlyIfTrue then
htMakePage [['bcLinks,['"Unexposed Also",'"",'repeatSearch,NIL]]]
else
htMakePage [['bcLinks,['"Exposed Only",'"",'repeatSearch,'T]]]
htShowPageNoScroll()
htShowPageStarSaturn() ==
$newPage : local := nil
$htLineList : local := nil
if $exposedOnlyIfTrue then
htMakePage [['bcLinks,['"Unexposed Also",'"",'repeatSearch,NIL]]]
else
htMakePage [['bcLinks,['"Exposed Only",'"",'repeatSearch,'T]]]
$saturnContextMenuLines := $htLineList
htShowPageNoScroll()
--=======================================================================
-- Redefinitions from br-op2.boot
--=======================================================================
++ returns true if op designate a niladic constructor. Note that
++ constructors are symbols whereas ordinary operations are strings.
operationIsNiladicConstructor op ==
IDENTP op => niladicConstructorFromDB op
false
++ Like operationIsNiladicConstructor() except that we just want
++ to know whether `op' is a constructor, arity is unimportant.
operationIsConstructor op ==
IDENTP op => getDualSignatureFromDB op
nil
--------------> NEW DEFINITION (see br-op2.boot.pamphlet)
displayDomainOp(htPage,which,origin,op,sig,predicate,
doc,index,chooseFn,unexposed?,$generalSearch?) ==
$chooseDownCaseOfType : local := true --see dbGetContrivedForm
$whereList : local := nil
$NumberList : local := '(i j k l m n i1 j1 k1 l1 m1 n1 i2 j2 k2 l2 m2 n2 i3 j3 k3 l3 m3 n3 i4 j4 k4 l4 m4 n4 )
$ElementList: local := '(x y z u v w x1 y1 z1 u1 v1 w1 x2 y2 z2 u2 v2 w2 x3 y3 z3 u3 v3 w3 x4 y4 z4 u4 v4 w4 )
$FunctionList:local := '(f g h d e F G H)
$DomainList: local := '(D R S E T A B C M N P Q U V W)
exactlyOneOpSig := null index
conform := htpProperty(htPage,'domname) or htpProperty(htPage,'conform)
or origin
if $generalSearch? then $DomainList := rest $DomainList
opform :=
which = '"attribute" =>
null sig => [op]
[op,sig]
which = '"constructor" => origin
dbGetDisplayFormForOp(op,sig,doc)
htSayStandard('"\newline")
-----------------------------------------------------------
htSaySaturn '"\item["
if exactlyOneOpSig
then htSay menuButton()
else htMakePage
[['bcLinks,[menuButton(),'"",chooseFn,which,index]]]
htSaySaturn '"]"
htSayStandard '"\tab{2}"
op := IFCAR opform
args := IFCDR opform
ops := escapeSpecialChars STRINGIMAGE op
n := #sig
do
n = 2 and LASSOC('Nud,PROPLIST op) =>
htSay(ops,'" {\em ",quickForm2HtString KAR args,'"}")
n = 3 and LASSOC('Led,PROPLIST op) =>
htSay('"{\em ",quickForm2HtString KAR args,'"} ",ops,'" {\em ",quickForm2HtString KAR KDR args,'"}")
if unexposed? and $includeUnexposed? then
htSayUnexposed()
htSay(ops)
predicate='ASCONST or operationIsNiladicConstructor op or member(op,'(0 1)) => 'skip
which = '"attribute" and null args => 'skip
htSay('"(")
if IFCAR args then htSay('"{\em ",quickForm2HtString IFCAR args,'"}")
for x in IFCDR args repeat
htSay('",{\em ",quickForm2HtString x,'"}")
htSay('")")
-----------prepare to print description---------------------
constring := form2HtString conform
conname := first conform
$conkind : local := htpProperty(htPage,'kind) -- a string e.g. "category"
or STRINGIMAGE getConstructorKindFromDB conname
$conlength : local := #constring
$conform : local := conform
$conargs : local := rest conform
if which = '"operation" then
$signature : local :=
MEMQ(conname,$DomainNames) => nil
CDAR getConstructorModemapFromDB conname
--RDJ: this next line is necessary until compiler bug is fixed
--that forgets to substitute #variables for t#variables;
--check the signature for SegmentExpansionCategory, e.g.
tvarlist := TAKE(# $conargs,$TriangleVariableList)
$signature := SUBLISLIS($FormalMapVariableList,tvarlist,$signature)
$sig :=
which = '"attribute" or which = '"constructor" => sig
$conkind ~= '"package" => sig
symbolsUsed := [x for x in rest conform | IDENTP x]
$DomainList := SETDIFFERENCE($DomainList,symbolsUsed)
getSubstSigIfPossible sig
-----------------------------------------------------------
htSaySaturn '"\begin{tabular}{lp{0in}}"
-----------------------------------------------------------
if member(which,'("operation" "constructor")) then
$displayReturnValue: local := nil
if args then
htSayStandard('"\newline\tab{2}{\em Arguments:}")
htSaySaturn '"{\em Arguments:}"
htSaySaturnAmpersand()
firstTime := true
coSig := KDR operationIsConstructor op --check if op is constructor
for a in args for t in rest $sig repeat
if not firstTime then
htSaySaturn '"\\ "
htSaySaturnAmpersand()
firstTime := false
htSayIndentRel(15, true)
position := KAR relatives
relatives := KDR relatives
if KAR coSig and t ~= '(Type)
then htMakePage [['bcLinks,[a,'"",'kArgPage,a]]]
else htSay('"{\em ",form2HtString(a),'"}")
htSay ", "
coSig := KDR coSig
htSayValue t
htSayIndentRel(-15,true)
htSayStandard('"\newline ")
htSaySaturn '"\\"
if first $sig then
$displayReturnValue := true
htSayStandard('"\newline\tab{2}")
htSay '"{\em Returns:}"
htSaySaturnAmpersand()
htSayIndentRel(15, true)
htSayValue first $sig
htSayIndentRel(-15, true)
htSaySaturn '"\\"
-----------------------------------------------------------
if origin and ($generalSearch? or origin ~= conform) and op~=opOf origin then
htSaySaturn '"{\em Origin:}"
htSaySaturnAmpersand()
htSayStandard('"\newline\tab{2}{\em Origin:}")
htSayIndentRel(15)
if not isExposedConstructor opOf origin and $includeUnexposed?
then htSayUnexposed()
bcConform(origin,true)
htSayIndentRel(-15)
htSaySaturn '"\\"
-----------------------------------------------------------
if not (predicate in '(T ASCONST)) then
pred := sublisFormal(KDR conform,predicate)
count := #pred
htSaySaturn '"{\em Conditions:}"
htSayStandard('"\newline\tab{2}{\em Conditions:}")
firstTime := true
for p in displayBreakIntoAnds substitute($conform,"$",pred) repeat
if not firstTime then htSaySaturn '"\\"
htSayIndentRel(15,count > 1)
firstTime := false
htSaySaturnAmpersand()
bcPred(p,$conform,true)
htSayIndentRel(-15,count > 1)
htSayStandard('"\newline ")
htSaySaturn '"\\"
-----------------------------------------------------------
if $whereList then
count := #$whereList
htSaySaturn '"{\em Where:}"
htSayStandard('"\newline\tab{2}{\em Where:}")
firstTime := true
if ASSOC("$",$whereList) then
htSayIndentRel(15,true)
htSaySaturnAmpersand()
htSayStandard '"{\em \$} is "
htSaySaturn '"{\em \%} is "
htSay
$conkind = '"category" => '"of category "
'"the domain "
bcConform(conform,true,true)
firstTime := false
htSayIndentRel(-15,true)
for [d,key,:t] in $whereList | d ~= "$" repeat
htSayIndentRel(15,count > 1)
if not firstTime then htSaySaturn '"\\ "
htSaySaturnAmpersand()
firstTime := false
htSay("{\em ",d,"} is ")
htSayConstructor(key,sublisFormal(KDR conform,t))
htSayIndentRel(-15,count > 1)
htSaySaturn '"\\"
-----------------------------------------------------------
if doc and (doc ~= '"" and (doc isnt [d] or d ~= '"")) then
htSaySaturn '"{\em Description:}"
htSaySaturnAmpersand()
htSayStandard('"\newline\tab{2}{\em Description:}")
htSayIndentRel(15)
if doc = $charFauxNewline then htSay $charNewline
else
ndoc:=
-- we are confused whether doc is a string or a list of strings
cons? doc => [SUBSTITUTE($charNewline, $charFauxNewline, i) for i in doc]
SUBSTITUTE($charNewline, $charFauxNewline,doc)
htSay ndoc
-- htSaySaturn '"\\"
htSayIndentRel(-15)
--------> print abbr and source file for constructors <---------
if which = '"constructor" then
if (abbr := getConstructorAbbreviationFromDB conname) then
htSaySaturn '"\\"
htSaySaturn '"{\em Abbreviation:}"
htSaySaturnAmpersand()
htSayStandard('"\tab{2}{\em Abbreviation:}")
htSayIndentRel(15)
htSay abbr
htSayIndentRel(-15)
htSayStandard('"\newline{}")
if ( $saturn and (link := saturnHasExamplePage conname)) then
htSaySaturn '"\\"
htSaySaturn '"{\em Examples:}"
htSaySaturnAmpersand()
htSayIndentRel(15)
htSay '"\spadref{"
htSay second link
htSay '"}"
htSayIndentRel(-15)
htSayStandard('"\newline{}")
htSaySaturn '"\\"
htSaySaturn '"{\em Source File:}"
htSaySaturnAmpersand()
htSayStandard('"\tab{2}{\em Source File:}")
htSayIndentRel(15)
htSaySourceFile conname
htSayIndentRel(-15)
------------------> remove profile printouts for now <-------------------
if $standard and
exactlyOneOpSig and (infoAlist := htpProperty(htPage,'infoAlist)) then
displayInfoOp(htPage,infoAlist,op,sig)
-----------------------------------------------------------
htSaySaturn '"\end{tabular}"
htSaySourceFile conname ==
sourceFileName := (getConstructorSourceFileFromDB conname or '"none")
filename := extractFileNameFromPath sourceFileName
htMakePage [['text,'"\unixcommand{",filename,'"}{", textEditor(), '" ",
sourceFileName, '" ", conname, '"}"]]
htSayIndentRel(n,:options) ==
flag := IFCAR options
m := ABSVAL n
if flag then m := m + 2
if $standard then htSayStandard
n > 0 =>
flag => ['"\indent{",STRINGIMAGE m,'"}\tab{-2}"]
['"\indent{",STRINGIMAGE m,'"}\tab{0}"]
n < 0 => ['"\indent{0}\newline "]
htSayUnexposed() ==
htSay '"{\em *}"
$atLeastOneUnexposed := true
--=======================================================================
-- Page Operations
--=======================================================================
htEndTabular() ==
htSaySaturn '"\end{tabular}"
htPopSaturn s ==
pageDescription := $saturnPage.7
pageDescription is [=s,:b] => $saturnPage.7 := rest pageDescription
nil
htBeginTable() ==
htSaySaturn '"\begin{dirlist}[lv]"
htSayStandard '"\table{"
htEndTable() ==
htSaySaturn '"\end{dirlist}"
htSayStandard '"}"
htBeginMenu(kind,:options) ==
skip := IFCAR options
if $saturn then
kind = 'description => htSaySaturn '"\begin{description}"
htSaySaturn '"\begin{tabular}"
htSaySaturn
kind = 3 => '"{llp{0in}}"
kind = 2 => '"{lp{0in}}"
error nil
null skip => htSayStandard '"\beginmenu "
nil
htEndMenu(kind) ==
if $saturn then
kind = 'description => htSaySaturn '"\end{description}"
htPopSaturn '"\\"
htSaySaturn '"\end{tabular}"
htSayStandard '"\endmenu "
htSayConstructorName(nameShown, name) ==
if $saturn then
code := ['"(|conPage| '|", name, '"|)"]
htSaySaturn mkDocLink(code,nameShown)
if $standard then
htSayStandard ["\lispdownlink{",nameShown,'"}{(|conPage| '|",name,'"|)}"]
htAddHeading(title) ==
htNewPage title
page()
------------> called by htAddHeading, htInitPageNoScroll <-----------
htNewPage title ==
if $saturn then
htSaySaturn '"\browseTitle{"
htSaySaturn title
htSaySaturn '"}"
if $standard then htSayStandard('"\begin{page}{", htpName $curPage, '"}{")
htSayStandard title
htSayStandard '"}"
--=======================================================================
-- Utilities
--=======================================================================
mkTabularItem u == [:first u,:fn rest u] where fn x ==
null x => nil
[$saturnAmpersand, x,:fn rest x]
htSaySaturnAmpersand() == htSaySaturn $saturnAmpersand
htBlank(:options) ==
options is [n] =>
htSaySaturn(strconc/['"\phantom{*}" for i in 1..n])
htSayStandard strconc('"\space{",STRINGIMAGE n,'"}")
htSaySaturn '"\phantom{*}"
htSayStandard '"\space{1}"
unTab s ==
string? s => unTab1 s
atom s => s
[unTab1 first s, :rest s]
unTab1 s ==
STRING_<('"\tab{", s) = 5 and (k := charPosition(char '_}, s, 4)) =>
SUBSTRING(s, k + 1, nil)
s
satBreak() ==
htSaySaturn '"\\ "
htSayStandard '"\item "
htBigSkip() ==
htSaySaturn '"\bigskip{}"
htSayStandard '"\vspace{1}\newline "
htSaturnBreak() == htSaySaturn '"\!"
satDownLink(s,code) ==
htSaySaturn '"\lispFunctionLink{\verb!"
htSaySaturn code
htSaySaturn '"!}{"
htSaySaturn s
htSaySaturn '"}"
------------------
htSayStandard '"\lispdownlink{"
htSayStandard s
htSayStandard '"}{"
htSayStandard code
htSayStandard '"}"
satTypeDownLink(s,code) ==
htSaySaturn '"\lispLink[d]{\verb!"
htSaySaturn code
htSaySaturn '"!}{"
htSaySaturn s
htSaySaturn '"}"
------------------
htSayStandard '"\lispdownlink{"
htSayStandard s
htSayStandard '"}{"
htSayStandard code
htSayStandard '"}"
mkButtonBox n == strconc('"\buttonbox{", STRINGIMAGE n, '"}")
--=======================================================================
-- Create separate databases for operations, constructors
--=======================================================================
-----------> use br-data.boot definition
--dbSplitLibdb() ==
--This function splits lidbd.text into files to make searching quicker.
-- alibdb.text attributes
-- clibdb.text categories
-- dlibdb.text domains
-- plibdb.text packages
-- olibdb.text operations
-- xlibdb.text default packages
--These files have the same format as the single file libdb.text did in old
-- version: e.g. <key><name>`<args>`<exposure>`<sig>`<args>`<abbrev>`<doc>
-- for constructors where <key> is a single character, one of acdopx
-- (identifying it as an attribute, category, domain, operator, package,
-- or default package), its name, number of arguments, whether exposed or
-- unexposed, its signature (sometimes abbreviated), its arguments as given
-- in the original definition, its abbreviation, and documentation.
-- For example, domain Matrix has line "dMatrix`1`x`<sig>`(R)`MATRIX`<com>"
-- where <sig> is "(Ring)->Join(MatrixCategory(R,Vector(R),Vector(R)),etc)".
-- The comment field <com> contains the character address of the comments
-- for Matrix in file comdb.text.
--There is thus ONE file comdb.text for documentation of all structures
-- (to facilitate a general search through all documentation)
-- into for comments. The format of entries in comdb.text are lines with
-- two fields of the form d<nnnnn>`<ccccc>, where <nnnnn> is the character
-- address of the line "dMatrix`.." in dlibdb.text (the first character
-- "d" tells which lidbdb file it comes from, the <ccccc> is the
-- documentation for Matrix.
--NOTE: In each file, the first character, one of acdpox, is retained
-- so that lines have the same format as the previous version of the browser
-- (this minimized the number of lines of code that had to be changed from
-- previous version of the browser).
-- key := nil --dummy first key
-- instream := MAKE_-INSTREAM '"libdb.text"
-- comstream := MAKE_-OUTSTREAM '"comdb.text"
-- PRINTEXP(0, comstream)
-- PRINTEXP($tick,comstream)
-- PRINTEXP('"", comstream)
-- TERPRI(comstream)
-- while not EOFP instream repeat
-- line := READLINE instream
-- comP := FILE_-POSITION comstream
-- if key ~= line.0 then
-- if outstream then SHUT outstream
-- key := line . 0
-- outstream := MAKE_-OUTSTREAM strconc(STRINGIMAGE key,'"libdb.text")
-- outP := FILE_-POSITION outstream
-- [prefix,:comments] := dbSplit(line,6,1)
-- PRINTEXP(prefix,outstream)
-- PRINTEXP($tick ,outstream)
-- null comments =>
-- PRINTEXP(0,outstream)
-- TERPRI(outstream)
-- PRINTEXP(comP,outstream)
-- TERPRI(outstream)
-- PRINTEXP(key, comstream) --identifies file the backpointer is to
-- PRINTEXP(outP ,comstream)
-- PRINTEXP($tick ,comstream)
-- PRINTEXP(first comments,comstream)
-- TERPRI(comstream)
-- for c in rest comments repeat
-- PRINTEXP(key, comstream) --identifies file the backpointer is to
-- PRINTEXP(outP ,comstream)
-- PRINTEXP($tick ,comstream)
-- PRINTEXP(c, comstream)
-- TERPRI(comstream)
-- SHUT instream
-- SHUT outstream
-- SHUT comstream
--removeFile '"libdb.text"
dbSort(x,y) ==
sin := STRINGIMAGE x
sout:= STRINGIMAGE y
runCommand strconc('"sort -f _"",sin,'".text_" > _"", sout, '".text_"")
removeFile strconc(sin, '".text")
bcConform1 form == main where
main() ==
form is ['ifp,form1,:pred] =>
hd form1
bcPred pred
hd form
hd form ==
atom form =>
-- string literals, e.g. "failed", are constructor arguments
-- too, until we fix that.
string? form or not isConstructorName form =>
s :=
string? form => strconc("_"",form,"_"")
STRINGIMAGE form
(s.0 = char '_#) =>
(n := POSN1(form, $FormalFunctionParameterList)) =>
htSay form2HtString ($FormalMapVariableList . n)
htSay '"\"
htSay form
htSay escapeSpecialChars s
s := STRINGIMAGE form
$italicHead? => htSayItalics s
$bcMultipleNames =>
satTypeDownLink(s, ['"(|conPageChoose| '|",s,'"|)"])
satTypeDownLink(s, ["(|conPage| '|",s,'"|)"])
(head := form.op) = 'QUOTE =>
htSay('"'")
hd second form
head = 'SIGNATURE =>
htSay(second form,'": ")
mapping third form
head = 'Mapping and rest form => rest form => mapping rest form
head = ":" =>
hd second form
htSay '": "
hd third form
form.args and dbEvalableConstructor? form
=> bcConstructor(form,head)
hd head
null (r := form.args) => nil
tl form.args
mapping [target,:source] ==
tuple source
bcHt
$saturn => '" {\ttrarrow} "
'" -> "
hd target
tuple u ==
null u => bcHt '"()"
null rest u => hd u
bcHt '"("
hd first u
for x in rest u repeat
bcHt '","
hd x
bcHt '")"
tl u ==
bcHt '"("
firstTime := true
for x in u repeat
if not firstTime then bcHt '","
firstTime := false
hd x
bcHt '")"
say x ==
if $italics? then bcHt '"{\em "
if x = 'etc then x := '"..."
bcHt escapeSpecialIds STRINGIMAGE x
if $italics? then bcHt '"}"
--=======================================================================
-- Code for Private Libdbs
--=======================================================================
--extendLocalLibdb conlist == --called by function "compiler"(see above)
-- buildLibdb conlist --> puts datafile into temp.text
-- $newConstructorList := union(conlist, $newConstructorList)
-- localLibdb := '"libdb.text"
-- not isExistingFile '"libdb.text" => RENAME_-FILE('"temp.text",'"libdb.text")
-- oldlines := purgeNewConstructorLines(dbReadLines localLibdb, conlist)
-- newlines := dbReadLines '"temp.text"
-- dbWriteLines(MSORT union(oldlines,newlines), '"libdb.text")
-- removeFile '"temp.text"
purgeNewConstructorLines(lines, conlist) ==
[x for x in lines | not screenLocalLine(x, conlist)]
-- Got rid of debugging statement and deleted screenLocalLine1, MCD 26/3/96
--screenLocalLine(line,conlist) ==
-- u := screenLocalLine1(line,conlist)
-- if u then
-- sayBrightly ['"Purging--->", line]
-- u
-- screenLocalLine1(line, conlist) ==
screenLocalLine(line, conlist) ==
k := dbKind line
con := INTERN
k = char 'o or k = char 'a =>
s := dbPart(line,5,1)
k := charPosition(char '_(,s,1)
SUBSTRING(s,1,k - 1)
dbName line
MEMQ(con, conlist)
purgeLocalLibdb() == --called by the user through a clear command?
$newConstructorList := nil
removeFile '"libdb.text"
--moveFile(before,after) ==
-- $saturn => MOVE_-FILE(before, after)
-- RENAME_-FILE(before, after)
-- --obey strconc('"mv ", before, '" ", after)
-- deleted JHD/MCD, since already one in pathname.boot
--removeFile fn ==
-- $saturn => DELETE_-FILE fn
-- obey strconc('"rm ",fn)
--=======================================================================
-- from DAASE.LISP
--=======================================================================
--library(args) ==
-- $newConlist: local := nil
-- LOCALDATABASE(args,$options)
-- extendLocalLibdb $newConlist
-- TERSYSCOMMAND()
|