index.html
99.6 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
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="EN"><head>
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>XML Linking and Style</title><style type="text/css">
code { font-family: monospace; }
div.constraint,
div.issue,
div.note,
div.notice { margin-left: 2em; }
dt.label { display: run-in; }
li p { margin-top: 0.3em;
margin-bottom: 0.3em; }
.startrsrc { background-color: #BBF9C0;
text-decoration: underline; }
.endrsrc { background-color: #BBDCF9;
font-style: italic; }
.bothrsrc { background-color: #F9BBE0;
font-style: italic;
font-weight: bold; }
.present { background-color: #BBDCF9;
font-style: italic; }
.target { background-color: #F9BBE0;
font-weight: bold; }
p.element-syntax { border: solid thin }
</style><link rel="stylesheet" type="text/css" href="http://www.w3.org/StyleSheets/TR/W3C-NOTE.css"></head><body>
<div class="head"><p><a href="http://www.w3.org/"><img src="http://www.w3.org/Icons/w3c_home" alt="W3C" height="48" width="72"></a></p>
<h1>XML Linking and Style</h1>
<h2>W3C NOTE 5 June 2001</h2><dl><dt>This version:</dt><dd><a href="http://www.w3.org/TR/2001/NOTE-xml-link-style-20010605/">http://www.w3.org/TR/2001/NOTE-xml-link-style-20010605/</a>
(<a href="http://www.w3.org/TR/2001/NOTE-xml-link-style-20010605/xml-link-style.html">HTML</a>,
<a href="http://www.w3.org/TR/2001/NOTE-xml-link-style-20010605/xml-link-style.xml">XML</a>)</dd><dt>Latest version:</dt><dd><a href="http://www.w3.org/TR/xml-link-style/">http://www.w3.org/TR/xml-link-style/</a>
</dd><dt>Editor:</dt>
<dd>Norman Walsh, Sun Microsystems, Inc. <a href="mailto:Norman.Walsh@East.Sun.COM"><Norman.Walsh@East.Sun.COM></a></dd>
</dl><p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice-20000612#Copyright">Copyright</a> © 2001 <a href="http://www.w3.org/"><abbr title="World Wide Web Consortium">W3C</abbr></a><sup>®</sup> (<a href="http://www.lcs.mit.edu/"><abbr title="Massachusetts Institute of Technology">MIT</abbr></a>, <a href="http://www.inria.fr/"><abbr lang="fr" title="Institut National de Recherche en Informatique et Automatique">INRIA</abbr></a>, <a href="http://www.keio.ac.jp/">Keio</a>), All Rights Reserved. W3C <a href="http://www.w3.org/Consortium/Legal/ipr-notice-20000612#Legal_Disclaimer">liability</a>, <a href="http://www.w3.org/Consortium/Legal/ipr-notice-20000612#W3C_Trademarks">trademark</a>, <a href="http://www.w3.org/Consortium/Legal/copyright-documents-19990405">document use</a>, and <a href="http://www.w3.org/Consortium/Legal/copyright-software-19980720">software licensing</a> rules apply.</p></div><hr><div>
<h2><a name="abstract">Abstract</a></h2>
<p>The interaction of XLink linking elements and styling has not
previously been carefully described. This note, the result of an XML
Linking/XSL joint task force, attempts to rectify that oversight by
providing a clear conceptual model for linking and styling and
suggestions for the practical application of that model using current
W3C Recommendations (and Working Drafts, Candidate Recommendations, and
Proposed Recommendations).</p>
</div><div>
<h2><a name="status">Status of this Document</a></h2>
<p>This document is a Note made available by
the World Wide Web Consortium (W3C) for information only. Publication of this Note by W3C does not imply endorsement by W3C or the W3C Team, or any W3C Members, nor that the W3C has, is, or will be allocating any resources to the issues addressed by this Note.
</p>
<p>It was produced by a joint task force of the XML Linking
and XSL Working Groups. We plan to update this Note according to
comments received and, if there is enough interest, consider promoting
parts of it into Recommendation-track specifications where appropriate.
Comments may be directed to the task force mailing list <a href="mailto:w3c-xsl-link-tf@w3.org">w3c-xsl-link-tf@w3.org</a>
(Member-only <a href="http://lists.w3.org/Archives/Member/w3c-xsl-link-tf/">archive</a>).</p>
<p>A list of current W3C Recommendations and other
technical documents, including Working Drafts and Notes, can be found at
<a href="http://www.w3.org/TR/">http://www.w3.org/TR/</a>.</p>
<p><em>This section represents the status of this document at the time
this version was published. It will become outdated if and when a new
version is published. The latest status is maintained at the W3C.</em></p>
</div>
<div class="toc">
<h2><a name="contents">Table of Contents</a></h2><p class="toc">1 <a href="#sec-intro">Introduction</a><br> 1.1 <a href="#N448">Design Principles</a><br> 1.2 <a href="#N478">Requirements Framework</a><br>2 <a href="#sec-xlink">Processing XLink Linking Elements</a><br> 2.1 <a href="#sec-xlink-identification">XML Link Identification</a><br> 2.1.1 <a href="#xlink-infoset">XLink Infoset Contributions</a><br> 2.1.1.1 <a href="#linknamespace">Link Element Namespace</a><br> 2.1.1.2 <a href="#linkinfoitem">Link Information Item</a><br> 2.1.1.3 <a href="#arcinfoitem">Arc Information Item</a><br> 2.1.1.4 <a href="#partinfoitem">Participant Information Item</a><br> 2.1.1.5 <a href="#infoset-examples">Infoset Contribution Examples</a><br> 2.2 <a href="#sec-xlink-traversal">XLink Traversal</a><br>3 <a href="#sec-style">Styling Link Resources</a><br> 3.1 <a href="#sec-style-content-10">With Current Technologies</a><br> 3.1.1 <a href="#sec-xsltx-functions">XSLT Extension Functions</a><br> 3.1.2 <a href="#N1512">Function Example</a><br> 3.2 <a href="#sec-style-content-auto">With a Link-Aware XSLT Processor</a><br> 3.2.1 <a href="#N1622">Controlling Link Selection</a><br> 3.2.2 <a href="#N1658">Identifying Link Targets Explicitly</a><br> 3.2.3 <a href="#N1720">Adding Style Properties</a><br> 3.2.3.1 <a href="#N1746">Style Properties Example</a><br> 3.2.4 <a href="#N1760">Style-based Structural Changes</a><br> 3.2.4.1 <a href="#N1795">Next Match Example</a><br> 3.3 <a href="#style-elements">Style Elements</a><br> 3.3.1 <a href="#N1867">xsl:link</a><br> 3.3.2 <a href="#N1903">xsl:arc</a><br> 3.3.3 <a href="#N1978">xsl:start- and xsl:end-participant</a><br> 3.3.4 <a href="#N2045">Using the Link Elements</a><br> 3.3.5 <a href="#N2058">Merging Link Sets</a><br> 3.3.6 <a href="#N2112">What's Missing</a><br>4 <a href="#sec-link-traversal">Styling Link Traversal</a><br> 4.1 <a href="#sec-link-traversal-concepts">A Conceptual Model for Styling Link Traversal</a><br> 4.1.1 <a href="#sec-embed-complication">Special Considerations for Embedded Resources</a><br> 4.1.2 <a href="#N2396">Result Tree Numbering</a><br> 4.1.3 <a href="#xinclude-vs-xlink">XInclude vs. XLink Embedding</a><br> 4.2 <a href="#N2504">The Semantics of Nested Linking</a><br>5 <a href="#sec-discon-results">Discontiguous Resources</a><br> 5.1 <a href="#sec-discon-functions">Implementing Consistent Behavior</a><br> 5.2 <a href="#sec-style-discon">Discontinuity Introduced by Styling</a><br>6 <a href="#sec-ranges">Ranges are Challenging</a><br> 6.1 <a href="#spec-range-display">Styling Ranges in a Larger Presentation Context</a><br> 6.2 <a href="#spec-range-embed">Ranges that are Presentation Context</a><br> 6.3 <a href="#range-ligs">Ranges and Glyph/Character Boundaries</a><br></p>
<h3>Appendices</h3><p class="toc">A <a href="#sec-bibliography">References</a><br> A.1 <a href="#N3007">Normative References</a><br> A.2 <a href="#N3117">Other References</a><br>B <a href="#N3262">Summary of Proposed Changes to XSLT</a> (Non-Normative)<br> B.1 <a href="#N3272">link-target</a><br> B.2 <a href="#N3293">xsl:link-style</a><br> B.3 <a href="#N3312">XSL Linking Elements</a><br> B.4 <a href="#N3333">xsl:next-match</a><br>C <a href="#sec-xml-wg">W3C XLink/XSL Joint Task Force</a> (Non-Normative)<br></p></div><hr><div class="body">
<div class="div1">
<h2><a name="sec-intro"></a>1 Introduction</h2>
<p>Linking and styling have significant interactions. On the one hand,
style may be applied to elements because they participate in links.
On the other, selecting a link may modify, replace, or create a new
document which must then be styled.</p>
<p>This note introduces a conceptual model for describing the
interactions of XLink linking elements and styling. It then shows how
this model may be applied in two different ways:</p>
<ol>
<li><p>Using current and anticipated technologies supported by existing W3C
Recommendations (and Working Drafts, Candidate Recommendations, and
Proposed Recommendations).</p>
</li>
<li><p>In an environment where the XSLT processor provides
significantly more functionality for linking and contains several
new features.</p></li>
</ol>
<p>The full generality of the conceptual model cannot be represented
with current Recommendations. Rather than attempt to restrict the
model, we observe that by accepting default values for parts of the
model, a useful, practical subset can be implemented today. </p>
<div class="div2">
<h3><a name="N448"></a>1.1 Design Principles</h3>
<p>The task force used the following principles to develop the model
described in this note:</p>
<ol>
<li><p>The model must support applications of linking and styling
for the purpose of presentation to a human audience.</p>
<p>There are countless XML linking applications that are not related to
style at all (robots, indexing applications, etc.). At best, the
conceptual framework described in this note may aid in developing
interoperable, standard applications of this sort. At the very least,
nothing in this note should inhibit the development of XML linking
applications that are not related to style.</p></li>
<li><p>The model must not compromise accessibility.</p></li>
<li><p>This model must apply equally well to XSL and CSS.</p></li>
<li><p>The consequences of linking to or from non-XML resources is
outside the scope of this note.</p></li>
</ol>
</div>
<div class="div2">
<h3><a name="N478"></a>1.2 Requirements Framework</h3>
<p>In considering this design, we felt the following requirements
had to be met by any proposed solution:</p>
<ol>
<li><p>The overall treatment of the ending resource is controlled
by the <code>xlink:show</code> attribute.</p></li>
<li><p>The overall treatment of link traversal is controlled by
the <code>xlink:actuate</code> attribute.</p></li>
<li><p>It must be possible to style both starting and ending
resources.</p></li>
<li><p>It must be possible to process inbound, outbound, and third
party arcs.</p></li>
<li><p>It must be possible to process starting resources regardless
of "well-balancedness": whole documents, one or more whole nodes,
an arbitrary range, including partial nodes, and non-contiguous
selections of all of the above.</p></li>
<li><p>It must be possible to process ending resources regardless
of "well-balancedness".</p></li>
<li><p>It must be possible to control the context in which ending
resources are displayed. While whole documents are the standard context for
web browsers, it is easy to imagine situations where it would be desirable
to show a portion of the document that contains the target, or even just
the target itself.</p></li>
<li><p>We must consider the consequences of encountering different
sequences and nestings
of starting resources with various combinations of behavior
settings.</p></li>
</ol>
</div>
</div>
<div class="div1">
<h2><a name="sec-xlink"></a>2 Processing XLink Linking Elements</h2>
<p>Processing XLink linking elements can be divided into two functions: link
identification and link traversal. It is useful for our purposes to
consider these functions separately.</p>
<div class="div2">
<h3><a name="sec-xlink-identification"></a>2.1 XML Link Identification</h3>
<p>XLink
<a href="http://www.w3.org/TR/xlink/#dt-link">linking elements</a>
may or may not participate in the
link they identify. Consider the following example:</p>
<table class="eg" cellpadding="1" border="1" bgcolor="white" width="100%" summary="Example"><tr><td><pre><doc>
<p><span class="startrsrc"><name xlink:type='simple'
xlink:href='students/patjones62.xml'>Pat Jones</name></span>
is taking <span class="startrsrc"><course xlink:type='simple'
xlink:href='#CS101'>CS-101</course></span>.</p>
<courselist>
<span class="endrsrc"><course id='CS101'>Computer Science 101</course></span>
<course id='CS201'>Computer Science 201</course>
</courselist>
</doc></pre></td></tr></table>
<p>In this example, the two green (and underlined) elements are starting
resources. The blue (and italic) element is an ending
resource. There is no explicit markup to identify ending resources,
but an XLink-aware application can identify them because they are
pointed to by URI references.</p>
<p>Linking relationships can be less obvious. Consider the case where
an extended link is used:</p>
<table class="eg" cellpadding="1" border="1" bgcolor="white" width="100%" summary="Example"><tr><td><pre><doc>
<extendedlink xlink:type='extended'>
<loc xlink:type='locator' xlink:label='cs101'
xlink:href='#xpointer(//course[@id='CS101'])'></loc>
<loc xlink:type='locator' xlink:label='cs201'
xlink:href='#xpointer(//course[@id='CS201'])'></loc>
<loc xlink:type='locator' xlink:label='cs101desc'
xlink:href='courses/cs101.xml'></loc>
<loc xlink:type='locator' xlink:label='cs201desc'
xlink:href='courses/cs201.xml'></loc>
<arc xlink:type='arc' xlink:from='cs101' xlink:to='cs101desc'></arc>
<arc xlink:type='arc' xlink:from='cs201' xlink:to='cs201desc'></arc>
</extendedlink>
<p><span class="startrsrc"><name xlink:type='simple'
xlink:href='students/patjones62.xml'>Pat Jones</name></span>
is taking <span class="startrsrc"><course xlink:type='simple'
xlink:href='#CS101'>CS-101</course></span>.</p>
<courselist>
<span class="bothrsrc"><course id='CS101'>Computer Science 101</course></span>
<span class="startrsrc"><course id='CS201'>Computer Science 201</course></span>
</courselist>
</doc></pre></td></tr></table>
<p>With the addition of an extended link element, the courses in the
course list also become starting resources. Note that this makes the
first course in the course list (identified in red and bold-italic)
both a starting resource and an ending resource. This example could be
complicated further by placing the extended link in a physically
separate resource from the documents in question.</p>
<p>In order for links to be styled, they must be identified. The XLink-aware
application must somehow provide additional information beyond what is
explicitly marked up in the document available to the styling engine.
This can be described in terms of Infoset contributions.</p>
<div class="div3">
<h4><a name="xlink-infoset"></a>2.1.1 XLink Infoset Contributions</h4>
<p>Conceptually, the XLink-aware application must provide additional
information to the styling engine about links in a document. This
can be modeled in terms of contributions to the document's Infoset.
</p>
<div class="note"><p class="prefix"><b>Note:</b></p><p>We use the Infoset here as a conceptual model. We are not
suggesting that applications be required to build or maintain
any specific set of data structures for this purpose, merely that they
be able to provide certain information to the application.</p>
<p>Because it is convenient to describe some aspects of link
processing in terms of the XPath data model, we use mostly Element Information Item in
our contributions, but that does mean that implementations are required
to construct their internal data models that way.</p>
</div>
<p>An XLink-aware processor has at its disposal some
collection of XLinks. They may come from
<a href="http://www.w3.org/TR/xlink/#simple-links">simple</a>
and/or
<a href="http://www.w3.org/TR/xlink/#extended-link">extended</a>
links in the source document, or from external
<a href="http://www.w3.org/TR/xlink/#dt-linkbase">linkbases</a>.
We treat them all equally.</p>
<p>To augment the Infoset, we introduce a new data structure, the
Link Set, and three new properties to access it. The Link Set holds an
interpretation of the XLink data model: the links, arcs, and participants
that are known as well as any additional metadata about them
that may be available.</p>
<p>We construct the Link Set using Element Information Items. Note, however, that
these elements are not the children of any information items in the
document's Infoset. They are accessible only through new
properties. We elected to use Element Information Items for the Link Set because:
</p>
<ol>
<li><p>It is a hierarchical data structure with a natural tree
structure.</p></li>
<li><p>Style engines already have well-understood mechanisms for navigating
through a tree of elements and attributes.</p></li>
<li><p>XLinks can have additional metadata elements inside them, and it
is possible for these elements to have semantic meaning, it is therefore
necessary to provide a means for XLink processors to access them.
</p></li>
</ol>
<p>There are three types of Element Information Items in the Link Set: Link Information Items,
which represent links, Arc Information Items which represent single arcs, and two
Participant Information Items which represent the start and end of an arc.
</p>
<p>More formally:</p>
<ul>
<li><p>[<a name="dt-linkii" title="Link Information Item">Definition</a>: There is
one <b>Link Information Item</b> for every XLink that the
processor knows about.]
</p>
</li>
<li><p>[<a name="dt-arcii" title="Arc Information Item">Definition</a>: Every
Link Information Item contains an
<b>Arc Information Item</b> for every arc associated with that
XLink.]</p>
<p>In the case of simple links, there will only ever be a single arc,
but extended links may include many. Note that the number of Arc Information Items
is not necessarily the same as the number of <code>arc</code>-type elements in the
XLink. XLink <code>arc</code>-type elements can define any number of arcs;
Arc Information Items define exactly one arc.</p>
</li>
<li>
<p>Finally, [<a name="dt-partii" title="Participant Information Item">Definition</a>: Every Arc Information Item contains exactly two <b>Participant Information
Items</b>: one Start Participant Information Item for the starting resource and one End
Participant Information Item for the ending resource.]</p>
</li>
</ul>
<p>Once constructed, the new information items must be inserted into
the Infoset. We define new properties for this purpose.</p>
<ul>
<li>
<p>[<a name="dt-linkset" title="Link Set">Definition</a>:
The Document Information Item is extended with a new Link Set property.
The <b>Link Set</b> property contains the set of Link Information Items
associated with this document.]</p>
</li>
</ul>
<p>Every Element, Character, Processing Instruction, and Comment
Information Item in the document is augmented with two new
properties: Starting Participant Arcs and Ending Participant Arcs.</p>
<ul>
<li>
<p>[<a name="dt-startpa" title="Starting Participant Arcs">Definition</a>: The
<b>Starting Participant Arcs</b> property is a list of the
Arc Information Items for which this information item is a part of the Start Participant Information Item for
the arc.] In other words, if this
element is part of the starting resource of a link, it has a pointer
to the arc(s) that define the traversal from this resource.</p>
</li>
<li>
<p>[<a name="dt-endpa" title="Ending Participant Arcs">Definition</a>: The
<b>Ending Participant Arcs</b> property is a list of the
Arc Information Items for which this information item is a part of the End Participant Information Item for
for the arc.] Again, in other words, if this
element is part of the ending resource of a link, it has a pointer
to the arc(s) that define the traversal to this resource.
</p>
</li>
</ul>
<p>If an information item has more than one Arc Information Item associated with it,
they are ordered. That is, one can refer to the first
Arc Information Item, the second Arc Information Item, etc. There is no requirement for different
implementations to select the same order, or even for the same implementation
to select the same order over multiple runs. They need only be consistent
for the logical duration of any given information set.</p>
<p>If more than one information item in the document is associated
with an arc (for example, if the starting or ending resources are
comprised of several elements or a range of characters), the
Starting Participant Arcs or Ending Participant Arcs of each
relevant information item in the Infoset is augmented.
</p>
<p>Once the Infoset has been augmented with these items, linking
applications can process links in a uniform way, independent of
whether the elements in question are simple, extended, or even third
party links.</p>
<div class="note"><p class="prefix"><b>Note:</b></p><p>We observe that this interface extends even beyond XLink.
Processors for schemas that have linking semantics defined independent
of XLink, such as HTML, can augment the Infoset and
take advantage of this linking framework without literally making every
link an XLink.</p></div>
<p>An XLink can be quite complex. In the most general case, linking
semantics may be influenced by the roles of the <code>link</code>-type
element, the <code>arc</code>-type element, and the roles on the
participating resources involved in the link. In designing
this model, our goal was to provide link processors with access to all
of this information.</p>
<div class="div4">
<h5><a name="linknamespace"></a>2.1.1.1 Link Element Namespace</h5>
<p>In order to provide fully qualified names for the linking information
items, they are placed in the linking and style namespace with
<a href="http://www.w3.org/TR/REC-xml-names/#dt-NSName">Namespace
name</a> "http://www.w3.org/2001/06/xml-link-style".</p>
<p>This namespace name (URI) will only be used to refer to this
version of this Note: different URIs will
be used for any and all new versions of the specification except that this namespace name may be reused in any update of this
Note which is made for the purpose of
clarification or bug fixes. These changes will be minor in that
they will not (a) change the meaning or
validity of existing documents written using the namespace, or (b)
affect the operation of existing
software written to process such documents.</p>
</div>
<div class="div4">
<h5><a name="linkinfoitem"></a>2.1.1.2 Link Information Item</h5>
<p>A Link Information Item is an Element Information Item. It must conform to the following
<a href="#xmlschema-cr">[XML Schema (Structures)]</a> type definition:</p>
<table class="eg" cellpadding="5" border="1" bgcolor="#99ffff" width="100%" summary="Example"><tr><td><pre><xsd:schema targetNamespace="http://www.w3.org/2001/06/xml-link-style"
elementFormDefault="qualified"
xmlns:xsd="http://www.w3.org/2000/10/XMLSchema"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:link='http://www.w3.org/2001/06/xml-link-style'>
<xsd:complexType name='linkType'>
<xsd:sequence minOccurs='1' maxOccurs='1'>
<xsd:element ref='link:arc' minOccurs='1' maxOccurs='unbounded'/>
<xsd:choice minOccurs='0' maxOccurs='unbounded'>
<xsd:element name='xlink:title' type='opaqueType'/>
<xsd:any namespace='##other' minOccurs='0' maxOccurs='unbounded'/>
</xsd:choice>
</xsd:sequence>
<xsd:attribute name='type'>
<xsd:simpleType>
<xsd:restriction base='xsd:string'>
<xsd:enumeration value='simple'/>
<xsd:enumeration value='extended'/>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
<xsd:attribute name='role' type='xsd:uriReference'/>
<xsd:attribute name='title' type='xsd:string'/>
<xsd:anyAttribute namespace='##other' processContents='strict'/>
</xsd:complexType>
<xsd:element name='link' type='link:linkType'/>
</xsd:schema></pre></td></tr></table>
<p>It has the following properties:</p>
<dl>
<dt class="label">type</dt>
<dd>
<p>The value of the <code>xlink:type</code> attribute for this link: either
"simple" or "extended".</p>
</dd>
<dt class="label">role</dt>
<dd>
<p>The
<a href="http://www.w3.org/TR/REC-xml#AVNormalize">normalized</a>
value of the <code>xlink:role</code> attribute for this link.</p>
<p>This property is null if the <code>extended</code>-type element does
not have an <code>xlink:role</code> attribute value or if the link is of
the <code>simple</code> type.</p>
</dd>
<dt class="label">title</dt>
<dd>
<p>The
<a href="http://www.w3.org/TR/REC-xml#AVNormalize">normalized</a>
value of the <code>xlink:title</code> attribute for this link.</p>
<p>This property is null if the <code>extended</code>-type element does
not have an <code>xlink:title</code> attribute value or if the link is of
the <code>simple</code> type.</p>
</dd>
<dt class="label">##other:*</dt>
<dd><p>It may have any other properties as long as they are from
a different namespace.</p>
</dd>
</dl>
<p>A Link Information Item must contain at least one Arc Information Item and may contain any
number of <code>xlink:title</code> elements and
elements from other namespaces.</p>
</div>
<div class="div4">
<h5><a name="arcinfoitem"></a>2.1.1.3 Arc Information Item</h5>
<p>An Arc Information Item is an Element Information Item. It must conform to the following XML
Schema type definition:</p>
<table class="eg" cellpadding="5" border="1" bgcolor="#99ffff" width="100%" summary="Example"><tr><td><pre><xsd:schema targetNamespace="http://www.w3.org/2001/06/xml-link-style"
elementFormDefault="qualified"
xmlns:xsd="http://www.w3.org/2000/10/XMLSchema"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:link='http://www.w3.org/2001/06/xml-link-style'>
<xsd:complexType name='arcType'>
<xsd:sequence minOccurs='1' maxOccurs='1'>
<xsd:element ref='link:startParticipant'/>
<xsd:element ref='link:endParticipant'/>
<xsd:choice minOccurs='0' maxOccurs='unbounded'>
<xsd:element name='xlink:title' type='opaqueType'/>
<xsd:any namespace='##other' minOccurs='0' maxOccurs='unbounded'/>
</xsd:choice>
</xsd:sequence>
<xsd:attribute name='role' type='xsd:uriReference'/>
<xsd:attribute name='title' type='xsd:string'/>
<xsd:attribute name='show'>
<xsd:simpleType>
<xsd:restriction base='xsd:string'>
<xsd:enumeration value='new'/>
<xsd:enumeration value='replace'/>
<xsd:enumeration value='embed'/>
<xsd:enumeration value='other'/>
<xsd:enumeration value='none'/>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
<xsd:attribute name='actuate'>
<xsd:simpleType>
<xsd:restriction base='xsd:string'>
<xsd:enumeration value='onLoad'/>
<xsd:enumeration value='onRequest'/>
<xsd:enumeration value='other'/>
<xsd:enumeration value='none'/>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
<xsd:attribute name='target-stylesheet' type='xsd:uriReference'/>
<xsd:attribute name='target-processing-context' type='xsd:uriReference'/>
<xsd:attribute name='target-presentation-context' type='xsd:uriReference'/>
<xsd:anyAttribute namespace='##other' processContents='strict'/>
</xsd:complexType>
</xsd:schema></pre></td></tr></table>
<p>It has the following properties:</p>
<dl>
<dt class="label">role</dt>
<dd>
<p>The
<a href="http://www.w3.org/TR/REC-xml#AVNormalize">normalized</a>
value of the <code>xlink:arcrole</code> attribute for this arc.</p>
<p>This property is null if the relevant <code>arc</code>- or
<code>simple</code>-type element does not have an <code>xlink:arcrole</code>
attribute value.</p>
</dd>
<dt class="label">title</dt>
<dd>
<p>The
<a href="http://www.w3.org/TR/REC-xml#AVNormalize">normalized</a>
value of the <code>xlink:title</code> attribute for this arc.</p>
<p>This property is null if the <code>extended</code>-type element does
not have an <code>xlink:title</code> attribute value or if the link is of
the <code>simple</code> type.</p>
</dd>
<dt class="label">show</dt>
<dd>
<p>The
<a href="http://www.w3.org/TR/REC-xml#AVNormalize">normalized</a>
value of the <code>xlink:show</code> attribute for the arc for which
this is the starting resource.</p>
<p>This property is null if the relevant <code>arc</code>- or
<code>simple</code>-type element does not have an <code>xlink:show</code>
attribute value.</p>
</dd>
<dt class="label">actuate</dt>
<dd>
<p>The
<a href="http://www.w3.org/TR/REC-xml#AVNormalize">normalized</a>
value of the <code>xlink:actuate</code> attribute for the arc for which
this is the starting resource.</p>
<p>This property is null if the relevant <code>arc</code>- or
<code>simple</code>-type element does not have an <code>xlink:actuate</code>
attribute value.</p>
</dd>
<dt class="label">target-stylesheet</dt>
<dd>
<p>The stylesheet that should be used when this arc
is traversed.
(See <a href="#sec-link-traversal"><b>4 Styling Link Traversal</b></a>)</p>
</dd>
<dt class="label">target-processing-context</dt>
<dd>
<p>A URI reference that identifies the processing context associated
with traversal of this arc.
(See <a href="#sec-link-traversal"><b>4 Styling Link Traversal</b></a>)</p>
</dd>
<dt class="label">target-presentation-context</dt>
<dd>
<p>A URI reference that identifies the presentation context associated
with traversal of this arc.
(See <a href="#sec-link-traversal"><b>4 Styling Link Traversal</b></a>)</p>
</dd>
<dt class="label">##other:*</dt>
<dd><p>It may have any other attributes as long as they are from
a different namespace.</p>
</dd>
</dl>
<p>An Arc Information Item must contain a Start Participant Information Item and an End Participant Information Item.
It may also contain any
number of other elements from other namespaces.</p>
</div>
<div class="div4">
<h5><a name="partinfoitem"></a>2.1.1.4 Participant Information Item</h5>
<p>A Participant Information Item is an Element Information Item. It must conform to the following XML
Schema type definition:</p>
<table class="eg" cellpadding="5" border="1" bgcolor="#99ffff" width="100%" summary="Example"><tr><td><pre><xsd:schema targetNamespace="http://www.w3.org/2001/06/xml-link-style"
elementFormDefault="qualified"
xmlns:xsd="http://www.w3.org/2000/10/XMLSchema"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:link='http://www.w3.org/2001/06/xml-link-style'>
<xsd:complexType name='participantType'>
<xsd:choice minOccurs='0' maxOccurs='unbounded'>
<xsd:element name='xlink:title' type='opaqueType'/>
<xsd:any namespace='##other' minOccurs='0' maxOccurs='unbounded'/>
</xsd:choice>
<xsd:attribute name='role' type='xsd:uriReference'/>
<xsd:attribute name='title' type='xsd:string'/>
<xsd:attribute name='resource' type='xsd:string'/>
<xsd:anyAttribute namespace='##other' processContents='strict'/>
</xsd:complexType>
</xsd:schema></pre></td></tr></table>
<p>It has the following properties:</p>
<dl>
<dt class="label">role</dt>
<dd>
<p>The
<a href="http://www.w3.org/TR/REC-xml#AVNormalize">normalized</a>
value of the <code>xlink:role</code> attribute for the <code>locator</code>-
or <code>resource</code>-type element that specifies this starting
resource.</p>
<p>This property is null if the relevant <code>locator</code>- or
<code>resource</code>-type element does not have an <code>xlink:role</code>
attribute value or if the link is of the <code>simple</code> type.</p>
</dd>
<dt class="label">title</dt>
<dd>
<p>The
<a href="http://www.w3.org/TR/REC-xml#AVNormalize">normalized</a>
value of the <code>xlink:title</code> attribute for this participant.</p>
<p>This property is null if the relevant <code>locator</code>- or
<code>resource</code>-type element does not have an <code>xlink:title</code>
attribute value or if the link is of the <code>simple</code> type.</p>
</dd>
<dt class="label">resource</dt>
<dd>
<p>A reference to the
<a href="http://www.w3.org/TR/xlink/#dt-resource">resource</a>
this participant identifies. We intentionally do not stipulate the type
of this reference. Often it will be a URI reference
(obtained from the <code>xlink:href</code>
attribute on the relevant <code>locator</code>- or <code>simple</code>-type element),
but in cases
where there is no extant URI (for example, to identify the starting
participant of a <code>simple</code>-type link), we do not wish to require
that a URI reference be manufactured.</p>
</dd>
<dt class="label">##other:*</dt>
<dd><p>It may have any other properties as long as they are from
a different namespace.</p>
</dd>
</dl>
<p>A Participant Information Item may contain any
number of other elements from other namespaces.</p>
</div>
<div class="div4">
<h5><a name="infoset-examples"></a>2.1.1.5 Infoset Contribution Examples</h5>
<p>The Element Information Item for the <code>a</code> element in the
following document:</p>
<div class="example">
<h5>Example: Simple Link in http://www.example.org/test.xml</h5>
<table class="eg" cellpadding="5" border="1" bgcolor="#99ffff" width="100%" summary="Example"><tr><td><pre><doc>
<a xlink:href="foo.xml"
xlink:show="new" xlink:actuate="onRequest">Click here</a>
</doc></pre></td></tr></table>
</div>
<p>can be represented with one Link Information Item:</p>
<table class="eg" cellpadding="5" border="1" bgcolor="#99ffff" width="100%" summary="Example"><tr><td><pre><link>
<arc show="new" actuate="onRequest">
<startParticipant resource="/doc/a[1]"/>
<endParticipant resource="foo.xml"/>
</arc>
</link></pre></td></tr></table>
<p>For an information item that participates in several links, the
situation is slightly more complex. Consider the following document:</p>
<div class="example">
<h5>Example: Extended Links in http://www.example.org/test2.xml</h5>
<table class="eg" cellpadding="5" border="1" bgcolor="#99ffff" width="100%" summary="Example"><tr><td><pre><doc>
<extendedlink xlink:type='extended'
xlink:role='http://example.com/props/link1'>
<loc xlink:type='locator' xlink:label='a' xlink:href='#a'></loc>
<loc xlink:type='locator' xlink:label='b'
xlink:role='http://example.com/props/loc1'
xlink:href='#b1'></loc>
<loc xlink:type='locator' xlink:label='b' xlink:href='#b2'></loc>
<arc xlink:type='arc' xlink:from='a' xlink:to='b'
xlink:arcrole='http://example.com/props/loc1'></arc>
</extendedlink>
<p><phrase id='a'>This</phrase> links to
<phrase id='b1'>this</phrase> and
<phrase id='b2'>this</phrase>.</p>
</doc></pre></td></tr></table>
</div>
<p>In this document, there is one link with two arcs:</p>
<table class="eg" cellpadding="5" border="1" bgcolor="#99ffff" width="100%" summary="Example"><tr><td><pre><link role="http://example.com/props/link1">
<arc role="http://example.com/props/loc1">
<participant resource="#a"/>
<participant resource="#b1" role="http://example.com/props/loc1"/>
</arc>
<arc role="http://example.com/props/loc1">
<participant resource="#a"/>
<participant resource="#b2"/>
</arc>
</link></pre></td></tr></table>
</div>
</div>
</div>
<div class="div2">
<h3><a name="sec-xlink-traversal"></a>2.2 XLink Traversal</h3>
<p>Link
<a href="http://www.w3.org/TR/xlink/#dt-traversal">traversal</a>
always involves exactly two participating resources. In the context of
a styling application, it can have several possible results:</p>
<ol>
<li><p>The document currently being presented may be replaced by
the new resource identified as the
<a href="http://www.w3.org/TR/xlink/#dt-ending-resource">ending
resource</a> of the traversal.</p></li>
<li><p>A new viewing context (window, frame, pane, etc.) may be
created in which to present the
<a href="http://www.w3.org/TR/xlink/#dt-ending-resource">ending
resource</a> of the traversal.</p></li>
<li><p>The
<a href="http://www.w3.org/TR/xlink/#dt-ending-resource">ending
resource</a> may be styled and the styled result may be
embedded within the document currently being presented (instead of,
or perhaps in addition to, the starting resource).</p></li>
<li><p>Application-specific semantics outside the scope of this
note.</p></li>
</ol>
<p>In the context of styling, each of these operations
can be considered a presentation or style issue.
This is particularly the case since XLink linking elements leave
the processing of the attributes controlling presentation
(<code>xlink:show</code> and <code>xlink:actuate</code>) at the discretion of
the application.</p>
<p>Consequently, we will address these issues under style.</p>
</div>
</div>
<div class="div1">
<h2><a name="sec-style"></a>3 Styling Link Resources</h2>
<p>Broadly speaking, style processing can be divided into two
processes: styling of resources based upon how they participate in
linking and styling the results of link traversal.</p>
<p>In this section, we consider the process of styling link resources.
This model may be applied in two different ways:</p>
<ol>
<li><p>Using current and anticipated technologies supported by existing W3C
Recommendations (and Working Drafts, Candidate Recommendations, and
Proposed Recommendations).</p>
</li>
<li><p>In an environment where the XSLT processor provides
significantly more functionality for linking and contains several
new features.</p></li>
</ol>
<div class="div2">
<h3><a name="sec-style-content-10"></a>3.1 With Current Technologies</h3>
<p>Once the XLink-aware application has identified the information items that
are participants in a link, styling the link becomes relatively
straightforward. One can easily imagine an augmented CSS application or
even a Perl script that made styling choices based upon the information
obtained from the augmented Infoset.</p>
<p>Styling linking resources in XSL V1.0
can be achieved with small set of extension functions. The addition of
a standard extension function API, anticipated for XSLT 1.1, makes this
a practical solution for the present.</p>
<p>There are significant drawbacks to using extension functions for
styling links, principal among them the fact that it places all of the
burden on the stylesheet author. In order to handle links between
arbitrary elements, <em>every</em> template would have to include
conditional logic using the extension functions. This makes the
extension function approach impractical as a long-term solution, but
it is a solution that can be made to work today.</p>
<div class="div3">
<h4><a name="sec-xsltx-functions"></a>3.1.1 XSLT Extension Functions</h4>
<p>In the descriptions that follow, <code>ext:</code> must be
an <a href="http://www.w3.org/TR/xslt#section-Extension-Functions">extension
function namespace</a> as defined in <a href="#xslt-rec">[XSLT]</a>.</p>
<p><em>node-set</em> <b>ext:link</b>()</p>
<p>The <code>ext:link</code> function returns a node
set containing the Link Information Items known to the processor.
</p>
<p><em>node-set</em> <b>ext:arc-start</b>()</p>
<p>The <code>ext:arc-start</code> function returns a node
set containing the Arc Information Items in the Starting Participant Arcs property of the context
node. It takes no arguments.</p>
<p><em>node-set</em> <b>ext:arc-end</b>()</p>
<p>The <code>ext:arc-end</code> function returns a node
set containing the Arc Information Items in the Ending Participant Arcs property of the context
node. It takes no arguments.</p>
</div>
<div class="div3">
<h4><a name="N1512"></a>3.1.2 Function Example</h4>
<p>The following templates show how one might format a <code>phrase</code>
element in the source document differently depending on whether or not
it was identified as the starting resource of a link:</p>
<table class="eg" cellpadding="5" border="1" bgcolor="#99ffff" width="100%" summary="Example"><tr><td><pre><xsl:template match="phrase[count(ext:arc-start()) > 0]">
<-- If the phrase is part of a link, make it a link to the target
of the first arc. This does not adequately handle the case where
the phrase participates as the starting resource in more than
one link. -->
<fo:basic-link
external-destination="{ext:arc-start()/endParticipant/@resource}">
<xsl:apply-templates/>
</fo:basic-link>
</xsl:template>
<xsl:template match="phrase">
<xsl:apply-templates/>
</xsl:template></pre></td></tr></table>
</div>
</div>
<div class="div2">
<h3><a name="sec-style-content-auto"></a>3.2 With a Link-Aware XSLT Processor</h3>
<p>[This section describes hypothetical additions to XSLT and/or
XSL. These additions have not been reviewed by the WG and their
presence here does not indicate that they will be added to any future
version of XSL.]</p>
<p>In order to address the problems associated with placing all of the
burden of link maintenance on the stylesheet author, we need to add
XLink support into XSLT in a much more significant manner.</p>
<p>We observe that once the XSLT processor is aware of the link
relationships that exist in the source document, it could conceivably
maintain those relationships across transformation. Consider a simple
document with a link from node B to node D:</p>
<img src="link-xform.gif" alt="Automatic Link Transformation">
<p>During transformation, for every node in the result tree, the XSLT
processor knows what the context node in the source tree was when the
result node was created. It follows that XSLT can, in principle,
maintain the link relationships across transformation.</p>
<p>Some difficulties need to be addressed:</p>
<ol>
<li><p>How does the stylesheet author control the selection of links?</p>
<p>Suppose that the source document links an element, A, in the source
document with three other elements in the source document, B, C, and
D. The XLink-aware processor can maintain that relationship in the
result tree (linking A' with B', C', and D'), but what if the
stylesheet author wishes to suppress the arc between A and C?</p>
<p>We suggest two new top-level XSLT elements, <code>xsl:strip-links</code>
and <code>xsl:preserve-links</code>, to provide this capability.</p>
</li>
<li><p>What happens if a source node is never processed, or produces no
nodes in the result tree?</p>
<p>If that source node is the sole participant at one end of an arc (or if
all of the nodes in the participant resource have vanished), then that link
does not occur in the result tree.</p>
</li>
<li><p>What happens if the source node is processed several times, producing
disjoint nodes in the result tree?</p>
<p>We observe that heuristics have been described for this case in
<a href="#HookerMaden2000">[HookerMaden2000]</a>. Since heuristics are known to be imperfect,
we suggest a new boolean attribute, <code>xsl:link-target</code>, described
below.</p>
</li>
<li><p>How do you add new links to the Link Set model?</p>
<p>Modelling the links as Infoset augmentation has the appealing property
that it allows all of the links to be processed in the same way. But what
if the stylesheet wants to add new links that should also be processed
in the same way?</p>
<p>We propose new XSLT elements for this purpose, see
<a href="#style-elements"><b>3.3 Style Elements</b></a>.</p>
</li>
</ol>
<p>The serializer for the result tree could
instantiate the link relationships that it knows about using XLink,
making this a nicely self-contained system: an XLink-aware XSLT processor
produces a result tree that contains XLinks.</p>
<p>The problem of styling these links remains.</p>
<div class="div3">
<h4><a name="N1622"></a>3.2.1 Controlling Link Selection</h4>
<p>In some cases, stylesheet authors may wish to control the selection
of links. We suggest two new top-level elements to do this:
<code>xsl:strip-links</code> and <code>xsl:preserve-links</code>. As their names
suggest, these work in a way roughly analagous to the way that
<code>xsl:strip-space</code> and <code>xsl:preserve-space</code> work.</p>
<p>Each of these elements has a <code>select</code> attribute. The set
of arcs selected by <code>xsl:strip-links</code> are not represented in the
transformed document. The set selected by <code>xsl:preserve-links</code>
are represented. Initially, all links are preserved.</p>
<p>If the select expression in either of these elements selects nodes
other than Arc and Link elements in the Link Set, they are ignored.</p>
</div>
<div class="div3">
<h4><a name="N1658"></a>3.2.2 Identifying Link Targets Explicitly</h4>
<p>Presented with a complex transformation that produces several disjoint
nodes (perhaps from different modes), it may be impossible for the XSLT
processor to accurately identify the link targets automatically.</p>
<p>Although we expect heuristics to be used for most cases, we propose
a new boolean attribute to make the selection explicit:
<code>link-target</code>.</p>
<p>The <code>link-target</code> attribute can appear on <code>xsl:element</code>,
and <code>xsl:text</code> elements and (as <code>xsl:link-target</code>)
on literal result tree elements.
When <code>true()</code>,
the element on which it occurs is the link target for all links associated
with the current context node. The use of <code>link-target</code> overrides
any heuristic for the links which are associated with the context node.</p>
<table border="1" summary="Editorial note: Link Target Granularity"><tr><td align="left" valign="top" width="50%"><b>Editorial note: Link Target Granularity</b></td><td align="right" valign="top" width="50%"> </td></tr><tr><td colspan="2" align="left" valign="top">Is this definition of <code>link-target</code> too coarse? It makes
<em>all</em> links to the context node point to the nodes in the result
tree identified as the link target. Might it be necessary to change this
on a per-link basis?</td></tr></table>
<p>To better understand how this works, let's consider a concrete example.
Suppose that you have a link to a chapter title and that title appears
in three different places in your result tree: in the Table
of Contents, at the top of the page where the chapter begins, and in
the running header on the pages of that chapter.</p>
<p>Imagine that the heuristics would select the inline at the top of
the page where the chapter begins, but you wish to make a link to the
entry in the table of contents. Conceptually, the heuristic algorithm
must consider all of the possible link targets and select the "best
one".</p>
<p>By adding a <code>xsl:link-target</code> to the literal result element
that instantiates the chapter title in the Table of Contents, we give the
the stylesheet author a way to inform the heuristic which element should
explicitly be used, even if it is not the "best one" according to its
algorithm.</p>
</div>
<div class="div3">
<h4><a name="N1720"></a>3.2.3 Adding Style Properties</h4>
<p>Automatic link identification is only half the battle. We still
need to provide mechanisms for applying style to the transformed
links.</p>
<p>There are two different types of styling that can be applied to
links: property styling and structural styling. Property styling
consists of those style changes that can be achieved by changing
property values (or attributes) in the result tree. Structural styling
consists of those style changes that require a restructured result
tree.</p>
<p>Changes to fonts, foreground, and background
colors are all things that can be achieved with property styling. Adding
a horizontal rule above and below a resource, or putting a resource in
a table, can only be achieved by structural styling.</p>
<p>We propose a new XSL element to provide style properties.</p>
<table class="eg" cellpadding="5" border="1" bgcolor="#99ffff" width="100%" summary="Example"><tr><td><pre>
<!-- Category: instruction -->
<xsl:link-style
select = expression
xsl:use-attribute-sets = qnames>
<!-- Content: xsl:attribute* -->
</xsl:link-style>
</pre></td></tr></table>
<p>The select expression of <code>xsl:link-style</code> should always select
Link Information Items. The attributes provided are associated with the links selected.</p>
<div class="div4">
<h5><a name="N1746"></a>3.2.3.1 Style Properties Example</h5>
<p>The following templates show how one might make starting resources
with the "HTML" role appear blue and underlined in the result tree.</p>
<table class="eg" cellpadding="5" border="1" bgcolor="#99ffff" width="100%" summary="Example"><tr><td><pre><xsl:link-style select="link::*/@role='http://www.w3.org/1999/xhtml'">
<xsl:attribute name="color">blue</xsl:attribute>
<xsl:attribute name="text-decoration">underlined</xsl:attribute></pre></td></tr></table>
</div>
</div>
<div class="div3">
<h4><a name="N1760"></a>3.2.4 Style-based Structural Changes</h4>
<p>In order to support structural styling, it is essentially necessary
for a stylesheet to apply more than one template to a given source
node. At the moment, this can be accomplised with <code>xsl:import</code>
and <code>xsl:apply-imports</code>. It has already been suggested that a
general facility be provided for this feature.</p>
<p>For example, <code>xsl:next-match</code> could be added to XSLT. It
would apply the next-highest-priority template to the current context
node. Using next match, we could put links in HTML tables as follows:</p>
<table class="eg" cellpadding="5" border="1" bgcolor="#99ffff" width="100%" summary="Example"><tr><td><pre>
<xsl:template match="*[count(arc-start::*) > 0]" priority="100">
<table>
<tr>
<td>
<xsl:next-match/>
</td>
</tr>
</table>
</xsl:template></pre></td></tr></table>
<p>By assigning this template a very high priority, we can assure that
it will always match first. The <code>xsl:next-match</code> inside will
apply the next highest priority template so that the formatting for
each individual element is correct.</p>
<p>Consider our earlier example of a styling a phrase that
participated in a link. While we previously had to add conditional
logic to all of our phrase-level elements, using
<code>xsl:next-match</code>, we can handle all of them simultaneously.</p>
<div class="div4">
<h5><a name="N1795"></a>3.2.4.1 Next Match Example</h5>
<p>The following templates show how one might format elements in the
source document differently depending on whether or not they are
identified as the starting resource of a link:</p>
<table class="eg" cellpadding="5" border="1" bgcolor="#99ffff" width="100%" summary="Example"><tr><td><pre><xsl:template match="*[arc-start::*]" priority="100">
<-- If the element is part of a link, make it a link to the target
of the first arc. This does not adequately handle the case where
the phrase participates as the starting resource in more than
one link. -->
<fo:basic-link
external-destination="{arc-start::*[1]/endParticipant/@resource}">
<xsl:next-match/>
</fo:basic-link>
</xsl:template>
<xsl:template match="phrase">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="emphasis">
<em><xsl:apply-templates/></em>
</xsl:template>
<!-- etc. --></pre></td></tr></table>
</div>
</div>
</div>
<div class="div2">
<h3><a name="style-elements"></a>3.3 Style Elements</h3>
<p>Our original goal in writing this note was to explore how linking
and style effect each other and how a processing system might
reasonably deal with these issues. Several early reviewers suggested
that this work could be taken further to provide a mechanism not only
for providing uniform treatment of source document links, but also
uniform treatment of links created by the stylesheet. In this section,
we explore some of those ideas.</p>
<p>Consider this simple document:</p>
<table class="eg" cellpadding="1" border="1" bgcolor="white" width="100%" summary="Example"><tr><td><pre><doc>
<p><name>Pat Jones</name> is taking <span class="startrsrc"><course xlink:type='simple'
xlink:href='courses/CS101.xml'>CS-101</course></span>.</p>
</doc></pre></td></tr></table>
<p>Imagine for the moment that our goal is to link the persons name
with some online address book. One way to do that would be to construct
the link natively in the result tree vocabulary with a template like
this (assuming our target is HTML):</p>
<table class="eg" cellpadding="1" border="1" bgcolor="white" width="100%" summary="Example"><tr><td><pre><xsl:template match="name">
<a href="http://example.com/address?{.}">
<xsl:apply-templates/>
</a>
</xsl:template></pre></td></tr></table>
<p>But that has the unsatisfactory result that the link is unknown to the
"link aware" processor we've been describing. That processor has already
constructed a link set for the source document:</p>
<table class="eg" cellpadding="1" border="1" bgcolor="white" width="100%" summary="Example"><tr><td><pre><linkset xmlns="&namespaceName;">
<link>
<arc>
<startParticipant resource="/doc/p/course[1]"/>
<endParticipant resource="courses/CS101.xml"/>
</arc>
</link>
</linkset></pre></td></tr></table>
<p>What would seem more appropriate would be to insert the resulting link
into the "result document link set". The result document link set is
conceptually analagous to the source document link set: it describes the
linking relationships in the result document.</p>
<p>Up to now, the result document link set has been discussed only
implicitly because it was derived solely from the source document link
set.</p>
<p>We introduce four new XSL elements for constructing links in the
result tree link set: <code>xsl:link</code>, <code>xsl:arc</code>,
<code>xsl:start-participant</code>, and <code>xsl:end-participant</code>.</p>
<div class="div3">
<h4><a name="N1867"></a>3.3.1 xsl:link</h4>
<p class="element-syntax"><a name="element-link"></a><code><xsl:link<br> id = <var>id</var>><br> <!-- Content: (<a href="#element-arc">xsl:arc</a>+, <var>other-namespace-elements</var>) --><br></xsl:link></code></p>
<p>An <code>xsl:link</code> element selects or constructs a link in the
result tree link set. If an ID is given, it is logically an ID in the
result tree link set. By using the same ID value, it is possible for
different templates to add arcs to the same <code>xsl:link</code>.</p>
<p>Additional elements in other namespaces can be provided, the effect
that they have on rendering the link is undefined.</p>
</div>
<div class="div3">
<h4><a name="N1903"></a>3.3.2 xsl:arc</h4>
<p class="element-syntax"><a name="element-arc"></a><code><xsl:arc<br> role = <var>uri-reference</var><br> title = <var>string</var><br> show = "new" | "replace" | "embed" | "other" | "none"<br> actuate = "onLoad" | "onRequest" | "other" | "none"><br> <!-- Content: (<a href="#element-start-participant">xsl:start-participant</a>, <a href="#element-end-participant">xsl:end-participant</a>, <var>other-namespace-elements</var>*) --><br></xsl:arc></code></p>
<p>An <code>xsl:arc</code> adds an arc to the result tree link set.</p>
<p>Additional elements in other namespaces can be provided, the effect
that they have on rendering the link is undefined.</p>
</div>
<div class="div3">
<h4><a name="N1978"></a>3.3.3 xsl:start- and xsl:end-participant</h4>
<p class="element-syntax"><a name="element-start-participant"></a><code><xsl:start-participant<br> select = <var>node-set-expression</var><br> resource = <var>uri-reference</var>><br> <!-- Content: (<var>other-namespace-elements</var>*) --><br></xsl:start-participant></code></p>
<p class="element-syntax"><a name="element-end-participant"></a><code><xsl:end-participant<br> select = <var>node-set-expression</var><br> resource = <var>uri-reference</var>><br> <!-- Content: (<var>other-namespace-elements</var>*) --><br></xsl:end-participant></code></p>
<p>The <code>xsl:start-participant</code> and <code>xsl:end-participant</code>
elements identify the beginning and ending resources of the arc. Each
resource can be identified by <em>either</em> a <code>select</code>
or a <code>resource</code> attribute.
</p>
</div>
<div class="div3">
<h4><a name="N2045"></a>3.3.4 Using the Link Elements</h4>
<p>With these elements, we can recast our earlier template as follows:</p>
<table class="eg" cellpadding="1" border="1" bgcolor="white" width="100%" summary="Example"><tr><td><pre><xsl:template match="name">
<xsl:link>
<xsl:arc>
<xsl:start-participant select="."/>
<xsl:end-participant resource="http://example.com/address?{.}"/>
</xsl:arc>
</xsl:link>
</xsl:template></pre></td></tr></table>
</div>
<div class="div3">
<h4><a name="N2058"></a>3.3.5 Merging Link Sets</h4>
<p>The links created by <code>xsl:link</code> are placed in the result tree
link set. They are explicitly not placed in the source tree link set and
are not available for querying by the stylesheet.</p>
<p>If an explicit result tree link set is desired, when the styling
process completes, it must be constructed by merging the relevant
links from the source document link set (with appropriate translation
into the result tree) with the links explicitly created in the result
document link set.</p>
<p>If this is our result tree:</p>
<table class="eg" cellpadding="1" border="1" bgcolor="white" width="100%" summary="Example"><tr><td><pre><div>
<p><em>Pat Jones</em> is taking <span>CS 101<span></p>
</div></pre></td></tr></table>
<p>Then the source document link set would contribute the following links
to the result document link set:</p>
<table class="eg" cellpadding="1" border="1" bgcolor="white" width="100%" summary="Example"><tr><td><pre><linkset xmlns="&namespaceName;">
<link>
<arc>
<start-participant resource="result-tree:/div/p/span[1]"/>
<end-participant resource="courses/cs101.xml"/>
</arc>
<link>
</pre></td></tr></table>
<div class="note"><p class="prefix"><b>Note:</b></p><p>We've introduced the "scheme" <code>result-tree:</code> to
express pointers into the result tree. This is just a convention for
presentation here. In a real implementation, pointers or some other
mechanism would more likely be used and if the link set were serialized,
a proper base URI would be known.</p></div>
<p>The template that constructed an explicit link would contribute:</p>
<table class="eg" cellpadding="1" border="1" bgcolor="white" width="100%" summary="Example"><tr><td><pre><linkset xmlns="&namespaceName;">
<link>
<arc>
<start-participant resource="result-tree:/div/p/em[1]"/>
<end-participant resource="http://example.com/address?Pam Jones"/>
</arc>
<link>
</pre></td></tr></table>
<p>So the resulting link set is <code>linkset</code> that contains these two
<code>link</code>s.</p>
</div>
<div class="div3">
<h4><a name="N2112"></a>3.3.6 What's Missing</h4>
<p>These elements allow the stylesheet author to construct links that
become part of the unified processing model. One obvious weakness that
remains is that it is not possible for these elements to link to generated
text. Suppose that I have a cross reference element that is processed
as follows:</p>
<table class="eg" cellpadding="1" border="1" bgcolor="white" width="100%" summary="Example"><tr><td><pre><xsl:template match="xref">
<xsl:text>See also: </xsl:text>
<xsl:apply-templates/>
</xsl:template></pre></td></tr></table>
<p>There's no way to use the <code>xsl:link</code> elements to construct a
link from the generated text "See also: ", because there's no source tree
select expression that can identify it.</p>
<p>One possible way to move forward would be to add a new attribute,
<code>result-tree-id</code> which would allow the generated text to be
addressed:</p>
<table class="eg" cellpadding="1" border="1" bgcolor="white" width="100%" summary="Example"><tr><td><pre><xsl:template match="xref">
<xsl:text result-tree-id="xref{generate-id(.)}">See also: </xsl:text>
<xsl:apply-templates/>
<xsl:link>
<xsl:arc>
<xsl:start-participant select="result-tree:/id(xref{generate-id(.)}"/>
<xsl:end-participant resource="whatever-is-appropriate"/>
</xsl:arc>
</xsl:link>
</xsl:template></pre></td></tr></table>
<p>But this seems contrived and unsatisfactory. We invite suggestions.</p>
</div>
</div>
</div>
<div class="div1">
<h2><a name="sec-link-traversal"></a>4 Styling Link Traversal</h2>
<p>After much consideration, we arrived at the conceptual model which
follows. This model exposes a significant issue in the interaction between
the current technologies for linking and styling: <a href="#xpointer-cr">[XPointer]</a>
can address documents at the character level whereas
<a href="#xslt-rec">[XSLT]</a> can only address documents at the text-node level.</p>
<p>We show that by selecting specific defaults within the model, we
can provide expected functionality with current technology. As the
technology of linking and styling matures, we'll be able to exploit
more of the model with standard technologies. (Implementations will
be able to exploit the entire model immediately by employing extensions
to standard functionality.)</p>
<div class="div2">
<h3><a name="sec-link-traversal-concepts"></a>4.1 A Conceptual Model for Styling Link Traversal</h3>
<p>From a styling perspective, link traversal requires the styling
application to retrieve the document which contains the ending
resource, style it, and present it. In addition, the ending resource
may get special treatment. It might, for example, be shown in reverse
video
or the document view might be adjusted so that the ending resource
appears at the top of the viewing context.</p>
<p>Displaying the styled result is a complex problem because links are
between <em>source documents</em>, not between their styled results.
Consider, for example, an XLink cross-reference:</p>
<table class="eg" cellpadding="1" border="1" bgcolor="white" width="100%" summary="Example"><tr><td><pre>See <xref xlink:type="simple" xlink:href="#ch5">Chapter 5</xref></pre></td></tr></table>
<p>This link expresses a relationship between the text "Chapter 5" and
the element with an ID of "ch5" elsewhere in the document. It provides
no specific information about the formatted result that might be
presented to the reader. Online, this might become a hypertext link to
some other location whereas in print it might be rendered simply as a
page number in parenthesis (or not at all).</p>
<p>The arbitrary nature of styling transformations can make this
problem even more complex, as when the target in the source document
is rendered in multiple locations in the presented result
(See <a href="#sec-discon-results"><b>5 Discontiguous Resources</b></a>).</p>
<p>We may also want to consider how much of the document that contains
the ending resource we wish to display. HTML browsers traditionally
retrieve the entire resource and display it, moving the viewing
context to the point where the ending resource occurs. In the case of
XML documents, we may wish to have more control. We add one additional
generalization to the conceptual model for this purpose.</p>
<p>Rather than presenting the entire resource, we might want to
display a subresource within the document <em>that is
different</em> from the subresource that is the ending resource of
the link. For example, to style a link to a figure within a book, we
might want to display the whole chapter that contains the figure:
</p>
<table class="eg" cellpadding="1" border="1" bgcolor="white" width="100%" summary="Example"><tr><td><pre><doc id='process'>
<chap>...</chap>
<chap>...</chap>
<span class="present"><chap id='present'>
<p>...</p>
<span class="target"><figure id='target'>
...
</figure></span>
<p>...</p>
<p>...</p>
</chap></span>
<chap>...</chap>
</doc></pre></td></tr></table>
<p>In other words, we might wish to style a link by processing a whole
document (in order to get chapter numbering correct, for
example), present the third chapter in the user agent, and highlight
the figure.</p>
<p>We describe this in terms of three distinct contexts, each identified
by a URI reference (probably including an <a href="#xpointer-cr">[XPointer]</a>
fragment identifier in most cases):</p>
<ol>
<li><p>[<a name="dt-processing-context" title="Processing Context">Definition</a>: The
<b>Processing Context</b> of a link traversal is the resource (or
portion of a resource) that is available to the style engine.]
</p>
<p>Informally, this is the tree that is available to the styling
application. Usually this is the whole document.</p>
</li>
<li><p>[<a name="dt-presentation-context" title="Presentation Context">Definition</a>: The
<b>Presentation Context</b> of a link traversal is the resource (or
portion of a resource) that is effectively the source resource to be
styled.]</p>
<p>In other words, the results of styling the [Presentation Context] is
the content that is presented in the user agent. Often this is the whole
document.</p>
</li>
<li><p>[<a name="dt-target" title="Target">Definition</a>: The
<b>Target</b> of a link traversal is the ending resource of the link.
]</p>
</li>
</ol>
<p>These components, plus the stylesheet to be used,
are present in the Infoset contributions
described in <a href="#xlink-infoset"><b>2.1.1 XLink Infoset Contributions</b></a>. However, the current XLink
specification does not provide standard ways to provide all of these
components. Rather than request possibly contentious additions to XLink
at this late date, we recommend using default values for several
components.</p>
<p>For embedded resources, we recommend that the default processing
and presentation contexts be the same as the target (see <a href="#spec-range-embed"><b>6.2 Ranges that are Presentation Context</b></a>). For resources displayed with "new" or
"replace" semantics, we recommend that the default processing and
presentation contexts be the whole document that contains the ending
resource.</p>
<p>In any case, the application
has considerable freedom in selecting the appropriate stylesheet. In some
applications it may make sense to use the same stylesheet as the source
document (particularly, perhaps, in the "embed" case); in others it may
make sense to use the XML Stylesheet PI (<a href="#style-pi">[XML Stylesheet PI]</a>)
from the target document or some other application-specific selection.</p>
<p>Application-specific behavior can be modeled with extension metadata
in the XLink linking elements. If useful subsets of this behavior become
common, a future version of XLink may promote them to standard elements.</p>
<div class="div3">
<h4><a name="sec-embed-complication"></a>4.1.1 Special Considerations for Embedded Resources</h4>
<p>The model articulated here is the most consistent and
rational model that we could imagine. It does not,
however, produce exactly the results that might be expected in all
cases. In particular, embedding resources requires special
consideration. (Embedding resources identified by XPointer ranges
is even worse; see <a href="#spec-range-embed"><b>6.2 Ranges that are Presentation Context</b></a>.)</p>
<p>Consider the following documents, <code>doc1.xml</code>:</p>
<table class="eg" cellpadding="5" border="1" bgcolor="#99ffff" width="100%" summary="Example"><tr><td><pre><doc>
<?xml-stylesheet href="style1.xsl" type="text/xsl"?>
<list>
<item>x xxxx</item>
<item>xxx xx xxxx</item>
<embed xlink:type="simple"
xlink:show="embed" xlink:actuate="onLoad"
xlink:href="doc2.xml#xpointer(//list[1]/item[2])"/>
<item>xxxxx</item>
</list>
</doc></pre></td></tr></table>
<p>and <code>doc2.xml</code>:</p>
<table class="eg" cellpadding="5" border="1" bgcolor="#99ffff" width="100%" summary="Example"><tr><td><pre><doc>
<?xml-stylesheet href="style2.xsl" type="text/xsl"?>
<list>
<item>y yyyy</item>
<item>yyy yy yyy</item>
<item>yyyy</item>
</list>
</doc>
</pre></td></tr></table>
<p>Suppose that <code>style1.xsl</code> styles lists with Arabic
numerals and <code>style2.xsl</code> styles them with Roman numerals
(and no other significant transformations are performed). What will
the results be?</p>
<p>If the embedded fragment is processed with <code>style1.xsl</code>,
the result will be something like this:</p>
<table class="eg" cellpadding="5" border="1" bgcolor="#99ffff" width="100%" summary="Example"><tr><td><pre>1. x xxxx
2. xxx xx xxxx
2. yyy yy yyy
4. xxxxx</pre></td></tr></table>
<p>(In fact, it is even possible that the last item will be numbered "3"
if the stylesheet is only counting <code><item></code>s, but that
can be avoided in the stylesheet.)</p>
<p>If the embedded fragment is processed with <code>style2.xsl</code>,
the result will be something like this:</p>
<table class="eg" cellpadding="5" border="1" bgcolor="#99ffff" width="100%" summary="Example"><tr><td><pre>1. x xxxx
2. xxx xx xxxx
ii. yyy yy yyy
4. xxxxx</pre></td></tr></table>
<p>In neither case will the result that the author probably had in mind
(namely 1, 2, 3, 4) be the result.</p>
<p>In fact, the desired result can be achieved, but only by constructing
the <em>source</em> document in an appropriate way:</p>
<table class="eg" cellpadding="5" border="1" bgcolor="#99ffff" width="100%" summary="Example"><tr><td><pre><doc>
<?xml-stylesheet href="style1.xsl" type="text/xsl"?>
<list>
<item>x xxxx</item>
<item>xxx xx xxxx</item>
<item><embed xlink:type="simple"
xlink:show="embed" xlink:actuate="onLoad"
xlink:href="doc2.xml#xpointer(//list[1]/item[2]/node())"/>
</item>
<item>xxxxx</item>
</list>
</doc></pre></td></tr></table>
<p>By selecting only the content of the target list item, we allow the
stylesheet for the source document to number all of the items in a logical
way.</p>
<p>This is hardly the best possible situation, but no superior alternative
seems evident.</p>
<p>Since both of these documents seem to use the same tag set,
it may have been closer to the author's original intention to style a
document that contained <em>a merged source document</em> (as
might be achieved with <a href="#xinclude-wd">[XInclude]</a>)
rather than <em>merging the
styled results</em>
(as is achieved with <a href="#xlink-cr">[XLink]</a>).
See <a href="#xinclude-vs-xlink"><b>4.1.3 XInclude vs. XLink Embedding</b></a>.</p>
</div>
<div class="div3">
<h4><a name="N2396"></a>4.1.2 Result Tree Numbering</h4>
<p>To compound the situation further, the two most popular
presentation formats for XML documents, HTML and XSL Formatting
Objects, perform numbering in completely different ways.
</p>
<p>In the HTML, list item numbering is actually done by the formatter,
whereas it is done by the transformation that produces FOs in
XSL. This means that the first example described above will
actually work for HTML but not for XSL FOs.</p>
<p>Conversely, if the desired result was a mixture of numbering systems
(as might be the case in a legal document, perhaps), the former result
could not be achieved in HTML without considerable effort.</p>
<p>Consider how the stylesheets would likely produce formatting objects
for the <code>doc1.xml</code>:</p>
<table class="eg" cellpadding="5" border="1" bgcolor="#99ffff" width="100%" summary="Example"><tr><td><pre><list-block>
<list-item>
<list-item-label><block>1.</block></list-item-label>
<list-item-body><block>x xxxx</block></list-item-body>
</list-item>
<list-item>
<list-item-label><block>2.</block></list-item-label>
<list-item-body><block>xxx xx xxxx</block></list-item-body>
</list-item>
<list-item>
<list-item-label><block>2.</block></list-item-label>
<list-item-body><block>yyy yy yyy</block></list-item-body>
</list-item>
<list-item>
<list-item-label><block>4.</block></list-item-label>
<list-item-body><block>xxxxx</block></list-item-body>
</list-item>
</list-block></pre></td></tr></table>
<p>As you can see, the list item numbers are textually part of the
result tree. This is not so in the HTML case:</p>
<table class="eg" cellpadding="5" border="1" bgcolor="#99ffff" width="100%" summary="Example"><tr><td><pre><ol>
<li>x xxxx</li>
<li>xxx xx xxxx</li>
<li>yyy yy yyy</li>
<li>xxxxx</li>
</ol></pre></td></tr></table>
<p>The list items are enumerated by the browser in the HTML case,
so the numbering will be sequential.</p>
</div>
<div class="div3">
<h4><a name="xinclude-vs-xlink"></a>4.1.3 XInclude vs. XLink Embedding</h4>
<p>The distinction between <a href="#xinclude-wd">[XInclude]</a> and
<a href="#xlink-cr">[XLink]</a> deserves special consideration.</p>
<p>At a high level, <a href="#xinclude-wd">[XInclude]</a> is similar to
external entity references in <a href="#xml-rec">[XML]</a>. That is,
the inclusion is done at or shortly after parsing, before style
is applied. As you can see in the following figure, the element
"E" is identified as an XInclude element and the content
<em>of the source tree</em> is modified <em>prior</em>
to styling:</p>
<img src="include-style.gif" alt="xinclude styling">
<p>Embedded XLinks, as we've described them, are handled during the
styling process. When an embedded XLink is processed, the
<em>result of styling the ending resource</em>
of the link <em>is merged</em> into the
<em>result of styling the document into which it is embedded</em>.</p>
<img src="embed-style.gif" alt="xlink embed styling">
<p>The decision about whether to use an <a href="#xinclude-wd">[XInclude]</a> or
an embedded <a href="#xlink-cr">[XLink]</a> is very dependent on the
application. As a general rule, if the resource being embedded is
from the same schema as the embedding document, and it will be styled
with the same stylesheet, <a href="#xinclude-wd">[XInclude]</a> is probably a
good choice. If the embedded document is from a different schema, or
requires a different stylesheet, <a href="#xlink-cr">[XLink]</a> is probably
the right choice.</p>
</div>
</div>
<div class="div2">
<h3><a name="N2504"></a>4.2 The Semantics of Nested Linking</h3>
<p>The actuate axis of an XLink linking element has two standard, defined values,
<code>onRequest</code> and <code>onLoad</code>. For links which have
the <code>onRequest</code> semantics, style processing is straightforward:
processing continues (possibly to completion) until a user event
initiates the link.</p>
<p>For links which have the <code>onLoad</code> semantic, however,
things are slightly more complicated. The styling application is
expected to process these links during the styling process
(effectively, "when the document is loaded").</p>
<p>There are several cases to consider:</p>
<dl>
<dt class="label">An "onLoad" link with an <code>xlink:show</code> of "new"</dt>
<dd><p>The styling application should create a
new viewing context (window, frame, pane, etc.) and display the ending
resource of the link in that context.</p></dd>
<dt class="label">An "onLoad" link with an <code>xlink:show</code> of "replace"</dt>
<dd><p>The styling application should replace the document currently
being styled with the ending resource of the link.</p>
<p>The <a href="#xlink-cr">[XLink]</a> specification says that the first such
link in document order is the one that should be processed. However, because
a styling application has the freedom to process the nodes of a document
in any order, this definition seems restrictive. We recommend instead that
it simply state that the first such link encountered should be
processed. (Subsequent nodes will clearly not be processed since the
original document is abandoned.) By extension, if the first link encountered
has multiple arcs, the first arc should be processed.
</p>
<div class="note"><p class="prefix"><b>Note:</b></p><p>The fact that this behavior can lead to infinite loops through
one or more documents is a problem outside the scope of this note.</p>
</div>
</dd>
<dt class="label">An "onLoad" link with an <code>xlink:show</code> of "embed"</dt>
<dd><p>The styling application should embed the result of styling
the ending resource of the link in the current document.</p></dd>
</dl>
<p>The possibility of a resource that is <em>being embedded</em>
containing an "onLoad" link must also be considered:</p>
<dl>
<dt class="label">An "onLoad" link with an <code>xlink:show</code> of "new" encountered
in a resource being embedded</dt>
<dd><p>The styling application should create a
new viewing context (window, frame, pane, etc.) and display the ending
resource of the link in that context.</p>
<p>In other words, if A embeds B which contains an onLoad/new link
to C, the result will be B embedded in A in one viewing context and
C in another viewing context.</p></dd>
<dt class="label">An "onLoad" link with an <code>xlink:show</code> of "replace" encountered
in a resource being embedded</dt>
<dd><p>The style processor should replace the <em>resource being
embedded</em> with the result of styling the ending resource of the
link.</p>
<p>In other words, if A embeds B which contains an onLoad/replace link
to C, the result will be C embedded in A, with no trace of B.</p></dd>
<dt class="label">An "onLoad" link with an <code>xlink:show</code> of "embed" encountered
in a resource being embedded</dt>
<dd><p>The styling application should embed the result of styling
the ending resource of the link in the current document.</p>
<p>In other words, if A embeds B which contains an onLoad/embed link
to C, the result will be C embedded in B embedded in A.</p></dd>
</dl>
</div>
</div>
<div class="div1">
<h2><a name="sec-discon-results"></a>5 Discontiguous Resources</h2>
<p>Styling discontiguous resources presents a special set of problems.
One set of problems arises because we may wish to offer behavior in the
presentation engine that is independent of whether or not the resource
is discontiguous. A more significant issue involves the way in which
style transformations may create discontiguous resources from a single
resource in the source document.</p>
<div class="div2">
<h3><a name="sec-discon-functions"></a>5.1 Implementing Consistent Behavior</h3>
<p>Some presentation systems implement special behaviors with respect
to linking resources. For example, browsers may present links in a
different color or speak them in a different tone of voice.</p>
<p>Often, discontiguous resources can be viewed as distinct. That is,
a single resource consisting of three phrases can generally be treated
like three resources, each consisting of a single phrase.</p>
<p>When this is not sufficient, for example, when the stylesheet
author wishes to implement "mouse-over" highlighting of links and she
wants discontiguous parts of the same link to be highlighted together,
additional effort may be required.</p>
<p>The enhanced Infoset constructed by XLink identification, provides
the raw materials from which such a feature could be implemented.</p>
<p>The XSL Formatting Objects include properties for selecting alternate
presentations based on conditions. These properties, in conjunction with
a presentation system that has access to the enhanced Infoset would
allow an application to support this behavior.</p>
<p>Likewise for other presentation systems, access to the enhanced
Infoset provides enough information to implement the required
functionality.</p>
</div>
<div class="div2">
<h3><a name="sec-style-discon"></a>5.2 Discontinuity Introduced by Styling</h3>
<p>Transforming source documents for presentation may introduce
discontinuities. For example, consider a link to a chapter title. In
the document that contains the ending resource, that title is a
single, unambiguous element. But when that document is styled, the
chapter title may occur in several places (in the table of contents,
on the chapter title page, and in a dozen cross references). Which one
of these represents the ending resource?
</p>
<p>No perfect algorithm for finding the target is readily apparent,
but reasonable heuristics have been described
<a href="#HookerMaden2000">[HookerMaden2000]</a>.</p>
<p>To the extent that it is practical, we think applications should
provide users with access to all of the possible targets.</p>
</div>
</div>
<div class="div1">
<h2><a name="sec-ranges"></a>6 Ranges are Challenging</h2>
<p>XPointer ranges present a number of exceptional challenges to the
styling process. In the simplest case, they may be used to style
components that are smaller than the components exposed by the
data model of a particular styling language. Consider this link:</p>
<table class="eg" cellpadding="1" border="1" bgcolor="white" width="100%" summary="Example"><tr><td><pre><doc>
<p>Some text about <span class="startrsrc">Pat Jones</span> that participates in a third
party link.</p>
</doc></pre></td></tr></table>
<p>The link is composed only of characters in the middle of a text node.</p>
<p>Ranges can also span normal element boundaries, producing ranges
of text that are not well-formed in the XML sense:</p>
<table class="eg" cellpadding="1" border="1" bgcolor="white" width="100%" summary="Example"><tr><td><pre><doc>
<p>This text demonstrates
<emph>a <span class="startrsrc">link</emph> that spans a <emph>not well</span>-formed</emph>
range.</p>
</doc></pre></td></tr></table>
<div class="div2">
<h3><a name="spec-range-display"></a>6.1 Styling Ranges in a Larger Presentation Context</h3>
<p>Styling ranges (starting or ending resources expressed with XPointer ranges)
in a larger context is problematic when the data model of the style language
has a coarser granularity than the XML character. In particular, the
XSLT 1.0 data model exposes text nodes, but not individual characters.</p>
<p>We propose that a reasonable processing model in this case is simply
to style the smallest available node in the data model. For example,
we expect <code>ext:arc-start()</code> to return a non-empty
node set on every text node that contains one or more characters
that are starting resources.</p>
<p>This will generally result in the "sloppy" application of style. For
example,</p>
<table class="eg" cellpadding="1" border="1" bgcolor="white" width="100%" summary="Example"><tr><td><pre><doc>
<p>Some text about <span class="startrsrc">Pat Jones</span> that participates in a third
party link.</p>
</doc></pre></td></tr></table>
<p>will be styled as if the link were:</p>
<table class="eg" cellpadding="1" border="1" bgcolor="white" width="100%" summary="Example"><tr><td><pre><doc>
<p><span class="startrsrc">Some text about Pat Jones that participates in a third
party link.</span></p>
</doc></pre></td></tr></table>
<p>and</p>
<table class="eg" cellpadding="1" border="1" bgcolor="white" width="100%" summary="Example"><tr><td><pre><doc>
<p>This text demonstrates
<emph>a <span class="startrsrc">link</emph> that spans a <emph>not well</span>-formed</emph>
range.</p>
</doc></pre></td></tr></table>
<p>will be styled as if the link were:</p>
<table class="eg" cellpadding="1" border="1" bgcolor="white" width="100%" summary="Example"><tr><td><pre><doc>
<p>This text demonstrates
<span class="startrsrc"><emph>a link</emph> that spans a <emph>not well-formed</emph></span>
range.</p>
</doc></pre></td></tr></table>
<p>If styling markup of this sort is a requirement for XSLT 2.0, as we
think it is, then the data model of XSLT will have to be extended to
include characters.</p>
<p>A few additional extension functions could be added
which would offer a laborious solution to a subset of the range
problems that can occur inside a text node through extensive use of
the <code>substring</code> function. But it is not clear that any
rational substring-based approach will handle all of the possible
cases (e.g. discontiguous character ranges within a single text node
that taken together form a linking resource).</p>
</div>
<div class="div2">
<h3><a name="spec-range-embed"></a>6.2 Ranges that are Presentation Context</h3>
<p>The problem of ranges in the <a title="Presentation Context" href="#dt-presentation-context">presentation context</a> is much more serious. When
the <a title="Presentation Context" href="#dt-presentation-context">presentation context</a> is a range, a "sloppy" approach is unsuitable. If the
link author requests that a specific range of the target document is
to be presented, displaying more or or less than that range may be
disastrous. Consider the case where a warning is accidentally lost or
an adjacent range that has security implications is accidentally
displayed.</p>
<p>The problem is especially troublesome when we consider embedded
links. In the embedded case, we have suggested that
the <a title="Presentation Context" href="#dt-presentation-context">presentation context</a> be the same as the <a title="Target" href="#dt-target">target</a>. If an embedded link uses ranges
to point to a portion of a text node, it would be entirely unacceptable
to embed the entire text node.</p>
<div class="note"><p class="prefix"><b>Note:</b></p><p>Because the "sloppy" approach is unsuitable in this
case, it follows that ranges cannot be implemented using tools that have
a data model that does not address individual characters.</p></div>
<p>To tackle the difficult case introduced by ranges, we suggest that
a subset of XPointer that did not include ranges would be a useful product.
Such a subset could then be used as the data type for
<a title="Presentation Context" href="#dt-presentation-context">presentation context</a> and <code>show="embed"</code> ending resources.</p>
<p>However, we suggest the following approach of "pruning" as a possible
work-around for applications which must support <a title="Presentation Context" href="#dt-presentation-context">presentation context</a>s that are
defined in terms of ranges:</p>
<ol>
<li><p>Identify the smallest contiguous set of whole information
items which completely
contains the resource in question:</p>
<table class="eg" cellpadding="1" border="1" bgcolor="white" width="100%" summary="Example"><tr><td><pre><doc>
<p>This text demonstrates
<span class="startrsrc"><emph>a <span class="bothrsrc">link</emph> that spans a <emph>not well</span>-formed</emph></span>
range.</p>
</doc></pre></td></tr></table>
</li>
<li><p>Within this set, it is possible to identify three
classes of information items:</p>
<ol>
<li><p>Those that are wholly within the range: e.g. all the character
information items that occurs between the two <code>emph</code> elements.</p>
</li>
<li><p>Those that are wholly outside the range: e.g. the character
information items that comprise the string "-formed".</p></li>
<li><p>Those that are partially within the range: e.g. the
<code>emph</code> Element Information Items.</p></li>
</ol>
</li>
<li><p>Remove all information items that are wholly
<em>outside</em> the range:</p>
<table class="eg" cellpadding="1" border="1" bgcolor="white" width="100%" summary="Example"><tr><td><pre><span class="startrsrc"><emph><span class="bothrsrc">link</emph> that spans a <emph>not well</span></emph></span></pre></td></tr></table>
<p>In this example, only text was removed, but if additional
elements had been included by the initial set of information items,
they would have been removed as well.</p>
</li>
</ol>
<p>The node set that remains after this process becomes <em>both</em>
the <a title="Presentation Context" href="#dt-presentation-context">presentation context</a> <em>and</em> the <a title="Processing Context" href="#dt-processing-context">processing context</a> for the link.</p>
<p>It is necessary for the <a title="Processing Context" href="#dt-processing-context">processing context</a> to be restricted as well as the
<a title="Presentation Context" href="#dt-presentation-context">presentation context</a> because there is no practical way, in the general case,
under arbitrary transformation, for an application to trim the
<em>styled</em> result to just the nodes that resulted from
processing the target. The tree must be pruned <em>before</em>
styling. We feel that this additional complication provides further
evidence in favor of a range-free subset of XPointer.</p>
<div class="note"><p class="prefix"><b>Note:</b></p><p>Pruning prior to styling introduces the possibility that
nodes which contributed to the style of the result may have been lost
and therefore unexpected styling may occur.</p>
</div>
</div>
<div class="div2">
<h3><a name="range-ligs"></a>6.3 Ranges and Glyph/Character Boundaries</h3>
<p>Ranges can also be problematic if they have boundaries that occur
at certain glyph and character locations.</p>
<p>Consider the following range:</p>
<table class="eg" cellpadding="1" border="1" bgcolor="white" width="100%" summary="Example"><tr><td><pre><doc>
<p>...a brief <span class="startrsrc">history of f</span>lying machines.</p>
</doc></pre></td></tr></table>
<p>In a visual presentation system, what is the extent of that link if
the word "flying" begins with the "fl" ligature?</p>
<p>This problem is not limited to subtle issues of appropriate glyph
selection for aesthetic purposes. In some Indic languages, for
example, the actual order of the displayed glyphs may be different
from the order of characters in the source. Similar problems occur
in Thai, Arabic, and Hebrew, where the order and position of displayed
glyphs depends on linguistic factors, not simply on the order of the
characters in the source document.</p>
<p>It's unclear if there are any specific recommendations that can be
made about this issue globally, except that avoiding character ranges,
especially ranges that occur inside words, is probably best.</p>
</div>
</div>
</div>
<div class="back">
<div class="div1">
<h2><a name="sec-bibliography"></a>A References</h2>
<p>The distinction between normative and non-normative references is
made only to emphasize the distinction between references to stable
documents (W3C Recommendations, IETF RFCs, etc.) and documents that
are in some sense unstable (W3C Working Drafts, etc.). W3C Notes have
no normative status whatsoever.</p>
<div class="div2">
<h3><a name="N3007"></a>A.1 Normative References</h3>
<dl>
<dt class="label"><a name="xml-rec"></a>XML</dt><dd>Tim Bray, Jean Paoli, and C. M. Sperberg-McQueen, editors.
<cite>Extensible Markup Language (XML) 1.0</cite>.
World Wide Web Consortium, 1998.
(See <a href="http://www.w3.org/TR/REC-xml">http://www.w3.org/TR/REC-xml</a>.)</dd>
<dt class="label"><a name="xml-names"></a>XML Names</dt><dd>Tim Bray, Dave Hollander, and Andrew Layman, editors.
<cite>Namespaces in XML</cite>.
World Wide Web Consortium, 1999.
(See <a href="http://www.w3.org/TR/REC-xml-names/">http://www.w3.org/TR/REC-xml-names/</a>.)</dd>
<dt class="label"><a name="xpath-rec"></a>XPath</dt><dd>James Clark, Steve DeRose, editors.
<cite>XML Path Language (XPath) Version 1.0</cite>.
World Wide Web Consortium, 2000.
(See <a href="http://www.w3.org/TR/xpath">http://www.w3.org/TR/xpath</a>.)</dd>
<dt class="label"><a name="xslt-rec"></a>XSLT</dt><dd>James Clark, editor.
<cite>XSL Transformations (XSLT) Version 1.0</cite>.
World Wide Web Consortium, 1999.
(See <a href="http://www.w3.org/TR/xslt">http://www.w3.org/TR/xslt</a>.)</dd>
<dt class="label"><a name="style-pi"></a>XML Stylesheet PI</dt><dd>James Clark, editor.
<cite>Associating Style Sheets with XML Documents Version 1.0</cite>
World Wide Web Consortium, 1999.
(See <a href="http://www.w3.org/TR/xml-stylesheet/">http://www.w3.org/TR/xml-stylesheet/</a>.)</dd>
<dt class="label"><a name="rfc2396"></a>IETF RFC 2396</dt><dd>IETF (Internet Engineering Task Force).
<cite>RFC 2396: Uniform Resource Identifiers (URI): Generic Syntax</cite>.
T. Berners-Lee, R. Fielding, L. Masinter. 1998.
(See <a href="http://www.ics.uci.edu/pub/ietf/uri/rfc2396.txt">http://www.ics.uci.edu/pub/ietf/uri/rfc2396.txt</a>.)</dd>
</dl>
</div>
<div class="div2">
<h3><a name="N3117"></a>A.2 Other References</h3>
<dl>
<dt class="label"><a name="HookerMaden2000"></a>HookerMaden2000</dt><dd>Hooker, Deborah,
and Christopher Maden.
<cite>Æsop: A Browser for XML Documents and Open eBook
Publication Structures</cite>.
In XTech 2000, San José, February 2000.
(See <a href="http://www.oreilly.com/%7Ecrism/xtech2k/">http://www.oreilly.com/%7Ecrism/xtech2k/</a>.)</dd>
<dt class="label"><a name="xsl-wd"></a>XSL</dt><dd>Sharon Adler, Anders Berglund, Jeff Caruso, et. al., editors.
<cite>Extensible Stylesheet Language (XSL) Version 1.0</cite>.
World Wide Web Consortium, 2000.
(See <a href="http://www.w3.org/TR/xsl/">http://www.w3.org/TR/xsl/</a>.)</dd>
<dt class="label"><a name="xmlbase-wd"></a>XML Base</dt><dd>Jonathan Marsh, editor.
<cite>XML Base</cite>.
World Wide Web Consortium, 2000.
(See <a href="http://www.w3.org/TR/xmlbase/">http://www.w3.org/TR/xmlbase/</a>.)</dd>
<dt class="label"><a name="xinclude-wd"></a>XInclude</dt><dd>Jonathan Marsh, David Orchard, editors.
<cite>XML Inclusions (XInclude) Version 1.0</cite>.
World Wide Web Consortium, 2000.
(See <a href="http://www.w3.org/TR/xinclude/">http://www.w3.org/TR/xinclude/</a>.)</dd>
<dt class="label"><a name="xml-infoset-wd"></a>XML Infoset</dt><dd>John Cowan, editor.
<cite>XML Information Set</cite>.
World Wide Web Consortium, 2000.
(See <a href="http://www.w3.org/TR/xml-infoset/">http://www.w3.org/TR/xml-infoset/</a>.)</dd>
<dt class="label"><a name="xlink-cr"></a>XLink</dt><dd>Steve DeRose, Eve Maler, David Orchard, Ben Trafford, editors.
<cite>XML Linking Language (XLink) Version 1.0</cite>.
World Wide Web Consortium, 2000.
(See <a href="http://www.w3.org/TR/xlink/">http://www.w3.org/TR/xlink/</a>.)</dd>
<dt class="label"><a name="xpointer-cr"></a>XPointer</dt><dd>Ron Daniel Jr., Steve DeRose, Eve Maler, editors.
<cite>XML Pointer Language (XPointer) Version 1.0</cite>.
World Wide Web Consortium, 2000.
(See <a href="http://www.w3.org/TR/xpath">http://www.w3.org/TR/xpath</a>.)</dd>
<dt class="label"><a name="xmlschema-cr"></a>XML Schema (Structures)</dt><dd>Henry S. Thompson,
David Beech, Murray Maloney, et. al. editors.
<cite>XML Schema Part 1: Structures</cite>.
World Wide Web Consortium, 2000.
(See <a href="http://www.w3.org/TR/xmlschema-1/">http://www.w3.org/TR/xmlschema-1/</a>.)</dd>
</dl>
</div>
</div>
<div class="div1">
<h2><a name="N3262"></a>B Summary of Proposed Changes to XSLT (Non-Normative)</h2>
<p>This appendix summarizes the proposed changes to XSLT/XSL to provide
better support for linking.</p>
<div class="div2">
<h3><a name="N3272"></a>B.1 link-target</h3>
<p>The <code>link-target</code> attribute can appear on <code>xsl:element</code>
elements and on literal result tree elements. When <code>true()</code>,
the element on which it occurs is the link target for any links associated
with the current context node. The use of <code>link-target</code> overrides
any heuristic for the links which are associated with the context node.</p>
</div>
<div class="div2">
<h3><a name="N3293"></a>B.2 xsl:link-style</h3>
<p>We propose a new XSL element to provide style properties.</p>
<table class="eg" cellpadding="5" border="1" bgcolor="#99ffff" width="100%" summary="Example"><tr><td><pre>
<!-- Category: instruction -->
<xsl:link-style
select = expression
xsl:use-attribute-sets = qnames>
<!-- Content: xsl:attribute* -->
</xsl:link-style>
</pre></td></tr></table>
<p>The select expression of <code>xsl:link-style</code> should always select
Link Information Items. The attributes provided are associated with the links selected.</p>
</div>
<div class="div2">
<h3><a name="N3312"></a>B.3 XSL Linking Elements</h3>
<p>The <code>xsl:link</code>, <code>xsl:arc</code>, <code>xsl:start-participant</code>,
and <code>xsl:end-participant</code> elements allow a stylesheet author to
construct links that can be treated uniformly with links that are manifest
in the source or in a link base.</p>
</div>
<div class="div2">
<h3><a name="N3333"></a>B.4 xsl:next-match</h3>
<p>The <code>xsl:next-match</code> element selects the next highest priority
template for the current context node and applies it.</p>
</div>
</div>
<div class="div1">
<h2><a name="sec-xml-wg"></a>C W3C XLink/XSL Joint Task Force (Non-Normative)</h2>
<p>This note was prepared and approved for publication by the W3C
XLink/XSL Joint Task Force (TF). TF approval of this note
does not necessarily imply that all TF members agreed with all aspects of the
note. The members of the XLink/XSL Joint TF are:</p>
<ul>
<li>Sharon Adler
, IBM
</li>
<li>Anders Berglund
, IBM
</li>
<li>Paul Grosso
, Arbortext
</li>
<li>Eduardo Gutentag
, Sun
</li>
<li>Chris Maden
</li>
<li>Eve Maler
, Sun
(<i>Chair</i>)
</li>
<li>Norman Walsh
, Sun
(<i>Editor</i>)
</li>
</ul>
</div>
</div>
</body></html>