WD-XSLReq-19980511
36.1 KB
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html lang="en">
<HEAD>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<TITLE>XSL Requirements Summary</TITLE>
<META NAME="CREATOR" CONTENT="Modular DocBook HTML Stylesheet version 1.08beta6">
<META NAME="form" CONTENT="html">
<link rel="stylesheet" href="/TR/1998/style/XSL-default.css" type="text/css">
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<div class="navbar" align="center">
<p align="right"><a href="http://www.w3.org/"><img
src="/Icons/WWW/w3c_home" alt="W3C" align="left" border="0"
hspace="0"></a> WD-XSLReq-19980511<br clear="all"></p>
<H1><A NAME="AEN1">XSL Requirements Summary</A></H1>
</div>
<div>
<center><strong>W3C Working Draft <i>11-May-1998</i></strong></center>
<dl>
<dt>This version:
<dd><a href="http://www.w3.org/TR/1998/WD-XSLReq-19980511">
http://www.w3.org/TR/1998/WD-XSLReq-19980511</a>
<dt>Latest version:
<dd><a href="http://www.w3.org/TR/WD-XSLReq">
http://www.w3.org/TR/WD-XSLReq</a>
<dt>Previous (Member only) version:
<dd><a href="http://www.w3.org/Style/XSL/Group/XSLReq-19980324">
http://www.w3.org/Style/XSL/Group/XSLReq-19980324</a>
</dl>
</div>
<div>
<dl>
<dt>Editor:
<dd>Norman Walsh <<a href="mailto:nwalsh@arbortext.com">nwalsh@arbortext.com</a>>
</dl>
</div>
<div class="status">
<h2>Status of this document</h2>
<P>This work is part of the <A
HREF='http://www.w3.org/Style/Activity'>W3C Style Activity</A>. For
information about XSL, see <A HREF='http://www.w3.org/Style/XSL/'>
http://www.w3.org/Style/XSL</A>.
<P>This is a W3C Working Draft for review by W3C members and other
interested parties. It is a draft document and may be updated,
replaced, or obsoleted by other documents at any time. It is
inappropriate to use W3C Working Drafts as reference material or to
cite them as other than "work in progress". A list of current W3C
working drafts can be found at <A HREF='http://www.w3.org/TR'>
http://www.w3.org/TR</A>.</P>
</div>
<p><hr>
<DIV CLASS="TOC">
<H3>Table of Contents</h3>
<dl>
<DT><A HREF="#AEN56">General Formatting Issues</A></DT>
<DT><A HREF="#AEN204">Columns, Floats, Keeps, etc.</A></DT>
<DT><A HREF="#AEN239">Fonts</A></DT>
<DT><A HREF="#AEN270">Color</A></DT>
<DT><A HREF="#AEN305">Math</A></DT>
<DT><A HREF="#AEN316">Internationalization</A></DT>
<DT><A HREF="#AEN741">Scripting</A></DT>
<DT><A HREF="#AEN780">Interactivity</A></DT>
<DT><A HREF="#AEN799">Accessibility</A></DT>
<DT><A HREF="#AEN810">Extensibility</A></DT>
<DT><A HREF="#AEN821">Packaging</A></DT>
<DT><A HREF="#AEN840">Meta-information</A></DT>
</DL>
</DIV>
<P>This document gives a list of requirements we consider to be in scope
for XSL in general with no reference to timing or target version. This document
makes no statement about what specific requirements will be addressed in any
particular Working Draft or version of XSL.</P>
<P>In accordance with good language design practice, the full set of requirements
are presented so that, at every step in the design process, design choices
are made taking the full set of requirements into account, rather than just
a subset of those requirements currently being met. It is the XSL WG's expectation
that initial drafts/versions of XSL will address only a subset of these requirements.</P>
<P>When reviewing these requirements, keep in mind that XSL is required
to perform equally well in batch and interactive environments. These environments
run from purely batch formatting at one end of the spectrum, through interactive
browser environments, up to structured editors where XSL is used to guide
the online presentation of an XML instance while it is being modified.</P>
<P>It must be noted that this list represents a list of requirements which
it must be possible to express in XSL. It is not our intent to suggest that
every XSL processor must support <I CLASS="EMPHASIS">every</I> feature described
here (although processors should handle requirements they cannot satisfy in
some more-or-less graceful way).</P>
<P>Within each section, requirements are listed alphabetically, not in
any priority order.</P>
<HR>
<H1><A NAME="AEN56">General Formatting Issues</A></H1>
<P></P>
<DL>
<DT class="req">Absolute/relative positioning, Layering, and
Transparency</DT>
<DD>
<P>Ability to specify absolute/relative positioning of areas on the presentation
medium and/or with respect to each other, incuding specification of Z-order
for overlapping areas and handling of transparency.</P>
</DD>
<DT class="req">Alignment of scripts and baseline shifts</DT>
<DD>
<P>Support for automatic alignment of text from multiple scripts with different
alignment rules. Ability to handle sub- and super-scripts.</P>
</DD>
<DT class="req">Animation</DT>
<DD>
<P>Support for identifying and including encapsulated, animated objects.</P>
</DD>
<DT class="req">Callouts</DT>
<DD>
<P>Linking hotspots to items in the flow of text. Another aspect would
be manipulating presentation of text within a CGM graphic.</P>
</DD>
<DT class="req">Copyfitting</DT>
<DD>
<P>Ability to specify parameters that can be adjusted to make text fit
in a specified area.</P>
</DD>
<DT class="req">Cropping and Scaling of Images</DT>
<DD>
<P>Support for specification of cropping and scaling of images (and related
issues such as bleeds).</P>
</DD>
<DT class="req">Cross-references</DT>
<DD>
<P>Support for/handling of the issues related to cross–references.
For example, page numbers and auto-numbering, document wide variables (release,
version, etc.), explicit textual cross–references, etc.</P>
</DD>
<DT class="req">Dictionary-style headers</DT>
<DD>
<P>Support for headers or footers whose content changes depending on the
placement of page breaks (in print media). For example, in an English dictionary,
the page header generally contains the first and last words defined on that
page.</P>
</DD>
<DT class="req">Drop/raised cap</DT>
<DD>
<P>Support for drop and raised caps.</P>
</DD>
<DT class="req">Formatting changes at non-tag boundaries</DT>
<DD>
<P>Ability to change formatting at arbitrary places in the source document.</P>
</DD>
<DT class="req">Hanging punctuation</DT>
<DD>
<P>Support for punctuation that hangs outside the right or left text margin.
In English writing, hanging punctuation would place commas and periods at
the ends of lines in a paragraph just past the right-most text margin, for
example.</P>
</DD>
<DT class="req">Headers/footers</DT>
<DD>
<P>Basic running headers and footers (changing on chapter boundaries, page
numbers, etc.)</P>
</DD>
<DT class="req">Hyphenation</DT>
<DD>
<P>Ability to specify hyphenation information.</P>
</DD>
<DT class="req">Hyperlink addressing</DT>
<DD>
<P>Ability to specify presentation characteristics of link ends defined
by XLink elements.</P>
</DD>
<DT class="req">Indents (start/end and right/left)</DT>
<DD>
<P>Specification of starting and ending indents on the display medium.
In English writing, the left margin is the start margin and the right margin
is the end margin.</P>
</DD>
<DT class="req">Indexes</DT>
<DD>
<P>Issues related to indexing: sorting, collating, coalescing. See also
cross references. (Easy things should be easy.)</P>
</DD>
<DT class="req">Inline (horizontal) keeps</DT>
<DD>
<P>Ability to specify that certain inline markup cannot be broken across
lines. Issues: interaction with justification and non-breakable spaces.</P>
</DD>
<DT class="req">Justification/Word and Letter Spacing</DT>
<DD>
<P>Justification/spacing policy controls as per DSSSL.</P>
</DD>
<DT class="req">Kerning (pair, track, ...)</DT>
<DD>
<P>Support for some/all of the following: ability to enable/disable font
kerning metrics, specify font kerning overrides, specify track kerning, automated
pair kerning, manual kerning, etc.</P>
</DD>
<DT class="req">Leading</DT>
<DD>
<P>Automatic leading and manual control. Relates to ability to address
elements below the tag boundary (lead <I CLASS="EMPHASIS">this line</I> more
or less tightly).</P>
</DD>
<DT class="req">Lists</DT>
<DD>
<P>Support for easy construction of a wide variety of types of lists. (Easy
things should be easy)</P>
</DD>
<DT class="req">Marginalia</DT>
<DD>
<P>Side-notes, margin illustrations, etc.</P>
</DD>
<DT class="req">Margins</DT>
<DD>
<P>Ability to specify margins. Harmonization of DSSSL/CSS models.</P>
</DD>
<DT class="req">Non-rectangular Areas</DT>
<DD>
<P>Ability to format text in/around non-rectangular areas.</P>
</DD>
<DT class="req">Page dynamics</DT>
<DD>
<P>Support for specification of designs across different aspect ratios,
form and media factors using a single stylesheet.</P>
</DD>
<DT class="req">Para breaks</DT>
<DD>
<P>Explicit control over paragraph breaking. (e.g., Suspend and resume
a paragraph around an embedded object?)</P>
</DD>
<DT class="req">Persistent headers/footers w/scrolling body</DT>
<DD>
<P>Ability to specify headers and/or footers that should be fixed at the
borders of a scrolling text area. This would provide the functionality most
commonly achieved with frames in HTML browsers today.</P>
</DD>
<DT class="req">Predictability</DT>
<DD>
<P>Page fidelity is neither a requirement nor a goal. Presented with the
same document and the same stylesheet, a given renderer should always produce
the same results. Different renderers should produce similar results.</P>
</DD>
<DT class="req">Rule corners/boxes/borders</DT>
<DD>
<P>Ability to specify square, rounded, and other end-of-rule treatments
on rules. Ability to specify the treatment of box corners and border edges.</P>
</DD>
<DT class="req">Run-arounds</DT>
<DD>
<P>Flowing text around rectangular areas.</P>
</DD>
<DT class="req">Sorting/Collating/Data processing</DT>
<DD>
<P>Support for sorting and collating data (for example in index entries,
but more generally wherever it is required for proper presentation). Support
for other sorts of data-processing functions may be required as well.</P>
</DD>
<DT class="req">Support for Structured Data</DT>
<DD>
<P>XSL will be called upon to process data which is more highly structured,
and differently structured, than traditional text documents (for example,
calendars, schedules, stock prices, etc.). XSL must provide sufficient functionality
to adequately style such documents.</P>
</DD>
<DT class="req">Tables</DT>
<DD>
<P>Support for the table models of CSS and DSSSL. Ability to easily format
popular source table models such as HTML and CALS.</P>
</DD>
<DT class="req">Tables of Contents</DT>
<DD>
<P>Support for construction of ToCs and other document views. (Easy things
should be easy).</P>
</DD>
<DT class="req">Text and images (bitmap/vector)</DT>
<DD>
<P>Handle scaling issues.</P>
</DD>
<DT class="req">Tiling</DT>
<DD>
<P>Background repeat of graphic background.</P>
</DD>
</DL>
<HR>
<H1><A NAME="AEN204">Columns, Floats, Keeps, etc.</A></H1>
<P></P>
<DL>
<DT class="req">Column balancing</DT>
<DD>
<P>Ability to specify that columns should be balanced on paged media.</P>
</DD>
<DT class="req">Floats</DT>
<DD>
<P>Support for vertical floats, including the ability to control position
(top, middle, bottom) and to specify the constraints on how far a float may
move from the point of origin.</P>
</DD>
<DT class="req">Footnotes (single/multi column)</DT>
<DD>
<P>Support for footnotes in multicolumn text is non-trivial. Ability to
specify footnote area, footnote placement, and treatment of very long footnotes.</P>
</DD>
<DT class="req">Multiple columns (equal width)</DT>
<DD>
<P>Support for multiple columns of equal width (with equal width gutters).</P>
</DD>
<DT class="req">Multiple columns (mixed width)</DT>
<DD>
<P>Support for multiple columns of unequal width (or gutters of unequal
width).</P>
</DD>
<DT class="req">Side-by-side columns</DT>
<DD>
<P>Ability to specify multiple columns where the flow is side-by-side rather
than top to bottom. (To align original text and translated text, for example).</P>
</DD>
<DT class="req">Vertical keeps</DT>
<DD>
<P>Ability to specify vertical keeps (regions or distances within which
a page and/or column break may not occur).</P>
</DD>
<DT class="req">Widow/orphan control</DT>
<DD>
<P>Ability to specify handling of widows and orphans.</P>
</DD>
</DL>
<HR>
<H1><A NAME="AEN239">Fonts</A></H1>
<P></P>
<DL>
<DT class="req">Ability to capture a character outline</DT>
<DD>
<P>Capturing a character outline would allow text to flow around the actual
shape of a glyph.</P>
</DD>
<DT class="req">Character selection and substitutions (glyph
selections, ligatures, small style, etc.)</DT>
<DD>
<P>Ability to specify and/or select individual glyphs or ligatures, fonts
and font substitutions, and font styles.</P>
</DD>
<DT class="req">Dynamic font downloading (web fonts, performance
of dynamic fonts)</DT>
<DD>
<P>Support for high-speed font access (construction of fonts on-the-fly,
fast substitutions, etc.).</P>
</DD>
<DT class="req">Font selection identification and related
full font substitution services</DT>
<DD>
<P>Support for a comprehensive set of font selection and substitution parameters.</P>
</DD>
<DT class="req">Interrogate font metrics/Calculate longest line</DT>
<DD>
<P>Ability to determine character and/or string lengths. Support for text
formatting that is contingent on line length (for example, make the first
line of a paragraph small caps).</P>
</DD>
<DT class="req">Text along a curve (move to a formatter issue)</DT>
<DD>
<P>Ability to format text along the path of a bezier (or other type of)
curve.</P>
</DD>
<DT class="req">Units of measurement</DT>
<DD>
<P>Specification of both absolute and relative units of measurement (pts,
picas, inches; ems, ens, exes, etc.)</P>
</DD>
</DL>
<HR>
<H1><A NAME="AEN270">Color</A></H1>
<P></P>
<DL>
<DT class="req">Colors Specification</DT>
<DD>
<P></P>
<UL><LI>
<P>Allow color to be created/specified in any ICC standardized
color space.</P>
</LI><LI>
<P>Carry the originating color space's ICC profile with the content.</P>
</LI><LI>
<P>Do not attempt to interject color transforms other than source
device to CIE and CIE to target device. Any attempts at color correction/tuning
should be done in an authoring (image modification) application in the source
color space or by conversion to the authoring (image modification) application's
color space. This is because people rarely do simple entire-image transforms,
these transforms can be lossy (or introduce rounding errors), and simple transforms
can run into gamut limitations.</P>
</LI><LI>
<P>Do not require all image editing to go through CIE or sRGB
if it is not necessary. Again, due to a gamut and transform limitations and
rounding issues.</P>
</LI><LI>
<P>CIE/RGB to CMYK or to Hexachrome, etc. involves non-linear
conversions and personal preferences.</P>
</LI><LI>
<P>At present, in CSS it is not possible to define a color space.
There is only one, defined to be sRGB.</P>
</LI><LI>
<P>When mechanically translating from/to a CSS stylesheet, appropriate
translations must be performed.</P>
</LI><LI>
<P>No colors in an XSL stylesheet may occur in an undefined colorspace.</P>
</LI></UL></DD>
<DT class="req">Fills/Shading/Vignettes</DT>
<DD>
<P>Ability to specify fills and shading (specification of color and gradients
in flood, linear, circular, etc. fills).</P>
</DD>
<DT class="req">Masks</DT>
<DD>
<P>Support for masks (e.g., fill all of a specified area except for the
area defined by a second parameter or image)..</P>
</DD>
<DT class="req">Opacity/Transparency</DT>
<DD>
<P>Support for layers with varying degrees of transparency.</P>
</DD>
</DL>
<HR>
<H1><A NAME="AEN305">Math</A></H1>
<P></P>
<DL>
<DT class="req">DSSSL 12.6.26</DT>
<DD>
<P>Support for math is expected to come initially from the math operators
defined in section 12.6.26 of the DSSSL Standard.</P>
</DD>
<DT class="req">MathML</DT>
<DD>
<P>Support for MathML is anticipated.</P>
</DD>
</DL>
<HR>
<H1><A NAME="AEN316">Internationalization</A></H1>
<P>Internationalization involves issues of character/glyph sets, line-breaking/hyphenation/justification,
and layout issues that go well beyond the basic western typography considerations
of most applications.</P>
<P>In most languages there is a significant range between the level of
formatting/typography needed for business documents and basic markets vs.
the level required for advertising and commercial publishing. Web usage produces
an interesting blend, as it doesn't require the full typographic capability
needed for print advertising, yet requires much of the design and layout capability.</P>
<P>Date and numbering systems seem to vary by country and by language.
Digit and value representations are described in unicode. Date handling is
not.</P>
<P>Major language groups are listed with no particular order:
<P></P>
<DL>
<DT class="req">Western European and related languages</DT>
<DD>
<P>This language group includes most North & South American, African
business, Latin, and western European languages.</P>
<P></P>
<UL><LI>
<P>Basic western line-breaking and justification strategy.</P>
<P>The basic controls for justification include the ability to set:
<P></P>
<UL><LI>
<P>Enable/disable justification using variable word space</P>
</LI><LI>
<P>Enable/disable letterspacing</P>
</LI><LI>
<P>Enable/disable kerning</P>
</LI><LI>
<P>Baseline shift and superior/inferior presets</P>
</LI><LI>
<P>Paragraph-level leading (line-spacing) control</P>
</LI></UL>
</LI><LI>
<P>High-end western justification strategy</P>
<P>The high-end controls for justification extends the basic set to include
the ability to set:
<P></P>
<UL><LI>
<P>Min/opt/max word space</P>
</LI><LI>
<P>Enable/disable + min/opt/max letterspace</P>
</LI><LI>
<P>Enable/disable kerning</P>
<P></P>
<UL><LI>
<P>Select kerning technique and technique-specific controls</P>
</LI></UL></LI><LI>
<P>Constraints on last line of paragraph:
<P></P>
<UL><LI>
<P>Do not hyphenate last line in column</P>
</LI><LI>
<P>Do not hyphenate last word before continuation (jump)</P>
</LI><LI>
<P>Do not hyphenate last word in paragraph</P>
</LI><LI>
<P>Min acceptable last line length</P>
</LI><LI>
<P>Force justify last line if within given distance of full.</P>
</LI></UL>
</LI><LI>
<P>Hung punctuation and/or optical margin alignment controls.</P>
</LI><LI>
<P>Roman (upright) / italic and italic/roman boundary spacing.</P>
</LI><LI>
<P>Dropped/raised caps (initial string and/or final string)</P>
</LI><LI>
<P>Baseline shift and superior/inferior presets</P>
</LI><LI>
<P>Ligature, composite accent, and auto-fraction substitutions</P>
</LI><LI>
<P>String-level leading control</P>
<P></P>
<UL><LI>
<P>Control of leading in terms of percent-of-size</P>
</LI><LI>
<P>Control of leading in terms of extra-lead</P>
</LI><LI>
<P>Control of leading in terms of baseline-to-baseline-distance</P>
</LI><LI>
<P>Control on above-baseline leading on first line of column/area</P>
</LI><LI>
<P>Control on below-baseline leading on last line of column/area</P>
</LI></UL></LI><LI>
<P>Language-specific ligature substitution</P>
</LI><LI>
<P>Alternate justification strategies</P>
<P>These line-breaking and justification strategies have controls in addition
to or other than those listed above.
<P></P>
<UL><LI>
<P>Head fit</P>
<P>May override above controls with a wider adjustment range. In addition
may allow character squeeze/stretch (setwidth adjustment or anamorphic scale)</P>
</LI><LI>
<P>Vertical headlining</P>
<P>Vertically set labels and headlines (Top-to-bottom character progression,
left-to-right line progression)</P>
</LI><LI>
<P>Balanced line</P>
<P>This strategy is used for headlines and for labels in shapes (such as
flowchart symbols).</P>
</LI><LI>
<P>Weighted/preferred break strategies</P>
<P>Used for topic headings in Yellow Pages and similar documents.</P>
</LI><LI>
<P>Special strategies for TOC</P>
<P>Some TOCs have highly-tuned and unique line breaking and balancing rules
the do not fit into any of the above models.</P>
</LI></UL>
</LI><LI>
<P>Hyphenation issues</P>
<P></P>
<UL><LI>
<P>Ability to enable and disable hyphenation</P>
</LI><LI>
<P>Ability to support multiple languages (rule or dictionary
package). Other controls related to each hyphenation package:
<P></P>
<UL><LI>
<P>Min chars before first hyphen</P>
</LI><LI>
<P>Min chars after last hyphen</P>
</LI><LI>
<P>Min word to hyphenate.</P>
</LI></UL>
</LI><LI>
<P>Ability to support multiple override dictionaries (by language).
Search order (precedence) among override dictionaries, by language.</P>
</LI><LI>
<P>Ability to control precedence of hyphenation
<P></P>
<UL><LI>
<P>Hyphenate on hard hyphen</P>
</LI><LI>
<P>Hyphenate on user-entered soft-hyphen</P>
</LI><LI>
<P>Hyphenate on dictionary/rule package hyphen, for each dictionary/rule
package, honor:
<P></P>
<UL><LI>
<P>Only preferred hyphens</P>
</LI><LI>
<P>Secondary hyphens</P>
</LI><LI>
<P>Any hyphens</P>
</LI></UL>
</LI><LI>
<P>Honor dictionary/rule hyphens in words with hard hyphen</P>
</LI><LI>
<P>Honor dictionary/rule hyphens in word with soft hyphen</P>
</LI><LI>
<P>Honor hard hyphens in word with soft hyphen</P>
</LI><LI>
<P>Disable rule hyphen if word is found in dictionary.</P>
</LI></UL>
</LI><LI>
<P>Northern European languages (German, Dutch, Swedish, Norwegian,
Danish, etc.) respell words when breaks/hyphens are inserted.</P>
</LI><LI>
<P>Language dependent ligature splitting when necessary for hyphenation.</P>
</LI></UL></LI><LI>
<P>Date and time formats</P>
<P></P>
<UL><LI>
<P>Month names vary by country</P>
</LI><LI>
<P>DD/MM/YY (Europe), MM/DD/YY (US)</P>
</LI><LI>
<P>12-hour vs. 24-hour clock</P>
</LI><LI>
<P>Daylight savings time usage varies</P>
</LI></UL></LI><LI>
<P>Numbering Systems (No known special issues here)</P>
</LI></UL>
</LI></UL></DD>
<DT class="req">Japanese</DT>
<DD>
<P></P>
<UL><LI>
<P>JIS-4051 (1996) line-breaking and justification strategy This
justification strategy has different controls from those of western text,
though the western controls may be used for proportional western within predominantly
Japanese documents.</P>
<P>Justification properties:
<P></P>
<UL><LI>
<P>Use full-width vs. half-width Kana</P>
</LI><LI>
<P>Use full-width, half-width, or proportional western</P>
</LI><LI>
<P>Enable/disable Tsume (proportional Kanji & Kana)</P>
</LI><LI>
<P>Use conditional half-width punctuation to provide justification</P>
</LI><LI>
<P>Settings for min/opt/max J-J Spacing</P>
<P>This is the value used for the 1/2 and 1/4 spaces inserted under the
JIS-4051 rules for specified pairs of Japanese character classes. (0/0/0
disables this feature, min=opt=max allows the space but does not adjust it
for justification, min<opt<max allows this spacing to contribute to
justification)</P>
</LI><LI>
<P>Settings for min/opt/max J-/W-boundary Spacing</P>
<P>This is the value used for the spaces inserted under the JIS-4051 rules
for boundaries where there is a Japanese-to-western or western-to-Japanese
language transition..</P>
</LI><LI>
<P>Settings for min/opt/max Japanese Letterspacing</P>
</LI><LI>
<P>All western-language controls from above are provided for
western text in Japanese documents, however the settings/values may be different
than they would be in western-language documents.</P>
</LI><LI>
<P>Baseline/centerline adjustment when mixing western and Japanese
text on same line.</P>
</LI></UL>
</LI><LI>
<P>Composition features that are unique to Asian languages</P>
<P></P>
<UL><LI>
<P>Character/glyph substitutions for different versions of JIS-____</P>
</LI><LI>
<P>Vertical text (Top-to-Bottom character progression, with
Right-to-Left line progression)
<P></P>
<UL><LI>
<P>Baseline/centerline adjustment when mixing western and Japanese
text on same line.</P>
</LI><LI>
<P>Glyph and baseline rotation for western text in Japanese vertical
text</P>
</LI><LI>
<P>Glyph substitution of vertical form glyph (parens and punct
have H & V forms).</P>
</LI></UL>
</LI><LI>
<P>Rubi (glyph annotation)
<P></P>
<UL><LI>
<P>Controls on Rubi: [TBD]</P>
</LI></UL>
</LI><LI>
<P>Warichu (multi-line comment, inline)
<P></P>
<UL><LI>
<P>Controls on Warichu: [TBD]</P>
</LI></UL>
</LI><LI>
<P>Furiwaki (inline list)
<P></P>
<UL><LI>
<P>Controls on Furiwaki: [TBD]</P>
</LI></UL>
</LI><LI>
<P>Kumisuji (cross-line text)
<P></P>
<UL><LI>
<P>Controls on Kumisuji: [TBD]</P>
</LI></UL>
</LI><LI>
<P>Kendot (emphasizing marks)
<P></P>
<UL><LI>
<P>Controls on Kendot: [TBD]</P>
</LI></UL>
</LI><LI>
<P>Justified tab fields</P>
</LI><LI>
<P>Borders and background highlights</P>
<P>(Since italic and bold are not commonly used in Japanese and other Asian
languages, due to the complexity of the characters; color, borders, and backgrounds
are used more frequently than in other languages)</P>
</LI></UL></LI><LI>
<P>Date and time formats</P>
<P></P>
<UL><LI>
<P>All issues of western dates</P>
</LI><LI>
<P>Imperial dates (measured from the day an emporer is enthroned)</P>
</LI><LI>
<P>Start of year is not Jan 1.</P>
</LI></UL></LI><LI>
<P>Numbering Systems - Non-western numbering and western numbering</P>
</LI><LI>
<P>Japanese measuring systems for type and layout</P>
</LI><LI>
<P>Toyo named spot color systems</P>
</LI></UL></DD>
<DT class="req">Chinese, Korean, & Vietnamese (iconic form)</DT>
<DD>
<P>The requirements of these languages are subsets of the requirements
of Japanese, though they have different character sets.</P>
<P></P>
<UL><LI>
<P>Korean adds some unique character-compositiing requirements.</P>
</LI><LI>
<P>One Asian language supports a paired-vertical-column format.
The reading order is:</P>
<DIV CLASS="INFORMALTABLE">
<P></P>
<TABLE BORDER="0">
<TR>
<TD WIDTH="96" ALIGN="RIGHT" VALIGN="TOP"> </TD>
<TD WIDTH="48" ALIGN="RIGHT" VALIGN="TOP">10</TD>
<TD WIDTH="48" ALIGN="LEFT" VALIGN="TOP">09</TD>
<TD WIDTH="48" ALIGN="RIGHT" VALIGN="TOP">02</TD>
<TD WIDTH="48" ALIGN="LEFT" VALIGN="TOP">01</TD>
<TD WIDTH="96" ALIGN="LEFT" VALIGN="TOP"><-- start</TD></TR>
<TR>
<TD WIDTH="96" ALIGN="RIGHT" VALIGN="TOP"> </TD>
<TD WIDTH="48" ALIGN="RIGHT" VALIGN="TOP">12</TD>
<TD WIDTH="48" ALIGN="LEFT" VALIGN="TOP">11</TD>
<TD WIDTH="48" ALIGN="RIGHT" VALIGN="TOP">04</TD>
<TD WIDTH="48" ALIGN="LEFT" VALIGN="TOP">03</TD>
<TD WIDTH="96" ALIGN="LEFT" VALIGN="TOP"> </TD></TR>
<TR>
<TD WIDTH="96" ALIGN="RIGHT" VALIGN="TOP"> </TD>
<TD WIDTH="48" ALIGN="RIGHT" VALIGN="TOP">14</TD>
<TD WIDTH="48" ALIGN="LEFT" VALIGN="TOP">13</TD>
<TD WIDTH="48" ALIGN="RIGHT" VALIGN="TOP">06</TD>
<TD WIDTH="48" ALIGN="LEFT" VALIGN="TOP">05</TD>
<TD WIDTH="96" ALIGN="LEFT" VALIGN="TOP"> </TD></TR>
<TR>
<TD WIDTH="96" ALIGN="RIGHT" VALIGN="TOP">end --></TD>
<TD WIDTH="48" ALIGN="RIGHT" VALIGN="TOP">16</TD>
<TD WIDTH="48" ALIGN="LEFT" VALIGN="TOP">15</TD>
<TD WIDTH="48" ALIGN="RIGHT" VALIGN="TOP">08</TD>
<TD WIDTH="48" ALIGN="LEFT" VALIGN="TOP">07</TD>
<TD WIDTH="96" ALIGN="LEFT" VALIGN="TOP"> </TD></TR></TABLE>
<P></P>
</DIV></LI><LI>
<P>Date and time formats - Imperial dates differ by country</P>
</LI><LI>
<P>Numbering Systems - Non-western numbering and western numbering</P>
</LI></UL></DD>
<DT class="req">Arabic</DT>
<DD>
<P>This is a script language that is unique in a number of ways:</P>
<P></P>
<UL><LI>
<P>Mixed writing direction</P>
<P>The letter progression is mostly right-to-left with intermingled left-to-right
numbers. Line progression is top-to-bottom.</P>
</LI><LI>
<P>Calligraphic/script language</P>
<P>This script (connected letter) language is one that extends calligraphy
to an art form. Arabic-language newspapers (even those outside the middle
east) may have a calligrapher on staff to produce the headlines.</P>
<P></P>
<UL><LI>
<P>Prefix, infix, suffix, and stand-alone glyph variants</P>
<P>Most letters have at least 4 forms, based on their placement within
the word. Other contextual substitutions (first/last of story, first/last
of paragraph, or first/last of sentence forms) are also prevalent.</P>
</LI><LI>
<P>No hyphenation</P>
<P>This is one of the few languages that doesn't use hyphenation or break
words in the middle.</P>
</LI><LI>
<P>Justification methods</P>
<P>Justification is accomplished through the stretching of letters (in
lower-quality forms, through the insertion of stretcher bars [kashidas]).</P>
</LI></UL></LI><LI>
<P>Compound accents with accent relocation</P>
<P>This language has multi-level accents and vowel marks. When marks are
combined on a single letter, there are complex precedence rules that govern
the placement and changes in placement of these marks.</P>
</LI><LI>
<P>Date and time formats</P>
</LI><LI>
<P>Numbering Systems - Numbers set left-to-right.</P>
</LI><LI>
<P>Page order</P>
<P>Right-to-left reading languages often reverse the page order in a book
>From that of left-to-right reading languages.</P>
</LI></UL></DD>
<DT class="req">Hebrew</DT>
<DD>
<P>Though stylistically simpler than Arabic, Hebrew carries many similar
characteristics (Mixed writing directions, glyph variants, etc.). If you satisfy
the requirements for western Europe and Arabic, you have satisfied most of
those of Hebrew.</P>
<P></P>
<UL><LI>
<P>Date and time formats</P>
</LI><LI>
<P>Numbering Systems
<P></P>
<UL><LI>
<P>Special treatment of 15 & 16</P>
</LI><LI>
<P>Arabic/European numbers set left-to-right.</P>
</LI></UL>
</LI><LI>
<P>Page order</P>
<P>Right-to-left reading languages often reverse the page order in a book
>From that of left-to-right reading languages.</P>
</LI></UL></DD>
<DT class="req">Eastern Europe and Russian republics</DT>
<DD>
<P>Except for character sets, there are no known requirements for these
languages that are not covered by those of western Europe. We need to confirm
this.</P>
</DD>
<DT class="req">India and Indic rim</DT>
<DD>
<P></P>
<UL><LI>
<P>Many of these are script-based languages, many of the requirements
of Arabic will apply
<P></P>
<UL><LI>
<P>Prefix, infix, suffix, and stand-alone glyph variants</P>
</LI><LI>
<P>No hyphenation (?)</P>
</LI><LI>
<P>Justification is accomplished through the stretching of letters.</P>
</LI></UL>
</LI><LI>
<P>Accent relocation and/or resequencing</P>
<P></P>
<UL><LI>
<P>Accent leaders</P>
<P>Accents are relocated before and/or after the word and connected to
the associated letter/syllable with an ornate 'L' or reverse-'L' leader line.</P>
</LI></UL></LI><LI>
<P>Vowel relocation and/or resequencing</P>
</LI><LI>
<P>Differing baseline/centerline, and top-align strategies when
mixing languages or writing directions.</P>
</LI><LI>
<P>Date and time formats</P>
</LI><LI>
<P>Numbering Systems</P>
<P>There are a number of unique numbering systems in this area.</P>
</LI></UL></DD>
<DT class="req">Africa</DT>
<DD>
<P>Unknown.</P>
</DD>
<DT class="req">Southeast Asia and South Pacific</DT>
<DD>
<P></P>
<UL><LI>
<P>Includes non-iconic form of Vietnamese</P>
</LI><LI>
<P>Thai has many typographic characteristics from Indic-rim.</P>
</LI><LI>
<P>One Asian language supports a paired-vertical-column format.</P>
</LI><LI>
<P>Differing baseline/centerline, and top-align strategies when
mixing languages or writing directions.</P>
</LI><LI>
<P>Date and time formats</P>
</LI><LI>
<P>Numbering Systems</P>
</LI></UL></DD>
<DT class="req">Infrequently used, dead, and archaic languages</DT>
<DD>
<P>There are a number of issues regarding infrequently used, dead, and
archaic languages that we might want to support for academic studies and literature:</P>
<P></P>
<UL><LI>
<P>Character sets</P>
<P>Unicode does not include support for all these languages.</P>
</LI><LI>
<P>Unique layout, line breaking and justification strategies:
<P></P>
<UL><LI>
<P>Alternating left-to-right and right-to-left lines</P>
</LI><LI>
<P>Snaking lines (alternating and inverting)</P>
</LI><LI>
<P>There is one bottom-to-top reading language?</P>
</LI></UL>
</LI></UL></DD>
</DL>
<HR>
<H1><A NAME="AEN741">Scripting</A></H1>
<P></P>
<DL>
<DT class="req">“Query Expressions”</DT>
<DD>
<P>Ancestors, children, siblings, attributes, content, disjunctions, negation,
enumerations, computed select based upon arbitrary query expressions.</P>
</DD>
<DT class="req">Arithmetic Expressions</DT>
<DD>
<P>Arithmetic, simple boolean comparisons, boolean logic, substrings, string
concatenation.</P>
</DD>
<DT class="req">Data Types</DT>
<DD>
<P>Scalar types, units of measure, Flow Objects, XML Objects</P>
</DD>
<DT class="req">Side effects</DT>
<DD>
<P>No global side effects.</P>
</DD>
<DT class="req">Standard Procedures</DT>
<DD>
<P>The expression language should have a set of procedures that are builtin
to the XSL language. These are still to be identified.</P>
</DD>
<DT class="req">Types of Scripting</DT>
<DD>
<P></P>
<UL><LI>
<P>Content-side scripting. This is scripting that generates content
(on the server, for example) to be sent to the client for rendering. Viewed
as out-of-scope.</P>
</LI><LI>
<P>Process-side scripting (scripting in the construction of the
result).</P>
</LI><LI>
<P>Renderer-side scripting (scripting in the rendered result).
Viewed as out-of-scope.</P>
</LI><LI>
<P>“Browser”-side scripting (other scripting in the
browser). Viewed as out-of-scope.</P>
</LI></UL></DD>
<DT class="req">User Defined Functions</DT>
<DD>
<P>For reuse. Parameterized, but not recursive.</P>
</DD>
</DL>
<HR>
<H1><A NAME="AEN780">Interactivity</A></H1>
<P></P>
<DL>
<DT class="req">Events</DT>
<DD>
<P>Support for defining the interactive response to certain behavioral
and user-interface events such as mouse-clicks and loading and unloading of
a document.</P>
</DD>
<DT class="req">Forms</DT>
<DD>
<P>Support for defining “input elements” of a document (e.g.
HTML forms).</P>
</DD>
<DT class="req">Interactive Response</DT>
<DD>
<P>Support for defining the interactive response of all visible objects.
Support for renderer-meaningful mechanisms and language for defining the action
that occurs upon interaction.</P>
</DD>
<DT class="req">Look and Feel</DT>
<DD>
<P>Support for defining the look and feel of the input objects (i.e., mechanisms
to bind the abstract input elements to concrete presentational widgets).</P>
</DD>
</DL>
<HR>
<H1><A NAME="AEN799">Accessibility</A></H1>
<P></P>
<DL>
<DT class="req">Aural stylesheets</DT>
<DD>
<P>Support for audio (aural) stylesheets.</P>
</DD>
<DT class="req">XSL must support accessibility mechanisms</DT>
<DD>
<P>Additional accessibility support will be defined.</P>
</DD>
</DL>
<HR>
<H1><A NAME="AEN810">Extensibility</A></H1>
<P></P>
<DL>
<DT class="req">Extensibility at the object level</DT>
<DD>
<P>Possibly provide the ability to specify additional Flow Objects or XML
Objects</P>
</DD>
<DT class="req">Extensibility at the property/characteristic
level</DT>
<DD>
<P>Possibly provide the ability to specify additional characteristics on
objects.</P>
</DD>
</DL>
<HR>
<H1><A NAME="AEN821">Packaging</A></H1>
<P></P>
<DL>
<DT class="req">Associating Stylesheets and Documents</DT>
<DD>
<P>Ability to specify the stylesheet(s) that apply to a particular document
(or class of documents)</P>
</DD>
<DT class="req">Cascading (publisher/consumer)</DT>
<DD>
<P>Specify how author/reader stylesheets can cascade.</P>
</DD>
<DT class="req">Modularity of Stylesheets</DT>
<DD>
<P>Allow stylesheets to be composed (possibly dynamically) from multiple
individual stylesheet fragments.</P>
</DD>
<DT class="req">Selective override</DT>
<DD>
<P>Specify the selection of criteria for determining what stylesheet (or
what part of a stylesheet) overrides another. Handling of specificity issues.</P>
</DD>
</DL>
<HR>
<H1><A NAME="AEN840">Meta-information</A></H1>
<P></P>
<DL>
<DT class="req">Crop marks, registration marks</DT>
<DD>
<P>Ability to specify formatting of areas outside the typical display area.</P>
</DD>
<DT class="req">Grain direction/Stock specification</DT>
<DD>
<P>Ability to specify stock and grain direction for print media.</P>
</DD>
<DT class="req">Imposition</DT>
<DD>
<P>Ability to specify the order and nature of imposition (the process of
constructing signatures from pages) with the focus on the types of imposition
supported by standard laser printers.</P>
</DD>
<DT class="req">Job control</DT>
<DD>
<P>Ability to specify job control for specific devices.</P>
</DD>
</DL>
<hr>
<A href="http://www.w3.org/Consortium/Legal/ipr-notice.html#Copyright">
Copyright</A> © 1998 <A href="http://www.w3.org">W3C</A>
(<A href="http://www.lcs.mit.edu">MIT</A>,
<A href="http://www.inria.fr/">INRIA</A>,
<A href="http://www.keio.ac.jp/">Keio</A> ), All Rights Reserved. W3C
<A href="http://www.w3.org/Consortium/Legal/ipr-notice.html#Legal Disclaimer">liability,</A>
<A href="http://www.w3.org/Consortium/Legal/ipr-notice.html#W3C Trademarks">trademark</A>,
<A href="http://www.w3.org/Consortium/Legal/copyright-documents.html">document
use </A>and
<A href="http://www.w3.org/Consortium/Legal/copyright-software.html">software
licensing </A>rules apply.
</BODY></HTML>