CR-xml-fragment-20010212
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
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
<!DOCTYPE html
PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="EN">
<head>
<meta name="generator" content="HTML Tidy, see www.w3.org">
<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 Fragment Interchange</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; }
</style>
<link rel="stylesheet" type="text/css" href=
"http://www.w3.org/StyleSheets/TR/W3C-CR.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 Fragment Interchange</h1>
<h2>W3C Candidate Recommendation 12 February 2001</h2>
<dl>
<dt>This version:</dt>
<dd><a href=
"http://www.w3.org/TR/2001/CR-xml-fragment-20010212">http://www.w3.org/TR/2001/CR-xml-fragment-20010212</a>
(<a href=
"http://www.w3.org/TR/2001/CR-xml-fragment-20010212.xml">XML</a>)</dd>
<dt>Latest version:</dt>
<dd><a href=
"http://www.w3.org/TR/xml-fragment">http://www.w3.org/TR/xml-fragment</a></dd>
<dt>Previous versions:</dt>
<dd><a href=
"http://www.w3.org/1999/06/WD-xml-fragment-19990630.html">http://www.w3.org/1999/06/WD-xml-fragment-19990630.html</a>
<a href=
"http://www.w3.org/1999/06/WD-xml-fragment-19990630.xml">http://www.w3.org/1999/06/WD-xml-fragment-19990630.xml</a>
<a href=
"http://www.w3.org/TR/1999/WD-xml-fragment-19990412.html">http://www.w3.org/TR/1999/WD-xml-fragment-19990412.html</a>
<a href=
"http://www.w3.org/TR/1999/WD-xml-fragment-19990412.xml">http://www.w3.org/TR/1999/WD-xml-fragment-19990412.xml</a>
<a href=
"http://www.w3.org/TR/1999/WD-xml-fragment-19990303.html">http://www.w3.org/TR/1999/WD-xml-fragment-19990303.html</a>
<a href=
"http://www.w3.org/TR/1999/WD-xml-fragment-19990303.xml">http://www.w3.org/TR/1999/WD-xml-fragment-19990303.xml</a></dd>
<dt>Editors:</dt>
<dd>Paul Grosso, Arbortext <a href=
"mailto:pgrosso@arbortext.com"><pgrosso@arbortext.com></a></dd>
<dd>Daniel Veillard, W3C <a href=
"mailto:veillard@w3.org"><veillard@w3.org></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 XML standard supports logical documents composed of
possibly several entities. It may be desirable to view or
edit one or more of the entities or parts of entities while
having no interest, need, or ability to view or edit the
entire document. The problem, then, is how to provide to a
recipient of such a fragment the appropriate information
about the context that fragment had in the larger document
that is not available to the recipient. The XML Fragment WG
is chartered with defining a way to send fragments of an XML
document—regardless of whether the fragments are
predetermined entities or not—without having to send
all of the containing document up to the part in question.
This document defines Version 1.0 of the [eventual] W3C
Recommendation that addresses this issue.</p>
</div>
<div>
<h2><a name="status">Status of this Document</a></h2>
<p>This specification is being put forth as a Candidate
Recommendation by the <a href=
"http://www.w3.org/XML/Activity#core-wg">XML Core Working
Group</a>. This document is a revision of the <a href=
"http://www.w3.org/1999/06/WD-xml-fragment-19990630">Working
Draft dated 1999 June 30</a> which had incorporated
suggestions received during last call review, comments, and
further deliberations of the W3C XML Fragment Working Group.
For background on this work, please see the <a href=
"http://www.w3.org/XML/Activity.html#fragment-wg">XML
Activity Statement</a>. The Working Group believes this
specification to be stable and invites implementation
feedback during this period.</p>
<p>The duration of Candidate Recommendation is expected to
last approximately three months (ending the end of April
2001). All persons are encouraged to review and implement
this specification and return comments to the <a href=
"http://lists.w3.org/Archives/Public/www-xml-fragment-comments/">
publicly archived</a> mailing list <a href=
"mailto:www-xml-fragment-comments@w3.org">www-xml-fragment-comments@w3.org</a>.</p>
<p>Should this specification prove impossible to implement,
the Working Group will return the document to Working Draft
status and make necessary changes. Otherwise, the Working
Group anticipates asking the W3C Director to advance this
document to Proposed Recommendation.</p>
<p>This is still a draft document and may be updated,
replaced, or obsoleted by other documents at any time. It is
inappropriate to cite a W3C Candidate Recommendation as other
than "work in progress." A list of current W3C working drafts
can be found at <a href=
"http://www.w3.org/TR">http://www.w3.org/TR</a>.</p>
</div>
<div class="toc">
<h2><a name="contents">Table of Contents</a></h2>
<p class="toc">1 <a href="#d1e200">Overview</a><br>
2 <a href="#d1e250">Scope</a><br>
3 <a href="#d1e275">Terminology</a><br>
4 <a href="#d1e443">Fragment context information set</a><br>
5 <a href="#d1e590">Fragment context specification
notation</a><br>
    5.1 <a href=
"#fcs-notn-overview">Overview of the fcs</a><br>
    5.2 <a href="#d1e763">Formal notation
description</a><br>
    5.3 <a href=
"#fcs-semantics">Semantics of a fragment context
specification</a><br>
    5.4 <a href="#fcs-example">An fcs
example</a><br>
        5.4.1 <a
href="#d1e1314">The parent Docbook book document</a><br>
        5.4.2 <a
href="#d1e1332">The fragment body</a><br>
        5.4.3 <a
href="#d1e1347">The fragment context specification
document</a><br>
6 <a href="#d1e1378">Conformance</a><br>
</p>
<h3>Appendices</h3>
<p class="toc">A <a href="#d1e1395">References</a><br>
    A.1 <a href="#d1e1400">Normative
References</a><br>
    A.2 <a href="#d1e1440">Other
References</a><br>
B <a href="#packaging">Packaging and interchanging
fragments</a> (Non-Normative)<br>
C <a href="#examples">Examples</a> (Non-Normative)<br>
    C.1 <a href="#d1e1577">One element of
a transaction record as a fragment</a><br>
    C.2 <a href="#d1e1604">Use of
external entities and MIME packaging</a><br>
    C.3 <a href="#d1e1661">Indexes into a
large document</a><br>
D <a href="#d1e1674">Design Principles</a>
(Non-Normative)<br>
E <a href="#d1e1736">Acknowledgments</a> (Non-Normative)<br>
F <a href="#d1e1781">Changes from Previous Public Working
Drafts</a> (Non-Normative)<br>
    F.1 <a href="#d1e1786">Changes
between the March 3 and April 2 WD</a><br>
    F.2 <a href="#d1e1853">Changes
between the April 2 and June 19 WD</a><br>
    F.3 <a href="#d1e1894">Changes
between the June 19 WD and the CR</a><br>
</p>
</div>
<hr>
<div class="body">
<div class="div1">
<h2><a name="d1e200"></a>1 Overview</h2>
<p>The XML standard supports logical documents composed of
possibly several entities. It may be desirable to view or
edit one or more of the entities or parts of entities while
having no interest, need, or ability to view or edit the
entire document. The problem, then, is how to provide to a
recipient of such a fragment the appropriate information
about the context that fragment had in the larger document
that is not available to the recipient.</p>
<p>In the case of many XML documents, it is suboptimal to
have to receive and parse the entire document when only a
fragment of it is desired. If the user asked to look at
chapter 20, one shouldn't need to parse 19 whole chapters
before getting to the part of interest. The goal of this
activity is to define a way to enable processing of small
parts of an XML document without having to process
everything up to the part in question. This can be done
regardless of whether the parts are entities or not, and
the parts can either be viewed immediately or accumulated
for later use, assembly, or other processing.</p>
<p>Conceptually, the holder of the complete source document
considers a fragment of that document and, using the
notation to be defined by this activity, constructs a
<b>fragment context specification</b>. The object
representing the fragment removed from its source document
is called the <b>fragment body</b>. The fragment context
specification and the fragment body are transmitted to the
recipient. The storage object in which the fragment body is
transmitted is call the <b>fragment entity</b>. (In some
packaging schemes, the fragment context specification may
also be embedded in the fragment entity.) The recipient
processes the fragment context specification to determine
the proper parser state for the context at the beginning of
the fragment and uses that information to enable the XML
parser to parse the fragment body. (The terms
“sender,” “recipient,”
“transmit,” are used throughout this document
to describe the process of fragment interchange. It should
be noted, however, that there are many feasible and useful
scenarios for fragment interchange, and in some cases, the
“sender” and “recipient” may be on
the same machine, node, system, or network, and may even be
the same tool in different guises.)</p>
<p>The challenge is that an isolated element from an XML
document may not contain quite enough information to be
parsed correctly. The goal of this activity is to enable
senders to provide the remaining information required so
that systems can interchange any XML elements they choose,
from books or chapters all the way down to paragraphs,
tables, footnotes, book titles, and so on, without having
to manage each as a separate entity or having to risk
incorrect parsing due to loss of context.</p>
<p>To accomplish these ends, this Recommendation
defines:</p>
<ul>
<li>
<p>exact constraints on what portions of an XML
document may constitute fragments to be supported by
this Recommendation;</p>
</li>
<li>
<p>the set of information (fragment context
information) that allows for successful parsing as well
as for viewing or editing of a fragment in a useful and
important set of cases;</p>
</li>
<li>
<p>the notation (i.e., language) in which this
information will be described (the fragment context
specification);</p>
</li>
<li>
<p>some mechanisms for associating this information
with a fragment.</p>
</li>
</ul>
</div>
<div class="div1">
<h2><a name="d1e250"></a>2 Scope</h2>
<p>This Recommendation enables interchanging portions of
XML documents while retaining the ability to parse them
correctly (that is, as they would be parsed in their
originating document context), and, as far as practical, to
be formatted, edited, and otherwise processed in useful
ways.</p>
<p>The goal of this activity is to define a way to send
fragments of an XML document—regardless of whether
the fragments are predetermined entities or
not—without having to send all of the containing
document up to the part in question. The delivered parts
can either be viewed or edited immediately or accumulated
for later use, assembly, or other processing; what the
receiving application does with the information—and
issues involved with the possible “return” of
such a fragment to the original sender—is beyond the
scope of this activity. While implementations of this
Recommendation may serve as part of a larger system that
allows for “fragment reuse,” the many important
issues about reuse of XML text and “concurrent
multiple author environments” are beyond the scope of
this Recommendation.</p>
<p>The point of the fragment context information is to
provide information that is not available in the fragment
body itself but that would be available from the complete
XML document. Specifically, any information not available
from the XML document (which may include an external
subset) as a whole (plus knowledge of the location of the
fragment body within the document) is out of scope for
inclusion in the fragment context information. Such
information may well be useful and important metadata in a
variety of applications, but there are (or need to be)
other mechanisms for handling this information.</p>
<p>This Recommendation considers fragments of XML as
defined by <a href="#XML">[XML 1.0]</a> and <a href=
"#Namespaces">[XML Namespaces]</a>. It is explicitly noted
that this version of this Recommendation does not take into
account work such as that taking place in the XML Schema
Working Group; insofar as such work by other currently
active working groups places new requirements on a fragment
interchange solution, those requirements would be input to
a new version of the fragment interchange specification
that may become a chartered activity at a later date.</p>
<p>It is also explicitly noted that this Recommendation
does not consider interchange of information that is not
well-formed XML; in particular, issues specific to the
interchange of fragments of SGML (including
HTML)—other than such SGML that is, in fact, also
well-formed XML—are not within scope of this
Recommendation.</p>
</div>
<div class="div1">
<h2><a name="d1e275"></a>3 Terminology</h2>
<p>This list is sorted “logically” as opposed
to alphabetically. In an entry, phrases in parentheses are
“optional” modifiers; whether they are used
explicitly or not, we are still talking about the same
thing for the purposed of this Recommendation.</p>
<dl>
<dt class="label">(well-formed) XML document</dt>
<dd>
<p>defined in <a href="#XML">[XML 1.0]</a>, <a href=
"http://www.w3.org/TR/REC-xml#sec-well-formed">Well-formed
XML documents</a></p>
</dd>
<dt class="label">(well-formed) (external) (parsed)
entity</dt>
<dd>
<p>defined in <a href="#XML">[XML 1.0]</a>, <a href=
"http://www.w3.org/TR/REC-xml#NT-extParsedEnt">production
[78] extParsedEnt</a></p>
</dd>
<dt class="label"><a name=
"defn-well-balanced"></a>(well-)balanced</dt>
<dd>
<p>A region (consecutive sequence of characters) of an
XML document is said to be (well-)balanced if it
matches <a href=
"http://www.w3.org/TR/REC-xml#NT-content">production
[43] content</a> of <a href="#XML">[XML 1.0]</a>.
Informally this means that, if the region includes any
part of the markup of any construct, it contains all of
the markup of that construct (e.g., in the case of
elements, all of both the start and end tag).</p>
</dd>
<dt class="label"><a name=
"defn-fragment"></a>fragment</dt>
<dd>
<p>A general term to refer to part of an XML document,
plus possibly some extra information, that may be
useful to use and interchange in the absence of the
rest of the XML document. See the rest of the
fragment-related terms when a more precise definition
is required.</p>
</dd>
<dt class="label">fragment interchange</dt>
<dd>
<p>The process of receiving and/or parsing of a
fragment by a fragment-aware application.</p>
</dd>
<dt class="label"><a name=
"defn-fragment-body"></a>fragment body</dt>
<dd>
<p>A well-balanced region of an XML document being
considered as (logically and/or physically) separate
from the rest of the document for the purposes of
defining it as a fragment. Also, that part of a
fragment entity that consists solely of the
well-balanced region from the complete XML document.
When it is important to indicate that a reference is
specifically to the version of the fragment body still
physically part of the originating (parent) document,
this document will use the term “fragment body
<em>in situ</em>.”</p>
</dd>
<dt class="label">context information</dt>
<dd>
<p>The abstract set of information—divorced from
any particular language/syntax/notation—that
constitutes the “parser state” at the point
when a parser processing the complete XML document
encounters (but has not yet processed) the first
character of (what would be) the fragment body.</p>
</dd>
<dt class="label"><a name=
"defn-fragment-context-information"></a>(fragment)
context (information)</dt>
<dd>
<p>(sometimes abbreviated fci) The subset of the
context information that we decide will be expressible
in any fragment context specification language. Also
the abstract set of information represented by a
particular fragment context specification.</p>
</dd>
<dt class="label"><a name=
"defn-fragment-context-specification"></a>fragment
context specification</dt>
<dd>
<p>(sometimes abbreviated fcs) A valid string in the
language (notation) that this Recommendation defines
that describes a set of fragment context information.
Also the particular string in a fragment entity or
fragment package that describes the fragment's context
information.</p>
</dd>
<dt class="label">package [verb]</dt>
<dd>
<p>To associate in some specified way a fragment body
with a fragment context specification. This may include
some way of combining both into a single XML-encoded
object; combining both in some multipart MIME or
archiving encoding; or linking the two via some sort of
referencing, co-referencing, or third-party referencing
scheme.</p>
</dd>
<dt class="label"><a name=
"defn-fragment-entity"></a>fragment entity</dt>
<dd>
<p>The storage object in which the fragment body is
stored and/or transmitted during the process of
fragment interchange.</p>
</dd>
<dt class="label"><a name=
"defn-fragment-package"></a>(fragment) package
[noun]</dt>
<dd>
<p>The object actually transmitted during the process
of fragment interchange. Though one might expect this
is the same thing as a fragment entity, the terms may
or may not be synonyms in all cases; one could define a
packaging mechanism whereby the fragment context
specification is transmitted without the fragment body
(which presumably gets retrieved later) in which case
the fragment package is the fragment context
specification, and the fragment entity gets retrieved
later.</p>
</dd>
<dt class="label"><a name=
"defn-fcs-document"></a>fragment context specification
document</dt>
<dd>
<p>As defined in this Recommendation, a valid fragment
context specification (fcs) is a well-formed XML
document. Therefore, when considered as a document, an
fcs is sometimes referred to as a fragment context
specification document (or fcs document). A fragment
context specification document may also be a fragment
package (i.e., it may be the actual object transmitted
to effect fragment interchange).</p>
</dd>
<dt class="label">send/receive (and
sender/recipient)</dt>
<dd>
<p>In the context of this Recommendation, words such as
send/receive (and sender/recipient) are used to
described the general process of fragment interchange.
There are many feasible and useful scenarios for
fragment interchange, and in some cases, the
“sender” and “recipient” may be
on the same machine, node, system, or network, and may
even be the same tool in different guises. The only
constant assumption is that the sender has access to
and knowledge of the entire (parental) document from
which the fragment comes, and the recipient is in
possession only of the fragment package (though nothing
in this Recommendation precludes the possibility of the
recipient using the information in the fragment
package, if available, to attempt to fetch more
information from the sender).</p>
</dd>
</dl>
</div>
<div class="div1">
<h2><a name="d1e443"></a>4 Fragment context information
set</h2>
<p>In this section, numbers in brackets refer to
productions in <a href="#XML">[XML 1.0]</a>. The following
information shall constitute the complete fragment context
information (fci) set:</p>
<ol>
<li>
<p>A reference to the external subset (extSubset [30]),
by specifying an ExternalID [75] for it.</p>
</li>
<li>
<p>Internal subset information using some or all of the
following:</p>
<ol>
<li>
<p>A reference to an “externalized
copy” of the internal subset (presumably
generated by placing the internal declarations into
a storage object such as extSubset [30]),
presumably by specifying an ExternalID [75] for
it.</p>
</li>
<li>
<p>Some or all of markupdecl [29] and/or
PEReference [69] allowed in an XML document's
internal subset; note that PEReference implies
expansion of what could be more external entities;
also note that markupdecl includes comments,
processing instructions, and declarations for
elements, attribute lists, entities, and
notations.</p>
</li>
</ol>
</li>
<li>
<p>Ancestor information for the fragment body.</p>
</li>
<li>
<p>Sibling information for the fragment body.</p>
</li>
<li>
<p>Sibling information for any of the ancestors.</p>
</li>
<li>
<p>Element content (aka descendant) information for any
of the ancestors or siblings.</p>
</li>
<li>
<p>Attribute information (attribute name and value)
for:</p>
<ol>
<li>
<p>any of the ancestors;</p>
</li>
<li>
<p>any of the siblings of the fragment body;</p>
</li>
<li>
<p>any of the siblings of any of the ancestors;</p>
</li>
<li>
<p>any of the descendants of any of the ancestors
or siblings.</p>
</li>
</ol>
</li>
<li>
<p>A reference to the original/parental document by
specifying an ExternalID [75] for it.</p>
</li>
<li>
<p>A reference to the fragment body within the
original/parental document by specifying an ExternalID
[75].</p>
</li>
</ol>
<p>From the above list, the following items affect proper
(validating) parsing of the fragment:</p>
<ul>
<li>
<p>External subset</p>
</li>
<li>
<p>Internal subset</p>
</li>
<li>
<p>(Preceding) Siblings of the fragment body</p>
</li>
</ul>
<p>The following items, while they cannot affect proper
parsing, are usually considered part of the basic,
structural XML parse tree:</p>
<ul>
<li>
<p>Ancestors</p>
</li>
<li>
<p>(Preceding) Siblings of ancestors</p>
</li>
<li>
<p>Following siblings of the fragment body and its
ancestors</p>
</li>
<li>
<p>Ancestor and sibling descendants</p>
</li>
<li>
<p>Attributes</p>
</li>
</ul>
<p>The following items, while not usually considered part
of the basic, structural XML parse tree, are clearly
definable pieces of information known or computable by any
XML processor that is processing the parent document:</p>
<ul>
<li>
<p>XML declaration information of the parent document.
Note that we have defined a fragment package to be an
XML document. That is, the fragment package would
contain its own XMLDecl-like information as necessary,
so the fci itself need not include that
information.</p>
</li>
<li>
<p>A reference to the parent document.</p>
</li>
<li>
<p>A reference to the fragment body <em>in
situ</em>.</p>
</li>
</ul>
</div>
<div class="div1">
<h2><a name="d1e590"></a>5 Fragment context specification
notation</h2>
<div class="div2">
<h3><a name="fcs-notn-overview"></a>5.1 Overview of the
fcs</h3>
<p>The previous section defined the logical set of
information possible in a fragment context. This section
describes the notation in which to express a specific
fragment context specification. All information would be
optional; how much gets included in any particular
fragment context specification is up to the sender and
recipient, and how this gets determined is outside of the
scope of this Recommendation.</p>
<div class="note">
<p class="prefix"><b>Note:</b></p>
<p>While what gets included in any particular fragment
context specification is outside of the scope of this
Recommendation, some knowledge of the target
application can help determine an appropriate level for
the fcs. For example, if the target application is a
user agent that will use Cascading Style Sheets (CSS)
to display the fragment, the following information is
necessary and sufficient given the current level of CSS
selector capability: previous siblings of the fragment
body, all ancestors of the fragment body, previous
siblings of each of those ancestors, and all attributes
on all those siblings and ancestors.</p>
</div>
<div class="note">
<p class="prefix"><b>Note:</b></p>
<p>A given fragment context specification need not
necessarily provide the ability to specify the complete
set of fragment context information described in the
previous section. In particular, because the XML 1.0
syntax for declarations is difficult to embed within an
XML instance, the specific fragment context
specification notation defined by this Recommendation
does not allow for inline inclusion of internal subset
information within the FCS. Internal subset information
can only be included in the FCS via a reference to an
“externalized copy” of the internal subset.
Inline internal subset information may be more feasible
once an instance syntax for declarations is defined,
and such may be considered in future versions of the
Fragment Interchange specification.</p>
</div>
<p>The syntax used is XML itself. In particular, a
fragment context specification (fcs) is written as a
single root XML element allowing up to five attributes
and containing a subtree of other elements (possibly with
attributes). The root element (and the element serving as
the placeholder for the fragment body) comes from <a
title="Fragment Interchange namespace" href=
"#frag-ns-uri">Fragment Interchange namespace</a>, a
specific namespace defined by this Recommendation; the
contained subtree of elements comes from the namespace(s)
of the document from which this fragment comes. For the
purposes of exposition in this section, we assume
namespace declarations such as the following are in
force:</p>
<table class="eg" cellpadding="5" border="1" bgcolor=
"#99ffff" width="100%" summary="Example">
<tr>
<td>
<pre>
xmlns:f="http://www.w3.org/2001/02/xml-fragment"
xmlns="http://www.oasis-open.org/docbook/DocbookSchema"
</pre>
</td>
</tr>
</table>
<p>That is, within this example, <code>f</code> is the
local prefix referring to the <a title=
"Fragment Interchange namespace" href=
"#frag-ns-uri">Fragment Interchange namespace</a> defined
by this Recommendation for fragment-interchange related
components, and the default namespace is that in effect
in the parent document at the beginning of the fragment
body <em>in situ</em>.</p>
<p>The element type for the single root element for the
fcs shall be <code>f:fcs</code> (where <code>f</code> is
whatever namespace prefix is mapped to the <a title=
"Fragment Interchange namespace" href=
"#frag-ns-uri">Fragment Interchange namespace</a>). It
allows up to five attributes, each of whose value shall
be a URI reference [<a href="#rfc2396">[RFC 2396]</a>].
The attribute names and the meaning of their values are
as follows:</p>
<dl>
<dt class="label">extref</dt>
<dd>
<p>a URI reference to the external subset</p>
</dd>
<dt class="label">intref</dt>
<dd>
<p>a URI reference to the internal subset</p>
</dd>
<dt class="label">parentref</dt>
<dd>
<p>a URI reference to the parent document</p>
</dd>
<dt class="label">sourcelocn</dt>
<dd>
<p>a URI reference to the fragment body <em>in
situ</em> within the parent document</p>
</dd>
</dl>
<p>The content of the <code>f:fcs</code> element shall be
a subtree of elements (possibly with attribute value
assignments) from the parent document's namespace. This
subtree shall provide all the structural context for the
fragment body including various information about
ancestor and sibling elements and attributes by mimicking
the (relevant) context within this parent document. No
data characters (mixed content) are allowed within the
<code>f:fcs</code> element. The special empty element
<code>f:fragbody</code> shall be used to indicate the
placement of the fragment body within the specified
context. It has one significant attribute with meaning as
follows:</p>
<dl>
<dt class="label">fragbodyref</dt>
<dd>
<p>a URI reference [<a href="#rfc2396">[RFC
2396]</a>] to the fragment body</p>
</dd>
</dl>
<p>For example, consider a fragment body that consists of
<code>listitems</code> 2 and 3 of an
<code>orderedlist</code> (indicated to be enumerated with
arabic numbers by the <code>numeration</code> attribute
on the <code>orderedlist</code> element) within the
second <code>sect1</code> within the first
<code>chapter</code> within the first <code>part</code>
within the <code>body</code> of a <code>book</code>.
Assume that the external subset (aka “DTD”)
is in the file <code>Docbook.dtd</code> on the OASIS Open
web server, the parent document is in
<code>mybook.xml</code> on Acme's web server, and that
there need be no internal subset given as part of the
fcs. Then the fcs for this fragment body might look
like:</p>
<table class="eg" cellpadding="5" border="1" bgcolor=
"#99ffff" width="100%" summary="Example">
<tr>
<td>
<pre>
<f:fcs xmlns:f="http://www.w3.org/2001/02/xml-fragment"
extref="http://www.oasis-open.org/docbook/docbook/3.0/docbook.dtd"
parentref="http://www.acme.com/~me/mydocs/mybook.xml"
xmlns="http://www.oasis-open.org/docbook/DocbookSchema">
<book>
<part>
<chapter>
<sect1/>
<sect1>
<orderedlist numeration="arabic">
<listitem/>
<f:fragbody/>
</orderedlist>
</sect1>
</chapter>
</part>
</book>
</f:fcs>
</pre>
</td>
</tr>
</table>
</div>
<div class="div2">
<h3><a name="d1e763"></a>5.2 Formal notation
description</h3>
<p>A formal notation for the <code>fcs</code> element
used in the examples of the previous section follows.
Therein, the following terms are defined in either the
“Extensible Markup Language (XML) 1.0” (<a
href="#XML">[XML 1.0]</a>) or “Namespaces in
XML” (<a href="#Namespaces">[XML Namespaces]</a>)
Recommendations: <a href=
"http://www.w3.org/TR/REC-xml-names/#NT-NCName">NCName</a>,
<a href=
"http://www.w3.org/TR/REC-xml#NT-AttValue">AttValue</a>,
<a href="http://www.w3.org/TR/REC-xml#NT-Eq">Eq</a>, <a
href="http://www.w3.org/TR/REC-xml#NT-S">S</a>, <a href=
"http://www.w3.org/TR/REC-xml#NT-Attribute">Attribute</a>,
<a href="http://www.w3.org/TR/REC-xml#NT-STag">STag</a>,
<a href="http://www.w3.org/TR/REC-xml#NT-ETag">ETag</a>,
<a href=
"http://www.w3.org/TR/REC-xml#NT-EmptyElemTag">EmptyElemTag</a>,
<a href=
"http://www.w3.org/TR/REC-xml#NT-CharData">CharData</a>,
<a href=
"http://www.w3.org/TR/REC-xml#NT-Reference">Reference</a>,
<a href=
"http://www.w3.org/TR/REC-xml#NT-CDSect">CDSect</a>, <a
href="http://www.w3.org/TR/REC-xml#NT-PI">PI</a>, <a
href=
"http://www.w3.org/TR/REC-xml#NT-Comment">Comment</a>, <a
href="http://www.w3.org/TR/REC-xml#NT-prolog">prolog</a>,
and <a href=
"http://www.w3.org/TR/REC-xml#NT-Misc">Misc</a>.</p>
<h5>Fragment Context Specification Element</h5>
<table class="scrap" summary="Scrap">
<tbody>
<tr valign="baseline">
<td><a name=
"NT-FCSelement"></a>[1]   </td>
<td><code>FCSelement</code></td>
<td>   ::=   </td>
<td><code><a href="#NT-FCSstag">FCSstag</a> <a
href="http://www.w3.org/TR/REC-xml#NT-S">S</a>? <a
href="#NT-FCSelementContent">FCSelementContent</a>
<a href="http://www.w3.org/TR/REC-xml#NT-S">S</a>?
<a href="#NT-FCSetag">FCSetag</a></code></td>
</tr>
</tbody>
<tbody>
<tr valign="baseline">
<td><a name=
"NT-FCSstag"></a>[2]   </td>
<td><code>FCSstag</code></td>
<td>   ::=   </td>
<td><code>'<' <a href=
"http://www.w3.org/TR/REC-xml-names/#NT-NCName">NCName</a>
':fcs' ((<a href=
"http://www.w3.org/TR/REC-xml#NT-S">S</a> 'extref'
<a href="http://www.w3.org/TR/REC-xml#NT-Eq">Eq</a>
<a href=
"http://www.w3.org/TR/REC-xml#NT-AttValue">AttValue</a>)
| (<a href=
"http://www.w3.org/TR/REC-xml#NT-S">S</a> 'intref'
<a href="http://www.w3.org/TR/REC-xml#NT-Eq">Eq</a>
<a href=
"http://www.w3.org/TR/REC-xml#NT-AttValue">AttValue</a>)
| (<a href=
"http://www.w3.org/TR/REC-xml#NT-S">S</a>
'parentref' <a href=
"http://www.w3.org/TR/REC-xml#NT-Eq">Eq</a> <a
href=
"http://www.w3.org/TR/REC-xml#NT-AttValue">AttValue</a>)
| (<a href=
"http://www.w3.org/TR/REC-xml#NT-S">S</a>
'sourcelocn' <a href=
"http://www.w3.org/TR/REC-xml#NT-Eq">Eq</a> <a
href=
"http://www.w3.org/TR/REC-xml#NT-AttValue">AttValue</a>)
| (<a href=
"http://www.w3.org/TR/REC-xml#NT-S">S</a> <a href=
"http://www.w3.org/TR/REC-xml#NT-Attribute">Attribute</a>))*
<a href="http://www.w3.org/TR/REC-xml#NT-S">S</a>?
'>'</code></td>
<td><a href="#frag-ns">[Constraint: FCS Constraint:
Fragment Namespace]</a></td>
</tr>
</tbody>
<tbody>
<tr valign="baseline">
<td><a name=
"NT-FCSelementContent"></a>[3]   </td>
<td><code>FCSelementContent</code></td>
<td>   ::=   </td>
<td><code><a href=
"http://www.w3.org/TR/REC-xml#NT-EmptyElemTag">EmptyElemTag</a>
| <a href=
"http://www.w3.org/TR/REC-xml#NT-STag">STag</a> <a
href="#NT-FCScontent">FCScontent</a> <a href=
"http://www.w3.org/TR/REC-xml#NT-ETag">ETag</a> |
<a href=
"#NT-FCSfragbody">FCSfragbody</a></code></td>
<td><a href="#one-fragbody">[Constraint: FCS
Constraint: Exactly One Fragbody]</a></td>
</tr>
</tbody>
<tbody>
<tr valign="baseline">
<td><a name=
"NT-FCSfragbody"></a>[4]   </td>
<td><code>FCSfragbody</code></td>
<td>   ::=   </td>
<td><code>'<' <a href=
"http://www.w3.org/TR/REC-xml-names/#NT-NCName">NCName</a>
':fragbody' ((<a href=
"http://www.w3.org/TR/REC-xml#NT-S">S</a>
'fragbodyref' <a href=
"http://www.w3.org/TR/REC-xml#NT-Eq">Eq</a> <a
href=
"http://www.w3.org/TR/REC-xml#NT-AttValue">AttValue</a>)
| (<a href=
"http://www.w3.org/TR/REC-xml#NT-S">S</a> <a href=
"http://www.w3.org/TR/REC-xml#NT-Attribute">Attribute</a>))*
<a href="http://www.w3.org/TR/REC-xml#NT-S">S</a>?
'/>'</code></td>
<td><a href="#same-ns-prefix">[Constraint: FCS
Constraint: Same Namespace Prefix]</a></td>
</tr>
</tbody>
<tbody>
<tr valign="baseline">
<td><a name=
"NT-FCSetag"></a>[5]   </td>
<td><code>FCSetag</code></td>
<td>   ::=   </td>
<td><code>'</' <a href=
"http://www.w3.org/TR/REC-xml-names/#NT-NCName">NCName</a>
':fcs' <a href=
"http://www.w3.org/TR/REC-xml#NT-S">S</a>?
'>'</code></td>
</tr>
</tbody>
<tbody>
<tr valign="baseline">
<td><a name=
"NT-FCScontent"></a>[6]   </td>
<td><code>FCScontent</code></td>
<td>   ::=   </td>
<td><code>(<a href=
"#NT-FCSelementContent">FCSelementContent</a> | <a
href=
"http://www.w3.org/TR/REC-xml#NT-CharData">CharData</a>
| <a href=
"http://www.w3.org/TR/REC-xml#NT-Reference">Reference</a>
| <a href=
"http://www.w3.org/TR/REC-xml#NT-CDSect">CDSect</a>
| <a href=
"http://www.w3.org/TR/REC-xml#NT-PI">PI</a> | <a
href=
"http://www.w3.org/TR/REC-xml#NT-Comment">Comment</a>)*</code></td>
</tr>
</tbody>
</table>
<div class="constraint">
<p class="prefix"><a name="frag-ns"></a><b>Constraint:
FCS Constraint: Fragment Namespace</b></p>
<p>The namespace prefix represented by <a href=
"http://www.w3.org/TR/REC-xml-names/#NT-NCName">NCName</a>
in the production for <a href="#NT-FCSstag">FCSstag</a>
(and, therefore necessarily, <a href=
"#NT-FCSetag">FCSetag</a>) must have been declared on
one of the ancestors of the FCS element and must be
associated with the Fragment Interchange Namespace URI
defined in this Recommendation.</p>
</div>
<div class="constraint">
<p class="prefix"><a name=
"one-fragbody"></a><b>Constraint: FCS Constraint:
Exactly One Fragbody</b></p>
<p>There must be exactly one <code>fragbody</code> (<a
href="#NT-FCSfragbody">FCSfragbody</a>) element in the
fcs.</p>
</div>
<div class="constraint">
<p class="prefix"><a name=
"same-ns-prefix"></a><b>Constraint: FCS Constraint:
Same Namespace Prefix</b></p>
<p>The namespace prefix (<a href=
"http://www.w3.org/TR/REC-xml-names/#NT-NCName">NCName</a>)
used in the production for <a href=
"#NT-FCSfragbody">FCSfragbody</a> must be the same as
that used in the production for <a href=
"#NT-FCSstag">FCSstag</a>.</p>
</div>
<p>[<a name="frag-ns-uri" title=
"Fragment Interchange namespace">Definition</a>: The
<b>fragment Interchange namespace</b> shall be associated
with the following URI:
<code>http://www.w3.org/2001/02/xml-fragment</code>.]</p>
<p>In the productions for <a href=
"#NT-FCSstag">FCSstag</a> and <a href=
"#NT-FCSfragbody">FCSfragbody</a>, there can be any
number of other attribute assignments, all of which are
ignored by the fragment context specification processor.
Per XML 1.0 compliance, there can be at most one
assignment to any given attribute including the
specifically mentioned attributes. (Since there is no
“and” connector in EBNF, this restriction is
difficult to show directly in the EBNF, hence this
restriction in prose; however, this prose restriction is
normative.)</p>
<p>In the production for <a href=
"#NT-FCScontent">FCScontent</a>, the fragment processor
can optionally expand any <a href=
"http://www.w3.org/TR/REC-xml#NT-Reference">Reference</a>s
that it can expand. Then all <a href=
"http://www.w3.org/TR/REC-xml#NT-CDSect">CDSect</a>s, <a
href="http://www.w3.org/TR/REC-xml#NT-PI">PI</a>s, <a
href=
"http://www.w3.org/TR/REC-xml#NT-Comment">Comment</a>s,
remaining <a href=
"http://www.w3.org/TR/REC-xml#NT-Reference">Reference</a>s,
and <a href=
"http://www.w3.org/TR/REC-xml#NT-CharData">CharData</a>
(including whitespace, <a href=
"http://www.w3.org/TR/REC-xml#NT-S">S</a>) are ignored by
the FCS processor.</p>
<div class="note">
<p class="prefix"><b>Note:</b></p>
<p>If a <a href=
"http://www.w3.org/TR/REC-xml#NT-Reference">Reference</a>
in <a href="#NT-FCScontent">FCScontent</a> is expanded
and the expansion includes element structure, that
element structure is considered part of the fcs as it
would if it had been included originally in its
expanded form in the fcs. However, since expansion of
any <a href=
"http://www.w3.org/TR/REC-xml#NT-Reference">Reference</a>
in <a href="#NT-FCScontent">FCScontent</a> is optional
on the part of the fragment context specification
processor, any sender for which such expansion is
important should do the expansion when creating the
fragment package.</p>
</div>
<h5>Fragment Context Specification</h5>
<table class="scrap" summary="Scrap">
<tbody>
<tr valign="baseline">
<td><a name="NT-fcs"></a>[7]   </td>
<td><code>FCS</code></td>
<td>   ::=   </td>
<td><code><a href=
"http://www.w3.org/TR/REC-xml#NT-prolog">prolog</a>
<a href="#NT-FCSelement">FCSelement</a> <a href=
"http://www.w3.org/TR/REC-xml#NT-Misc">Misc</a>*</code></td>
<td><a href="#wf-nsc">[Constraint: FCS Constraint:
Well-formed, namespace complete]</a></td>
</tr>
</tbody>
</table>
<div class="constraint">
<p class="prefix"><a name="wf-nsc"></a><b>Constraint:
FCS Constraint: Well-formed, namespace complete</b></p>
<p>A fragment context specification shall constitute a
well-formed document conforming to the
“Extensible Markup Language (XML) 1.0” (<a
href="#XML">[XML 1.0]</a>) and “Namespaces in
XML” (<a href="#Namespaces">[XML Namespaces]</a>)
Recommendations. In particular, if there are entity
references in the fcs, the fcs document must comply
with the <a href=
"http://www.w3.org/TR/REC-xml#wf-entdeclared">Entity
declared well-formedness constraint</a> per the
“Extensible Markup Language (XML) 1.0” (<a
href="#XML">[XML 1.0]</a>) Recommendation. (Appropriate
declarations would appear in the internal subset of the
fcs document.) Furthermore, for any use of namespaces,
the fcs document must comply with the <a href=
"http://www.w3.org/TR/REC-xml-names/#nsc-NSDeclared">Namespace
declared namespace constraint</a> per the
“Namespaces in XML” (<a href=
"#Namespaces">[XML Namespaces]</a>) Recommendation.</p>
</div>
<div class="note">
<p class="prefix"><b>Note:</b></p>
<p>Generally, a fragment context specification document
would be the well-formed document consisting simply of
the <code>f:fcs</code> element (and its contents) with
no prolog. However, a prolog is always allowable and
might be necessary when some declarations are required
to satisfy the <a href=
"http://www.w3.org/TR/REC-xml#wf-entdeclared">Entity
declared well-formedness constraint</a>.</p>
</div>
<div class="note">
<p class="prefix"><b>Note:</b></p>
<p>Since all of the components in <a href=
"http://www.w3.org/TR/REC-xml#NT-prolog">prolog</a> are
optional, an <a href="#NT-FCSelement">FCSelement</a> by
itself is an allowable fragment context specification,
and this Recommendation does not preclude some
packaging scheme from combining an <a href=
"#NT-FCSelement">FCSelement</a> along with a fragment
body as shown in some of the examples in <a href=
"#packaging"><b>B Packaging and interchanging
fragments</b></a> and <a href="#examples"><b>C
Examples</b></a>.</p>
</div>
</div>
<div class="div2">
<h3><a name="fcs-semantics"></a>5.3 Semantics of a
fragment context specification</h3>
<p>The previous section formally defines a fragment
context specification to be a well-formed XML document
consisting of a single <code>f:fcs</code> element with
optional attributes and some content. The
<code>f:fcs</code> element's content consists of optional
stuff from the parent document (from which the fragment
body is taken) plus a single <code>f:fragbody</code>
element with optional attributes. The <code>f:fcs</code>
and <code>f:fragbody</code> elements come from a
namespace defined by this Recommendation and have certain
specific semantics relative to fragment interchange as
defined by this section.</p>
<p>While it is important to be able to package a fragment
body with its fcs, it is expected that a general
XML-friendly packaging mechanism will be developed by the
W3C that would satisfy this requirement. Meanwhile, this
Recommendation defines a simple association mechanism
that doesn't rely on a packaging scheme. Applications and
interchange partners may agree on any packaging mechanism
to aid in fragment interchange—this is beyond the
scope of this Recommendation.</p>
<p>The fcs document is a well-formed XML document that
(1) provides the fragment context and (2) provides a
reference to the fragment body. Because it is
well-formed, existing XML processors can be used to
process fcs documents. To support this fragment
interchange Recommendation, an application must also
understand the semantics of the <code>f:fcs</code> and
<code>f:fragbody</code> elements and their attributes and
process accordingly.</p>
<p>Specifically, the <code>fragbodyref</code> attribute
on the <code>fragbody</code> element is a URI reference
[<a href="#rfc2396">[RFC 2396]</a>] to the fragment body.
A fragment-aware processor is expected to resolve this
reference and process the referenced fragment body in the
context specified by the fcs. None of the attributes on
the <code>fcs</code> element have required semantics with
respect to fragment processing; they are provided
(optionally) for the application's use at its
discretion.</p>
<div class="note">
<p class="prefix"><b>Note:</b></p>
<p>For example, a browser might bring up an fcs
document, “expand” the reference to the
fragment body (i.e., put a copy of the fragment body in
place of the <code>fragbody</code> element), and then
ignore (e.g., not display) the part of the document
that was originally the fcs, thereby displaying (in the
proper context) only the part of the document that was
originally the fragment body.</p>
</div>
<div class="note">
<p class="prefix"><b>Note:</b></p>
<p>The <code>fragbody</code> element and its
<code>fragbodyref</code> attribute are in many ways
logically equivalent to an external entity reference or
an XLink reference with an “embed”
semantic.</p>
</div>
</div>
<div class="div2">
<h3><a name="fcs-example"></a>5.4 An fcs example</h3>
<p>The following example shows the complete set of
information relative to interchanging the two
<code>listitem</code>s for the Docbook book mentioned in
<a href="#fcs-notn-overview"><b>5.1 Overview of the
fcs</b></a>.</p>
<p>The parent document, in
<code>~me/mydocs/mybook.xml</code> on Acme's web server,
is a Docbook book document whose contents is outlined in
the first subsection below. The fragment body of interest
consists of <code>listitems</code> 2 and 3 of the
<code>orderedlist</code> (indicated to be enumerated with
arabic numbers by the <code>numeration</code> attribute
on the <code>orderedlist</code> element) within the
second <code>sect1</code> within the first
<code>chapter</code> within the first <code>part</code>
within the <code>body</code> of this <code>book</code>.
The external subset (aka “DTD”) is in the
file <code>Docbook.dtd</code> on the OASIS Open web
server.</p>
<div class="div3">
<h4><a name="d1e1314"></a>5.4.1 The parent Docbook book
document</h4>
<p>The following represents the parent document from
which the fragment body in question comes.</p>
<table class="eg" cellpadding="5" border="1" bgcolor=
"#99ffff" width="100%" summary="Example">
<tr>
<td>
<pre>
<?xml version="1.0"?>
<!DOCTYPE book SYSTEM "http://www.oasis-open.org/docbook/docbook/3.0/docbook.dtd">
<book xmlns="http://www.oasis-open.org/docbook/DocbookSchema">
<part>
<chapter><title>The title for chapter one</title>
<sect1><title>The title for section one in chapter one</title>
<p>The first paragraph....</p>
<p>....</p>
</sect1>
<sect1><title>The title for section two in chapter one</title>
<p>An introductory paragraph preceding an ordered list.</p>
<orderedlist numeration="arabic">
<listitem><para>This is the first listitem in this ordered
list.</para></listitem>
<listitem><para>This is the second listitem within the
second sect1 of the first chapter within the first part
of a Docbook <quote>book</quote> document.</para></listitem>
<listitem><para>And this is the next listitem.</para></listitem>
<listitem><para>This is the fourth and last listitem.</para></listitem>
</orderedlist>
<p>Another paragraph....</p>
</sect1>
</chapter>
<chapter><title>More content</title>
<p>More chapters, sections, paragraphs, and such....</p>
</chapter>
</part>
</book>
</pre>
</td>
</tr>
</table>
<p>Note that the declaration of the default namespace
on the <code><book></code> tag isn't required for
fragment interchange, but is shown for the purposes of
completeness of this example.</p>
</div>
<div class="div3">
<h4><a name="d1e1332"></a>5.4.2 The fragment body</h4>
<p>The following shows the fragment body in a separate
file ready for interchange. For the purposes of this
example, we are assuming that this is in the file
<code>~me/mydocs/myfrag.xml</code> on Acme's web
server.</p>
<table class="eg" cellpadding="5" border="1" bgcolor=
"#99ffff" width="100%" summary="Example">
<tr>
<td>
<pre>
<listitem><para>This is the second listitem within the
second sect1 of the first chapter within the first part
of a Docbook <quote>book</quote> document.</para></listitem>
<listitem><para>And this is the next listitem.</para></listitem>
</pre>
</td>
</tr>
</table>
</div>
<div class="div3">
<h4><a name="d1e1347"></a>5.4.3 The fragment context
specification document</h4>
<p>The following shows what the fcs document might look
like for the above parent document and fragment body.
If this were in the file (e.g.,
<code>myfrag.fcs</code>), when this file is sent to any
recipient with a fragment-aware tool, that tool should
be able to access and process the desired fragment
body.</p>
<table class="eg" cellpadding="5" border="1" bgcolor=
"#99ffff" width="100%" summary="Example">
<tr>
<td>
<pre>
<f:fcs xmlns:f="http://www.w3.org/2001/02/xml-fragment"
extref="http://www.oasis-open.org/docbook/docbook/3.0/docbook.dtd"
parentref="http://www.acme.com/~me/mydocs/mybook.xml"
xmlns="http://www.oasis-open.org/docbook/DocbookSchema">
<book>
<part>
<chapter>
<sect1/>
<sect1>
<orderedlist numeration="arabic">
<listitem/>
<f:fragbody fragbodyref="http://www.acme.com/~me/mydocs/myfrag.xml"/>
</orderedlist>
</sect1>
</chapter>
</part>
</book>
</f:fcs>
</pre>
</td>
</tr>
</table>
<p>Note that the <code>fragbodyref</code> value, which
is a URI reference [<a href="#rfc2396">[RFC 2396]</a>],
could be a URL, a file name, a MIME content id, etc.,
depending on the MIME type of the referenced resource.
Also note that the <code>parentref</code> value above
is only there for the information of the receiving
application, but is not necessary for this example's
operation. Likewise, the <code>extref</code> would only
be necessary if the receiving application wanted to be
able to do validation.</p>
</div>
</div>
</div>
<div class="div1">
<h2><a name="d1e1378"></a>6 Conformance</h2>
<p>A fragment conforms to this XML Fragment Interchange
Recommendation if it adheres to all syntactic requirements
defined in this Recommendation. A fragment is syntactically
correct if all of the requirements specified in Section 5.2
are met.</p>
<p>Application software acting as recipient conforms to the
XML Fragment Interchange Recommendation if it interprets
all conforming XML fragments (as defined above) according
to all required semantics prescribed by this
Recommendation, and, for any optional semantics it chooses
to support, supports them in the way prescribed.
Specifically, conforming application software must be able
to parse all conforming valid fragment context
specification information whether it chooses to support its
semantics or not. Application software acting as sender
conforms to the XML Fragment Interchange Recommendation if
it creates conforming XML fragments (as defined above) and,
if including fragment context information, includes
conforming fragment context information according to the
requirements in section 4.</p>
<p>If fragment context information is included with a
transmitted fragment, then it should conform according to
the requirements in section 4.</p>
</div>
</div>
<div class="back">
<div class="div1">
<h2><a name="d1e1395"></a>A References</h2>
<div class="div2">
<h3><a name="d1e1400"></a>A.1 Normative References</h3>
<dl>
<dt class="label"><a name="rfc2396"></a>RFC 2396</dt>
<dd>IETF RFC 2396: <em>Uniform Resource Identifiers
(URI): Generic Syntax</em>. See <a href=
"ftp://ftp.ietf.org/rfc/rfc2396.txt">ftp://ftp.ietf.org/rfc/rfc2396.txt</a></dd>
<dt class="label"><a name="XML"></a>XML 1.0</dt>
<dd>World Wide Web Consortium. <em>Extensible Markup
Language (XML) 1.0.</em> W3C Recommendation. See <a
href=
"http://www.w3.org/TR/REC-xml">http://www.w3.org/TR/REC-xml</a></dd>
<dt class="label"><a name="Namespaces"></a>XML
Namespaces</dt>
<dd>World Wide Web Consortium. <em>Namespaces in
XML</em> W3C Proposed Recommendation. See <a href=
"http://www.w3.org/TR/PR-xml-names">http://www.w3.org/TR/PR-xml-names</a></dd>
<dt class="label"><a name=
"AssocStylesheets"></a>Associating stylesheets</dt>
<dd>World Wide Web Consortium. <em>Associating
stylesheets with XML documents</em> W3C Working Draft.
See <a href=
"http://www.w3.org/TR/WD-xml-stylesheet">http://www.w3.org/TR/WD-xml-stylesheet</a></dd>
</dl>
</div>
<div class="div2">
<h3><a name="d1e1440"></a>A.2 Other References</h3>
<dl>
<dt class="label"><a name="TR9601"></a>TR9601</dt>
<dd>OASIS (formerly SGML Open) <em>Fragment Interchange
— SGML Open Technical Resolution 9601:1996</em>.
OASIS (SGML Open) Technical Resolution. See <a href=
"http://www.oasis-open.org/html/tr9601.html">http://www.oasis-open.org/html/tr9601.html</a>
for an online version</dd>
<dt class="label"><a name="MIME"></a>MIME</dt>
<dd>IETF RFC 2045: <em>Multipurpose Internet Mail
Extensions (MIME) Part One: Format of Internet Message
Bodies</em>. See <a href=
"http://www.imc.org/rfc2045">http://www.imc.org/rfc2045</a></dd>
<dt class="label"><a name="rfc2387"></a>RFC 2387</dt>
<dd>IETF RFC 2387: <em>The MIME Multipart/Related
Content-type</em>. See <a href=
"http://www.imc.org/rfc2387">http://www.imc.org/rfc2387</a></dd>
<dt class="label"><a name="rfc2392"></a>RFC 2392</dt>
<dd>IETF RFC 2392: <em>Content-ID and Message-ID
Uniform Resource Locators</em>. See <a href=
"ftp://ftp.ietf.org/rfc/rfc2392.txt">ftp://ftp.ietf.org/rfc/rfc2392.txt</a></dd>
<dt class="label"><a name="XML-FRAG-REQ"></a>XML
Fragment Requirements Document</dt>
<dd>World Wide Web Consortium. <em>XML Fragment
Interchange Requirements</em> W3C Note. See <a href=
"http://www.w3.org/TR/NOTE-XML-FRAG-REQ">http://www.w3.org/TR/NOTE-XML-FRAG-REQ</a></dd>
<dt class="label"><a name="XPointer"></a>XPointer
WD</dt>
<dd>World Wide Web Consortium. <em>XML Pointer Language
(XPointer)</em> W3C Working Draft. See <a href=
"http://www.w3.org/TR/WD-xptr">http://www.w3.org/TR/WD-xptr</a></dd>
</dl>
</div>
</div>
<div class="div1">
<h2><a name="packaging"></a>B Packaging and interchanging
fragments (Non-Normative)</h2>
<p>It is a design goal of this Recommendation to define a
fragment context specification to be a well-formed XML
document. However, a fragment body itself need not be a
well-formed document, but only well-balanced. While it is
important to be able to package a fragment body with its
fcs, it is expected that a general XML-friendly packaging
mechanism—beyond the scope of this
Recommendation—will be developed by the W3C that
would satisfy this requirement. Meanwhile, applications and
interchange partners may agree on any packaging mechanism
to aid in fragment interchange. This appendix gives some
non-normative examples of such possible packaging
mechanisms.</p>
<p>The <code>fcs</code> element could be packaged along
with the fragment body by combining them into a single
well-formed XML document. For the purposes of fragment
interchange packaging, one could define a simple
“document type” consisting of a
“head” part containing the fcs (and,
potentially, other) metadata followed by a
“body” part containing the fragment body
itself.</p>
<p>In the following template, <code>p</code> is defined as
the local prefix referring to the namespace defined for the
packaging structure, and <code>f</code>, as in previous
sections, is the local prefix referring to the namespace
defined by this Recommendation for fragment-interchange
related components. (Note that this template example
assumes that no explicit namespace prefixes are present in
the fragment body. If the fragment body contains explicit
namespace prefixes whose declarations are not also included
in the fragment body, then additional namespace
declarations would be necessary on the
<code><p:package></code> or
<code><f:fcs></code> element. If the parent document
does not use namespaces at all, then no default namespace
declaration is needed for the fcs or its package.)</p>
<p>The format of a complete fragment package might be
outlined as follows:</p>
<table class="eg" cellpadding="5" border="1" bgcolor=
"#99ffff" width="100%" summary="Example">
<tr>
<td>
<pre>
<p:package xmlns:p="http://www.w3.org/2001/02/xml-package"
xmlns:f="http://www.w3.org/2001/02/xml-fragment"
xmlns="<em>{the default namespace in effect at the start
of the fragment body in the parent document}</em>">
<f:fcs <em>{the ref attributes on the fcs tag}</em>>
<em>{the content of the fcs with no namespace prefixes
necessary except that on the <f:fragbody/> element}</em>
</f:fcs>
<p:body>
<em>{the fragment body with no namespace prefixes necessary}</em>
</p:body>
</p:package>
</pre>
</td>
</tr>
</table>
<div class="note">
<p class="prefix"><b>Note:</b></p>
<p>The above template includes indentation and blank
lines to help display the overall structure of the
package. However, all whitespace within the
<code>p:body</code> element <em>is</em> significant and
is therefore part of the fragment body. Therefore, the
packaging process can introduce no whitespace (including
record ends immediately following
<code><p:body></code> and immediately preceding
<code></p:body></code>) within the
<code>p:body</code> element.</p>
</div>
</div>
<div class="div1">
<h2><a name="examples"></a>C Examples (Non-Normative)</h2>
<p>The following examples are designed in general to
address the potential reference scenarios described in <a
href="#XML-FRAG-REQ">[XML Fragment Requirements
Document]</a>.</p>
<div class="div2">
<h3><a name="d1e1577"></a>C.1 One element of a
transaction record as a fragment</h3>
<p>The user has an XML document that represents a
customer's set of purchases at a bookstore, and the part
of that document that represents the purchase of a
particular book needs to be represented as a
fragment.</p>
<p>Here is the original XML document for the
transaction:</p>
<table class="eg" cellpadding="5" border="1" bgcolor=
"#99ffff" width="100%" summary="Example">
<tr>
<td>
<pre>
<?xml version="1.0"?>
<transaction TID="19990207-1234">
<purchase>
<book>
<Author>Frank Herbert</Author>
<Title>Dune</Title>
<Edition>Hardcover Reissue edition (April 1984)</Edition>
<ISBN>0399128964</ISBN>
<Price currency="USD">18.87</Price>
<Quantity>1</Quantity>
</book>
<book>
<Author>J. R. R. Tolkien</Author>
<Title>The Book of Lost Tales (The History of Middle-Earth)</Title>
<Edition>Mass Market Paperback Reprint edition (June 1992)</Edition>
<ISBN>0345375211</ISBN>
<Price currency="USD">4.79</Price>
<Quantity>1</Quantity>
</book>
</purchase>
<refund RID="19990115-2">
<reason TID="19981220-3214">Late delivery</reason>
<value currency="USD">5.00</value>
</refund>
<payment>
<client CID="123421"/>
<value currency="USD">18.66</value>
<creditcard type="MasterCard">
<bank>BankBoston</bank>
<owner>Joe J. Bill</owner>
<serial>1234567890</serial>
<expires>5/99</expires>
</creditcard>
<status>Waiting for approval</status>
</payment>
</transaction>
</pre>
</td>
</tr>
</table>
<p>Here is a fragment representing the second book
element from the above document (the
<code>sourcelocn</code> attribute on the
<code>f:fcs</code> element is optional and is shown
merely as an example):</p>
<table class="eg" cellpadding="5" border="1" bgcolor=
"#99ffff" width="100%" summary="Example">
<tr>
<td>
<pre>
<?xml version="1.0"?>
<p:package xmlns:p="http://www.w3.org/2001/02/xml-package">
<p:fcs xmlns:f="http://www.w3.org/2001/02/xml-fragment"
sourcelocn="http://acme.com/trans1234#root().child(1,purchase).child(2,book)">
<transaction>
<purchase>
<book/>
<p:fragbody/>
</purchase>
</transaction>
</p:fcs>
<p:body>
<book>
<Author>J. R. R. Tolkien</Author>
<Title>The Book of Lost Tales (The History of Middle-Earth)</Title>
<Edition>Mass Market Paperback Reprint edition (June 1992)</Edition>
<ISBN>0345375211</ISBN>
<Price currency="USD">4.79</Price>
<Quantity>1</Quantity>
</book>
</p:body>
</p:package>
</pre>
</td>
</tr>
</table>
</div>
<div class="div2">
<h3><a name="d1e1604"></a>C.2 Use of external entities
and MIME packaging</h3>
<p>A user has an XML document that includes several
external entities, and she wants to be able to
interchange a fragment that includes a reference to the
entities using MIME [<a href="#MIME">[MIME]</a>]
packaging. (For references, see also <a href=
"#rfc2387">[RFC 2387]</a> and <a href="#rfc2392">[RFC
2392]</a>.)</p>
<p>Here is the original document:</p>
<table class="eg" cellpadding="5" border="1" bgcolor=
"#99ffff" width="100%" summary="Example">
<tr>
<td>
<pre>
<?xml version="1.0"?>
<!DOCTYPE book SYSTEM "http://www.oasis-open.org/docbook/docbook/3.0/docbook.dtd" [
<!ENTITY title "My Book">
<!ENTITY author "me">
<!ENTITY try SYSTEM "try.cgm" NDATA CGM-BINARY>
]>
<book>
<part>
<title>&title;</title>
<introduction>This is my book ...</introduction>
<author>&author;</author>
<chapter type="intro">
<sect1>The introduction ...</sect1>
</chapter>
<chapter>...</chapter>
<chapter>
<p>This is a paragraph within the third chapter within
the first part of a Docbook <quote>book</quote> document.</p>
<p>And this is a succeeding paragraph.</p>
<p>And an internal text entity reference &author;.</p>
<p>And a reference to an unparsed entity (a CGM graphic):
<graphic entityref="try"></graphic></p>
</chapter>
<chapter>...</chapter>
</part>
</book>
</pre>
</td>
</tr>
</table>
<p>Note that the DocBook DTD includes the following
(which is therefore not included in the internal subset
of this document):</p>
<table class="eg" cellpadding="5" border="1" bgcolor=
"#99ffff" width="100%" summary="Example">
<tr>
<td>
<pre>
<!NOTATION CGM-BINARY PUBLIC "ISO 8632/3//NOTATION Binary Encoding//EN">
</pre>
</td>
</tr>
</table>
<p>Here is a fragment that represents the contents of the
third chapter:</p>
<table class="eg" cellpadding="5" border="1" bgcolor=
"#99ffff" width="100%" summary="Example">
<tr>
<td>
<pre>
<?xml version="1.0"?>
<f:fcs xmlns:f="http://www.w3.org/2001/02/xml-fragment"
xmlns="http://www.oasis-open.org/docbook/docbook/3.0/docbook.dtd"
extref="http://www.oasis-open.org/docbook/docbook/3.0/docbook.dtd"
intref="mybook.decls">
<book>
<part>
<chapter type="intro"/>
<chapter/>
<chapter>
<f:fragbody fragbodyref="chapter3.xml"/>
</chapter>
</part>
</book>
</f:fcs>
</pre>
</td>
</tr>
</table>
<p>Here is the corresponding fragment body:</p>
<table class="eg" cellpadding="5" border="1" bgcolor=
"#99ffff" width="100%" summary="Example">
<tr>
<td>
<pre>
<p>This is a paragraph within the third chapter within
the first part of a Docbook <quote>book</quote> document.</p>
<p>And this is a succeeding paragraph.</p>
<p>And an internal text entity reference &author;.</p>
<p>And a reference to an unparsed entity (a CGM graphic):
<graphic entityref="try"></graphic></p>
</pre>
</td>
</tr>
</table>
<p>Here is the associated internal subset:</p>
<table class="eg" cellpadding="5" border="1" bgcolor=
"#99ffff" width="100%" summary="Example">
<tr>
<td>
<pre>
<!ENTITY title "My Book">
<!ENTITY author "me">
<!ENTITY try SYSTEM "try.cgm" NDATA CGM-BINARY>
</pre>
</td>
</tr>
</table>
<p>Here is the external entity (represented in Base 64
encoding, since this is really a binary entity):</p>
<table class="eg" cellpadding="5" border="1" bgcolor=
"#99ffff" width="100%" summary="Example">
<tr>
<td>
<pre>
ACEAABAiAAEQXwBEQyJTb3VyY2U6IEhTSSAvV01GLXRvLUNHTSBmaWx0ZXIg
LyBWZXJzaW9uIDEuMzUgIiAiRGF0ZTogMTk5OS0wMS0xNyIRZgAB//8AARBi
AAAQpgAAAAkAFxFGAAAA////EYQwIgAQEYogyAAAAAB//3//AAARvwC3C1RJ
TUVTX1JPTUFODFRJTUVTX0lUQUxJQwpUSU1FU19CT0xEEVRJTUVTX0JPTERf
SVRBTElDCUhFTFZFVElDQRFIRUxWRVRJQ0FfT0JMSVFVRQ5IRUxWRVRJQ0Ff
Qk9MRBZIRUxWRVRJQ0FfQk9MRF9PQkxJUVVFB0NPVVJJRVIOQ09VUklFUl9J
VEFMSUMMQ09VUklFUl9CT0xEE0NPVVJJRVJfQk9MRF9JVEFMSUMGU1lNQk9M
ABHOAAABQgABAUEABAMqLToR4gABAGEAACAmAAE9NJ9IIEIAASBiAAAgggAA
IKIAACDI95D0wAhqCzoAAACAQWj5cAa5/TEJikGGAogCUQGQUGIACEAo+dD/
+v7g+TpRYgACUkwAAQAEAAAAAAAAAABRgBxUggAAABkAGQAAFKCAAJAkAEg/
MoAAQlTb21lIFRleHQAoABA
</pre>
</td>
</tr>
</table>
<p>And here is an example of MIME packaging used to
transmit the fragment context specification, the fragment
body, the internal subset, and the external entity within
a single stream such as a mail message:</p>
<table class="eg" cellpadding="5" border="1" bgcolor=
"#99ffff" width="100%" summary="Example">
<tr>
<td>
<pre>
Content-Type: multipart/related; boundary="/04w6evG8XlLl3ft";type="text/xml"
--/04w6evG8XlLl3ft
Content-Type: text/xml; charset=us-ascii
Content-ID: <part1>
Content-Disposition: attachment; filename="mybook.decls"
<!ENTITY title "My Book">
<!ENTITY author "me">
<!ENTITY try SYSTEM "cid:part2" NDATA CGM-BINARY>
--/04w6evG8XlLl3ft
Content-Type: image/cgm
Content-ID: <part2>
Content-Transfer-Encoding: base64
Content-Disposition: attachment; filename="try.cgm"
ACEAABAiAAEQXwBEQyJTb3VyY2U6IEhTSSAvV01GLXRvLUNHTSBmaWx0ZXIg
LyBWZXJzaW9uIDEuMzUgIiAiRGF0ZTogMTk5OS0wMS0xNyIRZgAB//8AARBi
AAAQpgAAAAkAFxFGAAAA////EYQwIgAQEYogyAAAAAB//3//AAARvwC3C1RJ
TUVTX1JPTUFODFRJTUVTX0lUQUxJQwpUSU1FU19CT0xEEVRJTUVTX0JPTERf
SVRBTElDCUhFTFZFVElDQRFIRUxWRVRJQ0FfT0JMSVFVRQ5IRUxWRVRJQ0Ff
Qk9MRBZIRUxWRVRJQ0FfQk9MRF9PQkxJUVVFB0NPVVJJRVIOQ09VUklFUl9J
VEFMSUMMQ09VUklFUl9CT0xEE0NPVVJJRVJfQk9MRF9JVEFMSUMGU1lNQk9M
ABHOAAABQgABAUEABAMqLToR4gABAGEAACAmAAE9NJ9IIEIAASBiAAAgggAA
IKIAACDI95D0wAhqCzoAAACAQWj5cAa5/TEJikGGAogCUQGQUGIACEAo+dD/
+v7g+TpRYgACUkwAAQAEAAAAAAAAAABRgBxUggAAABkAGQAAFKCAAJAkAEg/
MoAAQlTb21lIFRleHQAoABA
--/04w6evG8XlLl3ft
Content-Type: text/xml; charset=us-ascii
Content-ID: <part3>
Content-Disposition: attachment; filename="chapter3.xml"
<p>This is a paragraph within the third chapter within
the first part of a Docbook <quote>book</quote> document.</p>
<p>And this is a succeeding paragraph.</p>
<p>And an internal text entity reference &author;.</p>
<p>And a reference to an unparsed entity (a CGM graphic):
<graphic entityref="try"></graphic></p>
--/04w6evG8XlLl3ft
Content-Type: text/xml; charset=us-ascii
<?xml version="1.0"?>
<f:fcs xmlns:f="http://www.w3.org/2001/02/xml-fragment"
xmlns="http://www.oasis-open.org/docbook/docbook/3.0/docbook.dtd"
extref="http://www.oasis-open.org/docbook/docbook/3.0/docbook.dtd"
intref="cid:part1">
<book>
<part>
<chapter type="intro"/>
<chapter/>
<chapter>
<f:fragbody fragbodyref="cid:part3"/>
</chapter>
</part>
</book>
</f:fcs>
--/04w6evG8XlLl3ft--
</pre>
</td>
</tr>
</table>
</div>
<div class="div2">
<h3><a name="d1e1661"></a>C.3 Indexes into a large
document</h3>
<p>The user has very large XML documents, possibly a
gigabyte or more in size, and wishes to be able to view
portions of the document without parsing the whole
document. In order to do this the user creates an
“index” for each document portion (fragment)
that they wish to so address. The “index”
consists of a fragment context specification in
combination with a packaging mechanism designed for quick
access to the fragment body. This should be used to view
and browse documents with a flat structure, like HTML, on
devices where only a part of the document can be parsed
or rendered.</p>
<table class="eg" cellpadding="5" border="1" bgcolor=
"#99ffff" width="100%" summary="Example">
<tr>
<td>
<pre>
<?xml version="1.0"?>
<f:fcs xmlns:f="http://www.w3.org/2001/02/xml-fragment"
xmlns=""
fragbodyref="http://www.w3.org/TR/REC-xml.html#sec-xml-and-sgml"
extref="http://www.w3.org/TR/REC-html40-971218/loose.dtd">
<html>
<head>
<link rel='STYLESHEET' type='text/css' href='/StyleSheets/TR/rec.css'/>
</head>
<body>
<h1>Extensible Markup Language (XML) 1.0</h1>
<h2 ID='sec-intro'>1. Introduction</h2>
<h3 ID='sec-origin-goals'>1.1 Origin and Goals</h3>
<h3 ID='sec-terminology'>1.2 Terminology</h3>
<h2 ID='sec-documents'>2. Documents</h2>
<h3 ID='sec-well-formed'>2.1 Well-Formed XML Documents</h3>
<h3 ID='charsets'>2.2 Characters</h3>
<h3 ID='sec-common-syn'>2.3 Common Syntactic Constructs</h3>
<h3 ID='syntax'>2.4 Character Data and Markup</h3>
<h3 ID='sec-comments'>2.5 Comments</h3>
<h3 ID='sec-pi'>2.6 Processing Instructions</h3>
<h3 ID='sec-cdata-sect'>2.7 CDATA Sections</h3>
<h3 ID='sec-prolog-dtd'>2.8 Prolog and Document Type Declaration</h3>
<h3 ID='sec-rmd'>2.9 Standalone Document Declaration</h3>
<h3 ID='sec-white-space'>2.10 White Space Handling</h3>
<h3 ID='sec-line-ends'>2.11 End-of-Line Handling</h3>
<h3 ID='sec-lang-tag'>2.12 Language Identification</h3>
<h2 ID='sec-logical-struct'>3. Logical Structures</h2>
<h3 ID='sec-starttags'>3.1 Start-Tags, End-Tags, and Empty-Element Tags</h3>
<h3 ID='elemdecls'>3.2 Element Type Declarations</h3>
<h4 ID='sec-element-content'>3.2.1 Element Content</h4>
<h4 ID='sec-mixed-content'>3.2.2 Mixed Content</h4>
<h3 ID='attdecls'>3.3 Attribute-List Declarations</h3>
<h4 ID='sec-attribute-types'>3.3.1 Attribute Types</h4>
<h4 ID='sec-attr-defaults'>3.3.2 Attribute Defaults</h4>
<h4 ID='AVNormalize'>3.3.3 Attribute-Value Normalization</h4>
<h3 ID='sec-condition-sect'>3.4 Conditional Sections</h3>
<h2 ID='sec-physical-struct'>4. Physical Structures</h2>
<h3 ID='sec-references'>4.1 Character and Entity References</h3>
<h3 ID='sec-entity-decl'>4.2 Entity Declarations</h3>
<h4 ID='sec-internal-ent'>4.2.1 Internal Entities</h4>
<h4 ID='sec-external-ent'>4.2.2 External Entities</h4>
<h3 ID='TextEntities'>4.3 Parsed Entities</h3>
<h4 ID='sec-TextDecl'>4.3.1 The Text Declaration</h4>
<h4 ID='wf-entities'>4.3.2 Well-Formed Parsed Entities</h4>
<h4 ID='charencoding'>4.3.3 Character Encoding in Entities</h4>
<h3 ID='entproc'>4.4 XML Processor Treatment of Entities and References</h3>
<h4 ID='not-recognized'>4.4.1 Not Recognized</h4>
<h4 ID='included'>4.4.2 Included</h4>
<h4 ID='include-if-valid'>4.4.3 Included If Validating</h4>
<h4 ID='forbidden'>4.4.4 Forbidden</h4>
<h4 ID='inliteral'>4.4.5 Included in Literal</h4>
<h4 ID='notify'>4.4.6 Notify</h4>
<h4 ID='bypass'>4.4.7 Bypassed</h4>
<h4 ID='as-PE'>4.4.8 Included as PE</h4>
<h3 ID='intern-replacement'>4.5 Construction of Internal Entity Replacement Text</h3>
<h3 ID='sec-predefined-ent'>4.6 Predefined Entities</h3>
<h3 ID='Notations'>4.7 Notation Declarations</h3>
<h3 ID='sec-doc-entity'>4.8 Document Entity</h3>
<h2 ID='sec-conformance'>5. Conformance</h2>
<h3 ID='proc-types'>5.1 Validating and Non-Validating Processors</h3>
<h3 ID='safe-behavior'>5.2 Using XML Processors</h3>
<h2 ID='sec-notation'>6. Notation</h2>
<h3>Appendices</h3>A. <A ID='sec-bibliography'>References</A>
<h3 ID='sec-existing-stds'>A.1 Normative References</h3>
<h3 ID='null'>A.2 Other References</h3>
<h2 ID='CharClasses'>B. Character Classes</h2>
<f:fragbody/>
<h2 ID='sec-entexpand'>D. Expansion of Entity and Character References (Non-Normative)</h2>
<h2 ID='determinism'>E. Deterministic Content Models (Non-Normative)</h2>
<h2 ID='sec-guessing'>F. Autodetection of Character Encodings (Non-Normative)</h2>
<h2 ID='sec-xml-wg'>G. W3C XML Working Group (Non-Normative)</h2>
</body>
</html>
</f:fcs>
</pre>
</td>
</tr>
</table>
</div>
</div>
<div class="div1">
<h2><a name="d1e1674"></a>D Design Principles
(Non-Normative)</h2>
<p>In the design of any language, trade-offs in the
solution space are necessary. To aid in making these
trade-offs the follow design principles were used (the
order of these principles is not necessarily
significant):</p>
<ol>
<li>
<p>XML fragment specifications should be usable over
the internet.</p>
</li>
<li>
<p>XML fragment specifications should support the
specification of context for any well-formed chunk of
XML; the definition of a fragment may be broadened to
allow any chunk of XML that matches XML's
“content” production (production [43]).
Chunks of XML that do not match XML's
“content” production (i.e., that are not
well-formed entities) are specifically out of
scope.</p>
</li>
<li>
<p>XML fragment specifications should be optimized to
work with simpler XML fragments (such as those
conforming to the simpler XML profile being developed
by the XML Syntax WG), though the language should also
work with any XML (“the easy stuff should be
easy, and the harder stuff should be possible”);
working with SGML features not included in XML
(including those, such as tag omission, allowed in
HTML) is not a goal.</p>
</li>
<li>
<p>XML fragment specifications should be capable of
being specified both in the same storage object as the
fragment body itself as well as in a separate object
linked in some fashion to the fragment body.</p>
</li>
<li>
<p>XML fragment specifications should support
interaction with XML browsers, editors, repositories,
and other XML applications.</p>
</li>
<li>
<p>SGML features and characteristics not included in
XML shall not be taken into consideration in the design
of our fragment context specification solution.</p>
</li>
<li>
<p>It is specifically not a goal that XML fragment
specifications be designed in consideration of non-XML
HTML browsers, parsers, or other non-XML
applications.</p>
</li>
<li>
<p>Since interoperability is a primary goal, there
should be only one language for the fragment context
specification rather than multiple
“features.” However, since the goal is to
provide enough information to parse the fragment, and
well-formed XML may not require any extra information
to allow it to be parsed, no specific set of context
information should be required in all context
specifications. (No implementation should choke on any
valid piece of context information, but no
implementation should be considered non-compliant for
choosing to ignore [on the receiving end]—or not
include [on the sending end]—a specific piece of
context information if doing so makes sense in the
particular environment.)</p>
</li>
<li>
<p>XML fragment specifications should leverage other
recommendations and standards, including XML 1.0, XML
Namespace, XPointer, XML Information Set, the SGML Open
TR9601:1996 on Fragment Interchange, and relevant IETF
work.</p>
</li>
<li>
<p>XML fragment specifications should be human-readable
and reasonably clear.</p>
</li>
<li>
<p>Terseness in XML fragment specification syntax is of
minimal importance.</p>
</li>
<li>
<p>Issues involved with the possible
“return” of any fragment to its original
context and the determination of the possible validity
of the “returned” fragment in its original
context are beyond the scope of this activity.</p>
</li>
</ol>
</div>
<div class="div1">
<h2><a name="d1e1736"></a>E Acknowledgments
(Non-Normative)</h2>
<p>The following participated in the XML Fragment WG during
the authoring of this Recommendation:</p>
<blockquote>
<p>Paula Angerstein, Vignette<br>
Tim Boland, NIST<br>
Charles Frankston, Microsoft<br>
Paul Grosso, Arbortext<br>
Michael Hyman, Microsoft<br>
Joel Nava, Adobe<br>
Conleth O'Connell, Vignette<br>
Joakim Östman, Citec<br>
Christina Portillo, Boeing<br>
Shriram Revankar, Xerox<br>
Daniel Veillard, W3C</p>
</blockquote>
</div>
<div class="div1">
<h2><a name="d1e1781"></a>F Changes from Previous Public
Working Drafts (Non-Normative)</h2>
<div class="div2">
<h3><a name="d1e1786"></a>F.1 Changes between the March 3
and April 2 WD</h3>
<p>Major changes to the previous public working draft are
outlined below. Various other changes have also been made
throughout the document.</p>
<ol>
<li>
<p>Added <a href="#defn-fcs-document"><b>[fragment
context specification document]</b></a> as a defined
term.</p>
</li>
<li>
<p>Added a <code>fragbodyref</code> attribute to the
<code>fragbody</code> element (<a href=
"#NT-FCSfragbody"><b>[PROD: 4]</b></a>) and renamed
the <code>fragbodyref</code> attribute of the fcs
element to <code>sourcelocn</code>.</p>
</li>
<li>
<p>Added a production (<a href="#NT-fcs"><b>[PROD:
7]</b></a>) to allow an fcs to have a prolog; added a
well-formed, namespace complete FCS Constraint.</p>
</li>
<li>
<p>Wrote a new subsection of the fcs notation chapter
(<a href="#fcs-semantics"><b>5.3 Semantics of a
fragment context specification</b></a>) describing
the Semantics of a fragment context
specification.</p>
</li>
<li>
<p>Wrote a new subsection of the fcs notation chapter
(<a href="#fcs-example"><b>5.4 An fcs
example</b></a>) giving a complete example of a
fragment context specification use (without
packaging).</p>
</li>
<li>
<p>Moved the chapter on packaging to the
non-normative back matter (<a href="#packaging"><b>B
Packaging and interchanging fragments</b></a>).</p>
</li>
<li>
<p>Did major editing of the appendix of examples (<a
href="#examples"><b>C Examples</b></a>).</p>
</li>
</ol>
</div>
<div class="div2">
<h3><a name="d1e1853"></a>F.2 Changes between the April 2
and June 19 WD</h3>
<p>Major changes to the previous public working draft are
outlined below. Various other minor changes have also
been made to the document.</p>
<ol>
<li>
<p>The Status section was updated.</p>
</li>
<li>
<p>References to XPointer usage were replaced with
references to “URI reference [RFC
2396].”</p>
</li>
<li>
<p>Some items in the fragment context information set
were moved from the “affect proper
parsing” list to the “cannot affect
proper parsing” list.</p>
</li>
<li>
<p>An additional note was added at the top of the
Overview of the fcs to indicate what kinds of fci is
necessary and sufficient for CSS use.</p>
</li>
<li>
<p>The conformance section was expanded.</p>
</li>
<li>
<p>References to related IETF RFC's were added.</p>
</li>
<li>
<p>Example C.2 was modified to use content ids.</p>
</li>
</ol>
</div>
<div class="div2">
<h3><a name="d1e1894"></a>F.3 Changes between the June 19
WD and the CR</h3>
<p>Changes to the previous public working draft are
outlined below.</p>
<ol>
<li>
<p>The Status section was updated.</p>
</li>
<li>
<p>The Decision notes and review requests were
removed.</p>
</li>
<li>
<p>IDs were added on various elements to allow for
more granular referencing.</p>
</li>
</ol>
</div>
</div>
</div>
</body>
</html>