aboutsummaryrefslogtreecommitdiffhomepage
path: root/data/doc/sisu/html/sisu.1.html
blob: fb74b10df0df88f5f736a27cbc87232620dd50b4 (plain)
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
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
<!-- manual page source format generated by PolyglotMan v3.2, -->
<!-- available at http://polyglotman.sourceforge.net/ -->

<html>
<head>
<title>"sisu"("1") manual page</title>
</head>
<body bgcolor='white'>
<a href='#toc'>Table of Contents</a><p>
<br>

<h2><a name='sect0' href='#toc0'>Name</a></h2>
<br>
sisu - documents: markup, structuring, publishing in multiple standard formats,
and search <br>

<h2><a name='sect1' href='#toc1'>Synopsis</a></h2>
<br>
sisu [-abcDdFehIiMmNnopqRrSsTtUuVvwXxYyZz0-9] [filename/wildcard]
<p> <br>
sisu [-Ddcv] [instruction] [filename/wildcard]
<p> <br>
sisu [-CcFLSVvW]
<p> <br>
sisu --v2 [operations]
<p> <br>
sisu --v3 [operations]
<p> <br>
sisu3 [operations]
<h2><a name='sect2' href='#toc2'>Sisu - Manual,</a></h2>
RALPH AMISSAH <br>

<p>
<h2><a name='sect3' href='#toc3'>What is Sisu?</a></h2>
<br>

<p>
<h2><a name='sect4' href='#toc4'>1. Introduction - What is Sisu?</a></h2>
<br>

<p> <br>
<b>SiSU</b> is a framework for document structuring, publishing (in multiple open
standard formats) and search, comprising of: (a) a lightweight document
structure and presentation markup syntax; and (b) an accompanying engine
for generating standard document format outputs from documents prepared
in sisu markup syntax, which is able to produce multiple standard outputs
(including the population of sql databases) that (can) share a common numbering
system for the citation of text within a document.
<p> <br>
<b>SiSU</b> is developed under an open source, software libre license (GPL3). Its
use case for development is work with medium to large document sets and
cope with evolving document formats/ representation technologies. Documents
are prepared once, and generated as need be to update the technical presentation
or add additional output formats. Various output formats (including search
related output) share a common mechanism for cross-output-format citation.

<p> <br>
<b>SiSU</b> both defines a markup syntax and provides an engine that produces
open standards format outputs from documents prepared with <b>SiSU</b> markup.
From a single lightly prepared document sisu custom builds several standard
output formats which share a common (text object) numbering system for
citation of content within a document (that also has implications for search).
The sisu engine works with an abstraction of the document&rsquo;s structure and
content from which it is possible to generate different forms of representation
of the document. Significantly <b>SiSU</b> markup is more sparse than html and
outputs which include html, EPUB, LaTeX, landscape and portrait pdfs, Open
Document Format (ODF), all of which can be added to and updated. <b>SiSU</b> is
also able to populate SQL type databases at an object level, which means
that searches can be made with that degree of granularity.
<p> <br>
Source document preparation and output generation is a two step process:
(i) document source is prepared, that is, marked up in sisu markup syntax
and (ii) the desired output subsequently generated by running the sisu
engine against document source. Output representations if updated (in the
sisu engine) can be generated by re-running the engine against the prepared
source. Using <b>SiSU</b> markup applied to a document, <b>SiSU</b> custom builds (to
take advantage of the strengths of different ways of representing documents)
various standard open output formats including plain text, HTML, XHTML,
XML, EPUB, OpenDocument, LaTeX or PDF files, and populate an SQL database
with objects[^1] (equating generally to paragraph-sized chunks) so searches
may be performed and matches returned with that degree of granularity (
e.g. your search criteria is met by these documents and at these locations
within each document). Document output formats share a common object numbering
system for locating content. This is particularly suitable for "published"
works (finalized texts as opposed to works that are frequently changed
or updated) for which it provides a fixed means of reference of content.

<p> <br>
In preparing a <b>SiSU</b> document you optionally provide semantic information
related to the document in a document header, and in marking up the substantive
text provide information on the structure of the document, primarily indicating
heading levels and footnotes. You also provide information on basic text
attributes where used. The rest is automatic, sisu from this information
custom builds[^2] the different forms of output requested.
<p> <br>
<b>SiSU</b> works with an abstraction of the document based on its structure which
is comprised of its headings[^3] and objects[^4], which enables <b>SiSU</b> to represent
the document in many different ways, and to take advantage of the strengths
of different ways of presenting documents. The objects are numbered, and
these numbers can be used to provide a common basis for citing material
within a document across the different output format types. This is significant
as page numbers are not well suited to the digital age, in web publishing,
changing a browser&rsquo;s default font or using a different browser can mean
that text will appear on a different page; and publishing in different
formats, html, landscape and portrait pdf etc. again page numbers are not
useful to cite text. Dealing with documents at an object level together
with object numbering also has implications for search that <b>SiSU</b> is able
to take advantage of.
<p> <br>
One of the challenges of maintaining documents is to keep them in a format
that allows use of them independently of proprietary platforms. Consider
issues related to dealing with legacy proprietary formats today and what
guarantee you have that old proprietary formats will remain (or can be
read without proprietary software/equipment) in 15 years time, or the way
the way in which html has evolved over its relatively short span of existence.
<b>SiSU</b> provides the flexibility of producing documents in multiple non-proprietary
open formats including html, pdf[^5] ODF,[^6] and EPUB.[^7] Whilst <b>SiSU</b> relies
on software, the markup is uncomplicated and minimalistic which guarantees
that future engines can be written to run against it. It is also easily
converted to other formats, which means documents prepared in <b>SiSU</b> can
be migrated to other document formats. Further security is provided by the
fact that the software itself, <b>SiSU</b> is available under GPL3 a licence that
guarantees that the source code will always be open, and free as in libre,
which means that that code base can be used, updated and further developed
as required under the terms of its license. Another challenge is to keep
up with a moving target. <b>SiSU</b> permits new forms of output to be added as
they become important, (Open Document Format text was added in 2006 when
it became an ISO standard for office applications and the archival of documents),
EPUB was introduced in 2009; and allows the technical representations existing
output to be updated (html has evolved and the related module has been
updated repeatedly over the years, presumably when the World Wide Web Consortium
(w3c) finalises html 5 which is currently under development, the html module
will again be updated allowing all existing documents to be regenerated
as html 5).
<p> <br>
The document formats are written to the file-system and available for indexing
by independent indexing tools, whether off the web like Google and Yahoo
or on the site like Lucene and Hyperestraier.
<p> <br>
<b>SiSU</b> also provides other features such as concordance files and document
content certificates, and the working against an abstraction of document
structure has further possibilities for the research and development of
other document representations, the availability of objects is useful for
example for topic maps and thesauri, together with the flexibility of <b>SiSU</b>
offers great possibilities.
<p> <br>
<b>SiSU</b> is primarily for published works, which can take advantage of the
citation system to reliably reference its documents. <b>SiSU</b> works well in
a complementary manner with such collaborative technologies as Wikis, which
can take advantage of and be used to discuss the substance of content prepared
in <b>SiSU.</b>
<p> <br>
&lt;<a href='http://www.sisudoc.org/'>http://www.sisudoc.org/</a>
&gt;
<p> <br>
&lt;<a href='http://www.jus.uio.no/sisu'>http://www.jus.uio.no/sisu</a>
&gt;
<p>
<h2><a name='sect5' href='#toc5'>2. Commands Summary</a></h2>
<br>

<p>
<h2><a name='sect6' href='#toc6'>2.1 Description</a></h2>

<p> <br>
<b>SiSU</b> is a document publishing system, that from a simple single marked-up
document, produces multiple output formats including: plaintext, html,
xhtml, XML, epub, odt (odf text), LaTeX, pdf, info, and SQL (PostgreSQL
and SQLite), which share text object numbers ("object citation numbering")
and the same document structure information. For more see: &lt;<a href='http://www.jus.uio.no/sisu'>http://www.jus.uio.no/sisu</a>
&gt;

<p>
<h2><a name='sect7' href='#toc7'>2.2 Document Processing Command Flags</a></h2>

<p>
<dl>

<dt><b>-a [filename/wildcard]</b> </dt>
<dd>produces plaintext
with Unix linefeeds and without markup, (object numbers are omitted), has
footnotes at end of each paragraph that contains them [ &nbsp;-A &nbsp;for &nbsp;equivalent
&nbsp;dos &nbsp;(linefeed) &nbsp;output &nbsp;file] [see &nbsp;-e &nbsp;for (Options include: --endnotes for endnotes
--footnotes for footnotes at the end of each paragraph --unix for unix linefeed
(default) --msdos for msdos linefeed)
<p> </dd>

<dt><b>-b [filename/wildcard]</b> </dt>
<dd>see --xhtml
<p> </dd>

<dt><b>--color-toggle
[filename/wildcard]</b> </dt>
<dd>screen toggle ansi screen colour on or off depending
on default set (unless -c flag is used: if sisurc colour default is set
to &rsquo;true&rsquo;, output to screen will be with colour, if sisurc colour default
is set to &rsquo;false&rsquo; or is undefined screen output will be without colour). Alias -c
<p> </dd>

<dt><b>--concordance [filename/wildcard]</b> </dt>
<dd>produces concordance (wordmap) a rudimentary
index of all the words in a document. (Concordance files are not generated
for documents of over 260,000 words unless this limit is increased in the
file sisurc.yml). Alias -w
<p> </dd>

<dt><b>-C [--init-site]</b> </dt>
<dd>configure/initialise shared output
directory files initialize shared output directory (config files such as
css and dtd files are not updated if they already exist unless modifier
is used). -C --init-site configure/initialise site more extensive than -C on
its own, shared output directory files/force update, existing shared output
config files such as css and dtd files are updated if this modifier is
used.
<p> </dd>

<dt><b>-CC</b> </dt>
<dd>configure/initialise shared output directory files initialize
shared output directory (config files such as css and dtd files are not
updated if they already exist unless modifier is used). The equivalent of:
-C --init-site configure/initialise site, more extensive than -C on its own,
shared output directory files/force update, existing shared output config
files such as css and dtd files are updated if -CC is used.
<p> </dd>

<dt><b>-c [filename/wildcard]</b>
</dt>
<dd>
<p>see --color-toggle
<p> </dd>

<dt><b>--dal [filename/wildcard/url]</b> </dt>
<dd>assumed for most other flags,
creates new intermediate files for processing (document abstraction) that
is used in all subsequent processing of other output. This step is assumed
for most processing flags. To skip it see -n. Alias -m
<p> </dd>

<dt><b>--delete [filename/wildcard]</b>
</dt>
<dd>
<p>see --zap
<p> </dd>

<dt><b>-D [instruction] [filename]</b> </dt>
<dd>see --pg
<p> </dd>

<dt><b>-d [--db-[database &nbsp;type &nbsp;(sqlite|pg)]]
--[instruction] [filename]</b> </dt>
<dd>see --sqlite
<p> </dd>

<dt><b>--epub [filename/wildcard]</b> </dt>
<dd>produces
an epub document, [sisu &nbsp;version &nbsp;&gt;=2 &nbsp;] (filename.epub). Alias -e
<p> </dd>

<dt><b>-e [filename/wildcard]</b>
</dt>
<dd>
<p>see --epub
<p> </dd>

<dt><b>--find [optional &nbsp;string &nbsp;part &nbsp;of &nbsp;filename]</b> </dt>
<dd>without match string,
glob all .sst .ssm files in directory (including language subdirectories).
With match string, find files that match given string in directory (including
language subdirectories). Alias -f, --glob, -G
<p> </dd>

<dt><b>-F [--webserv=webrick]</b> </dt>
<dd>see --sample-search-form
<p> </dd>

<dt><b>-f [optional &nbsp;string &nbsp;part &nbsp;of &nbsp;filename]</b> </dt>
<dd>see --find
<p> </dd>

<dt><b>--git [filename/wildcard]</b>
</dt>
<dd>produces or updates markup source file structure in a git repo (experimental
and subject to change). Alias -g
<p> </dd>

<dt><b>--glob [optional &nbsp;string &nbsp;part &nbsp;of &nbsp;filename]</b>
</dt>
<dd>
<p>see --find
<p> </dd>

<dt><b>-G [optional &nbsp;string &nbsp;part &nbsp;of &nbsp;filename]</b> </dt>
<dd>see --find
<p> </dd>

<dt><b>-g [filename/wildcard]</b>
</dt>
<dd>
<p>see --git
<p> </dd>

<dt><b>--harvest *.ss[tm]</b> </dt>
<dd>makes two lists of sisu output based on the sisu
markup documents in a directory: list of author and authors works (year
and titles), and; list by topic with titles and author. Makes use of header
metadata fields (author, title, date, topic_register). Can be used with
maintenance (-M) and remote placement (-R) flags.
<p> </dd>

<dt><b>--help [topic]</b> </dt>
<dd>provides help
on the selected topic, where topics (keywords) include: list, (com)mands,
short(cuts), (mod)ifiers, (env)ironment, markup, syntax, headers, headings,
endnotes, tables, example, customise, skin, (dir)ectories, path, (lang)uage,
db, install, setup, (conf)igure, convert, termsheet, search, sql, features,

<p>license
<p> </dd>

<dt><b>--html [filename/wildcard]</b> </dt>
<dd>produces html output, segmented text
with table of contents (toc.html and index.html) and the document in a single
file (scroll.html). Alias -h
<p> </dd>

<dt><b>-h [filename/wildcard]</b> </dt>
<dd>see --html
<p> </dd>

<dt><b>-I [filename/wildcard]</b>
</dt>
<dd>
<p>see --texinfo
<p> </dd>

<dt><b>-i [filename/wildcard]</b> </dt>
<dd>see --manpage
<p> </dd>

<dt><b>--keep-processing-files [filename/wildcard/url]</b>
</dt>
<dd>
<p>see --maintenance
<p> </dd>

<dt><b>-L</b> </dt>
<dd>prints license information.
<p> </dd>

<dt><b>--machine [filename/wildcard/url]</b>
</dt>
<dd>see --dal (document abstraction level/layer)
<p> </dd>

<dt><b>--maintenance [filename/wildcard/url]</b> </dt>
<dd>maintenance mode, interim processing files are preserved and their locations
indicated. (also see -V). Aliases -M and --keep-processing-files
<p> </dd>

<dt><b>--manpage [filename/wildcard]</b> </dt>
<dd>produces man page of file, not suitable for all outputs. Alias -i
<p> </dd>

<dt><b>-M [filename/wildcard/url]</b> </dt>
<dd>
<p>see --maintenance
<p> </dd>

<dt><b>-m [filename/wildcard/url]</b> </dt>
<dd>see --dal (document abstraction
level/layer)
<p> </dd>

<dt><b>--no-ocn</b> </dt>
<dd>[with &nbsp;--html &nbsp;--pdf &nbsp;or &nbsp;--epub] switches off object citation
numbering. Produce output without identifying numbers in margins of html
or LaTeX/pdf output.
<p> </dd>

<dt><b>-N [filename/wildcard/url]</b> </dt>
<dd>document digest or document
content certificate ( DCC ) as md5 digest tree of the document: the digest
for the document, and digests for each object contained within the document
(together with information on software versions that produced it) (digest.txt).
-NV for verbose digest output to screen.
<p> </dd>

<dt><b>-n [filename/wildcard/url]</b> </dt>
<dd>skip the creation of intermediate processing files (document abstraction) if
they already exist, this skips the equivalent of -m which is otherwise assumed
by most processing flags.
<p> </dd>

<dt><b>--odf [filename/wildcard/url]</b> </dt>
<dd>see --odt
<p> </dd>

<dt><b>--odt [filename/wildcard/url]</b></dt>
<dd>output basic document in opendocument file format (opendocument.odt). Alias
-o
<p> </dd>

<dt><b>-o [filename/wildcard/url]</b> </dt>
<dd>see --odt
<p> </dd>

<dt><b>--pdf [filename/wildcard]</b> </dt>
<dd>produces
LaTeX pdf (portrait.pdf &amp; landscape.pdf). Default paper size is set in config
file, or document header, or provided with additional command line parameter,
e.g. --papersize-a4 preset sizes include: &rsquo;A4&rsquo;, U.S. &rsquo;letter&rsquo; and
<p> </dd>

<dt><b>--pg [instruction]
[filename]</b> </dt>
<dd>database postgresql ( --pgsql may be used instead) possible instructions,
include: --createdb; --create; --dropall; --import [filename]; --update [filename];
--remove [filename]; see database section below. Alias -D
<p> </dd>

<dt><b>--po [language_directory/filename
&nbsp;language_directory]</b> </dt>
<dd>see --po4a
<p> </dd>

<dt><b>--po4a [language_directory/filename &nbsp;language_directory]</b>
</dt>
<dd>produces .pot and po files for the file in the languages specified by the
language directory. <b>SiSU</b> markup is placed in subdirectories named with the
language code, e.g. en/ fr/ es/. The sisu config file must set the output
directory structure to multilingual. v3, experimental
<p> </dd>

<dt><b>-P [language_directory/filename
&nbsp;language_directory]</b> </dt>
<dd>see --po4a
<p> </dd>

<dt><b>-p [filename/wildcard]</b> </dt>
<dd>see --pdf
<p> </dd>

<dt><b>--quiet [filename/wildcard]</b>
</dt>
<dd>quiet less output to screen.
<p> </dd>

<dt><b>-q [filename/wildcard]</b> </dt>
<dd>see --quiet
<p> </dd>

<dt><b>--rsync [filename/wildcard]</b>
</dt>
<dd>copies sisu output files to remote host using rsync. This requires that
sisurc.yml has been provided with information on hostname and username,
and that you have your "keys" and ssh agent in place. Note the behavior
of rsync different if -R is used with other flags from if used alone. Alone
the rsync --delete parameter is sent, useful for cleaning the remote directory
(when -R is used together with other flags, it is not). Also see --scp. Alias

<p>-
<p>R
<p> </dd>

<dt><b>-R [filename/wildcard]</b> </dt>
<dd>see --rsync
<p> </dd>

<dt><b>-r [filename/wildcard]</b> </dt>
<dd>see --scp
<p> </dd>

<dt><b>--sample-search-form
[--webserv=webrick]</b> </dt>
<dd>generate examples of (naive) cgi search form for sqlite
and pgsql depends on your already having used sisu to populate an sqlite
and/or pgsql database, (the sqlite version scans the output directories
for existing sisu_sqlite databases, so it is first necessary to create
them, before generating the search form) see -d -D and the database section
below. If the optional parameter --webserv=webrick is passed, the cgi examples
created will be set up to use the default port set for use by the webrick
server, (otherwise the port is left blank and the system setting used,
usually 80). The samples are dumped in the present work directory which
must be writable, (with screen instructions given that they be copied to
the cgi-bin directory). -Fv (in addition to the above) provides some information
on setting up hyperestraier for sisu. Alias -F
<p> </dd>

<dt><b>--scp [filename/wildcard]</b> </dt>
<dd>copies
sisu output files to remote host using scp. This requires that sisurc.yml
has been provided with information on hostname and username, and that you
have your "keys" and ssh agent in place. Also see --rsync. Alias -r
<p> </dd>

<dt><b>--sqlite
--[instruction] [filename]</b> </dt>
<dd>database type default set to sqlite, (for which
--sqlite may be used instead) or to specify another database --db-[pgsql, &nbsp;sqlite]
(however see -D) possible instructions include: --createdb; --create; --dropall;
--import [filename]; --update [filename]; --remove [filename]; see database section
below. Alias -d
<p> </dd>

<dt><b>--sisupod</b> </dt>
<dd>produces a sisupod a zipped sisu directory of markup
files including sisu markup source files and the directories local configuration
file, images and skins. Note: this only includes the configuration files
or skins contained in  ./_sisu not those in ~/.sisu -S [filename/wildcard]
option. Note: (this option is tested only with zsh). Alias -S
<p> </dd>

<dt><b>--sisupod [filename/wildcard]</b> </dt>
<dd>produces
a zipped file of the prepared document specified along with associated
images, by default named sisupod.zip they may alternatively be named with
the filename extension .ssp This provides a quick way of gathering the relevant
parts of a sisu document which can then for example be emailed. A sisupod
includes sisu markup source file, (along with associated documents if a
master file, or available in multilingual versions), together with related
images and skin. <b>SiSU</b> commands can be run directly against a sisupod contained
in a local directory, or provided as a url on a remote site. As there is
a security issue with skins provided by other users, they are not applied
unless the flag --trust or --trusted is added to the command instruction, it
is recommended that file that are not your own are treated as untrusted.
The directory structure of the unzipped file is understood by sisu, and
sisu commands can be run within it. Note: if you wish to send multiple files,
it quickly becomes more space efficient to zip the sisu markup directory,
rather than the individual files for sending). See the -S option without
[filename/wildcard]. Alias -S
<p> </dd>

<dt><b>--source [filename/wildcard]</b> </dt>
<dd>copies sisu markup
file to output directory. Alias -s
<p> </dd>

<dt><b>-S</b> </dt>
<dd>see --sisupod
<p> </dd>

<dt><b>-S [filename/wildcard]</b>
</dt>
<dd>
<p>see --sisupod
<p> </dd>

<dt><b>-s [filename/wildcard]</b> </dt>
<dd>see --source
<p> </dd>

<dt><b>--texinfo [filename/wildcard]</b>
</dt>
<dd>produces texinfo and info file, (view with pinfo). Alias -I
<p> </dd>

<dt><b>--txt [filename/wildcard]</b>
</dt>
<dd>produces plaintext with Unix linefeeds and without markup, (object numbers
are omitted), has footnotes at end of each paragraph that contains them
[ &nbsp;-A &nbsp;for &nbsp;equivalent &nbsp;dos &nbsp;(linefeed) &nbsp;output &nbsp;file] [see &nbsp;-e &nbsp;for (Options include:
--endnotes for endnotes --footnotes for footnotes at the end of each paragraph
--unix for unix linefeed (default) --msdos for msdos linefeed). Alias -t
<p> </dd>

<dt><b>-T [filename/wildcard
&nbsp;(*.termsheet.rb)]</b> </dt>
<dd>standard form document builder, preprocessing feature
<p>
</dd>

<dt><b>-t [filename/wildcard]</b> </dt>
<dd>see --txt
<p> </dd>

<dt><b>--urls [filename/wildcard]</b> </dt>
<dd>prints url output
list/map for the available processing flags options and resulting files
that could be requested, (can be used to get a list of processing options
in relation to a file, together with information on the output that would
be produced), -u provides url output mapping for those flags requested for
processing. The default assumes sisu_webrick is running and provides webrick
url mappings where appropriate, but these can be switched to file system
paths in sisurc.yml. Alias -U
<p> </dd>

<dt><b>-U [filename/wildcard]</b> </dt>
<dd>see --urls
<p> </dd>

<dt><b>-u [filename/wildcard]</b> </dt>
<dd>provides url mapping of output files for the flags requested for processing,
also see -U
<p> </dd>

<dt><b>--v2 [filename/wildcard]</b> </dt>
<dd>invokes the sisu v2 document parser/generator.
This is the default and is normally omitted.
<p> </dd>

<dt><b>--v3 [filename/wildcard]</b> </dt>
<dd>invokes
the sisu v3 document parser/generator. Currently under development and incomplete,
v3 requires &gt;= ruby1.9.2p180. You may run sisu3 instead.
<p> </dd>

<dt><b>--verbose [filename/wildcard]</b> </dt>
<dd>provides verbose output of what is being generated, where output is placed
(and error messages if any), as with -u flag provides a url mapping of files
created for each of the processing flag requests. Alias -v
<p> </dd>

<dt><b>-V</b> </dt>
<dd>on its own,
provides <b>SiSU</b> version and environment information (sisu --help env)
<p> </dd>

<dt><b>-V [filename/wildcard]</b> </dt>
<dd>even more verbose than the -v flag.
<p> </dd>

<dt><b>-v</b> </dt>
<dd>on its own, provides <b>SiSU</b> version information
<p> </dd>

<dt><b>-v [filename/wildcard]</b> </dt>
<dd>see --verbose
<p> </dd>

<dt><b>--webrick</b> </dt>
<dd>starts ruby&rsquo;s webrick
webserver points at sisu output directories, the default port is set to
8081 and can be changed in the resource configuration files. [tip: &nbsp;the &nbsp;webrick
&nbsp;server &nbsp;requires &nbsp;link &nbsp;suffixes, &nbsp;so &nbsp;html &nbsp;output &nbsp;should &nbsp;be &nbsp;created &nbsp;using &nbsp;the
&nbsp;-h &nbsp;option &nbsp;rather &nbsp;than and search -H &nbsp;; &nbsp;also, &nbsp;note &nbsp;-F &nbsp;webrick &nbsp;]. Alias -W
<p> </dd>

<dt><b>-W</b> </dt>
<dd>see --webrick
<p> </dd>

<dt><b>--wordmap [filename/wildcard]</b> </dt>
<dd>see --concordance
<p> </dd>

<dt><b>-w [filename/wildcard]</b> </dt>
<dd>see --concordance
<p> </dd>

<dt><b>--xhtml [filename/wildcard]</b> </dt>
<dd>produces xhtml/XML output for
browser viewing (sax parsing). Alias -b
<p> </dd>

<dt><b>--xml-dom [filename/wildcard]</b> </dt>
<dd>produces
XML output with deep document structure, in the nature of dom. Alias -X
<p> </dd>

<dt><b>--xml-sax [filename/wildcard]</b> </dt>
<dd>produces XML output shallow structure (sax parsing). Alias -x
<p> </dd>

<dt><b>-X [filename/wildcard]</b> </dt>
<dd>see --xml-dom
<p> </dd>

<dt><b>-x [filename/wildcard]</b> </dt>
<dd>see --xml-sax
<p> </dd>

<dt><b>-Y [filename/wildcard]</b> </dt>
<dd>produces a short sitemap entry for the document,
based on html output and the sisu_manifest. --sitemaps generates/updates the
sitemap index of existing sitemaps. (Experimental, [g,y,m &nbsp;announcement &nbsp;this
&nbsp;week])
<p> </dd>

<dt><b>-y [filename/wildcard]</b> </dt>
<dd>produces an html summary of output generated
(hyperlinked to content) and document specific metadata (sisu_manifest.html).
This step is assumed for most processing flags.
<p> </dd>

<dt><b>--zap [filename/wildcard]</b> </dt>
<dd>Zap, if used with other processing flags deletes output files of the type
about to be processed, prior to processing. If -Z is used as the lone processing
related flag (or in conjunction with a combination of -[mMvVq]), will remove
the related document output directory. Alias -Z
<p> </dd>

<dt><b>-Z [filename/wildcard]</b> </dt>
<dd>see --zap
<p> </dd>
</dl>

<h2><a name='sect8' href='#toc8'>3. Command Line Modifiers</a></h2>
<br>

<p>
<dl>

<dt><b>--no-ocn</b> </dt>
<dd>[with &nbsp;--html &nbsp;--pdf &nbsp;or &nbsp;--epub] switches off object citation numbering. Produce
output without identifying numbers in margins of html or LaTeX/pdf output.

<p> </dd>

<dt><b>--no-annotate</b> </dt>
<dd>strips output text of editor endnotes[^*1] denoted by asterisk

<p>or dagger/plus sign
<p> </dd>

<dt><b>--no-asterisk</b> </dt>
<dd>strips output text of editor endnotes[^*2]

<p>denoted by asterisk sign
<p> </dd>

<dt><b>--no-dagger</b> </dt>
<dd>strips output text of editor endnotes[^+1]

<p>denoted by dagger/plus sign
<p> </dd>
</dl>

<h2><a name='sect9' href='#toc9'>4. Database Commands</a></h2>
<br>

<p> <br>
dbi - database interface
<p> <br>
-D or --pgsql set for postgresql -d or --sqlite default set for sqlite -d is modifiable
with --db=[database &nbsp;type &nbsp;(pgsql &nbsp;or &nbsp;sqlite)]
<p>
<dl>

<dt><b>--pg -v --createall</b> </dt>
<dd>initial step,
creates required relations (tables, indexes) in existing postgresql database
(a database should be created manually and given the same name as working
directory, as requested) (rb.dbi) [ &nbsp;-dv &nbsp;--createall sqlite &nbsp;equivalent] it may
be necessary to run sisu -Dv --createdb initially NOTE: at the present time
for postgresql it may be necessary to manually create the database. The
command would be &rsquo;createdb [database &nbsp;name]&rsquo; where database name would be
SiSU_[present &nbsp;working &nbsp;directory &nbsp;name (without &nbsp;path)]. Please use only alphanumerics
and underscores.
<p> </dd>

<dt><b>--pg -v --import</b> </dt>
<dd>[filename/wildcard] imports data specified
to postgresql db (rb.dbi) [ &nbsp;-dv &nbsp;--import &nbsp;sqlite &nbsp;equivalent]
<p> </dd>

<dt><b>--pg -v --update</b> </dt>
<dd>[filename/wildcard]
updates/imports specified data to postgresql db (rb.dbi) [ &nbsp;-dv &nbsp;--update &nbsp;sqlite
&nbsp;equivalent]
<p> </dd>

<dt><b>--pg --remove</b> </dt>
<dd>[filename/wildcard] removes specified data to postgresql
db (rb.dbi) [ &nbsp;-d &nbsp;--remove &nbsp;sqlite &nbsp;equivalent]
<p> </dd>

<dt><b>--pg --dropall</b> </dt>
<dd>kills data" and drops
(postgresql or sqlite) db, tables &amp; indexes [ &nbsp;-d --dropall &nbsp;sqlite &nbsp;equivalent]

<p> <br>
The -v is for verbose output.
<p> </dd>
</dl>

<h2><a name='sect10' href='#toc10'>5. Shortcuts, Shorthand for Multiple Flags</a></h2>
<br>

<p>
<dl>

<dt><b>--update [filename/wildcard]</b> </dt>
<dd>Checks existing file output and runs the flags
required to update this output. This means that if only html and pdf output
was requested on previous runs, only the -hp files will be applied, and
only these will be generated this time, together with the summary. This
can be very convenient, if you offer different outputs of different files,
and just want to do the same again.
<p> </dd>

<dt><b>-0 to -5 [filename &nbsp;or &nbsp;wildcard]</b> </dt>
<dd>Default
shorthand mappings (note that the defaults can be changed/configured in
the sisurc.yml file):
<p> </dd>

<dt><b>-0</b> </dt>
<dd>-mNhwpAobxXyYv [this &nbsp;is &nbsp;the &nbsp;default &nbsp;action &nbsp;run &nbsp;when
&nbsp;no &nbsp;i.e. &nbsp;on &nbsp;&rsquo;sisu &nbsp;[filename]&rsquo;]
<p> </dd>

<dt><b>-1</b> </dt>
<dd>-mhewpy
<p> </dd>

<dt><b>-2</b> </dt>
<dd>-mhewpaoy
<p> </dd>

<dt><b>-3</b> </dt>
<dd>-mhewpAobxXyY
<p> </dd>

<dt><b>-4</b> </dt>
<dd>-mhewpAobxXDyY

<p>-
<p>-
<p>import
<p> </dd>

<dt><b>-5</b> </dt>
<dd>-mhewpAobxXDyY --update
<p> <br>
add -v for verbose mode and -c for color, e.g. sisu -2vc [filename &nbsp;or
<p> <br>

<p>consider -u for appended url info or -v for verbose output
<p> </dd>
</dl>

<h2><a name='sect11' href='#toc11'>5.1 Command Line
with Flags - Batch Processing</a></h2>

<p> <br>
In the data directory run sisu -mh filename or wildcard eg. "sisu -h cisg.sst"
or "sisu -h *.{sst,ssm}" to produce html version of all documents.
<p> <br>
Running sisu (alone without any flags, filenames or wildcards) brings up
the interactive help, as does any sisu command that is not recognised. Enter
to escape.
<p>
<h2><a name='sect12' href='#toc12'>6. Help</a></h2>
<br>

<p>
<h2><a name='sect13' href='#toc13'>6.1 Sisu Manual</a></h2>

<p> <br>
The most up to date information on sisu should be contained in the sisu_manual,
available at:
<p> <br>
  &lt;<a href='http://sisudoc.org/sisu/sisu_manual/'>http://sisudoc.org/sisu/sisu_manual/</a>
&gt;<br>

<p> <br>
The manual can be generated from source, found respectively, either within
the <b>SiSU</b> tarball or installed locally at:
<p> <br>
  ./data/doc/sisu/markup-samples/sisu_manual<br>

<p> <br>
  /usr/share/doc/sisu/markup-samples/sisu_manual<br>

<p> <br>
move to the respective directory and type e.g.:
<p> <br>
  sisu sisu_manual.ssm<br>

<p>
<h2><a name='sect14' href='#toc14'>6.2 Sisu Man Pages</a></h2>

<p> <br>
If <b>SiSU</b> is installed on your system usual man commands should be available,
try:
<p> <br>
  man sisu<br>

<p> <br>
Most <b>SiSU</b> man pages are generated directly from sisu documents that are
used to prepare the sisu manual, the sources files for which are located
within the <b>SiSU</b> tarball at:
<p> <br>
  ./data/doc/sisu/markup-samples/sisu_manual<br>

<p> <br>
Once installed, directory equivalent to:
<p> <br>
  /usr/share/doc/sisu/markup-samples/sisu_manual<br>

<p> <br>
Available man pages are converted back to html using man2html:
<p> <br>
  /usr/share/doc/sisu/html/<br>

<p> <br>
  ./data/doc/sisu/html<br>

<p> <br>
An online version of the sisu man page is available here:
<p> <br>
* various sisu man pages &lt;<a href='http://www.jus.uio.no/sisu/man/'>http://www.jus.uio.no/sisu/man/</a>
&gt; [^8]
<p> <br>
* sisu.1 &lt;<a href='http://www.jus.uio.no/sisu/man/sisu.1.html'>http://www.jus.uio.no/sisu/man/sisu.1.html</a>
&gt; [^9]
<p>
<h2><a name='sect15' href='#toc15'>6.3 Sisu Built-in Interactive
Help</a></h2>

<p> <br>
This is particularly useful for getting the current sisu setup/environment
information:
<p> <br>
  sisu --help<br>

<p> <br>
  sisu --help [subject]<br>

<p> <br>
    sisu --help commands<br>

<p> <br>
    sisu --help markup<br>

<p> <br>
    sisu --help env [for &nbsp;feedback &nbsp;on &nbsp;the &nbsp;way &nbsp;your &nbsp;system &nbsp;is <br>
     setup &nbsp;with &nbsp;regard &nbsp;to &nbsp;sisu]<br>

<p> <br>
  sisu -V [environment &nbsp;information, &nbsp;same &nbsp;as &nbsp;above &nbsp;command]<br>

<p> <br>
  sisu (on its own provides version and some help information)<br>

<p> <br>
Apart from real-time information on your current configuration the <b>SiSU</b>
manual and man pages are likely to contain more up-to-date information than
the sisu interactive help (for example on commands and markup).
<p> <br>
NOTE: Running the command sisu (alone without any flags, filenames or wildcards)
brings up the interactive help, as does any sisu command that is not recognised.
Enter to escape.
<p>
<h2><a name='sect16' href='#toc16'>7. Introduction to Sisu Markup[^10]</a></h2>
<br>

<p>
<h2><a name='sect17' href='#toc17'>7.1 Summary</a></h2>

<p> <br>
<b>SiSU</b> source documents are plaintext (UTF-8)[^11] files
<p> <br>
All paragraphs are separated by an empty line.
<p> <br>
Markup is comprised of:
<p> <br>
* at the top of a document, the document header made up of semantic meta-data
about the document and if desired additional processing instructions (such
an instruction to automatically number headings from a particular level
down)
<p> <br>
* followed by the prepared substantive text of which the most important
single characteristic is the markup of different heading levels, which
define the primary outline of the document structure. Markup of substantive
text includes:
<p> <br>
  * heading levels defines document structure<br>

<p> <br>
  * text basic attributes, italics, bold etc.<br>

<p> <br>
  * grouped text (objects), which are to be treated differently, such as
code<br>
   blocks or poems.<br>

<p> <br>
  * footnotes/endnotes<br>

<p> <br>
  * linked text and images<br>

<p> <br>
  * paragraph actions, such as indent, bulleted, numbered-lists, etc.<br>

<p> <br>
Some interactive help on markup is available, by typing sisu and selecting

<p>markup or sisu --help markup
<p> <br>
To check the markup in a file:
<p> <br>
  sisu --identify [filename].sst<br>

<p> <br>

<p>For brief descriptive summary of markup history
<p> <br>
  sisu --query-history<br>

<p> <br>
or if for a particular version:
<p> <br>
  sisu --query-0.38<br>

<p>
<h2><a name='sect18' href='#toc18'>7.2 Markup Examples</a></h2>

<p>
<h2><a name='sect19' href='#toc19'>7.2.1 Online</a></h2>

<p> <br>
Online markup examples are available together with the respective outputs
produced from &lt;<a href='http://www.jus.uio.no/sisu/SiSU/examples.html'>http://www.jus.uio.no/sisu/SiSU/examples.html</a>
&gt; or from &lt;<a href='http://www.jus.uio.no/sisu/sisu_examples/'>http://www.jus.uio.no/sisu/sisu_examples/</a>
&gt;

<p> <br>
There is of course this document, which provides a cursory overview of
sisu markup and the respective output produced: &lt;<a href='http://www.jus.uio.no/sisu/sisu_markup/'>http://www.jus.uio.no/sisu/sisu_markup/</a>
&gt;

<p> <br>
an alternative presentation of markup syntax: /usr/share/doc/sisu/on_markup.txt.gz

<p>
<h2><a name='sect20' href='#toc20'>7.2.2 Installed</a></h2>

<p> <br>
With <b>SiSU</b> installed sample skins may be found in: /usr/share/doc/sisu/markup-samples
(or equivalent directory) and if sisu-markup-samples is installed also under:

<p>/usr/share/doc/sisu/markup-samples-non-free
<p>
<h2><a name='sect21' href='#toc21'>8. Markup of Headers</a></h2>
<br>

<p> <br>
Headers contain either: semantic meta-data about a document, which can be
used by any output module of the program, or; processing instructions.
<p>
<br>
Note: the first line of a document may include information on the markup
version used in the form of a comment. Comments are a percentage mark at
the start of a paragraph (and as the first character in a line of text)
followed by a space and the comment:
<p> <br>
<pre>  % this would be a comment
</pre>
<p>
<h2><a name='sect22' href='#toc22'>8.1 Sample Header</a></h2>

<p> <br>
This current document is loaded by a master document that has a header
similar to this one:
<p> <br>
<pre>  % SiSU master 2.0
  @title: SiSU
   :subtitle: Manual
  @creator: :author: Amissah, Ralph
  @rights: Copyright (C) Ralph Amissah 2007, License GPL 3
  @classify:
   :type: information
   :topic_register: SiSU:manual;electronic documents:SiSU:manual
   :subject: ebook, epublishing, electronic book, electronic publishing,
      electronic document, electronic citation, data structure,
       citation systems, search
  % used_by: manual
  @date:
   :published: 2008-05-22
   :created: 2002-08-28
   :issued: 2002-08-28
   :available: 2002-08-28
   :modified: 2010-03-03
  @make:
   :num_top: 1
   :breaks: new=C; break=1
   :skin: skin_sisu_manual
   :bold: /Gnu|Debian|Ruby|SiSU/
   :manpage: name=sisu - documents: markup, structuring, publishing
       in multiple standard formats, and search;
       synopsis=sisu &nbsp;[-abcDdeFhIiMmNnopqRrSsTtUuVvwXxYyZz0-9] &nbsp;[filename/wildcard
&nbsp;]
       . sisu &nbsp;[-Ddcv] &nbsp;[instruction]
       . sisu &nbsp;[-CcFLSVvW]
       . sisu --v2 &nbsp;[operations]
       . sisu --v3 &nbsp;[operations]
  @links:
   { SiSU Homepage }http://www.sisudoc.org/
   { SiSU Manual }http://www.sisudoc.org/sisu/sisu_manual/
   { Book Samples &amp; Markup Examples }http://www.jus.uio.no/sisu/SiSU/examples.html
   { SiSU Download }http://www.jus.uio.no/sisu/SiSU/download.html
   { SiSU Changelog }http://www.jus.uio.no/sisu/SiSU/changelog.html
   { SiSU Git repo }http://git.sisudoc.org/?p=code/sisu.git;a=summary
   { SiSU List Archives }http://lists.sisudoc.org/pipermail/sisu/
   { SiSU @ Debian }http://packages.qa.debian.org/s/sisu.html
   { SiSU Project @ Debian }http://qa.debian.org/developer.php?login=sisu@lists.sisudoc.org
   { SiSU @ Wikipedia }http://en.wikipedia.org/wiki/SiSU
</pre>
<p>
<h2><a name='sect23' href='#toc23'>8.2 Available Headers</a></h2>

<p> <br>
Header tags appear at the beginning of a document and provide meta information
on the document (such as the Dublin Core), or information as to how the
document as a whole is to be processed. All header instructions take the
form @headername: or on the next line and indented by once space :subheadername:

<p>All Dublin Core meta tags are available
<p> <br>
<b>@indentifier:</b> information or instructions
<p> <br>
where the "identifier" is a tag recognised by the program, and the "information"
or "instructions" belong to the tag/indentifier specified
<p> <br>
Note: a header where used should only be used once; all headers apart from
@title: are optional; the @structure: header is used to describe document
structure, and can be useful to know.
<p> <br>

<p>This is a sample header
<p> <br>
<pre>  % SiSU 2.0 &nbsp;[declared &nbsp;file-type &nbsp;identifier &nbsp;with &nbsp;markup &nbsp;version]
</pre>
<p> <br>
<pre>  @title: &nbsp;[title &nbsp;text] &nbsp;[this &nbsp;header &nbsp;is &nbsp;the &nbsp;only &nbsp;one &nbsp;that &nbsp;is &nbsp;mandatory]
    :subtitle: &nbsp;[subtitle &nbsp;if &nbsp;any]
    :language: English
</pre>
<p> <br>
<pre>  @creator:
   :author: &nbsp;[Lastname, &nbsp;First &nbsp;names]
   :illustrator: &nbsp;[Lastname, &nbsp;First &nbsp;names]
   :translator: &nbsp;[Lastname, &nbsp;First &nbsp;names]
   :prepared_by: &nbsp;[Lastname, &nbsp;First &nbsp;names]
</pre>
<p> <br>
<pre>  @date:
   :published: &nbsp;[year &nbsp;or &nbsp;yyyy-mm-dd]
   :created: &nbsp;[year &nbsp;or &nbsp;yyyy-mm-dd]
   :issued: &nbsp;[year &nbsp;or &nbsp;yyyy-mm-dd]
   :available: &nbsp;[year &nbsp;or &nbsp;yyyy-mm-dd]
   :modified: &nbsp;[year &nbsp;or &nbsp;yyyy-mm-dd]
   :valid: &nbsp;[year &nbsp;or &nbsp;yyyy-mm-dd]
   :added_to_site: &nbsp;[year &nbsp;or &nbsp;yyyy-mm-dd]
   :translated: &nbsp;[year &nbsp;or &nbsp;yyyy-mm-dd]
</pre>
<p> <br>
<pre>  @rights:
   :copyright: Copyright (C) &nbsp;[Year &nbsp;and &nbsp;Holder]
   :license: &nbsp;[Use &nbsp;License &nbsp;granted]
   :text: &nbsp;[Year &nbsp;and &nbsp;Holder]
   :translation: &nbsp;[Name, &nbsp;Year]
   :illustrations: &nbsp;[Name, &nbsp;Year]
</pre>
<p> <br>
<pre>  @classify:
   :topic_register: SiSU:markup sample:book;book:novel:fantasy
   :type:
   :subject:
   :description:
   :keywords:
   :abstract:
   :isbn: &nbsp;[ISBN]
   :loc: &nbsp;[Library &nbsp;of &nbsp;Congress &nbsp;classification]
   :dewey: &nbsp;[Dewey &nbsp;classification]
   :pg: &nbsp;[Project &nbsp;Gutenberg &nbsp;text &nbsp;number]
</pre>
<p> <br>
<pre>  @links: { SiSU }http://www.sisudoc.org
    { FSF }http://www.fsf.org
</pre>
<p> <br>
<pre>  @make:
   :skin: skin_name
     [skins change default settings related to the appearance of documents
generated]
   :num_top: 1
   :headings: &nbsp;[text &nbsp;to &nbsp;match &nbsp;for &nbsp;each &nbsp;level
     (e.g. PART; Chapter; Section; Article;
      or another: none; BOOK|FIRST|SECOND; none; CHAPTER;)
   :breaks: new=:C; break=1
   :promo: sisu, ruby, sisu_search_libre, open_society
   :bold: [regular expression of words/phrases to be made bold]
   :italics: &nbsp;[regular &nbsp;expression &nbsp;of &nbsp;words/phrases &nbsp;to &nbsp;italicise]
</pre>
<p> <br>
<pre>  @original:
   :language: &nbsp;[language]
</pre>
<p> <br>
<pre>  @notes:
   :comment:
   :prefix: &nbsp;[prefix &nbsp;is &nbsp;placed &nbsp;just &nbsp;after &nbsp;table &nbsp;of &nbsp;contents]
</pre>
<p>
<h2><a name='sect24' href='#toc24'>9. Markup of Substantive Text</a></h2>
<br>

<p>
<h2><a name='sect25' href='#toc25'>9.1 Heading Levels</a></h2>

<p> <br>
Heading levels are :A~ ,:B~ ,:C~ ,1~ ,2~ ,3~ ... :A - :C being part / section
headings, followed by other heading levels, and 1 -6 being headings followed
by substantive text or sub-headings. :A~ usually the title :A~? conditional
level 1 heading (used where a stand-alone document may be imported into
another)
<p> <br>
<b>:A~ [heading &nbsp;text]</b> Top level heading [this &nbsp;usually &nbsp;has &nbsp;similar &nbsp;content
&nbsp;to &nbsp;the &nbsp;] NOTE: the heading levels described here are in 0.38 notation, see heading
<p> <br>
<b>:B~ [heading &nbsp;text]</b> Second level heading [this &nbsp;is &nbsp;a &nbsp;heading &nbsp;level &nbsp;divider]

<p> <br>
<b>:C~ [heading &nbsp;text]</b> Third level heading [this &nbsp;is &nbsp;a &nbsp;heading &nbsp;level &nbsp;divider]

<p> <br>
<b>1~ [heading &nbsp;text]</b> Top level heading preceding substantive text of document
or sub-heading 2, the heading level that would normally be marked 1. or 2.
or 3. etc. in a document, and the level on which sisu by default would break
html output into named segments, names are provided automatically if none
are given (a number), otherwise takes the form 1~my_filename_for_this_segment

<p> <br>
<b>2~ [heading &nbsp;text]</b> Second level heading preceding substantive text of document
or sub-heading 3 , the heading level that would normally be marked 1.1 or
1.2 or 1.3 or 2.1 etc. in a document.
<p> <br>
<b>3~ [heading &nbsp;text]</b> Third level heading preceding substantive text of document,
that would normally be marked 1.1.1 or 1.1.2 or 1.2.1 or 2.1.1 etc. in a document

<p> <br>
<pre>  1~filename level 1 heading,
  % the primary division such as Chapter that is followed by substantive
text,
  % and may be further subdivided (this is the level on which by default
html
  % segments are made)
</pre>
<p>
<h2><a name='sect26' href='#toc26'>9.2 Font Attributes</a></h2>

<p> <br>
<b>markup example:</b>
<p> <br>
<pre>  normal text,  *{emphasis}*, !{bold text}!, /{italics}/, _{underscore}_,
"{citation}",
  ^{superscript}^, ,{subscript},, +{inserted text}+, -{strikethrough}-, #{monospace}#
  normal text

  *{emphasis}* &nbsp;[note: &nbsp;can &nbsp;be &nbsp;configured &nbsp;to &nbsp;be &nbsp;represented &nbsp;by &nbsp;bold, &nbsp;italics
&nbsp;or &nbsp;underscore]

  !{bold text}!

  _{underscore}_

  /{italics}/

  "{citation}"

  ^{superscript}^

  ,{subscript},

  +{inserted text}+

  \-{strikethrough}\-

  #{monospace}#
</pre>
<p> <br>
<b>resulting output:</b>
<p> <br>
normal text, <b>emphasis,</b> <b>bold text,</b> <i>italics,</i> <i>underscore</i> , "citation", ^superscript^,
[subscript], ++inserted text++, --strikethrough--, monospace
<p> <br>

<p>normal text
<p> <br>
<b>emphasis</b> [note: &nbsp;can &nbsp;be &nbsp;configured &nbsp;to &nbsp;be &nbsp;represented &nbsp;by &nbsp;bold, &nbsp;italics &nbsp;or
&nbsp;underscore]
<p> <br>

<p><b>bold text</b>
<p> <br>

<p><i>italics</i>
<p> <br>

<p><i>underscore</i>
<p> <br>
"citation"
<p> <br>
^superscript^
<p> <br>
[subscript]
<p> <br>
++inserted text++
<p> <br>
--strikethrough--
<p> <br>

<p>monospace
<p>
<h2><a name='sect27' href='#toc27'>9.3 Indentation and Bullets</a></h2>

<p> <br>
<b>markup example:</b>
<p> <br>
<pre>  ordinary paragraph

  _1 indent paragraph one step

  _2 indent paragraph two steps

  _9 indent paragraph nine steps
</pre>
<p> <br>
<b>resulting output:</b>
<p> <br>

<p>ordinary paragraph
<p> <br>
  indent paragraph one step<br>

<p> <br>
    indent paragraph two steps<br>

<p> <br>
                  indent paragraph nine steps<br>

<p> <br>
<b>markup example:</b>
<p> <br>
<pre>  _* bullet text

  _1* bullet text, first indent

  _2* bullet text, two step indent
</pre>
<p> <br>
<b>resulting output:</b>
<p> <br>
* bullet text
<p> <br>
  * bullet text, first indent<br>

<p> <br>
    * bullet text, two step indent<br>

<p> <br>
Numbered List (not to be confused with headings/titles, (document structure))

<p> <br>
<b>markup example:</b>
<p> <br>
<pre>  # numbered list                numbered list 1., 2., 3, etc.

  _# numbered list numbered list indented a., b., c., d., etc.
</pre>
<p>
<h2><a name='sect28' href='#toc28'>9.4 Footnotes / Endnotes</a></h2>

<p> <br>
Footnotes and endnotes are marked up at the location where they would be
indicated within a text. They are automatically numbered. The output type

<p>determines whether footnotes or endnotes will be produced
<p> <br>
<b>markup example:</b>
<p> <br>
<pre>  ~{ a footnote or endnote }~
</pre>
<p> <br>
<b>resulting output:</b>
<p> <br>
[^12]
<p> <br>
<b>markup example:</b>
<p> <br>
<pre>  normal text~{ self contained endnote marker &amp; endnote in one }~ continues
</pre>
<p> <br>
<b>resulting output:</b>
<p> <br>
normal text[^13] continues
<p> <br>
<b>markup example:</b>
<p> <br>
<pre>  normal text ~{* unnumbered asterisk footnote/endnote, insert multiple
asterisks if required }~ continues

  normal text ~{** another unnumbered asterisk footnote/endnote }~ continues
</pre>
<p> <br>
<b>resulting output:</b>
<p> <br>
normal text [^*] continues
<p> <br>
normal text [^**] continues
<p> <br>
<b>markup example:</b>
<p> <br>
<pre>  normal text ~[* &nbsp;editors &nbsp;notes, &nbsp;numbered &nbsp;asterisk &nbsp;footnote/endnote &nbsp;series
&nbsp;]~ continues

  normal text ~[+ &nbsp;editors &nbsp;notes, &nbsp;numbered &nbsp;asterisk &nbsp;footnote/endnote &nbsp;series
&nbsp;]~ continues
</pre>
<p> <br>
<b>resulting output:</b>
<p> <br>
normal text [^*3] continues
<p> <br>
normal text [^+2] continues
<p> <br>
<b>Alternative endnote pair notation for footnotes/endnotes:</b>
<p> <br>
<pre>  % note the endnote marker "~^"
  normal text~^ continues

  ^~ endnote text following the paragraph in which the marker occurs
</pre>
<p> <br>

<p>the standard and pair notation cannot be mixed in the same document
<p>
<h2><a name='sect29' href='#toc29'>9.5
Links</a></h2>

<p>
<h2><a name='sect30' href='#toc30'>9.5.1 Naked Urls Within Text, Dealing with Urls</a></h2>

<p> <br>
urls found within text are marked up automatically. A url within text is
automatically hyperlinked to itself and by default decorated with angled
braces, unless they are contained within a code block (in which case they
are passed as normal text), or escaped by a preceding underscore (in which
case the decoration is omitted).
<p> <br>
<b>markup example:</b>
<p> <br>
<pre>  normal text http://www.sisudoc.org/ continues
</pre>
<p> <br>
<b>resulting output:</b>
<p> <br>
normal text &lt;<a href='http://www.sisudoc.org/'>http://www.sisudoc.org/</a>
&gt; continues
<p> <br>

<p>An escaped url without decoration
<p> <br>
<b>markup example:</b>
<p> <br>
<pre>  normal text _http://www.sisudoc.org/ continues
  deb http://www.jus.uio.no/sisu/archive unstable main non-free
</pre>
<p> <br>
<b>resulting output:</b>
<p> <br>
normal text &lt;_<a href='http://www.sisudoc.org/'>http://www.sisudoc.org/</a>
&gt; continues
<p> <br>
deb &lt;_<a href='http://www.jus.uio.no/sisu/archive'>http://www.jus.uio.no/sisu/archive</a>
&gt; unstable main non-free
<p> <br>
where a code block is used there is neither decoration nor hyperlinking,

<p>code blocks are discussed later in this document
<p> <br>
<b>resulting output:</b>
<p> <br>
<pre>  deb http://www.jus.uio.no/sisu/archive unstable main non-free

  deb-src http://www.jus.uio.no/sisu/archive unstable main non-free
</pre>
<p>
<h2><a name='sect31' href='#toc31'>9.5.2 Linking Text</a></h2>

<p> <br>

<p>To link text or an image to a url the markup is as follows
<p> <br>
<b>markup example:</b>
<p> <br>
<pre>  about { SiSU }http://url.org markup
</pre>
<p> <br>
<b>resulting output:</b>
<p> <br>
aboutSiSU &lt;<a href='http://www.sisudoc.org/'>http://www.sisudoc.org/</a>
&gt; markup
<p> <br>

<p>A shortcut notation is available so the url link may also be provided automatically

<p>as a footnote
<p> <br>
<b>markup example:</b>
<p> <br>
<pre>  about {~^ SiSU }http://url.org markup
</pre>
<p> <br>
<b>resulting output:</b>
<p> <br>
about SiSU &lt;<a href='http://www.sisudoc.org/'>http://www.sisudoc.org/</a>
&gt; [^14] markup
<p>
<h2><a name='sect32' href='#toc32'>9.5.3 Linking Images</a></h2>

<p> <br>
<b>markup example:</b>
<p> <br>
<pre>  { tux.png 64x80 }image

  % various url linked images

  {tux.png 64x80 "a better way" }http://www.sisudoc.org/


  {GnuDebianLinuxRubyBetterWay.png 100x101 "Way Better - with Gnu/Linux,
Debian and Ruby" }http://www.sisudoc.org/


  {~^ ruby_logo.png "Ruby" }http://www.ruby-lang.org/en/


</pre>
<p> <br>
<b>resulting output:</b>
<p> <br>
[ tux.png ]
<p> <br>
tux.png 64x80 "Gnu/Linux - a better way" &lt;<a href='http://www.sisudoc.org/'>http://www.sisudoc.org/</a>
&gt;
<p> <br>
[ &nbsp;ruby_logo &nbsp;(png &nbsp;missing) &nbsp;] [^15]
<p> <br>
GnuDebianLinuxRubyBetterWay.png 100x101 "Way Better - with Gnu/Linux, Debian
and Ruby" &lt;<a href='http://www.jus.uio.no/sisu/'>http://www.jus.uio.no/sisu/</a>
&gt;
<p> <br>

<p><b>linked url footnote shortcut</b>
<p> <br>
<pre>  {~^ &nbsp;[text &nbsp;to &nbsp;link] }http://url.org
  % maps to: { &nbsp;[text &nbsp;to &nbsp;link] }http://url.org ~{ http://url.org }~
  % which produces hyper-linked text within a document/paragraph,
  % with an endnote providing the url for the text location used in the
hyperlink
</pre>
<p> <br>
<pre>  text marker *~name
</pre>
<p> <br>
note at a heading level the same is automatically achieved by providing
names to headings 1, 2 and 3 i.e. 2~[name] and 3~[name] or in the case of
auto-heading numbering, without further intervention.
<p>
<h2><a name='sect33' href='#toc33'>9.6 Grouped Text</a></h2>

<p>
<h2><a name='sect34' href='#toc34'>9.6.1
Tables</a></h2>

<p> <br>

<p>Tables may be prepared in two either of two forms
<p> <br>
<b>markup example:</b>
<p> <br>
<pre>  table{ c3; 40; 30; 30;
  This is a table
  this would become column two of row one
  column three of row one is here
  And here begins another row
  column two of row two
  column three of row two, and so on
  }table
</pre>
<p> <br>
<b>resulting output:</b>
<p>   [table  omitted,  see  other  document  formats]<br>

<p> <br>

<p>a second form may be easier to work with in cases where there is not much

<p>information in each column
<p> <br>
<b>markup example:</b> [^16]
<p> <br>
<pre>  !_ Table 3.1: Contributors to Wikipedia, January 2001 - June 2005
  {table~h 24; 12; 12; 12; 12; 12; 12;}
                                  |Jan. 2001|Jan. 2002|Jan. 2003|Jan. 2004|July
2004|June 2006
  Contributors*                   |       10|      472|    2,188|    9,653|
  25,011|   48,721
  Active contributors**           |        9|      212|      846|    3,228|
   8,442|   16,945
  Very active contributors***     |        0|       31|      190|      692|
   1,639|    3,016
  No. of English language articles|       25|   16,000|  101,000|  190,000|
320,000|  630,000
  No. of articles, all languages  |       25|   19,000|  138,000|  490,000|
862,000|1,600,000
  \* Contributed at least ten times; \** at least 5 times in last month;
\* more than 100 times in last month.
</pre>
<p> <br>
<b>resulting output:</b>
<p> <br>
<b>Table 3.1: Contributors to Wikipedia, January 2001 - June 2005</b>
<p>   [table
 omitted,  see  other  document  formats]<br>

<p> <br>
* Contributed at least ten times; ** at least 5 times in last month; ***
more than 100 times in last month.
<p>
<h2><a name='sect35' href='#toc35'>9.6.2 Poem</a></h2>

<p> <br>
<b>basic markup:</b>
<p> <br>
<pre>  poem{
    Your poem here
  }poem
  Each verse in a poem is given an object number.
</pre>
<p> <br>
<b>markup example:</b>
<p> <br>
<pre>  poem{
                      &lsquo;Fury said to a
                     mouse, That he
                   met in the
                 house,
              "Let us
                both go to
                  law:  I will
                    prosecute
                      YOU.  --Come,
                         I&rsquo;ll take no
                          denial; We
                       must have a
                   trial:  For
                really this
             morning I&rsquo;ve
            nothing
           to do."
             Said the
               mouse to the
                 cur, "Such
                   a trial,
                     dear Sir,
                           With
                       no jury
                    or judge,
                  would be
                wasting
               our
                breath."
                 "I&rsquo;ll be
                   judge, I&rsquo;ll
                     be jury,"
                           Said
                      cunning
                        old Fury:
                       "I&rsquo;ll
                        try the
                           whole
                            cause,
                               and
                          condemn
                         you
                        to
                         death."&rsquo;
  }poem
</pre>
<p> <br>
<b>resulting output:</b>
<p>                     &lsquo;Fury said to a<br>
 <br>
                   mouse, That he<br>
 <br>
                 met in the<br>
 <br>
               house,<br>
 <br>
            "Let us<br>
 <br>
              both go to<br>
 <br>
                law:  I will<br>
 <br>
                  prosecute<br>
 <br>
                    YOU.  --Come,<br>
 <br>
                       I&rsquo;ll take no<br>
 <br>
                        denial; We<br>
 <br>
                     must have a<br>
 <br>
                 trial:  For<br>
 <br>
              really this<br>
 <br>
           morning I&rsquo;ve<br>
 <br>
          nothing<br>
 <br>
         to do."<br>
 <br>
           Said the<br>
 <br>
             mouse to the<br>
 <br>
               cur, "Such<br>
 <br>
                 a trial,<br>
 <br>
                   dear Sir,<br>
 <br>
                         With<br>
 <br>
                     no jury<br>
 <br>
                  or judge,<br>
 <br>
                would be<br>
 <br>
              wasting<br>
 <br>
             our<br>
 <br>
              breath."<br>
 <br>
               "I&rsquo;ll be<br>
 <br>
                 judge, I&rsquo;ll<br>
 <br>
                   be jury,"<br>
 <br>
                         Said<br>
 <br>
                    cunning<br>
 <br>
                      old Fury:<br>
 <br>
                     "I&rsquo;ll<br>
 <br>
                      try the<br>
 <br>
                         whole<br>
 <br>
                          cause,<br>
 <br>
                             and<br>
 <br>
                        condemn<br>
 <br>
                       you<br>
 <br>
                      to<br>
 <br>
                       death."&rsquo;<br>
 <br>

<p>
<h2><a name='sect36' href='#toc36'>9.6.3 Group</a></h2>

<p> <br>
<b>basic markup:</b>
<p> <br>
<pre>  group{

    Your grouped text here

  }group

  A group is treated as an object and given a single object number.
</pre>
<p> <br>
<b>markup example:</b>
<p> <br>
<pre>  group{

                      &rsquo;Fury said to a
                     mouse, That he
                   met in the
                 house,
              "Let us
                both go to
                  law:  I will
                    prosecute
                      YOU.  --Come,
                         I&rsquo;ll take no
                          denial; We
                       must have a
                   trial:  For
                really this
             morning I&rsquo;ve
            nothing
           to do."
             Said the
               mouse to the
                 cur, "Such
                   a trial,
                     dear Sir,
                           With
                       no jury
                    or judge,
                  would be
                wasting
               our
                breath."
                 "I&rsquo;ll be
                   judge, I&rsquo;ll
                     be jury,"
                           Said
                      cunning
                        old Fury:
                       "I&rsquo;ll
                        try the
                           whole
                            cause,
                               and
                          condemn
                         you
                        to
                         death."&rsquo;
  }group
</pre>
<p> <br>
<b>resulting output:</b>
<p>                     &lsquo;Fury said to a<br>
 <br>
                   mouse, That he<br>
 <br>
                 met in the<br>
 <br>
               house,<br>
 <br>
            "Let us<br>
 <br>
              both go to<br>
 <br>
                law:  I will<br>
 <br>
                  prosecute<br>
 <br>
                    YOU.  --Come,<br>
 <br>
                       I&rsquo;ll take no<br>
 <br>
                        denial; We<br>
 <br>
                     must have a<br>
 <br>
                 trial:  For<br>
 <br>
              really this<br>
 <br>
           morning I&rsquo;ve<br>
 <br>
          nothing<br>
 <br>
         to do."<br>
 <br>
           Said the<br>
 <br>
             mouse to the<br>
 <br>
               cur, "Such<br>
 <br>
                 a trial,<br>
 <br>
                   dear Sir,<br>
 <br>
                         With<br>
 <br>
                     no jury<br>
 <br>
                  or judge,<br>
 <br>
                would be<br>
 <br>
              wasting<br>
 <br>
             our<br>
 <br>
              breath."<br>
 <br>
               "I&rsquo;ll be<br>
 <br>
                 judge, I&rsquo;ll<br>
 <br>
                   be jury,"<br>
 <br>
                         Said<br>
 <br>
                    cunning<br>
 <br>
                      old Fury:<br>
 <br>
                     "I&rsquo;ll<br>
 <br>
                      try the<br>
 <br>
                         whole<br>
 <br>
                          cause,<br>
 <br>
                             and<br>
 <br>
                        condemn<br>
 <br>
                       you<br>
 <br>
                      to<br>
 <br>
                       death."&rsquo;<br>
 <br>

<p>
<h2><a name='sect37' href='#toc37'>9.6.4 Code</a></h2>

<p> <br>
Code tags code{ ... }code (used as with other group tags described above)
are used to escape regular sisu markup, and have been used extensively
within this document to provide examples of <b>SiSU</b> markup. You cannot however
use code tags to escape code tags. They are however used in the same way
as group or poem tags.
<p> <br>
A code-block is treated as an object and given a single object number. [an
option &nbsp;to &nbsp;number &nbsp;each &nbsp;line &nbsp;of &nbsp;code &nbsp;may &nbsp;be &nbsp;considered &nbsp;at some &nbsp;later &nbsp;time]

<p> <br>
<b>use of code tags instead of poem compared, resulting output:</b>
<p> <br>
<pre>                      &lsquo;Fury said to a
                     mouse, That he
                   met in the
                 house,
              "Let us
                both go to
                  law:  I will
                    prosecute
                      YOU.  --Come,
                         I&rsquo;ll take no
                          denial; We
                       must have a
                   trial:  For
                really this
             morning I&rsquo;ve
            nothing
           to do."
             Said the
               mouse to the
                 cur, "Such
                   a trial,
                     dear Sir,
                           With
                       no jury
                    or judge,
                  would be
                wasting
               our
                breath."
                 "I&rsquo;ll be
                   judge, I&rsquo;ll
                     be jury,"
                           Said
                      cunning
                        old Fury:
                       "I&rsquo;ll
                        try the
                           whole
                            cause,
                               and
                          condemn
                         you
                        to
                         death."&rsquo;
</pre>
<p> <br>
From <b>SiSU</b> 2.7.7 on you can number codeblocks by placing a hash after the
opening code tag code{# as demonstrated here:
<p> <br>
<pre>1  |                      &lsquo;Fury said to a
2  |                     mouse, That he
3  |                   met in the
4  |                 house,
5  |              "Let us
6  |                both go to
7  |                  law:  I will
8  |                    prosecute
9  |                      YOU.  --Come,
10 |                         I&rsquo;ll take no
11 |                          denial; We
12 |                       must have a
13 |                   trial:  For
14 |                really this
15 |             morning I&rsquo;ve
16 |            nothing
17 |           to do."
18 |             Said the
19 |               mouse to the
20 |                 cur, "Such
21 |                   a trial,
22 |                     dear Sir,
23 |                           With
24 |                       no jury
25 |                    or judge,
26 |                  would be
27 |                wasting
28 |               our
29 |                breath."
30 |                 "I&rsquo;ll be
31 |                   judge, I&rsquo;ll
32 |                     be jury,"
33 |                           Said
34 |                      cunning
35 |                        old Fury:
36 |                       "I&rsquo;ll
37 |                        try the
38 |                           whole
39 |                            cause,
40 |                               and
41 |                          condemn
42 |                         you
43 |                        to
44 |                         death."&rsquo;
</pre>
<p>
<h2><a name='sect38' href='#toc38'>9.7 Additional Breaks - Linebreaks Within Objects, Column and Page-breaks</a></h2>

<p>

<h2><a name='sect39' href='#toc39'>9.7.1 Line-breaks</a></h2>

<p> <br>
To break a line within a "paragraph object", two backslashes \\ with a space
before and a space or newline after them may be used.
<p> <br>
<pre>  To break a line within a "paragraph object",
  two backslashes \\ with a space before
  and a space or newline after them \\
  may be used.
</pre>
<p> <br>
The html break br enclosed in angle brackets (though undocumented) is available
in versions prior to 3.0.13 and 2.9.7 (it remains available for the time being,
but is depreciated).
<p>
<h2><a name='sect40' href='#toc40'>9.7.2 Page Breaks</a></h2>

<p> <br>
Page breaks are only relevant and honored in some output formats. A page
break or a new page may be inserted manually using the following markup
on a line on its own:
<p> <br>
<pre>  &lt;:pb&gt;
</pre>
<p> <br>

<p>or
<p> <br>
<pre>  &lt;:pn&gt;
</pre>
<p> <br>
page new &lt;:pn&gt; breaks the page, starts a new page.
<p> <br>
page break &lt;:pb&gt; breaks a column, starts a new column, if using columns,
else breaks the page, starts a new page.
<p>
<h2><a name='sect41' href='#toc41'>9.8 Book Index</a></h2>

<p> <br>
To make an index append to paragraph the book index term relates to it,
using an equal sign and curly braces.
<p> <br>
Currently two levels are provided, a main term and if needed a sub-term.
Sub-terms are separated from the main term by a colon.
<p> <br>
<pre>    Paragraph containing main term and sub-term.
    ={Main term:sub-term}
</pre>
<p> <br>
The index syntax starts on a new line, but there should not be an empty
line between paragraph and index markup.
<p> <br>
The structure of the resulting index would be:
<p> <br>
<pre>    Main term, 1
      sub-term, 1
</pre>
<p> <br>
Several terms may relate to a paragraph, they are separated by a semicolon.
If the term refers to more than one paragraph, indicate the number of paragraphs.

<p> <br>
<pre>    Paragraph containing main term, second term and sub-term.
    ={first term; second term: sub-term}
</pre>
<p> <br>
The structure of the resulting index would be:
<p> <br>
<pre>    First term, 1,
    Second term, 1,
      sub-term, 1
</pre>
<p> <br>
If multiple sub-terms appear under one paragraph, they are separated under
the main term heading from each other by a pipe symbol.
<p> <br>
<pre>    Paragraph containing main term, second term and sub-term.
    ={Main term:sub-term+1|second sub-term
    A paragraph that continues discussion of the first sub-term
</pre>
<p> <br>
The plus one in the example provided indicates the first sub-term spans
one additional paragraph. The logical structure of the resulting index would
be:
<p> <br>
<pre>    Main term, 1,
      sub-term, 1-3,
      second sub-term, 1,
</pre>
<p>
<h2><a name='sect42' href='#toc42'>10. Composite Documents Markup</a></h2>
<br>

<p> <br>
It is possible to build a document by creating a master document that requires
other documents. The documents required may be complete documents that could
be generated independently, or they could be markup snippets, prepared
so as to be easily available to be placed within another text. If the calling
document is a master document (built from other documents), it should be
named with the suffix <b>.ssm</b> Within this document you would provide information
on the other documents that should be included within the text. These may
be other documents that would be processed in a regular way, or markup
bits prepared only for inclusion within a master document <b>.sst</b> regular markup
file, or <b>.ssi</b> (insert/information) A secondary file of the composite document

<p>is built prior to processing with the same prefix and the suffix <b>._sst</b>
<p>
<br>

<p>basic markup for importing a document into a master document
<p> <br>
<pre>  &lt;&lt; filename1.sst
  &lt;&lt; filename2.ssi
</pre>
<p> <br>
The form described above should be relied on. Within the Vim editor it results
in the text thus linked becoming hyperlinked to the document it is calling
in which is convenient for editing. Alternative markup for importation of
documents under consideration, and occasionally supported have been.
<p> <br>
<pre>  &lt;&lt; filename.ssi
  &lt;&lt;{filename.ssi}
  % using textlink alternatives
  &lt;&lt; |filename.ssi|@|^|
</pre>
<p>
<h2><a name='sect43' href='#toc43'>Markup Syntax History</a></h2>
<br>

<p>
<h2><a name='sect44' href='#toc44'>11. Notes Related to Files-types and Markup Syntax</a></h2>
<br>

<p> 2.0 introduced new headers and is therefore incompatible with 1.0 though
otherwise the same with the addition of a couple of tags (i.e. a superset)

<p> <br>

<p>0.38 is substantially current for version 1.0
<p> <br>
depreciated 0.16 supported, though file names were changed at 0.37
<p> <br>
* sisu --query=[sisu &nbsp;version &nbsp;[0.38] or &rsquo;history]
<p> <br>

<p>provides a short history of changes to <b>SiSU</b> markup
<p> <br>
<b>SiSU 2.0</b> (2010-03-06:09/6) same as 1.0, apart from the changing of headers
and the addition of a monospace tag related headers now grouped, e.g.
<p> <br>
<pre>  @title:
   :subtitle:
  @creator:
   :author:
   :translator:
   :illustrator:
  @rights:
   :text:
   :illustrations:
</pre>
<p> <br>
see document markup samples, and sisu --help headers
<p> <br>
the monospace tag takes the form of a hash &rsquo;#&rsquo;
<p> <br>
<pre>  #{ this enclosed text would be monospaced }#
</pre>
<p> <br>
<b>1.0</b> (2009-12-19:50/6) same as 0.69
<p> <br>
<b>0.69</b> (2008-09-16:37/2) (same as 1.0) and as previous (0.57) with the addition

<p>of book index tags
<p> <br>
<pre>  /^={.+?}$/
</pre>
<p> <br>
e.g. appended to a paragraph, on a new-line (without a blank line in between)
logical structure produced assuming this is the first text "object"
<p> <br>
<pre>   ={GNU/Linux community distribution:Debian+2|Fedora|Gentoo;Free Software
Foundation+5}
</pre>
<p> <br>
<pre>  Free Software Foundation, 1-6
  GNU/Linux community distribution, 1
      Debian, 1-3
      Fedora, 1
      Gentoo,
</pre>
<p> <br>
<b>0.66</b> (2008-02-24:07/7) same as previous, adds semantic tags, [experimental
&nbsp;and not-used]
<p> <br>
<pre>  /[:;]{.+?}[:;][a-z+]/
</pre>
<p> <br>
<b>0.57</b> (2007w34/4) <b>SiSU</b> 0.57 is the same as 0.42 with the introduction of some
a shortcut to use the headers @title and @creator in the first heading
[expanded &nbsp;using &nbsp;the &nbsp;and &nbsp;@author:]
<p> <br>
<pre>  :A~ @title by @author
</pre>
<p> <br>
<b>0.52</b> (2007w14/6) declared document type identifier at start of text/document:

<p> <br>
  .B SiSU<br>
 0.52
<p> <br>
or, backward compatible using the comment marker:
<p> <br>
  %<br>
 <b>SiSU</b> 0.38
<p> <br>
variations include &rsquo; <b>SiSU</b> (text|master|insert) [version]&rsquo; and &rsquo;sisu-[version]&rsquo;

<p> <br>
<b>0.51</b> (2007w13/6) skins changed (simplified), markup unchanged
<p> <br>
<b>0.42</b> (2006w27/4) * (asterisk) type endnotes, used e.g. in relation to author

<p> <br>
<b>SiSU</b> 0.42 is the same as 0.38 with the introduction of some additional endnote
types,
<p> <br>
Introduces some variations on endnotes, in particular the use of the asterisk

<p> <br>
<pre>  ~{* for example for describing an author }~ and ~{** for describing a
second author }~
</pre>
<p> <br>
* for example for describing an author
<p> <br>
** for describing a second author
<p> <br>

<p>and
<p> <br>
<pre>  ~[* &nbsp;my &nbsp;note &nbsp;]~ or ~[+ &nbsp;another &nbsp;note &nbsp;]~
</pre>
<p> <br>

<p>which numerically increments an asterisk and plus respectively
<p> <br>

<p>*1 my note +1 another note
<p> <br>
<b>0.38</b> (2006w15/7) introduced new/alternative notation for headers, e.g. @title:
(instead of 0~title), and accompanying document structure markup, :A,:B,:C,1,2,3
(maps to previous 1,2,3,4,5,6)
<p> <br>
<b>SiSU</b> 0.38 introduced alternative experimental header and heading/structure
markers,
<p> <br>
<pre>  @headername: and headers :A~ :B~ :C~ 1~ 2~ 3~
</pre>
<p> <br>
as the equivalent of:
<p> <br>
<pre>  0~headername and headers 1~ 2~ 3~ 4~ 5~ 6~
</pre>
<p> <br>

<p>The internal document markup of <b>SiSU</b> 0.16 remains valid and standard Though

<p>note that <b>SiSU</b> 0.37 introduced a new file naming convention
<p> <br>
<b>SiSU</b> has in effect two sets of levels to be considered, using 0.38 notation
A-C headings/levels, pre-ordinary paragraphs /pre-substantive text, and 1-3
headings/levels, levels which are followed by ordinary text. This may be
conceptualised as levels A,B,C, 1,2,3, and using such letter number notation,
in effect: A must exist, optional B and C may follow in sequence (not strict)
1 must exist, optional 2 and 3 may follow in sequence i.e. there are two
independent heading level sequences A,B,C and 1,2,3 (using the 0.16 standard
notation 1,2,3 and 4,5,6) on the positive side: the 0.38 A,B,C,1,2,3 alternative
makes explicit an aspect of structuring documents in <b>SiSU</b> that is not otherwise
obvious to the newcomer (though it appears more complicated, is more in
your face and likely to be understood fairly quickly); the substantive
text follows levels 1,2,3 and it is &rsquo;nice&rsquo; to do most work in those levels

<p> <br>
<b>0.37</b> (2006w09/7) introduced new file naming convention, .sst (text), .ssm
(master), .ssi (insert), markup syntax unchanged
<p> <br>
<b>SiSU</b> 0.37 introduced new file naming convention, using the file extensions
.sst  .ssm and .ssi to replace .s1 .s2 .s3 .r1 .r2 .r3 and .si<br>

<p> <br>
this is captured by the following file &rsquo;rename&rsquo; instruction:
<p> <br>
<pre>  rename &rsquo;s/.s[123]$/.sst/&rsquo; *.s{1,2,3}
  rename &rsquo;s/.r[123]$/.ssm/&rsquo; *.r{1,2,3}
  rename &rsquo;s/.si$/.ssi/&rsquo; *.si
</pre>
<p> <br>
The internal document markup remains unchanged, from <b>SiSU</b> 0.16
<p> <br>
<b>0.35</b> (2005w52/3) sisupod, zipped content file introduced
<p> <br>
<b>0.23</b> (2005w36/2) utf-8 for markup file
<p> <br>
<b>0.22</b> (2005w35/3) image dimensions may be omitted if rmagick is available

<p>to be relied upon
<p> <br>
<b>0.20.4</b> (2005w33/4) header 0~links
<p> <br>
<b>0.16</b> (2005w25/2) substantial changes introduced to make markup cleaner,
header 0~title type, and headings [1-6]~ introduced, also percentage sign
(%) at start of a text line as comment marker
<p> <br>
<b>SiSU</b> 0.16 (0.15 development branch) introduced the use of
<p> <br>
the header 0~ and headings/structure 1~ 2~ 3~ 4~ 5~ 6~
<p> <br>
in place of the 0.1 header, heading/structure notation
<p> <br>
<b>SiSU</b> 0.1 headers and headings structure represented by header 0{~ and headings/structure
1{ 2{ 3{ 4{~ 5{ 6{
<p>
<h2><a name='sect45' href='#toc45'>12. Sisu Filetypes</a></h2>
<br>

<p> <br>
<b>SiSU</b> has plaintext and binary filetypes, and can process either type of
document.
<p>
<h2><a name='sect46' href='#toc46'>12.1 .sst .ssm .ssi Marked Up Plain Text</a></h2>

<p> <br>
<b>SiSU</b> documents are prepared as plain-text (utf-8) files with <b>SiSU</b> markup.
They may make reference to and contain images (for example), which are
stored in the directory beneath them _sisu/image. <b>SiSU</b> plaintext markup
files are of three types that may be distinguished by the file extension
used: regular text .sst; master documents, composite documents that incorporate
other text, which can be any regular text or text insert; and inserts the
contents of which are like regular text except these are marked  .ssi and
are not processed.<br>

<p> <br>
<b>SiSU</b> processing can be done directly against a sisu documents; which may
be located locally or on a remote server for which a url is provided.
<p> <br>
<b>SiSU</b> source markup can be shared with the command:
<p> <br>
  sisu -s [filename]<br>

<p>
<h2><a name='sect47' href='#toc47'>12.1.1 Sisu Text - Regular Files (.sst)</a></h2>

<p> <br>
The most common form of document in <b>SiSU</b> , see the section on <b>SiSU</b> markup.

<p> <br>
&lt;<a href='http://www.sisudoc.org/sisu/sisu_markup'>http://www.sisudoc.org/sisu/sisu_markup</a>
&gt;
<p> <br>
&lt;<a href='http://www.sisudoc.org/sisu/sisu_manual'>http://www.sisudoc.org/sisu/sisu_manual</a>
&gt;
<p>
<h2><a name='sect48' href='#toc48'>12.1.2 Sisu Master Files (.ssm)</a></h2>

<p> <br>
Composite documents which incorporate other <b>SiSU</b> documents which may be
either regular <b>SiSU</b> text .sst which may be generated independently, or inserts
prepared solely for the purpose of being incorporated into one or more
master documents.
<p> <br>
The mechanism by which master files incorporate other documents is described
as one of the headings under under <b>SiSU</b> markup in the <b>SiSU</b> manual.
<p> <br>
Note: Master documents may be prepared in a similar way to regular documents,
and processing will occur normally if a .sst file is renamed .ssm without
requiring any other documents; the .ssm marker flags that the document may
contain other documents.
<p> <br>
Note: a secondary file of the composite document is built prior to processing
with the same prefix and the suffix ._sst [^17]
<p> <br>
&lt;<a href='http://www.sisudoc.org/sisu/sisu_markup'>http://www.sisudoc.org/sisu/sisu_markup</a>
&gt;
<p> <br>
&lt;<a href='http://www.sisudoc.org/sisu/sisu_manual'>http://www.sisudoc.org/sisu/sisu_manual</a>
&gt;
<p>
<h2><a name='sect49' href='#toc49'>12.1.3 Sisu Insert Files (.ssi)</a></h2>

<p> <br>
Inserts are documents prepared solely for the purpose of being incorporated
into one or more master documents. They resemble regular <b>SiSU</b> text files
except they are ignored by the <b>SiSU</b> processor. Making a file a .ssi file
is a quick and convenient way of flagging that it is not intended that
the file should be processed on its own.
<p>
<h2><a name='sect50' href='#toc50'>12.2 Sisupod, Zipped Binary Container
(sisupod.zip, .ssp)</a></h2>

<p> <br>
A sisupod is a zipped <b>SiSU</b> text file or set of <b>SiSU</b> text files and any
associated images that they contain (this will be extended to include sound
and multimedia-files)
<p> <br>
<b>SiSU</b> plaintext files rely on a recognised directory structure to find contents
such as images associated with documents, but all images for example for
all documents contained in a directory are located in the sub-directory
_sisu/image. Without the ability to create a sisupod it can be inconvenient
to manually identify all other files associated with a document. A sisupod
automatically bundles all associated files with the document that is turned
into a pod.
<p> <br>
The structure of the sisupod is such that it may for example contain a
single document and its associated images; a master document and its associated
documents and anything else; or the zipped contents of a whole directory
of prepared <b>SiSU</b> documents.
<p> <br>
The command to create a sisupod is:
<p> <br>
  sisu -S [filename]<br>

<p> <br>
Alternatively, make a pod of the contents of a whole directory:
<p> <br>
  sisu -S<br>

<p> <br>
<b>SiSU</b> processing can be done directly against a sisupod; which may be located
locally or on a remote server for which a url is provided.
<p> <br>
&lt;<a href='http://www.sisudoc.org/sisu/sisu_commands'>http://www.sisudoc.org/sisu/sisu_commands</a>
&gt;
<p> <br>
&lt;<a href='http://www.sisudoc.org/sisu/sisu_manual'>http://www.sisudoc.org/sisu/sisu_manual</a>
&gt;
<p>
<h2><a name='sect51' href='#toc51'>13. Experimental Alternative Input
Representations</a></h2>
<br>

<p>
<h2><a name='sect52' href='#toc52'>13.1 Alternative Xml</a></h2>

<p> <br>
<b>SiSU</b> offers alternative XML input representations of documents as a proof
of concept, experimental feature. They are however not strictly maintained,
and incomplete and should be handled with care.
<p> <br>
<b>convert from sst to simple xml representations (sax, dom and node):</b>
<p> <br>
  sisu --to-sax [filename/wildcard] or sisu --to-sxs [filename/wildcard]<br>

<p> <br>
  sisu --to-dom [filename/wildcard] or sisu --to-sxd [filename/wildcard]<br>

<p> <br>
  sisu --to-node [filename/wildcard] or sisu --to-sxn [filename/wildcard]<br>

<p> <br>
<b>convert to sst from any sisu xml representation (sax, dom and node):</b>
<p> <br>
  sisu --from-xml2sst [filename/wildcard &nbsp;[.sxs.xml,.sxd.xml,sxn.xml]]<br>

<p> <br>
or the same:
<p> <br>
  sisu --from-sxml [filename/wildcard &nbsp;[.sxs.xml,.sxd.xml,sxn.xml]]<br>

<p>
<h2><a name='sect53' href='#toc53'>13.1.1 Xml Sax Representation</a></h2>

<p> <br>
To convert from sst to simple xml (sax) representation:
<p> <br>
  sisu --to-sax [filename/wildcard] or sisu --to-sxs [filename/wildcard]<br>

<p> <br>

<p>To convert from any sisu xml representation back to sst
<p> <br>
  sisu --from-xml2sst [filename/wildcard &nbsp;[.sxs.xml,.sxd.xml,sxn.xml]]<br>

<p> <br>
or the same:
<p> <br>
  sisu --from-sxml [filename/wildcard &nbsp;[.sxs.xml,.sxd.xml,sxn.xml]]<br>

<p>
<h2><a name='sect54' href='#toc54'>13.1.2 Xml Dom Representation</a></h2>

<p> <br>
To convert from sst to simple xml (dom) representation:
<p> <br>
  sisu --to-dom [filename/wildcard] or sisu --to-sxd [filename/wildcard]<br>

<p> <br>

<p>To convert from any sisu xml representation back to sst
<p> <br>
  sisu --from-xml2sst [filename/wildcard &nbsp;[.sxs.xml,.sxd.xml,sxn.xml]]<br>

<p> <br>
or the same:
<p> <br>
  sisu --from-sxml [filename/wildcard &nbsp;[.sxs.xml,.sxd.xml,sxn.xml]]<br>

<p>
<h2><a name='sect55' href='#toc55'>13.1.3 Xml Node Representation</a></h2>

<p> <br>
To convert from sst to simple xml (node) representation:
<p> <br>
  sisu --to-node [filename/wildcard] or sisu --to-sxn [filename/wildcard]<br>

<p> <br>

<p>To convert from any sisu xml representation back to sst
<p> <br>
  sisu --from-xml2sst [filename/wildcard &nbsp;[.sxs.xml,.sxd.xml,sxn.xml]]<br>

<p> <br>
or the same:
<p> <br>
  sisu --from-sxml [filename/wildcard &nbsp;[.sxs.xml,.sxd.xml,sxn.xml]]<br>

<p>
<h2><a name='sect56' href='#toc56'>14. Configuration</a></h2>
<br>

<p>
<h2><a name='sect57' href='#toc57'>14.1 Determining the Current Configuration</a></h2>

<p> <br>
Information on the current configuration of <b>SiSU</b> should be available with
the help command:
<p> <br>
  sisu -v<br>

<p> <br>
which is an alias for:
<p> <br>
  sisu --help env<br>

<p> <br>
Either of these should be executed from within a directory that contains
sisu markup source documents.
<p>
<h2><a name='sect58' href='#toc58'>14.2 Configuration Files (config.yml)</a></h2>

<p> <br>
<b>SiSU</b> configration parameters are adjusted in the configuration file, which
can be used to override the defaults set. This includes such things as which
directory interim processing should be done in and where the generated
output should be placed.
<p> <br>
The <b>SiSU</b> configuration file is a yaml file, which means indentation is
significant.
<p> <br>
<b>SiSU</b> resource configuration is determined by looking at the following files
if they exist:
<p> <br>
  ./_sisu/sisurc.yml<br>

<p> <br>
  ~/.sisu/sisurc.yml<br>

<p> <br>
  /etc/sisu/sisurc.yml<br>

<p> <br>
The search is in the order listed, and the first one found is used.
<p> <br>
In the absence of instructions in any of these it falls back to the internal
program defaults.
<p> <br>
Configuration determines the output and processing directories and the
database access details.
<p> <br>

<p>If <b>SiSU</b> is installed a sample sisurc.yml may be found in /etc/sisu/sisurc.yml

<p>
<h2><a name='sect59' href='#toc59'>15. Skins</a></h2>
<br>

<p> <br>
Skins modify the default appearance of document output on a document, directory,
or site wide basis. Skins are looked for in the following locations:
<p> <br>
  ./_sisu/skin<br>

<p> <br>
  ~/.sisu/skin<br>

<p> <br>
  /etc/sisu/skin<br>

<p> <br>
<b>Within the skin directory</b> are the following the default sub-directories
for document skins:
<p> <br>
  ./skin/doc<br>

<p> <br>
  ./skin/dir<br>

<p> <br>
  ./skin/site<br>

<p> <br>

<p>A skin is placed in the appropriate directory and the file named skin_[name].rb

<p> <br>
The skin itself is a ruby file which modifies the default appearances set
in the program.
<p>
<h2><a name='sect60' href='#toc60'>15.1 Document Skin</a></h2>

<p> <br>
Documents take on a document skin, if the header of the document specifies
a skin to be used.
<p> <br>
<pre>  @skin: skin_united_nations
</pre>
<p>
<h2><a name='sect61' href='#toc61'>15.2 Directory Skin</a></h2>

<p> <br>
A directory may be mapped on to a particular skin, so all documents within
that directory take on a particular appearance. If a skin exists in the
skin/dir with the same name as the document directory, it will automatically
be used for each of the documents in that directory, (except where a document
specifies the use of another skin, in the skin/doc directory).
<p> <br>
A personal habit is to place all skins within the doc directory, and symbolic
links as needed from the site, or dir directories as required.
<p>
<h2><a name='sect62' href='#toc62'>15.3 Site
Skin</a></h2>

<p> <br>
A site skin, modifies the program default skin.
<p>
<h2><a name='sect63' href='#toc63'>15.4 Sample Skins</a></h2>

<p> <br>
With <b>SiSU</b> installed sample skins may be found in:
<p> <br>
  /etc/sisu/skin/doc and<br>
   /usr/share/doc/sisu/markup-samples/samples/_sisu/skin/doc<br>

<p> <br>
(or equivalent directory) and if sisu-markup-samples is installed also under:

<p> <br>
  /usr/share/doc/sisu/markup-samples-non-free/samples/_sisu/skin/doc<br>

<p> <br>
Samples of list.yml and promo.yml (which are used to create the right column
list) may be found in:
<p> <br>
  /usr/share/doc/sisu/markup-samples-non-free/samples/_sisu/skin/yml (or<br>
   equivalent directory)<br>

<p>
<h2><a name='sect64' href='#toc64'>16. Css - Cascading Style Sheets (for Html, Xhtml and Xml)</a></h2>
<br>

<p> <br>
CSS files to modify the appearance of <b>SiSU</b> html, XHTML or XML may be placed
in the configuration directory: ./_sisu/css ; ~/.sisu/css or; /etc/sisu/css
and these will be copied to the output directories with the command sisu
-CC.
<p> <br>
The basic CSS file for html output is html.css, placing a file of that name
in directory _sisu/css or equivalent will result in the default file of
that name being overwritten.
<p> <br>
HTML: html.css
<p> <br>
XML DOM: dom.css
<p> <br>
XML SAX: sax.css
<p> <br>
XHTML: xhtml.css
<p> <br>

<p>The default homepage may use homepage.css or html.css
<p> <br>
Under consideration is to permit the placement of a CSS file with a different
name in directory _sisu/css directory or equivalent, and change the default
CSS file that is looked for in a skin.[^18]
<p>
<h2><a name='sect65' href='#toc65'>17. Organising Content</a></h2>
<br>

<p>
<h2><a name='sect66' href='#toc66'>17.1 Directory Structure and Mapping</a></h2>

<p> <br>
The output directory root can be set in the sisurc.yml file. Under the root,
subdirectories are made for each directory in which a document set resides.
If you have a directory named poems or conventions, that directory will
be created under the output directory root and the output for all documents
contained in the directory of a particular name will be generated to subdirectories
beneath that directory (poem or conventions). A document will be placed
in a subdirectory of the same name as the document with the filetype identifier
stripped (.sst .ssm)
<p> <br>
The last part of a directory path, representing the sub-directory in which
a document set resides, is the directory name that will be used for the
output directory. This has implications for the organisation of document
collections as it could make sense to place documents of a particular subject,
or type within a directory identifying them. This grouping as suggested
could be by subject (sales_law, english_literature); or just as conveniently
by some other classification (X University). The mapping means it is also
possible to place in the same output directory documents that are for organisational
purposes kept separately, for example documents on a given subject of two
different institutions may be kept in two different directories of the
same name, under a directory named after each institution, and these would
be output to the same output directory. Skins could be associated with each
institution on a directory basis and resulting documents will take on the
appropriate different appearance.
<p>
<h2><a name='sect67' href='#toc67'>18. Homepages</a></h2>
<br>

<p> <br>
<b>SiSU</b> is about the ability to auto-generate documents. Home pages are regarded
as custom built items, and are not created by <b>SiSU.</b> More accurately, <b>SiSU</b>
has a default home page, which will not be appropriate for use with other
sites, and the means to provide your own home page instead in one of two
ways as part of a site&rsquo;s configuration, these being:
<p> <br>
1. through placing your home page and other custom built documents in the
subdirectory _sisu/home/ (this probably being the easier and more convenient
option)
<p> <br>
2. through providing what you want as the home page in a skin,
<p> <br>
Document sets are contained in directories, usually organised by site or
subject. Each directory can/should have its own homepage. See the section
on directory structure and organisation of content.
<p>
<h2><a name='sect68' href='#toc68'>18.1 Home Page and Other
Custom Built Pages in a Sub-directory</a></h2>

<p> <br>
Custom built pages, including the home page index.html may be placed within
the configuration directory _sisu/home/ in any of the locations that is
searched for the configuration directory, namely ./_sisu ; ~/_sisu ; /etc/sisu
From there they are copied to the root of the output directory with the
command:
<p> <br>
  sisu -CC<br>

<p>
<h2><a name='sect69' href='#toc69'>18.2 Home Page Within a Skin</a></h2>

<p> <br>
Skins are described in a separate section, but basically are a file written
in the programming language <b>Ruby</b> that may be provided to change the defaults
that are provided with sisu with respect to individual documents, a directories
contents or for a site.
<p> <br>
If you wish to provide a homepage within a skin the skin should be in the
directory _sisu/skin/dir and have the name of the directory for which it
is to become the home page. Documents in the directory commercial_law would
have the homepage modified in skin_commercial law.rb; or the directory poems

<p>in skin_poems.rb
<p> <br>
<pre>    class Home
      def homepage
        # place the html content of your homepage here, this will become
index.html
        &lt;&lt;HOME &lt;html&gt;
  &lt;head&gt;&lt;/head&gt;
  &lt;doc&gt;
  &lt;p&gt;this is my new homepage.&lt;/p&gt;
  &lt;/doc&gt;
  &lt;/html&gt;
  HOME
      end
    end
</pre>
<p>
<h2><a name='sect70' href='#toc70'>19. Markup and Output Examples</a></h2>
<br>

<p>
<h2><a name='sect71' href='#toc71'>19.1 Markup Examples</a></h2>

<p> <br>
Current markup examples and document output samples are provided at &lt;<a href='http://www.jus.uio.no/sisu/SiSU/examples.html'>http://www.jus.uio.no/sisu/SiSU/examples.html</a>
&gt;

<p> <br>
For some documents hardly any markup at all is required at all, other than
a header, and an indication that the levels to be taken into account by
the program in generating its output are.
<p>
<h2><a name='sect72' href='#toc72'>20. Sisu Search - Introduction</a></h2>
<br>

<p> <br>
<b>SiSU</b> output can easily and conveniently be indexed by a number of standalone
indexing tools, such as Lucene, Hyperestraier.
<p> <br>
Because the document structure of sites created is clearly defined, and
the text object citation system is available hypothetically at least, for
all forms of output, it is possible to search the sql database, and either
read results from that database, or just as simply map the results to the
html output, which has richer text markup.
<p> <br>
In addition to this <b>SiSU</b> has the ability to populate a relational sql type
database with documents at an object level, with objects numbers that are
shared across different output types, which make them searchable with that
degree of granularity. Basically, your match criteria is met by these documents
and at these locations within each document, which can be viewed within
the database directly or in various output formats.
<p>
<h2><a name='sect73' href='#toc73'>21. Sql</a></h2>
<br>

<p>
<h2><a name='sect74' href='#toc74'>21.1 Populating Sql Type Databases</a></h2>

<p> <br>
<b>SiSU</b> feeds sisu markupd documents into sql type databases PostgreSQL[^19]
and/or SQLite[^20] database together with information related to document
structure.
<p> <br>
This is one of the more interesting output forms, as all the structural
data of the documents are retained (though can be ignored by the user of
the database should they so choose). All site texts/documents are (currently)
streamed to four tables:
<p> <br>
  * one containing semantic (and other) headers, including, title, author,<br>
   subject, (the Dublin Core...);<br>

<p> <br>
  * another the substantive texts by individual "paragraph" (or object)
- along<br>
   with structural information, each paragraph being identifiable by its<br>
   paragraph number (if it has one which almost all of them do), and the<br>
   substantive text of each paragraph quite naturally being searchable
(both in<br>
   formatted and clean text versions for searching); and<br>

<p> <br>
  * a third containing endnotes cross-referenced back to the paragraph from<br>
   which they are referenced (both in formatted and clean text versions
for<br>
   searching).<br>

<p> <br>
  * a fourth table with a one to one relation with the headers table contains<br>
   full text versions of output, eg. pdf, html, xml, and ascii.<br>

<p> <br>
There is of course the possibility to add further structures.
<p> <br>
At this level <b>SiSU</b> loads a relational database with documents chunked into
objects, their smallest logical structurally constituent parts, as text
objects, with their object citation number and all other structural information
needed to construct the document. Text is stored (at this text object level)
with and without elementary markup tagging, the stripped version being
so as to facilitate ease of searching.
<p> <br>
Being able to search a relational database at an object level with the
<b>SiSU</b> citation system is an effective way of locating content generated
by <b>SiSU</b>  object numbers, and all versions of the document have the same
numbering, complex searches can be tailored to return just the locations
of the search results relevant for all available output formats, with live
links to the precise locations in the database or in html/xml documents;
or, the structural information provided makes it possible to search the
full contents of the database and have headings in which search content
appears, or to search only headings etc. (as the Dublin Core is incorporated
it is easy to make use of that as well).
<p>
<h2><a name='sect75' href='#toc75'>22. Postgresql</a></h2>
<br>

<p>
<h2><a name='sect76' href='#toc76'>22.1 Name</a></h2>

<p> <br>
<b>SiSU</b> - Structured information, Serialized Units - a document publishing system,

<p>postgresql dependency package
<p>
<h2><a name='sect77' href='#toc77'>22.2 Description</a></h2>

<p> <br>
Information related to using postgresql with sisu (and related to the sisu_postgresql
dependency package, which is a dummy package to install dependencies needed
for <b>SiSU</b> to populate a postgresql database, this being part of <b>SiSU</b> - man
sisu).
<p>
<h2><a name='sect78' href='#toc78'>22.3 Synopsis</a></h2>

<p> <br>
  sisu -D [instruction] [filename/wildcard &nbsp;if &nbsp;required]<br>

<p> <br>
  sisu -D --pg --[instruction] [filename/wildcard &nbsp;if &nbsp;required]<br>

<p>
<h2><a name='sect79' href='#toc79'>22.4 Commands</a></h2>

<p> <br>
Mappings to two databases are provided by default, postgresql and sqlite,
the same commands are used within sisu to construct and populate databases
however -d (lowercase) denotes sqlite and -D (uppercase) denotes postgresql,

<p>alternatively --sqlite or --pgsql may be used
<p> <br>
<b>-D or --pgsql</b> may be used interchangeably.
<p>
<h2><a name='sect80' href='#toc80'>22.4.1 Create and Destroy Database</a></h2>

<p>

<dl>

<dt><b>--pgsql --createall</b> </dt>
<dd>initial step, creates required relations (tables, indexes)
in existing (postgresql) database (a database should be created manually
and given the same name as working directory, as requested) (rb.dbi)
<p> </dd>

<dt><b>sisu
-D --createdb</b> </dt>
<dd>creates database where no database existed before
<p> </dd>

<dt><b>sisu -D --create</b>
</dt>
<dd>
<p>creates database tables where no database tables existed before
<p> </dd>

<dt><b>sisu -D
--Dropall</b> </dt>
<dd>destroys database (including all its content)! kills data and drops
tables, indexes and database associated with a given directory (and directories
of the same name).
<p> </dd>

<dt><b>sisu -D --recreate</b> </dt>
<dd>destroys existing database and builds

<p>a new empty database structure
<p> </dd>
</dl>

<h2><a name='sect81' href='#toc81'>22.4.2 Import and Remove Documents</a></h2>

<p>
<dl>

<dt><b>sisu -D
--import -v [filename/wildcard]</b> </dt>
<dd>populates database with the contents of the
file. Imports documents(s) specified to a postgresql database (at an object
level).
<p> </dd>

<dt><b>sisu -D --update -v [filename/wildcard]</b> </dt>
<dd>updates file contents in database

<p> </dd>

<dt><b>sisu -D --remove -v [filename/wildcard]</b> </dt>
<dd>removes specified document from postgresql
database.
<p> </dd>
</dl>

<h2><a name='sect82' href='#toc82'>23. Sqlite</a></h2>
<br>

<p>
<h2><a name='sect83' href='#toc83'>23.1 Name</a></h2>

<p> <br>
<b>SiSU</b> - Structured information, Serialized Units - a document publishing system.

<p>
<h2><a name='sect84' href='#toc84'>23.2 Description</a></h2>

<p> <br>
Information related to using sqlite with sisu (and related to the sisu_sqlite
dependency package, which is a dummy package to install dependencies needed
for <b>SiSU</b> to populate an sqlite database, this being part of <b>SiSU</b> - man sisu).

<p>
<h2><a name='sect85' href='#toc85'>23.3 Synopsis</a></h2>

<p> <br>
  sisu -d [instruction] [filename/wildcard &nbsp;if &nbsp;required]<br>

<p> <br>
  sisu -d --(sqlite|pg) --[instruction] [filename/wildcard &nbsp;if &nbsp;required]<br>

<p>
<h2><a name='sect86' href='#toc86'>23.4 Commands</a></h2>

<p> <br>
Mappings to two databases are provided by default, postgresql and sqlite,
the same commands are used within sisu to construct and populate databases
however -d (lowercase) denotes sqlite and -D (uppercase) denotes postgresql,

<p>alternatively --sqlite or --pgsql may be used
<p> <br>
<b>-d or --sqlite</b> may be used interchangeably.
<p>
<h2><a name='sect87' href='#toc87'>23.4.1 Create and Destroy Database</a></h2>

<p>

<dl>

<dt><b>--sqlite --createall</b> </dt>
<dd>initial step, creates required relations (tables, indexes)
in existing (sqlite) database (a database should be created manually and
given the same name as working directory, as requested) (rb.dbi)
<p> </dd>

<dt><b>sisu -d
--createdb</b> </dt>
<dd>creates database where no database existed before
<p> </dd>

<dt><b>sisu -d --create</b>
</dt>
<dd>
<p>creates database tables where no database tables existed before
<p> </dd>

<dt><b>sisu -d
--dropall</b> </dt>
<dd>destroys database (including all its content)! kills data and drops
tables, indexes and database associated with a given directory (and directories
of the same name).
<p> </dd>

<dt><b>sisu -d --recreate</b> </dt>
<dd>destroys existing database and builds

<p>a new empty database structure
<p> </dd>
</dl>

<h2><a name='sect88' href='#toc88'>23.4.2 Import and Remove Documents</a></h2>

<p>
<dl>

<dt><b>sisu -d
--import -v [filename/wildcard]</b> </dt>
<dd>populates database with the contents of the
file. Imports documents(s) specified to an sqlite database (at an object
level).
<p> </dd>

<dt><b>sisu -d --update -v [filename/wildcard]</b> </dt>
<dd>updates file contents in database

<p> </dd>

<dt><b>sisu -d --remove -v [filename/wildcard]</b> </dt>
<dd>removes specified document from sqlite
database.
<p> </dd>
</dl>

<h2><a name='sect89' href='#toc89'>24. Introduction</a></h2>
<br>

<p>
<h2><a name='sect90' href='#toc90'>24.1 Search - Database Frontend Sample, Utilising Database and Sisu Features,</a></h2>
INCLUDING
OBJECT CITATION NUMBERING (BACKEND CURRENTLY POSTGRESQL)
<p> <br>
Sample search frontend &lt;<a href='http://search.sisudoc.org'>http://search.sisudoc.org</a>
&gt; [^21] A small database and
sample query front-end (search from) that makes use of the citation system,
<i>object</i> citation numbering to demonstrates functionality.[^22]
<p> <br>
<b>SiSU</b> can provide information on which documents are matched and at what
locations within each document the matches are found. These results are
relevant across all outputs using object citation numbering, which includes
html, XML, EPUB, LaTeX, PDF and indeed the SQL database. You can then refer
to one of the other outputs or in the SQL database expand the text within
the matched objects (paragraphs) in the documents matched.
<p> <br>
Note you may set results either for documents matched and object number
locations within each matched document meeting the search criteria; or
display the names of the documents matched along with the objects (paragraphs)
that meet the search criteria.[^23]
<p>
<dl>

<dt><b>sisu -F --webserv-webrick</b> </dt>
<dd>builds a cgi web

<p>search frontend for the database created
<p> <br>
The following is feedback on the setup on a machine provided by the help
command:
<p> <br>
  sisu --help sql<br>

<p> <br>
<pre>  Postgresql
    user:             ralph
    current db set:   SiSU_sisu
    port:             5432
    dbi connect:      DBI:Pg:database=SiSU_sisu;port=5432
  sqlite
    current db set:   /home/ralph/sisu_www/sisu/sisu_sqlite.db
    dbi connect       DBI:SQLite:/home/ralph/sisu_www/sisu/sisu_sqlite.db
</pre>
<p> <br>

<p>Note on databases built
<p> <br>
By default, [unless &nbsp;otherwise &nbsp;specified] databases are built on a directory
basis, from collections of documents within that directory. The name of
the directory you choose to work from is used as the database name, i.e.
if you are working in a directory called /home/ralph/ebook the database
SiSU_ebook is used. [otherwise &nbsp;a &nbsp;manual &nbsp;mapping &nbsp;for &nbsp;the &nbsp;collection &nbsp;is
<p> </dd>
</dl>

<h2><a name='sect91' href='#toc91'>24.2
Search Form</a></h2>

<p>
<dl>

<dt><b>sisu -F</b> </dt>
<dd>generates a sample search form, which must be copied

<p>to the web-server cgi directory
<p> </dd>

<dt><b>sisu -F --webserv-webrick</b> </dt>
<dd>generates a sample
search form for use with the webrick server, which must be copied to the

<p>web-server cgi directory
<p> </dd>

<dt><b>sisu -Fv</b> </dt>
<dd>as above, and provides some information

<p>on setting up hyperestraier
<p> </dd>

<dt><b>sisu -W</b> </dt>
<dd>starts the webrick server which should

<p>be available wherever sisu is properly installed
<p> <br>

<p>The generated search form must be copied manually to the webserver directory

<p>as instructed
<p> </dd>
</dl>

<h2><a name='sect92' href='#toc92'>25. Sisu_webrick</a></h2>
<br>

<p>
<h2><a name='sect93' href='#toc93'>25.1 Name</a></h2>

<p> <br>
<b>SiSU</b> - Structured information, Serialized Units - a document publishing system

<p>
<h2><a name='sect94' href='#toc94'>25.2 Synopsis</a></h2>

<p> <br>
sisu_webrick [port]
<p> <br>

<p>or
<p> <br>
sisu -W [port]
<p>
<h2><a name='sect95' href='#toc95'>25.3 Description</a></h2>

<p> <br>
sisu_webrick is part of <b>SiSU</b> (man sisu) sisu_webrick starts <b>Ruby</b>  <b>SiSU</b>
output is written, providing a list of these directories (assuming <b>SiSU</b>
is in use and they exist).
<p> <br>
The default port for sisu_webrick is set to 8081, this may be modified
in the yaml file: ~/.sisu/sisurc.yml a sample of which is provided as /etc/sisu/sisurc.yml
(or in the equivalent directory on your system).
<p>
<h2><a name='sect96' href='#toc96'>25.4 Summary of Man Page</a></h2>

<p>
<br>
sisu_webrick, may be started on it&rsquo;s own with the command: sisu_webrick
[port] or using the sisu command with the -W flag: sisu -W [port]
<p> <br>

<p>where no port is given and settings are unchanged the default port is 8081

<p>
<h2><a name='sect97' href='#toc97'>25.5 Document Processing Command Flags</a></h2>

<p> <br>
sisu -W [port] starts <b>Ruby</b> Webrick web-server, serving <b>SiSU</b> output directories,
on the port provided, or if no port is provided and the defaults have not

<p>been changed in ~/.sisu/sisurc.yaml then on port 8081
<p>
<h2><a name='sect98' href='#toc98'>25.6 Further Information</a></h2>

<p>
<br>
For more information on <b>SiSU</b> see: &lt;<a href='http://www.sisudoc.org/'>http://www.sisudoc.org/</a>
&gt; or &lt;<a href='http://www.jus.uio.no/sisu'>http://www.jus.uio.no/sisu</a>
&gt;

<p> <br>

<p>or man sisu
<p>
<h2><a name='sect99' href='#toc99'>25.7 Author</a></h2>

<p> <br>
Ralph Amissah &lt;ralph@amissah.com&gt; or &lt;ralph.amissah@gmail.com&gt;
<p>
<h2><a name='sect100' href='#toc100'>25.8 See Also</a></h2>

<p> <br>
  <a href='http:~/bin/man2html?sisu:1'>sisu(1)</a>
<br>

<p> <br>
  <a href='http:~/bin/man2html?sisu_vim:7'>sisu_vim(7)</a>
<br>

<p>
<h2><a name='sect101' href='#toc101'>26. Remote Source Documents</a></h2>
<br>

<p> <br>
<b>SiSU</b> processing instructions can be run against remote source documents
by providing the url of the documents against which the processing instructions
are to be carried out. The remote <b>SiSU</b> documents can either be sisu marked
up files in plaintext .sst or .ssm or; zipped sisu files, sisupod.zip or filename.ssp

<p> <br>
<b>.sst / .ssm - sisu text files</b>
<p> <br>
<b>SiSU</b> can be run against source text files on a remote machine, provide
the processing instruction and the url. The source file and any associated
parts (such as images) will be downloaded and generated locally.
<p> <br>
<pre>  sisu -3 http://[provide &nbsp;url &nbsp;to &nbsp;valid &nbsp;.sst &nbsp;or &nbsp;.ssm &nbsp;file]
</pre>
<p> <br>
Any of the source documents in the sisu examples page can be used in this
way, see &lt;<a href='http://www.jus.uio.no/sisu/SiSU/examples.html'>http://www.jus.uio.no/sisu/SiSU/examples.html</a>
&gt; and use the url to the
 .sst for the desired document.<br>

<p> <br>
NOTE: to set up a remote machine to serve <b>SiSU</b> documents in this way, images

<p>should be in the directory relative to the document source ../_sisu/image

<p> <br>
<b>sisupod - zipped sisu files</b>
<p> <br>
A sisupod is the zipped content of a sisu marked up text or texts and any
other associated parts to the document such as images.
<p> <br>
<b>SiSU</b> can be run against a sisupod on a (local or) remote machine, provide
the processing instruction and the url, the sisupod will be downloaded
and the documents it contains generated locally.
<p> <br>
<pre>  sisu -3 http://[provide &nbsp;url &nbsp;to &nbsp;valid &nbsp;sisupod.zip &nbsp;or &nbsp;.ssp &nbsp;file]
</pre>
<p> <br>
Any of the source documents in the sisu examples page can be used in this
way, see &lt;<a href='http://www.jus.uio.no/sisu/SiSU/examples.html'>http://www.jus.uio.no/sisu/SiSU/examples.html</a>
&gt; and use the url for
the desired document.
<p>
<h2><a name='sect102' href='#toc102'>Remote Document Output</a></h2>
<br>

<p>
<h2><a name='sect103' href='#toc103'>27. Remote Output</a></h2>
<br>

<p> <br>
Once properly configured <b>SiSU</b> output can be automatically posted once generated
to a designated remote machine using either rsync, or scp.
<p> <br>
In order to do this some ssh authentication agent and keychain or similar
tool will need to be configured. Once that is done the placement on a remote
host can be done seamlessly with the -r (for scp) or -R (for rsync) flag,
which may be used in conjunction with other processing flags, e.g.
<p> <br>
<pre>  sisu -3R sisu_remote.sst
</pre>
<p>
<h2><a name='sect104' href='#toc104'>27.1 Commands</a></h2>

<p>
<dl>

<dt><b>-R [filename/wildcard]</b> </dt>
<dd>copies sisu output files to remote
host using rsync. This requires that sisurc.yml has been provided with information
on hostname and username, and that you have your "keys" and ssh agent in
place. Note the behavior of rsync different if -R is used with other flags
from if used alone. Alone the rsync --delete parameter is sent, useful for
cleaning the remote directory (when -R is used together with other flags,
it is not). Also see -r
<p> </dd>

<dt><b>-r [filename/wildcard]</b> </dt>
<dd>copies sisu output files to
remote host using scp. This requires that sisurc.yml has been provided with
information on hostname and username, and that you have your "keys" and
ssh agent in place. Also see -R
<p> </dd>
</dl>

<h2><a name='sect105' href='#toc105'>27.2 Configuration</a></h2>

<p> <br>
[expand &nbsp;on &nbsp;the &nbsp;setting &nbsp;up &nbsp;of &nbsp;an &nbsp;ssh-agent &nbsp;/ &nbsp;keychain]
<p>
<h2><a name='sect106' href='#toc106'>28. Remote Servers</a></h2>
<br>

<p> <br>
As <b>SiSU</b> is generally operated using the command line, and works within
a Unix type environment, <b>SiSU</b> the program and all documents can just as
easily be on a remote server, to which you are logged on using a terminal,
and commands and operations would be pretty much the same as they would
be on your local machine.
<p>
<h2><a name='sect107' href='#toc107'>29. Quickstart - Getting Started Howto</a></h2>
<br>

<p>
<h2><a name='sect108' href='#toc108'>29.1 Installation</a></h2>

<p> <br>
Installation is currently most straightforward and tested on the <b>Debian</b>
platform, as there are packages for the installation of sisu and all requirements
for what it does.
<p>
<h2><a name='sect109' href='#toc109'>29.1.1 Debian Installation</a></h2>

<p> <br>
<b>SiSU</b> is available directly from the <b>Debian</b> Sid and testing archives (and
possibly Ubuntu), assuming your /etc/apt/sources.list is set accordingly:

<p> <br>
<pre>    aptitude update
    aptitude install sisu-complete
</pre>
<p> <br>
The following /etc/apt/sources.list setting permits the download of additional
markup samples:
<p> <br>
<pre>  #/etc/apt/sources.list

    deb http://ftp.fi.debian.org/debian/ unstable main non-free contrib

    deb-src http://ftp.fi.debian.org/debian/ unstable main non-free contrib

</pre>
<p> <br>
The aptitude commands become:
<p> <br>
<pre>    aptitude update

    aptitude install sisu-complete sisu-markup-samples
</pre>
<p> <br>
If there are newer versions of <b>SiSU</b> upstream of the <b>Debian</b> archives, they

<p>will be available by adding the following to your /etc/apt/sources.list

<p> <br>
<pre>  #/etc/apt/sources.list
    deb http://www.jus.uio.no/sisu/archive unstable main non-free
    deb-src http://www.jus.uio.no/sisu/archive unstable main non-free
</pre>
<p> <br>

<p>repeat the aptitude commands
<p> <br>
<pre>    aptitude update
    aptitude install sisu-complete sisu-markup-samples
</pre>
<p> <br>
Note however that it is not necessary to install sisu-complete if not all
components of sisu are to be used. Installing just the package sisu will
provide basic functionality.
<p>
<h2><a name='sect110' href='#toc110'>29.1.2 Rpm Installation</a></h2>

<p> <br>
RPMs are provided though untested, they are prepared by running alien against
the source package, and against the debs.
<p> <br>
They may be downloaded from:
<p> <br>
  &lt;<a href='http://www.jus.uio.no/sisu/SiSU/download.html#rpm'>http://www.jus.uio.no/sisu/SiSU/download.html#rpm</a>
&gt;<br>

<p> <br>
as root type:
<p> <br>
  rpm -i [rpm &nbsp;package &nbsp;name]<br>

<p>
<h2><a name='sect111' href='#toc111'>29.1.3 Installation from Source</a></h2>

<p> <br>
To install <b>SiSU</b> from source check information at:
<p> <br>
  &lt;<a href='http://www.jus.uio.no/sisu/SiSU/download.html#current'>http://www.jus.uio.no/sisu/SiSU/download.html#current</a>
&gt;<br>

<p> <br>
* download the source package
<p> <br>
* Unpack the source
<p> <br>
Two alternative modes of installation from source are provided, setup.rb
(by Minero Aoki) and a rant(by Stefan Lang) built install file, in either
case: the first steps are the same, download and unpack the source file:

<p> <br>
For basic use <b>SiSU</b> is only dependent on the programming language in which
it is written <b>Ruby,</b> and <b>SiSU</b> will be able to generate html, EPUB, various
XMLs, including ODF (and will also produce LaTeX). Dependencies required
for further actions, though it relies on the installation of additional
dependencies which the source tarball does not take care of, for things
like using a database (postgresql or sqlite)[^24] or converting LaTeX to
pdf.
<p> <br>

<p><b>setup.rb</b>
<p> <br>
This is a standard ruby installer, using setup.rb is a three step process.
In the root directory of the unpacked <b>SiSU</b> as root type:
<p> <br>
<pre>      ruby setup.rb config
      ruby setup.rb setup
      #[and &nbsp;as &nbsp;root:]
      ruby setup.rb install
</pre>
<p> <br>
further information on setup.rb is available from:
<p> <br>
  &lt;<a href='http://i.loveruby.net/en/projects/setup/'>http://i.loveruby.net/en/projects/setup/</a>
&gt;<br>

<p> <br>
  &lt;<a href='http://i.loveruby.net/en/projects/setup/doc/usage.html'>http://i.loveruby.net/en/projects/setup/doc/usage.html</a>
&gt;<br>

<p> <br>

<p><b>install</b>
<p> <br>
The "install" file provided is an installer prepared using "rant". In the
root directory of the unpacked <b>SiSU</b> as root type:
<p> <br>
  ruby install base<br>

<p> <br>
or for a more complete installation:
<p> <br>
  ruby install<br>

<p> <br>

<p>or
<p> <br>
  ruby install base<br>

<p> <br>
This makes use of Rant (by Stefan Lang) and the provided Rantfile. It has
been configured to do post installation setup setup configuration and generation
of first test file. Note however, that additional external package dependencies,
such as tetex-extra are not taken care of for you.
<p> <br>
Further information on "rant" is available from:
<p> <br>
  &lt;<a href='http://make.rubyforge.org/'>http://make.rubyforge.org/</a>
&gt;<br>

<p> <br>
  &lt;<a href='http://rubyforge.org/frs/?group_id=615'>http://rubyforge.org/frs/?group_id=615</a>
&gt;<br>

<p> <br>
For a list of alternative actions you may type:
<p> <br>
  ruby install help<br>

<p> <br>
  ruby install -T<br>

<p>
<h2><a name='sect112' href='#toc112'>29.2 Testing Sisu, Generating Output</a></h2>

<p> <br>
To check which version of sisu is installed:
<p> <br>

<p>sisu -v
<p> <br>
Depending on your mode of installation one or a number of markup sample
files may be found either in the directory:
<p> <br>

<p> <br>

<p>or
<p> <br>

<p> <br>
change directory to the appropriate one:
<p> <br>

<p>cd /usr/share/doc/sisu/markup-samples/samples
<p>
<h2><a name='sect113' href='#toc113'>29.2.1 Basic Text, Plaintext,
Html, Xml, Odf, Epub</a></h2>

<p> <br>
Having moved to the directory that contains the markup samples (see instructions
above if necessary), choose a file and run sisu against it
<p> <br>

<p>sisu -NhwoabxXyv free_as_in_freedom.rms_and_free_software.sam_williams.sst

<p> <br>
this will generate html including a concordance file, opendocument text
format, plaintext, XHTML and various forms of XML, and OpenDocument text

<p>
<h2><a name='sect114' href='#toc114'>29.2.2 LaTeX / Pdf</a></h2>

<p> <br>
Assuming a LaTeX engine such as tetex or texlive is installed with the
required modules (done automatically on selection of sisu-pdf in <b>Debian</b>
)
<p> <br>
Having moved to the directory that contains the markup samples (see instructions
above if necessary), choose a file and run sisu against it
<p> <br>

<p>sisu -pv free_as_in_freedom.rms_and_free_software.sam_williams.sst
<p> <br>

<p>sisu -3 free_as_in_freedom.rms_and_free_software.sam_williams.sst
<p> <br>
should generate most available output formats: html including a concordance
file, opendocument text format, plaintext, XHTML and various forms of XML,

<p>and OpenDocument text and pdf
<p>
<h2><a name='sect115' href='#toc115'>29.2.3 Relational Database - Postgresql, Sqlite</a></h2>

<p>
<br>
Relational databases need some setting up - you must have permission to
create the database and write to it when you run sisu.
<p> <br>

<p>Assuming you have the database installed and the requisite permissions

<p> <br>

<p>sisu --sqlite --recreate
<p> <br>

<p>sisu --sqlite -v --import free_as_in_freedom.rms_and_free_software.sam_williams.sst

<p> <br>

<p>sisu --pgsql --recreate
<p> <br>

<p>sisu --pgsql -v --import free_as_in_freedom.rms_and_free_software.sam_williams.sst

<p>
<h2><a name='sect116' href='#toc116'>29.3 Getting Help</a></h2>

<p>
<h2><a name='sect117' href='#toc117'>29.3.1 the Man Pages</a></h2>

<p> <br>
Type:
<p> <br>
  man sisu<br>

<p> <br>
The man pages are also available online, though not always kept as up to
date as within the package itself:
<p> <br>
* sisu.1 &lt;<a href='http://www.jus.uio.no/sisu/man/sisu.1.html'>http://www.jus.uio.no/sisu/man/sisu.1.html</a>
&gt; [^25]
<p> <br>
* sisu.8 &lt;<a href='http://www.jus.uio.no/sisu/man/sisu.8.html'>http://www.jus.uio.no/sisu/man/sisu.8.html</a>
&gt; [^26]
<p> <br>
* man directory &lt;<a href='http://www.jus.uio.no/sisu/man'>http://www.jus.uio.no/sisu/man</a>
&gt; [^27]
<p>
<h2><a name='sect118' href='#toc118'>29.3.2 Built in Help</a></h2>

<p> <br>

<p>sisu --help
<p> <br>

<p>sisu --help --env
<p> <br>

<p>sisu --help --commands
<p> <br>

<p>sisu --help --markup
<p>
<h2><a name='sect119' href='#toc119'>29.3.3 the Home Page</a></h2>

<p> <br>
&lt;<a href='http://www.sisudoc.org/'>http://www.sisudoc.org/</a>
&gt;
<p> <br>
&lt;<a href='http://www.jus.uio.no/sisu'>http://www.jus.uio.no/sisu</a>
&gt;
<p> <br>
&lt;<a href='http://www.jus.uio.no/sisu/SiSU'>http://www.jus.uio.no/sisu/SiSU</a>
&gt;
<p>
<h2><a name='sect120' href='#toc120'>29.4 Markup Samples</a></h2>

<p> <br>
A number of markup samples (along with output) are available off:
<p> <br>
&lt;<a href='http://www.jus.uio.no/sisu/SiSU/examples.html'>http://www.jus.uio.no/sisu/SiSU/examples.html</a>
&gt;
<p> <br>
Additional markup samples are packaged separately in the file:
<p> <br>
***
<p> <br>
On <b>Debian</b> they are available in non-free[^28] to include them it is necessary
to include non-free in your /etc/apt/source.list or obtain them from the
sisu home site.
<p>
<h2><a name='sect121' href='#toc121'>30. Editor Files, Syntax Highlighting</a></h2>
<br>

<p> <br>
The directory:
<p> <br>
  ./data/sisu/v2/conf/editor-syntax-etc/<br>

<p> <br>
  ./data/sisu/v3/conf/editor-syntax-etc/<br>

<p> <br>
  /usr/share/sisu/v2/conf/editor-syntax-etc<br>

<p> <br>
  /usr/share/sisu/v3/conf/editor-syntax-etc<br>

<p> <br>
contains rudimentary sisu syntax highlighting files for:
<p> <br>
* (g)vim &lt;<a href='http://www.vim.org'>http://www.vim.org</a>
&gt;
<p> <br>
  package: sisu-vim<br>

<p> <br>
status: largely done
<p> <br>
  there is a vim syntax highlighting and folds component<br>

<p> <br>
* gedit &lt;<a href='http://www.gnome.org/projects/gedit'>http://www.gnome.org/projects/gedit</a>
&gt;
<p> <br>
* gobby &lt;<a href='http://gobby.0x539.de/'>http://gobby.0x539.de/</a>
&gt;
<p> <br>
  file: sisu.lang<br>

<p> <br>
place in:
<p> <br>
  /usr/share/gtksourceview-1.0/language-specs<br>

<p> <br>

<p>or
<p> <br>
  ~/.gnome2/gtksourceview-1.0/language-specs<br>

<p> <br>
  status: very basic syntax highlighting<br>

<p> <br>
  comments: this editor features display line wrap and is used by Goby!<br>

<p> <br>
* nano &lt;<a href='http://www.nano-editor.org'>http://www.nano-editor.org</a>
&gt;
<p> <br>
  file: nanorc<br>

<p> <br>
save as:
<p> <br>
  ~/.nanorc<br>

<p> <br>
  status: basic syntax highlighting<br>

<p> <br>
  comments: assumes dark background; no display line-wrap; does line breaks<br>

<p> <br>
* diakonos (an editor written in ruby) &lt;<a href='http://purepistos.net/diakonos'>http://purepistos.net/diakonos</a>
&gt;
<p> <br>
file: diakonos.conf
<p> <br>
save as:
<p> <br>
  ~/.diakonos/diakonos.conf<br>

<p> <br>
includes:
<p> <br>
  status: basic syntax highlighting<br>

<p> <br>
comments: assumes dark background; no display line-wrap
<p> <br>
* kate &amp; kwrite &lt;<a href='http://kate.kde.org'>http://kate.kde.org</a>
&gt;
<p> <br>
  file: sisu.xml<br>

<p> <br>
  place in:<br>

<p> <br>
    /usr/share/apps/katepart/syntax<br>

<p> <br>
  or<br>

<p> <br>
    ~/.kde/share/apps/katepart/syntax<br>

<p> <br>
  [settings::configure &nbsp;kate::{highlighting,filetypes}]<br>

<p> <br>
  [tools::highlighting::{markup,scripts}:: &nbsp;.B &nbsp;SiSU &nbsp;]<br>

<p> <br>
* nedit &lt;<a href='http://www.nedit.org'>http://www.nedit.org</a>
&gt;
<p> <br>
  file: sisu_nedit.pats<br>

<p> <br>
  nedit -import sisu_nedit.pats<br>

<p> <br>
  status: a very clumsy first attempt [not &nbsp;really &nbsp;done]<br>

<p> <br>
  comments: this editor features display line wrap<br>

<p> <br>
* emacs &lt;<a href='http://www.gnu.org/software/emacs/emacs.html'>http://www.gnu.org/software/emacs/emacs.html</a>
&gt;
<p> <br>
  files: sisu-mode.el<br>

<p> <br>
  to file ~/.emacs add the following 2 lines:<br>

<p> <br>
    (add-to-list &rsquo;load-path<br>
     "/usr/share/sisu/v2/conf/editor-syntax-etc/emacs")<br>

<p> <br>
    (require &rsquo;sisu-mode.el)<br>

<p> <br>
  [not &nbsp;done &nbsp;/ &nbsp;not &nbsp;yet &nbsp;included]<br>

<p> <br>
* vim &amp; gvim &lt;<a href='http://www.vim.org'>http://www.vim.org</a>
&gt;
<p> <br>
  files:<br>

<p> <br>
  package is the most comprehensive sisu syntax highlighting and editor<br>
   environment provided to date (is for vim/ gvim, and is separate from
the<br>
   contents of this directory)<br>

<p> <br>
  status: this includes: syntax highlighting; vim folds; some error checking<br>

<p> <br>
  comments: this editor features display line wrap<br>

<p> <br>
NOTE:
<p> <br>
[ &nbsp;.B &nbsp;SiSU &nbsp;parses &nbsp;files &nbsp;with &nbsp;long &nbsp;lines &nbsp;or &nbsp;line &nbsp;breaks, &nbsp;display &nbsp;linewrap
&nbsp;(without &nbsp;line-breaks) &nbsp;is &nbsp;a &nbsp;convenient
<p>
<h2><a name='sect122' href='#toc122'>31. How Does Sisu Work?</a></h2>
<br>

<p> <br>
<b>SiSU</b> markup is fairly minimalistic, it consists of: a (largely optional)
document header, made up of information about the document (such as when
it was published, who authored it, and granting what rights) and any processing
instructions; and markup within the substantive text of the document, which
is related to document structure and typeface. <b>SiSU</b> must be able to discern
the structure of a document, (text headings and their levels in relation
to each other), either from information provided in the document header
or from markup within the text (or from a combination of both). Processing
is done against an abstraction of the document comprising of information
on the document&rsquo;s structure and its objects,[2] which the program serializes
(providing the object numbers) and which are assigned hash sum values based
on their content. This abstraction of information about document structure,
objects, (and hash sums), provides considerable flexibility in representing
documents different ways and for different purposes (e.g. search, document
layout, publishing, content certification, concordance etc.), and makes
it possible to take advantage of some of the strengths of established ways
of representing documents, (or indeed to create new ones).
<p>
<h2><a name='sect123' href='#toc123'>32. Summary of
Features</a></h2>
<br>

<p> <br>
* sparse/minimal markup (clean utf-8 source texts). Documents are prepared
in a single UTF-8 file using a minimalistic mnemonic syntax. Typical literature,
documents like "War and Peace" require almost no markup, and most of the
headers are optional.
<p> <br>
* markup is easily readable/parsable by the human eye, (basic markup is
simpler and more sparse than the most basic HTML), [this &nbsp;may &nbsp;also &nbsp;be &nbsp;converted
&nbsp;to &nbsp;XML &nbsp;representations &nbsp;of &nbsp;the &nbsp;same &nbsp;input/source &nbsp;document].
<p> <br>
* markup defines document structure (this may be done once in a header
pattern-match description, or for heading levels individually); basic text
attributes (bold, italics, underscore, strike-through etc.) as required;
and semantic information related to the document (header information, extended
beyond the Dublin core and easily further extended as required); the headers
may also contain processing instructions. <b>SiSU</b> markup is primarily an abstraction
of document structure and document metadata to permit taking advantage
of the basic strengths of existing alternative practical standard ways
of representing documents [be &nbsp;that &nbsp;paper &nbsp;publication, &nbsp;sql &nbsp;search &nbsp;etc.] (html,
epub, xml, odf, latex, pdf, sql)
<p> <br>
* for output produces reasonably elegant output of established industry
and institutionally accepted open standard formats.[3] takes advantage of
the different strengths of various standard formats for representing documents,
amongst the output formats currently supported are:
<p> <br>
  * html - both as a single scrollable text and a segmented document<br>

<p> <br>
  * xhtml<br>

<p> <br>
  * epub<br>

<p> <br>
  * XML - both in sax and dom style xml structures for further development
as<br>
   required<br>

<p> <br>
  * ODF - open document format, the iso standard for document storage<br>

<p> <br>
  * LaTeX - used to generate pdf<br>

<p> <br>
  * pdf (via LaTeX)<br>

<p> <br>
  * sql - population of an sql database, (at the same object level that
is used<br>
   to cite text within a document)<br>

<p> <br>
Also produces: concordance files; document content certificates (md5 or
sha256 digests of headings, paragraphs, images etc.) and html manifests
(and sitemaps of content). (b) takes advantage of the strengths implicit
in these very different output types, (e.g. PDFs produced using typesetting
of LaTeX, databases populated with documents at an individual object/paragraph
level, making possible granular search (and related possibilities))
<p> <br>
* ensuring content can be cited in a meaningful way regardless of selected
output format. Online publishing (and publishing in multiple document formats)
lacks a useful way of citing text internally within documents (important
to academics generally and to lawyers) as page numbers are meaningless
across browsers and formats. sisu seeks to provide a common way of pinpoint
the text within a document, (which can be utilized for citation and by
search engines). The outputs share a common numbering system that is meaningful
(to man and machine) across all digital outputs whether paper, screen,
or database oriented, (pdf, HTML, EPUB, xml, sqlite, postgresql), this
numbering system can be used to reference content.
<p> <br>
* Granular search within documents. SQL databases are populated at an object
level (roughly headings, paragraphs, verse, tables) and become searchable
with that degree of granularity, the output information provides the object/paragraph
numbers which are relevant across all generated outputs; it is also possible
to look at just the matching paragraphs of the documents in the database;
[output &nbsp;indexing &nbsp;also &nbsp;work &nbsp;well &nbsp;with &nbsp;search &nbsp;indexing tools &nbsp;like &nbsp;hyperestraier].

<p> <br>
* long term maintainability of document collections in a world of changing
formats, having a very sparsely marked-up source document base. there is
a considerable degree of future-proofing, output representations are "upgradeable",
and new document formats may be added. e.g. addition of odf (open document
text) module in 2006, epub in 2009 and in future html5 output sometime
in future, without modification of existing prepared texts
<p> <br>
* SQL search aside, documents are generated as required and static once
generated.
<p> <br>
* documents produced are static files, and may be batch processed, this
needs to be done only once but may be repeated for various reasons as desired
(updated content, addition of new output formats, updated technology document
presentations/representations)
<p> <br>
* document source (plaintext utf-8) if shared on the net may be used as

<p>input and processed locally to produce the different document outputs
<p>
<br>
* document source may be bundled together (automatically) with associated
documents (multiple language versions or master document with inclusions)
and images and sent as a zip file called a sisupod, if shared on the net

<p>these too may be processed locally to produce the desired document outputs

<p> <br>
* generated document outputs may automatically be posted to remote sites.

<p> <br>
* for basic document generation, the only software dependency is <b>Ruby</b> ,
and a few standard Unix tools (this covers plaintext, HTML, EPUB, XML,
ODF, LaTeX). To use a database you of course need that, and to convert the
LaTeX generated to pdf, a latex processor like tetex or texlive.
<p> <br>
* as a developers tool it is flexible and extensible
<p> <br>
Syntax highlighting for <b>SiSU</b> markup is available for a number of text editors.

<p> <br>
<b>SiSU</b> is less about document layout than about finding a way with little
markup to be able to construct an abstract representation of a document
that makes it possible to produce multiple representations of it which
may be rather different from each other and used for different purposes,
whether layout and publishing, or search of content
<p> <br>
i.e. to be able to take advantage from this minimal preparation starting
point of some of the strengths of rather different established ways of
representing documents for different purposes, whether for search (relational
database, or indexed flat files generated for that purpose whether of complete
documents, or say of files made up of objects), online viewing (e.g. html,
xml, pdf), or paper publication (e.g. pdf)...
<p> <br>
the solution arrived at is by extracting structural information about the
document (about headings within the document) and by tracking objects (which
are serialized and also given hash values) in the manner described. It makes
possible representations that are quite different from those offered at
present. For example objects could be saved individually and identified
by their hashes, with an index of how the objects relate to each other
to form a document.
<p>
<h2><a name='sect124' href='#toc124'>33. Help Sources</a></h2>
<br>

<p>
<h2><a name='sect125' href='#toc125'>33.1 Man Pages</a></h2>

<p> <br>
  man sisu<br>

<p> <br>
  man sisu-concordance<br>

<p> <br>
  man sisu-epub<br>

<p> <br>
  man sisu-git<br>

<p> <br>
  man sisu-harvest<br>

<p> <br>
  man sisu-html<br>

<p> <br>
  man sisu-odf<br>

<p> <br>
  man sisu-pdf<br>

<p> <br>
  man sisu-pg<br>

<p> <br>
  man sisu-po<br>

<p> <br>
  man sisu-sqlite<br>

<p> <br>
  man sisu-txt<br>

<p> <br>
  man 7 sisu_complete<br>

<p> <br>
  man 7 sisu_pdf<br>

<p> <br>
  man 7 sisu_postgresql<br>

<p> <br>
  man 7 sisu_sqlite<br>

<p> <br>
  man sisu_termsheet<br>

<p> <br>
  man sisu_webrick<br>

<p>
<h2><a name='sect126' href='#toc126'>33.2 Sisu Generated Output - Links to HTML</a></h2>

<p> <br>
Note <b>SiSU</b> documentation is prepared in <b>SiSU</b> and output is available in
multiple formats including amongst others html, pdf, odf and epub, which
may be also be accessed via the html pages[^29]
<p>
<h2><a name='sect127' href='#toc127'>33.2.1 Www.sisudoc.org</a></h2>

<p> <br>
&lt;<a href='http://sisudoc.org/sisu/sisu_manual/index.html'>http://sisudoc.org/sisu/sisu_manual/index.html</a>
&gt;
<p> <br>
  &lt;<a href='http://sisudoc.org/sisu/sisu_manual/index.html'>http://sisudoc.org/sisu/sisu_manual/index.html</a>
&gt;<br>

<p>
<h2><a name='sect128' href='#toc128'>33.3 Man2html</a></h2>

<p>
<h2><a name='sect129' href='#toc129'>33.3.1 Locally Installed</a></h2>

<p> <br>

<p>file:///usr/share/doc/sisu/html/sisu.1.html
<p> <br>
  file:///usr/share/doc/sisu/html/sisu.1.html<br>

<p> <br>
  /usr/share/doc/sisu/html/sisu_pdf.7.html<br>

<p> <br>
  /usr/share/doc/sisu/html/sisu_postgresql.7.html<br>

<p> <br>
  /usr/share/doc/sisu/html/sisu_sqlite.7.html<br>

<p> <br>
  /usr/share/doc/sisu/html/sisu_webrick.1.html<br>

<p>
<h2><a name='sect130' href='#toc130'>33.3.2 Www.jus.uio.no/Sisu</a></h2>

<p> <br>
&lt;<a href='http://www.jus.uio.no/sisu/man/sisu.1.html'>http://www.jus.uio.no/sisu/man/sisu.1.html</a>
&gt;
<p> <br>
  &lt;<a href='http://www.jus.uio.no/sisu/man/sisu.1.html'>http://www.jus.uio.no/sisu/man/sisu.1.html</a>
&gt;<br>

<p> <br>
  &lt;<a href='http://www.jus.uio.no/sisu/man/sisu_complete.7.html'>http://www.jus.uio.no/sisu/man/sisu_complete.7.html</a>
&gt;<br>

<p> <br>
  &lt;<a href='http://www.jus.uio.no/sisu/man/sisu_pdf.7.html'>http://www.jus.uio.no/sisu/man/sisu_pdf.7.html</a>
&gt;<br>

<p> <br>
  &lt;<a href='http://www.jus.uio.no/sisu/man/sisu_postgresql.7.html'>http://www.jus.uio.no/sisu/man/sisu_postgresql.7.html</a>
&gt;<br>

<p> <br>
  &lt;<a href='http://www.jus.uio.no/sisu/man/sisu_sqlite.7.html'>http://www.jus.uio.no/sisu/man/sisu_sqlite.7.html</a>
&gt;<br>

<p> <br>
  &lt;<a href='http://www.jus.uio.no/sisu/man/sisu_webrick.1.html'>http://www.jus.uio.no/sisu/man/sisu_webrick.1.html</a>
&gt;<br>

<p> 1. objects include: headings, paragraphs, verse, tables, images, but not
footnotes/endnotes which are numbered separately and tied to the object
from which they are referenced.
<p> <br>
2. i.e. the html, pdf, epub, odf outputs are each built individually and optimised
for that form of presentation, rather than for example the html being a
saved version of the odf, or the pdf being a saved version of the html.

<p> <br>
3. the different heading levels
<p> <br>
4. units of text, primarily paragraphs and headings, also any tables, poems,

<p>code-blocks
<p> <br>
5. Specification submitted by Adobe to ISO to become a full open ISO specification
&lt;<a href='http://www.linux-watch.com/news/NS7542722606.html'>http://www.linux-watch.com/news/NS7542722606.html</a>
&gt;
<p> <br>
6. ISO standard ISO/IEC 26300:2006
<p> <br>
7. An open standard format for e-books
<p> <br>
*1. square brackets
<p> <br>
*2. square brackets
<p> <br>
+1. square brackets
<p> <br>
8. &lt;<a href='http://www.jus.uio.no/sisu/man/'>http://www.jus.uio.no/sisu/man/</a>
&gt;
<p> <br>
9. &lt;<a href='http://www.jus.uio.no/sisu/man/sisu.1.html'>http://www.jus.uio.no/sisu/man/sisu.1.html</a>
&gt;
<p> <br>
10. From sometime after SiSU 0.58 it should be possible to describe SiSU
markup using SiSU, which though not an original design goal is useful.
<p>
<br>
11. files should be prepared using UTF-8 character encoding
<p> <br>
12. a footnote or endnote
<p> <br>
13. self contained endnote marker &amp; endnote in one
<p> <br>
* unnumbered asterisk footnote/endnote, insert multiple asterisks if required

<p> <br>
** another unnumbered asterisk footnote/endnote
<p> <br>
*3. editors notes, numbered asterisk footnote/endnote series
<p> <br>
+2. editors notes, numbered asterisk footnote/endnote series
<p> <br>
14 &lt;<a href='http://www.sisudoc.org/'>http://www.sisudoc.org/</a>
&gt;
<p> <br>
15. &lt;<a href='http://www.ruby-lang.org/en/'>http://www.ruby-lang.org/en/</a>
&gt;
<p> <br>
16. Table from the Wealth of Networks by Yochai Benkler &lt;<a href='http://www.jus.uio.no/sisu/the_wealth_of_networks.yochai_benkler'>http://www.jus.uio.no/sisu/the_wealth_of_networks.yochai_benkler</a>
&gt;

<p> <br>
17. .ssc (for composite) is under consideration but ._sst makes clear that
this is not a regular file to be worked on, and thus less likely that people
will have subsequent processing. It may be however that when the resulting
file is shared
<p> <br>
19. &lt;<a href='http://www.postgresql.org/'>http://www.postgresql.org/</a>
&gt; <br>
&lt;<a href='http://advocacy.postgresql.org/'>http://advocacy.postgresql.org/</a>
&gt; <br>
&lt;<a href='http://en.wikipedia.org/wiki/Postgresql'>http://en.wikipedia.org/wiki/Postgresql</a>
&gt; <br>
20. &lt;<a href='http://www.hwaci.com/sw/sqlite/'>http://www.hwaci.com/sw/sqlite/</a>
&gt; <br>
&lt;<a href='http://en.wikipedia.org/wiki/Sqlite'>http://en.wikipedia.org/wiki/Sqlite</a>
&gt; <br>
21. &lt;<a href='http://search.sisudoc.org'>http://search.sisudoc.org</a>
&gt;
<p> <br>
22. (which could be extended further with current back-end). As regards scaling
of the database, it is as scalable as the database (here Postgresql) and
hardware allow.
<p> <br>
23. of this feature when demonstrated to an IBM software innovations evaluator
in 2004 he said to paraphrase: this could be of interest to us. We have
large document management systems, you can search hundreds of thousands
of documents and we can tell you which documents meet your search criteria,
but there is no way we can tell you without opening each document where
within each your matches are found.
<p> <br>
24. There is nothing to stop MySQL support being added in future.
<p> <br>
25. &lt;<a href='http://www.jus.uio.no/sisu/man/sisu.1.html'>http://www.jus.uio.no/sisu/man/sisu.1.html</a>
&gt;
<p> <br>
26. &lt;<a href='http://www.jus.uio.no/sisu/man/sisu.8.html'>http://www.jus.uio.no/sisu/man/sisu.8.html</a>
&gt;
<p> <br>
27. &lt;<a href='http://www.jus.uio.no/sisu/man'>http://www.jus.uio.no/sisu/man</a>
&gt;
<p> <br>
28. the <b>Debian</b> Free Software guidelines require that everything distributed
within <b>Debian</b> can be changed - and the documents are authors&rsquo; works that
while freely distributable are not freely changeable.
<p> <br>
29. named index.html or more extensively through sisu_manifest.html <br>

<p>
<h2><a name='sect131' href='#toc131'>See Also</a></h2>
<br>
<a href='http:~/bin/man2html?sisu:1'><i>sisu</i>(1)</a>
, <br>
<a href='http:~/bin/man2html?sisu-epub:1'><i>sisu-epub</i>(1)</a>
, <br>
<a href='http:~/bin/man2html?sisu-harvest:1'><i>sisu-harvest</i>(1)</a>
, <br>
<a href='http:~/bin/man2html?sisu-html:1'><i>sisu-html</i>(1)</a>
, <br>
<a href='http:~/bin/man2html?sisu-odf:1'><i>sisu-odf</i>(1)</a>
, <br>
<a href='http:~/bin/man2html?sisu-pdf:1'><i>sisu-pdf</i>(1)</a>
, <br>
<a href='http:~/bin/man2html?sisu-pg:1'><i>sisu-pg</i>(1)</a>
, <br>
<a href='http:~/bin/man2html?sisu-sqlite:1'><i>sisu-sqlite</i>(1)</a>
, <br>
<a href='http:~/bin/man2html?sisu-txt:1'><i>sisu-txt</i>(1)</a>
. <br>
<a href='http:~/bin/man2html?sisu_vim:7'><i>sisu_vim</i>(7)</a>

<p>
<h2><a name='sect132' href='#toc132'>Homepage</a></h2>
<br>
More information about <b>SiSU</b> can be found at &lt;<a href='http://www.sisudoc.org/'><i>http://www.sisudoc.org/</i></a>
&gt; or &lt;<a href='http://www.jus.uio.no/sisu/'><i>http://www.jus.uio.no/sisu/</i></a>
&gt;.

<p>
<h2><a name='sect133' href='#toc133'>Author</a></h2>
<b>SiSU</b> is written by Ralph Amissah &lt;<i>ralph@amissah.com</i>&gt;. <p>

<hr><p>
<a name='toc'><b>Table of Contents</b></a><p>
<ul>
<li><a name='toc0' href='#sect0'>Name</a></li>
<li><a name='toc1' href='#sect1'>Synopsis</a></li>
<li><a name='toc2' href='#sect2'>Sisu - Manual,</a></li>
<li><a name='toc3' href='#sect3'>What is Sisu?</a></li>
<li><a name='toc4' href='#sect4'>1. Introduction - What is Sisu?</a></li>
<li><a name='toc5' href='#sect5'>2. Commands Summary</a></li>
<li><a name='toc6' href='#sect6'>2.1 Description</a></li>
<li><a name='toc7' href='#sect7'>2.2 Document Processing Command Flags</a></li>
<li><a name='toc8' href='#sect8'>3. Command Line Modifiers</a></li>
<li><a name='toc9' href='#sect9'>4. Database Commands</a></li>
<li><a name='toc10' href='#sect10'>5. Shortcuts, Shorthand for Multiple Flags</a></li>
<li><a name='toc11' href='#sect11'>5.1 Command Line with Flags - Batch Processing</a></li>
<li><a name='toc12' href='#sect12'>6. Help</a></li>
<li><a name='toc13' href='#sect13'>6.1 Sisu Manual</a></li>
<li><a name='toc14' href='#sect14'>6.2 Sisu Man Pages</a></li>
<li><a name='toc15' href='#sect15'>6.3 Sisu Built-in Interactive Help</a></li>
<li><a name='toc16' href='#sect16'>7. Introduction to Sisu Markup[^10]</a></li>
<li><a name='toc17' href='#sect17'>7.1 Summary</a></li>
<li><a name='toc18' href='#sect18'>7.2 Markup Examples</a></li>
<li><a name='toc19' href='#sect19'>7.2.1 Online</a></li>
<li><a name='toc20' href='#sect20'>7.2.2 Installed</a></li>
<li><a name='toc21' href='#sect21'>8. Markup of Headers</a></li>
<li><a name='toc22' href='#sect22'>8.1 Sample Header</a></li>
<li><a name='toc23' href='#sect23'>8.2 Available Headers</a></li>
<li><a name='toc24' href='#sect24'>9. Markup of Substantive Text</a></li>
<li><a name='toc25' href='#sect25'>9.1 Heading Levels</a></li>
<li><a name='toc26' href='#sect26'>9.2 Font Attributes</a></li>
<li><a name='toc27' href='#sect27'>9.3 Indentation and Bullets</a></li>
<li><a name='toc28' href='#sect28'>9.4 Footnotes / Endnotes</a></li>
<li><a name='toc29' href='#sect29'>9.5 Links</a></li>
<li><a name='toc30' href='#sect30'>9.5.1 Naked Urls Within Text, Dealing with Urls</a></li>
<li><a name='toc31' href='#sect31'>9.5.2 Linking Text</a></li>
<li><a name='toc32' href='#sect32'>9.5.3 Linking Images</a></li>
<li><a name='toc33' href='#sect33'>9.6 Grouped Text</a></li>
<li><a name='toc34' href='#sect34'>9.6.1 Tables</a></li>
<li><a name='toc35' href='#sect35'>9.6.2 Poem</a></li>
<li><a name='toc36' href='#sect36'>9.6.3 Group</a></li>
<li><a name='toc37' href='#sect37'>9.6.4 Code</a></li>
<li><a name='toc38' href='#sect38'>9.7 Additional Breaks - Linebreaks Within Objects, Column and Page-breaks</a></li>
<li><a name='toc39' href='#sect39'>9.7.1 Line-breaks</a></li>
<li><a name='toc40' href='#sect40'>9.7.2 Page Breaks</a></li>
<li><a name='toc41' href='#sect41'>9.8 Book Index</a></li>
<li><a name='toc42' href='#sect42'>10. Composite Documents Markup</a></li>
<li><a name='toc43' href='#sect43'>Markup Syntax History</a></li>
<li><a name='toc44' href='#sect44'>11. Notes Related to Files-types and Markup Syntax</a></li>
<li><a name='toc45' href='#sect45'>12. Sisu Filetypes</a></li>
<li><a name='toc46' href='#sect46'>12.1 .sst .ssm .ssi Marked Up Plain Text</a></li>
<li><a name='toc47' href='#sect47'>12.1.1 Sisu Text - Regular Files (.sst)</a></li>
<li><a name='toc48' href='#sect48'>12.1.2 Sisu Master Files (.ssm)</a></li>
<li><a name='toc49' href='#sect49'>12.1.3 Sisu Insert Files (.ssi)</a></li>
<li><a name='toc50' href='#sect50'>12.2 Sisupod, Zipped Binary Container (sisupod.zip, .ssp)</a></li>
<li><a name='toc51' href='#sect51'>13. Experimental Alternative Input Representations</a></li>
<li><a name='toc52' href='#sect52'>13.1 Alternative Xml</a></li>
<li><a name='toc53' href='#sect53'>13.1.1 Xml Sax Representation</a></li>
<li><a name='toc54' href='#sect54'>13.1.2 Xml Dom Representation</a></li>
<li><a name='toc55' href='#sect55'>13.1.3 Xml Node Representation</a></li>
<li><a name='toc56' href='#sect56'>14. Configuration</a></li>
<li><a name='toc57' href='#sect57'>14.1 Determining the Current Configuration</a></li>
<li><a name='toc58' href='#sect58'>14.2 Configuration Files (config.yml)</a></li>
<li><a name='toc59' href='#sect59'>15. Skins</a></li>
<li><a name='toc60' href='#sect60'>15.1 Document Skin</a></li>
<li><a name='toc61' href='#sect61'>15.2 Directory Skin</a></li>
<li><a name='toc62' href='#sect62'>15.3 Site Skin</a></li>
<li><a name='toc63' href='#sect63'>15.4 Sample Skins</a></li>
<li><a name='toc64' href='#sect64'>16. Css - Cascading Style Sheets (for Html, Xhtml and Xml)</a></li>
<li><a name='toc65' href='#sect65'>17. Organising Content</a></li>
<li><a name='toc66' href='#sect66'>17.1 Directory Structure and Mapping</a></li>
<li><a name='toc67' href='#sect67'>18. Homepages</a></li>
<li><a name='toc68' href='#sect68'>18.1 Home Page and Other Custom Built Pages in a Sub-directory</a></li>
<li><a name='toc69' href='#sect69'>18.2 Home Page Within a Skin</a></li>
<li><a name='toc70' href='#sect70'>19. Markup and Output Examples</a></li>
<li><a name='toc71' href='#sect71'>19.1 Markup Examples</a></li>
<li><a name='toc72' href='#sect72'>20. Sisu Search - Introduction</a></li>
<li><a name='toc73' href='#sect73'>21. Sql</a></li>
<li><a name='toc74' href='#sect74'>21.1 Populating Sql Type Databases</a></li>
<li><a name='toc75' href='#sect75'>22. Postgresql</a></li>
<li><a name='toc76' href='#sect76'>22.1 Name</a></li>
<li><a name='toc77' href='#sect77'>22.2 Description</a></li>
<li><a name='toc78' href='#sect78'>22.3 Synopsis</a></li>
<li><a name='toc79' href='#sect79'>22.4 Commands</a></li>
<li><a name='toc80' href='#sect80'>22.4.1 Create and Destroy Database</a></li>
<li><a name='toc81' href='#sect81'>22.4.2 Import and Remove Documents</a></li>
<li><a name='toc82' href='#sect82'>23. Sqlite</a></li>
<li><a name='toc83' href='#sect83'>23.1 Name</a></li>
<li><a name='toc84' href='#sect84'>23.2 Description</a></li>
<li><a name='toc85' href='#sect85'>23.3 Synopsis</a></li>
<li><a name='toc86' href='#sect86'>23.4 Commands</a></li>
<li><a name='toc87' href='#sect87'>23.4.1 Create and Destroy Database</a></li>
<li><a name='toc88' href='#sect88'>23.4.2 Import and Remove Documents</a></li>
<li><a name='toc89' href='#sect89'>24. Introduction</a></li>
<li><a name='toc90' href='#sect90'>24.1 Search - Database Frontend Sample, Utilising Database and Sisu Features,</a></li>
<li><a name='toc91' href='#sect91'>24.2 Search Form</a></li>
<li><a name='toc92' href='#sect92'>25. Sisu_webrick</a></li>
<li><a name='toc93' href='#sect93'>25.1 Name</a></li>
<li><a name='toc94' href='#sect94'>25.2 Synopsis</a></li>
<li><a name='toc95' href='#sect95'>25.3 Description</a></li>
<li><a name='toc96' href='#sect96'>25.4 Summary of Man Page</a></li>
<li><a name='toc97' href='#sect97'>25.5 Document Processing Command Flags</a></li>
<li><a name='toc98' href='#sect98'>25.6 Further Information</a></li>
<li><a name='toc99' href='#sect99'>25.7 Author</a></li>
<li><a name='toc100' href='#sect100'>25.8 See Also</a></li>
<li><a name='toc101' href='#sect101'>26. Remote Source Documents</a></li>
<li><a name='toc102' href='#sect102'>Remote Document Output</a></li>
<li><a name='toc103' href='#sect103'>27. Remote Output</a></li>
<li><a name='toc104' href='#sect104'>27.1 Commands</a></li>
<li><a name='toc105' href='#sect105'>27.2 Configuration</a></li>
<li><a name='toc106' href='#sect106'>28. Remote Servers</a></li>
<li><a name='toc107' href='#sect107'>29. Quickstart - Getting Started Howto</a></li>
<li><a name='toc108' href='#sect108'>29.1 Installation</a></li>
<li><a name='toc109' href='#sect109'>29.1.1 Debian Installation</a></li>
<li><a name='toc110' href='#sect110'>29.1.2 Rpm Installation</a></li>
<li><a name='toc111' href='#sect111'>29.1.3 Installation from Source</a></li>
<li><a name='toc112' href='#sect112'>29.2 Testing Sisu, Generating Output</a></li>
<li><a name='toc113' href='#sect113'>29.2.1 Basic Text, Plaintext, Html, Xml, Odf, Epub</a></li>
<li><a name='toc114' href='#sect114'>29.2.2 LaTeX / Pdf</a></li>
<li><a name='toc115' href='#sect115'>29.2.3 Relational Database - Postgresql, Sqlite</a></li>
<li><a name='toc116' href='#sect116'>29.3 Getting Help</a></li>
<li><a name='toc117' href='#sect117'>29.3.1 the Man Pages</a></li>
<li><a name='toc118' href='#sect118'>29.3.2 Built in Help</a></li>
<li><a name='toc119' href='#sect119'>29.3.3 the Home Page</a></li>
<li><a name='toc120' href='#sect120'>29.4 Markup Samples</a></li>
<li><a name='toc121' href='#sect121'>30. Editor Files, Syntax Highlighting</a></li>
<li><a name='toc122' href='#sect122'>31. How Does Sisu Work?</a></li>
<li><a name='toc123' href='#sect123'>32. Summary of Features</a></li>
<li><a name='toc124' href='#sect124'>33. Help Sources</a></li>
<li><a name='toc125' href='#sect125'>33.1 Man Pages</a></li>
<li><a name='toc126' href='#sect126'>33.2 Sisu Generated Output - Links to HTML</a></li>
<li><a name='toc127' href='#sect127'>33.2.1 Www.sisudoc.org</a></li>
<li><a name='toc128' href='#sect128'>33.3 Man2html</a></li>
<li><a name='toc129' href='#sect129'>33.3.1 Locally Installed</a></li>
<li><a name='toc130' href='#sect130'>33.3.2 Www.jus.uio.no/Sisu</a></li>
<li><a name='toc131' href='#sect131'>See Also</a></li>
<li><a name='toc132' href='#sect132'>Homepage</a></li>
<li><a name='toc133' href='#sect133'>Author</a></li>
</ul>
</body>
</html>