aboutsummaryrefslogtreecommitdiffhomepage
path: root/data/doc/manuals_generated/sisu_manual/sisu_introduction/doc.html
blob: 1f07883369afd37e55fc133883889e602afafc20 (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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
  <title>
    SiSU
  </title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />

  <meta name="dc.title" content="SiSU - Commands [0.58]" />
  <meta name="dc.creator" content="Ralph Amissah" />
  <meta name="dc.subject" content="ebook, epublishing, electronic book, electronic publishing, electronic document, electronic citation, data structure, citation systems, search" />
  <meta name="dc.publisher" content="SiSU http://www.jus.uio.no/sisu (this copy)" />
  <meta name="dc.date" content="2007-09-16" scheme="ISO-8601" />
  <meta name="dc.date.created" content="2002-08-28" scheme="ISO-8601" />
  <meta name="dc.date.issued" content="2002-08-28" scheme="ISO-8601" />
  <meta name="dc.date.available" content="2002-08-28" scheme="ISO-8601" />
  <meta name="dc.date.modified" content="2007-09-16" scheme="ISO-8601" />
  <meta name="dc.type" content="information" />
  <meta name="dc.identifier" content="http://www.jus.uio.no/sisu/sisu_manual/sisu_introduction/doc.html" />
  <meta name="dc.language" content="English" />
  <meta name="dc.rights" content="Copyright (C) Ralph Amissah 2007, part of SiSU documentation, License GPL 3" />

  <meta name="generator" content="SiSU 0.59.0 of 2007w38/0 (2007-09-23) (n*x and Ruby!)" />
    <link rel="generator" href="http://www.jus.uio.no/sisu" />
  <link rel="shortcut icon" href="../_sisu/image/rb7.ico" />

  <link rel="stylesheet" href="../_sisu/css/html.css" type="text/css" />
</head>

<body bgcolor="#ffffff" text="#000000" link="#003090" lang="en" xml:lang="en">

<a name="top" id="top"></a>
<a name="up" id="up"></a>
<a name="start" id="start"></a>

<div id="pane_major">

<table summary="table of contents scroll navigation band" id="toc" width="100%" bgcolor="#ffffff">
<tr><td width="20%">
  <table summary="band" border="0" cellpadding="3" cellspacing="0"><tr><td align="left" bgcolor="#ffffff"><a href="http://www.jus.uio.no/sisu/" target="_top"><img border="0" src="../_sisu/image_local/sisu.png" alt="SiSU --&gt;" /></a></td></tr>
</table>
</td><td align="center" width="60%">
  <table summary="toc segment and scroll with pdf" border="0" cellpadding="3" cellspacing="0">
<tr>
  <td align="center" bgcolor="#ffffff">
    <font face="verdana, arial, georgia, tahoma, sans-serif, helvetica, times, roman" size="2">
    <img border="0" height="15" width="15" src="../_sisu/image/b_doc.png" alt="Full Text" />&nbsp;&nbsp;scroll&nbsp;
  </font> 
</td>

  <td align="center" bgcolor="#99CC66">
  <a href="toc.html" target="_top" >
      <font face="verdana, arial, georgia, tahoma, sans-serif, helvetica, times, roman" size="2">
    <img border="0" height="18" width="15" src="../_sisu/image/b_toc.png" alt="TOC linked" />&nbsp;&nbsp;toc&nbsp;
  </font> 
  </a>
</td>

<td align="center" bgcolor="#ffffff">
  <a href="portrait.pdf" target="_top" >
      <font face="verdana, arial, georgia, tahoma, sans-serif, helvetica, times, roman" size="2">
    <img border="0" height="18" width="15" src="../_sisu/image/b_pdf.png" alt="PDF portrait" />
    &nbsp;&nbsp;pdf&nbsp;
  </font> 
  </a>
</td>
<td align="center" bgcolor="#ffffff">
  <a href="landscape.pdf" target="_top" >
      <font face="verdana, arial, georgia, tahoma, sans-serif, helvetica, times, roman" size="2">
    <img border="0" height="15" width="18" src="../_sisu/image/b_pdf.png" alt="PDF landscape" />
    &nbsp;&nbsp;pdf&nbsp;
  </font> 
  </a>
</td>

<td align="center" bgcolor="#ffffff">
  <a href="opendocument.odt" target="_top" >
      <font face="verdana, arial, georgia, tahoma, sans-serif, helvetica, times, roman" size="2">
    <img border="0" height="18" width="18" src="../_sisu/image/b_odf.png" alt="ODF/ODT" />&nbsp;&nbsp;odt&nbsp;
  </font> 
  </a>
</td>
  <td align="center" bgcolor="#ffffff">
    <a href="concordance.html" target="_top" >
        <font face="verdana, arial, georgia, tahoma, sans-serif, helvetica, times, roman" size="2">
    &nbsp;&nbsp;A-Z&nbsp;
  </font> 
    </a>
  </td>
  <td align="center" bgcolor="#ffffff">
  <a href="sisu_manifest.html" target="_top" >
      <font face="verdana, arial, georgia, tahoma, sans-serif, helvetica, times, roman" size="2">
    <img border="0" height="15" width="15" src="../_sisu/image/b_info.png" alt="Document Manifest" />&nbsp;
  </font> 
  </a>
</td>
  
  <td align="center" bgcolor="#ffffff">
  <a href="../index.html" target="_top">
  <img src="../_sisu/image/b_home.png" alt="@" border="0" /></a>
</td>

</tr></table>
</td>

<td width="20%">
  &nbsp;
</td></tr>
</table>
<p />

<center>

</center>
<table summary="scroll instrument cover band" width="100%" border="0" cellpadding="8" bgcolor="#ffffff" align="center">
<tr><td align="center">

<p class="centerbold">SiSU
</p>

<p class="centerbold">Commands [0.58]
</p>

<p class="centerbold">Ralph Amissah
</p>

<font size="2" face="verdana, arial, georgia, tahoma, sans-serif, helvetica, times, roman">copy @
  <a href="http://www.jus.uio.no/sisu/" >
    SiSU
  </a></h1>

</td></tr>
</table>

<div id="horizontal_links">
  <ul id="horizontal">
  <li class="refbold">
    <a href="http://www.jus.uio.no/sisu/" >
      &nbsp;SiSU
    </a>
  </li>
  <li class="ref">
     Quick Ref.:
  </li>
  <li class="ref">
    <a href="sisu_manifest.html" alt="Document Manifest" target="_top">
      Manifest
    </a>
  </li>

<li class="doc">
    <a href="http://www.jus.uio.no/sisu/sisu_manual/" target="_top">
      SiSU Manual
    </a>
  </li>

<li class="doc">
    <a href="http://www.jus.uio.no/sisu/SiSU/2.html" target="_top">
      Book Samples and Markup Examples
    </a>
  </li>

<li class="doc">
    <a href="http://en.wikipedia.org/wiki/SiSU" target="_top">
      SiSU @ Wikipedia
    </a>
  </li>

<li class="doc">
    <a href="http://freshmeat.net/projects/sisu/" target="_top">
      SiSU @ Freshmeat
    </a>
  </li>

<li class="doc">
    <a href="http://raa.ruby-lang.org/project/sisu/" target="_top">
      SiSU @ Ruby Application Archive
    </a>
  </li>

<li class="doc">
    <a href="http://packages.qa.debian.org/s/sisu.html" target="_top">
      SiSU @ Debian
    </a>
  </li>

<li class="doc">
    <a href="http://www.jus.uio.no/sisu/SiSU/download.html" target="_top">
      SiSU Download
    </a>
  </li>

<li class="doc">
    <a href="http://www.jus.uio.no/sisu/SiSU/changelog.html" target="_top">
      SiSU Changelog
    </a>
  </li>

<li class="doc">
    <a href="http://www.jus.uio.no/sisu/sisu_manual/sisu_help/" target="_top">
      SiSU help
    </a>
  </li>

<li class="doc">
    <a href="http://www.jus.uio.no/sisu/sisu_manual/sisu_help_sources/" target="_top">
      SiSU help sources
    </a>
  </li>

<li class="refbold">
    <a href="http://www.jus.uio.no/sisu" alt="SiSU electronic documents" target="_top">
      SiSU electronic documents
    </a>
  </li>
  <li class="ref">
    <a href="http://www.jus.uio.no/sisu" alt="SiSU electronic documents" target="_top">
      www.jus.uio.no/sisu
    </a>
  </li>
  </ul>
</div>

<p class="left">Copyright <sup>&copy;</sup>&nbsp; Ralph Amissah 2007, part of SiSU documentation, License GPL 3</p>
<p />

<br />

<h1 class="toc">
    <b><a href="#1"> SiSU - Commands [0.58],<br /> Ralph Amissah </a></b>
  </h1>

<h2 class="toc">
    <a href="#2"> What is SiSU? </a>
  </h2>

<h3 class="toc">
    <a href="#3"> Description </a>
  </h3>

<h4 class="toc">
    <a href="#4"> 1. Introduction - What is SiSU? <a name="1"></a> </a>
  </h4>

<h4 class="toc">
    <a href="#17"> 2. How does sisu work? <a name="2"></a> </a>
  </h4>

<h4 class="toc">
    <a href="#19"> 3. Summary of features <a name="3"></a> </a>
  </h4>

<h4 class="toc">
    
  </h4>

<h1 class="toc">
    <b><a href="#docinfo"> Document Information (metadata) </a></b>
  </h1>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <h1 class="norm" id="o1"><a name="1" />
    
    SiSU - Commands [0.58],<br /> Ralph Amissah 
  </h1>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;1
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <h2 class="norm" id="o2"><a name="2" />
    
    What is SiSU? 
  </h2>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;2
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <h3 class="norm" id="o3"><a name="3" />
    <a name="h?" id="h?"></a>
    Description 
  </h3>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;3
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <h4 class="norm" id="o4"><a name="4" />
    <a name="sisu_intro" id="sisu_intro"></a>
    1. Introduction - What is SiSU? <a name="1"></a> 
  </h4>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;4
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <p class="norm" id="o5"><a name="5" />
    <b>SiSU</b> is a system for document markup, publishing (in multiple open standard formats) and search 
  </p>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;5
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <p class="norm" id="o6"><a name="6" />
    <b>SiSU</b>&nbsp;<a name="-1" href="#_1">&nbsp;<sup>1</sup>&nbsp;</a>  is a&nbsp;<a name="-2" href="#_2">&nbsp;<sup>2</sup>&nbsp;</a>  framework for document structuring, publishing 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 that (can) share a common numbering system for the citation of text within a document. 
  </p>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;6
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <p class="norm" id="o7"><a name="7" />
    <b>SiSU</b> is developed under an open source, software libre license (GPL3). It has been developed in the context of coping with large document sets with evolving markup related technologies, for which you want multiple output formats, a common mechanism for cross-output-format citation, and search. 
  </p>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;7
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <p class="norm" id="o8"><a name="8" />
    <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'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, 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. Results of objects (primarily paragraphs and headings) can be viewed directly in the database, or just the object numbers shown - your search criteria is met in these documents and at these locations within each document. 
  </p>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;8
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <p class="norm" id="o9"><a name="9" />
    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 various standard open output formats including plain text, HTML, XHTML, XML, OpenDocument, LaTeX or PDF files, and populate an SQL database with objects&nbsp;<a name="-3" href="#_3">&nbsp;<sup>3</sup>&nbsp;</a>  (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>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;9
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <p class="norm" id="o10"><a name="10" />
    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&nbsp;<a name="-4" href="#_4">&nbsp;<sup>4</sup>&nbsp;</a>  the different forms of output requested. 
  </p>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;10
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <p class="norm" id="o11"><a name="11" />
    <b>SiSU</b> works with an abstraction of the document based on its structure which is comprised of its frame&nbsp;<a name="-5" href="#_5">&nbsp;<sup>5</sup>&nbsp;</a>  and the objects&nbsp;<a name="-6" href="#_6">&nbsp;<sup>6</sup>&nbsp;</a>  it contains, 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 base for citing material within a document across the different output format types. This is significant as page numbers are not suited to the digital age, in web publishing, changing a browser's default font or using a different browser means that text appears on different pages; and in publishing in different formats, html, landscape and portrait pdf etc. again page numbers are of no use to cite text in a manner that is relevant against the different output types. Dealing with documents at an object level together with object numbering also has implications for search. 
  </p>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;11
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <p class="norm" id="o12"><a name="12" />
    One of the challenges of maintaining documents is to keep them in a format that would allow users to use them without depending on a proprietary software popular at the time. Consider the ease of 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 outputing documents in multiple non-proprietary open formats including html, pdf&nbsp;<a name="-7" href="#_7">&nbsp;<sup>7</sup>&nbsp;</a>  and the ISO standard ODF.&nbsp;<a name="-8" href="#_8">&nbsp;<sup>8</sup>&nbsp;</a>  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), and 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>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;12
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <p class="norm" id="o13"><a name="13" />
    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>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;13
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <p class="norm" id="o14"><a name="14" />
    <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 the commercial law thesaurus by Vikki Rogers and Al Krtizer, together with the flexibility of <b>SiSU</b> offers great possibilities. 
  </p>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;14
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <p class="norm" id="o15"><a name="15" />
    <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>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;15
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <p class="norm" id="o16"><a name="16" />
    &lt;<a href="http://www.jus.uio.no/sisu" target="_top">http://www.jus.uio.no/sisu</a>&gt; 
  </p>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;16
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <h4 class="norm" id="o17"><a name="17" />
    <a name="sisu_how" id="sisu_how"></a>
    2. How does sisu work? <a name="2"></a> 
  </h4>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;17
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <p class="norm" id="o18"><a name="18" />
    <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'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>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;18
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <h4 class="norm" id="o19"><a name="19" />
    <a name="sisu_feature_summary" id="sisu_feature_summary"></a>
    3. Summary of features <a name="3"></a> 
  </h4>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;19
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <li class="bullet" id="o20"><a name="20" />
    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. 
  </li>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;20
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <li class="bullet" id="o21"><a name="21" />
    markup is easily readable/parsable by the human eye, (basic markup is simpler and more sparse than the most basic HTML), [this may also be converted to XML representations of the same input/source document]. 
  </li>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;21
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <li class="bullet" id="o22"><a name="22" />
    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 that browser viewing, paper publication, sql search etc.] (html, xml, odf, latex, pdf, sql) 
  </li>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;22
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <li class="bullet" id="o23"><a name="23" />
    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: 
  </li>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;23
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <li class="i1" id="o24"><a name="24" />
    html - both as a single scrollable text and a segmented document 
  </li>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;24
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <li class="i1" id="o25"><a name="25" />
    xhtml 
  </li>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;25
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <li class="i1" id="o26"><a name="26" />
    XML - both in sax and dom style xml structures for further development as required 
  </li>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;26
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <li class="i1" id="o27"><a name="27" />
    ODF - open document format, the iso standard for document storage 
  </li>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;27
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <li class="i1" id="o28"><a name="28" />
    LaTeX - used to generate pdf 
  </li>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;28
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <li class="i1" id="o29"><a name="29" />
    pdf (via LaTeX) 
  </li>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;29
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <li class="i1" id="o30"><a name="30" />
    sql - population of an sql database, (at the same object level that is used to cite text within a document) 
  </li>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;30
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <p class="norm" id="o31"><a name="31" />
    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>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;31
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <li class="bullet" id="o32"><a name="32" />
    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, xml, sqlite, postgresql), this numbering system can be used to reference content. 
  </li>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;32
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <li class="bullet" id="o33"><a name="33" />
    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 indexing also work well with search indexing tools like hyperestraier]. 
  </li>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;33
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <li class="bullet" id="o34"><a name="34" />
    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 and in future html5 output sometime in future, without modification of existing prepared texts 
  </li>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;34
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <li class="bullet" id="o35"><a name="35" />
    SQL search aside, documents are generated as required and static once generated. 
  </li>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;35
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <li class="bullet" id="o36"><a name="36" />
    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) 
  </li>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;36
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <li class="bullet" id="o37"><a name="37" />
    document source (plaintext utf-8) if shared on the net may be used as input and processed locally to produce the different document outputs 
  </li>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;37
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <li class="bullet" id="o38"><a name="38" />
    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 these too may be processed locally to produce the desired document outputs 
  </li>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;38
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <li class="bullet" id="o39"><a name="39" />
    generated document outputs may automatically be posted to remote sites. 
  </li>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;39
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <li class="bullet" id="o40"><a name="40" />
    for basic document generation, the only software dependency is <b>Ruby</b>, and a few standard Unix tools (this covers plaintext, HTML, 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. 
  </li>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;40
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <li class="bullet" id="o41"><a name="41" />
    as a developers tool it is flexible and extensible 
  </li>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;41
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <p class="norm" id="o42"><a name="42" />
    Syntax highlighting for <b>SiSU</b> markup is available for a number of text editors. 
  </p>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;42
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <p class="norm" id="o43"><a name="43" />
    <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>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;43
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <p class="norm" id="o44"><a name="44" />
    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>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;44
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <p class="norm" id="o45"><a name="45" />
    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>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;45
  </p>
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <h4 class="norm" id="o0"><a name="0" />
    <a name="endnotes" id="endnotes"></a>
    Endnotes  
  </h4>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;0
  </p>
</td></tr>
</table>

<table summary="" width="94%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td width="1%" align="right">
</td><td valign="top" align="justify">
  <p class="normal">
  <a name="endnotes" id="endnotes"><hr></a>
</p> </td><td width="4%" align="right" valign="top">
  &nbsp;
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <p class="endnote">
     <a name="_1" href="#-1">&nbsp;<sup>1.</sup></a> "<b>SiSU</b> information Structuring Universe" or "Structured information, Serialized Units".<br /> also chosen for the meaning of the Finnish term "sisu". 
  </p>
</td>
<td width="2%" align="right" valign="top">  
  &nbsp;
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <p class="endnote">
     <a name="_2" href="#-2">&nbsp;<sup>2.</sup></a> Unix command line oriented 
  </p>
</td>
<td width="2%" align="right" valign="top">  
  &nbsp;
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <p class="endnote">
     <a name="_3" href="#-3">&nbsp;<sup>3.</sup></a> 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>
</td>
<td width="2%" align="right" valign="top">  
  &nbsp;
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <p class="endnote">
     <a name="_4" href="#-4">&nbsp;<sup>4.</sup></a> i.e. the html, pdf, 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>
</td>
<td width="2%" align="right" valign="top">  
  &nbsp;
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <p class="endnote">
     <a name="_5" href="#-5">&nbsp;<sup>5.</sup></a> the different heading levels 
  </p>
</td>
<td width="2%" align="right" valign="top">  
  &nbsp;
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <p class="endnote">
     <a name="_6" href="#-6">&nbsp;<sup>6.</sup></a> units of text, primarily paragraphs and headings, also any tables, poems, code-blocks 
  </p>
</td>
<td width="2%" align="right" valign="top">  
  &nbsp;
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <p class="endnote">
     <a name="_7" href="#-7">&nbsp;<sup>7.</sup></a> Specification submitted by Adobe to ISO to become a full open ISO specification <br /> &lt;<a href="http://www.linux-watch.com/news/NS7542722606.html" target="_top">http://www.linux-watch.com/news/NS7542722606.html</a>&gt; 
  </p>
</td>
<td width="2%" align="right" valign="top">  
  &nbsp;
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <p class="endnote">
     <a name="_8" href="#-8">&nbsp;<sup>8.</sup></a> ISO/IEC 26300:2006 
  </p>
</td>
<td width="2%" align="right" valign="top">  
  &nbsp;
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
  <h1 class="norm" id="o0"><a name="0" />
    
    Document Information (metadata)<a name="docinfo"></a> 
  </h1>
</td>
<td width="2%" align="right" valign="top">  
    <p class="ocn">
    &nbsp;&nbsp;0
  </p>
</td></tr>
</table>

<p class="bold">
    <a name="metadata"></a> Metadata<a name="metadata"></a> 
  </p>
</td>
<td width="2%" align="right" valign="top">  
  &nbsp;&nbsp;&nbsp;
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
<p class="normal">
   &lt;<a href="http://www.jus.uio.no/sisu/sisu_manual/sisu_introduction/sisu_manifest.html" target="_top">http://www.jus.uio.no/sisu/sisu_manual/sisu_introduction/sisu_manifest.html</a>&gt;  
</p> </td><td width="4%" align="right" valign="top">
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
<p class="normal">
  <b>Dublin Core</b> (DC)  
</p> </td><td width="4%" align="right" valign="top">
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
<p class="normal">
  <i>DC tags included with this document are provided here.</i>  
</p> </td><td width="4%" align="right" valign="top">
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
<p class="normal">
  DC Title: <u>SiSU - Commands [0.58]</u>  
</p> </td><td width="4%" align="right" valign="top">
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
<p class="normal">
  DC Creator: <u>Ralph Amissah</u>  
</p> </td><td width="4%" align="right" valign="top">
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
<p class="normal">
  DC Rights: <u>Copyright (C) Ralph Amissah 2007, part of SiSU documentation, License GPL 3</u>  
</p> </td><td width="4%" align="right" valign="top">
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
<p class="normal">
  DC Type: <u>information</u>  
</p> </td><td width="4%" align="right" valign="top">
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
<p class="normal">
  DC Date created: <u>2002-08-28</u>  
</p> </td><td width="4%" align="right" valign="top">
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
<p class="normal">
  DC Date issued: <u>2002-08-28</u>  
</p> </td><td width="4%" align="right" valign="top">
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
<p class="normal">
  DC Date available: <u>2002-08-28</u>  
</p> </td><td width="4%" align="right" valign="top">
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
<p class="normal">
  DC Date modified: <u>2007-09-16</u>  
</p> </td><td width="4%" align="right" valign="top">
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
<p class="normal">
  DC Date: <u>2007-09-16</u>  
</p> </td><td width="4%" align="right" valign="top">
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
<p class="normal">
  <b>Version Information</b>  
</p> </td><td width="4%" align="right" valign="top">
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
<p class="normal">
  Sourcefile: <u>sisu_introduction.sst</u>  
</p> </td><td width="4%" align="right" valign="top">
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
<p class="normal">
  Filetype: <u>SiSU text 0.58</u>  
</p> </td><td width="4%" align="right" valign="top">
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
<p class="normal">
  Sourcefile Digest, MD5(sisu_introduction.sst)= <u>b2a6da5bd22fa1eaa92a08d81f11d1c7</u>  
</p> </td><td width="4%" align="right" valign="top">
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
<p class="normal">
  Skin_Digest: MD5(/home/ralph/grotto/theatre/dbld/sisu-dev/sisu/data/doc/sisu/sisu_markup_samples/sisu_manual/_sisu/skin/doc/skin_sisu_manual.rb)= <u>20fc43cf3eb6590bc3399a1aef65c5a9</u>  
</p> </td><td width="4%" align="right" valign="top">
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
<p class="normal">
  <b>Generated</b>  
</p> </td><td width="4%" align="right" valign="top">
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
<p class="normal">
  Document (metaverse) last generated: <u>Sun Sep 23 04:10:58 +0100 2007</u>  
</p> </td><td width="4%" align="right" valign="top">
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
<p class="normal">
  Generated by: <u>SiSU</u> <u>0.59.0</u> of 2007w38/0 (2007-09-23)  
</p> </td><td width="4%" align="right" valign="top">
</td></tr>
</table>

<table summary="normal text css" width="100%" border="0" bgcolor="white" cellpadding="2" align="center">
<tr><td valign="top" align="justify"> 
<p class="normal">
  Ruby version: <u> ruby 1.8.6 (2007-06-07 patchlevel 36) [i486-linux]</u>  
</p> </td><td width="4%" align="right" valign="top">
</td></tr>
</table>

<table summary="table of contents scroll navigation band" id="toc" width="100%" bgcolor="#ffffff">
<tr><td width="20%">
  <table summary="band" border="0" cellpadding="3" cellspacing="0"><tr><td align="left" bgcolor="#ffffff"><a href="http://www.jus.uio.no/sisu/" target="_top"><img border="0" src="../_sisu/image_local/sisu.png" alt="SiSU --&gt;" /></a></td></tr>
</table>
</td><td align="center" width="60%">
  <table summary="toc segment and scroll with pdf" border="0" cellpadding="3" cellspacing="0">
<tr>
  <td align="center" bgcolor="#ffffff">
    <font face="verdana, arial, georgia, tahoma, sans-serif, helvetica, times, roman" size="2">
    <img border="0" height="15" width="15" src="../_sisu/image/b_doc.png" alt="Full Text" />&nbsp;&nbsp;scroll&nbsp;
  </font> 
</td>

  <td align="center" bgcolor="#99CC66">
  <a href="toc.html" target="_top" >
      <font face="verdana, arial, georgia, tahoma, sans-serif, helvetica, times, roman" size="2">
    <img border="0" height="18" width="15" src="../_sisu/image/b_toc.png" alt="TOC linked" />&nbsp;&nbsp;toc&nbsp;
  </font> 
  </a>
</td>

<td align="center" bgcolor="#ffffff">
  <a href="portrait.pdf" target="_top" >
      <font face="verdana, arial, georgia, tahoma, sans-serif, helvetica, times, roman" size="2">
    <img border="0" height="18" width="15" src="../_sisu/image/b_pdf.png" alt="PDF portrait" />
    &nbsp;&nbsp;pdf&nbsp;
  </font> 
  </a>
</td>
<td align="center" bgcolor="#ffffff">
  <a href="landscape.pdf" target="_top" >
      <font face="verdana, arial, georgia, tahoma, sans-serif, helvetica, times, roman" size="2">
    <img border="0" height="15" width="18" src="../_sisu/image/b_pdf.png" alt="PDF landscape" />
    &nbsp;&nbsp;pdf&nbsp;
  </font> 
  </a>
</td>

<td align="center" bgcolor="#ffffff">
  <a href="opendocument.odt" target="_top" >
      <font face="verdana, arial, georgia, tahoma, sans-serif, helvetica, times, roman" size="2">
    <img border="0" height="18" width="18" src="../_sisu/image/b_odf.png" alt="ODF/ODT" />&nbsp;&nbsp;odt&nbsp;
  </font> 
  </a>
</td>
  <td align="center" bgcolor="#ffffff">
    <a href="concordance.html" target="_top" >
        <font face="verdana, arial, georgia, tahoma, sans-serif, helvetica, times, roman" size="2">
    &nbsp;&nbsp;A-Z&nbsp;
  </font> 
    </a>
  </td>
  <td align="center" bgcolor="#ffffff">
  <a href="sisu_manifest.html" target="_top" >
      <font face="verdana, arial, georgia, tahoma, sans-serif, helvetica, times, roman" size="2">
    <img border="0" height="15" width="15" src="../_sisu/image/b_info.png" alt="Document Manifest" />&nbsp;
  </font> 
  </a>
</td>
  
  <td align="center" bgcolor="#ffffff">
  <a href="../index.html" target="_top">
  <img src="../_sisu/image/b_home.png" alt="@" border="0" /></a>
</td>

</tr></table>
</td>

<td width="20%">
  &nbsp;
</td></tr>
</table>
<p />

<table summary="SiSU summary" bgcolor="#ffffff" cellpadding="4" border="0">

<tr><td>
  <!-- widget sisu -->
<tr><td valign="top" width="10%">
  <p class="tiny_left"><font color="#666666" size="2">
    <a href="http://www.jus.uio.no/sisu" >
      <img border="0" src="../_sisu/image/sisu.png" alt="SiSU" width="120" height="39" />
    </a>
  </font></p>
</td><td valign="top" width="45%">
<!-- SiSU Rights -->
  <p class="tiny_left"><font color="#666666" size="2">
    Output generated by
    <a href="http://www.jus.uio.no/sisu" >
      SiSU
    </a>
    0.59.0 2007-09-23 (2007w38/0)
    <br />
    <a href="http://www.jus.uio.no/sisu" >
      <b>SiSU</b>
    </a>
    Copyright <sup>&copy;</sup> Ralph Amissah
    1997, current  2007.
    All Rights Reserved.
    <br />
    <a href="http://www.jus.uio.no/sisu" >
      SiSU
    </a>
    is software for document structuring, publishing and search,
    <br />
    <a href="http://www.jus.uio.no/sisu" >
      www.jus.uio.no/sisu
    </a>
    and
    <a href="http://www.sisudoc.org" >
      www.sisudoc.org
    </a>
  <br />
    <i>w3 since October 3 1993</i>
    <a href="mailto://ralph@amissah.com" >
      ralph@amissah.com
    </a>
  </font></p>
</td><td valign="top" width="45%">
  <p class="tiny_left"><font color="#666666" size="2">
    SiSU using:
    <br />Standard SiSU markup syntax,
    <br />Standard SiSU meta-markup syntax, and the
    <br />Standard SiSU <u>object citation numbering</u> and system, (object/text positioning system)
  <br />
    Copyright <sup>&copy;</sup> Ralph Amissah 1997, current 2007.
    All Rights Reserved.
  </font></p>
</td></tr>

  <!-- widget way better -->
<tr><td valign="top" width="10%">
  <p class="tiny_left"><font color="#666666" size="2">
    <a href="http://www.gnu.org/licenses/gpl.html">
      <img border="0" src="../_sisu/image/gplv3_free_software.png" alt="GPLv3" width="127" height="51" />
    </a>
  </font></p>
</td><td valign="top" width="45%">
  <p class="tiny_left"><font color="#666666" size="2">
    <a href="http://www.jus.uio.no/sisu" >
      SiSU
    </a>
    is released under
    <a href="http://www.gnu.org/licenses/gpl.html">GPLv3</a>
    or later,
    &lt;<a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a>&gt;
  </font></p>
</td><td valign="top" width="45%">
  <p class="tiny_left"><font color="#666666" size="2">
    SiSU, developed using
    <a href="http://www.ruby-lang.org/en/">
      Ruby
    </a>
    on
    <a href="http://www.debian.org/">
      Debian/Gnu/Linux
    </a>
    software infrastructure,
    with the usual GPL (or OSS) suspects.
  <br />
    Better - "performance, reliability, scalability, security &amp; total cost of ownership"
    [not to mention flexibility &amp; choice] use of and adherence to open standards (where practical and fair) and it is software libre.
  <br />
    Get With the Future
    <a href="http://www.jus.uio.no/sisu/">
      Way Better!
    </a>
  </font></p>
</td></tr>

</table>
<a name="bottom" id="bottom"></a>
<a name="down" id="down"></a>
<a name="end" id="end"></a>
<a name="finish" id="finish"></a>
<a name="stop" id="stop"></a>
<a name="credits"></a>

</div>

<div id="pane_minor">
<br /><!-- SiSU Search -->

<a name="search"></a>
<form method="get" action="http://search.sisudoc.org" target="_top">
<font size="2">
<input type="text" name="s1" size="24" maxlength="255" />
<br />
<input type="hidden" name="db" value="SiSU_sisu" />
<input type="hidden" name="ltd" value="1000" />
<input type="hidden" name="off" value="0" />
<input type="radio" name="view" value="index" checked="checked" /> idx
<input type="radio" name="view" value="text" /> txt
<input type="submit" name="ignore" value="search" />
<input type="checkbox" name="fns" value="sisu_introduction" />
</font></form>
<br />
<!-- SiSU Search -->
<br />
<p class="pane">
<a href="../sisu_manual/toc.html">

<b>SiSU manual</b>

</a></p>




<p class="pane_link"><a href="../sisu_introduction/toc.html">SiSU introduction</a></p>
<p class="pane_link"><a href="../sisu_commands/toc.html">SiSU commands</a></p>
<p class="pane_link"><a href="../sisu_markup/toc.html">SiSU markup</a></p>
<p class="pane_link"><a href="../sisu_configuration/toc.html">SiSU configuration</a></p>
<p class="pane_link"><a href="../sisu_help/toc.html">SiSU help</a></p>
<p class="pane_link"><a href="../sisu_help_sources/toc.html">SiSU help sources</a></p>

<br />
<p class="pane">
<a href="../index.html">

<b>SiSU</b>

</a></p>




<p class="pane_link"><a href="../SiSU/1.html#summary">What does SiSU do? Summary</a></p>
<p class="pane_link"><a href="../SiSU/2.html">SiSU Book Samples and Markup Examples</a></p>
<p class="pane_link"><a href="../sisu_markup/">Markup</a></p>
<p class="pane_link"><a href="../sisu_commands/">Commands</a></p>
<p class="pane_link"><a href="../sisu_manual/">Manual</a></p>
<p class="pane_link"><a href="../SiSU/download.html">SiSU Download</a></p>
<p class="pane_link"><a href="../SiSU/changelog.html">SiSU Changelog</a></p>
<p class="pane_link"><a href="http://en.wikipedia.org/wiki/SiSU">Wikipedia entry</a></p>
<p class="pane_link"><a href="http://freshmeat.net/projects/sisu/">Freshmeat</a></p>
<p class="pane_link"><a href="http://raa.ruby-lang.org/project/sisu/">Ruby Application Archive</a></p>


</div>

</body>
</html>