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
|
<pre>Network Working Group J. Kunze
Request for Comments: 2731 Dublin Core
Category: Informational Metadata Initiative
December 1999
<span class="h1">Encoding Dublin Core Metadata in HTML</span>
Status of this Memo
This memo provides information for the Internet community. It does
not specify an Internet standard of any kind. Distribution of this
memo is unlimited.
Copyright Notice
Copyright (C) The Internet Society (1999). All Rights Reserved.
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Abstract</span>
The Dublin Core [<a href="#ref-DC1" title=""Dublin Core Metadata for Resource Discovery"">DC1</a>] is a small set of metadata elements for
describing information resources. This document explains how these
elements are expressed using the META and LINK tags of HTML
[<a href="#ref-HTML4.0">HTML4.0</a>]. A sequence of metadata elements embedded in an HTML file
is taken to be a description of that file. Examples illustrate
conventions allowing interoperation with current software that
indexes, displays, and manipulates metadata, such as [<a href="#ref-SWISH-E">SWISH-E</a>],
[<a href="#ref-freeWAIS-sf2.0">freeWAIS-sf2.0</a>], [<a href="#ref-GLIMPSE">GLIMPSE</a>], [<a href="#ref-HARVEST">HARVEST</a>], [<a href="#ref-ISEARCH">ISEARCH</a>], etc., and the Perl
[<a href="#ref-PERL" title="R. Schwartz">PERL</a>] scripts in the appendix.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. HTML, Dublin Core, and Non-Dublin Core Metadata</span>
The Dublin Core (DC) metadata initiative [<a href="#ref-DCHOME">DCHOME</a>] has produced a
small set of resource description categories [<a href="#ref-DC1" title=""Dublin Core Metadata for Resource Discovery"">DC1</a>], or elements of
metadata (literally, data about data). Metadata elements are
typically small relative to the resource they describe and may, if
the resource format permits, be embedded in it. Two such formats are
the Hypertext Markup Language (HTML) and the Extensible Markup
Language (XML); HTML is currently in wide use, but once standardized,
XML [<a href="#ref-XML">XML</a>] in conjunction with the Resource Description Framework
[<a href="#ref-RDF">RDF</a>] promise a significantly more expressive means of encoding
metadata. The [<a href="#ref-RDF">RDF</a>] specification actually describes a way to use
RDF within an HTML document by adhering to an abbreviated syntax.
<span class="grey">Kunze Informational [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc2731">RFC 2731</a> Encoding Dublin Core Metadata in HTML December 1999</span>
This document explains how to encode metadata using HTML 4.0
[<a href="#ref-HTML4.0">HTML4.0</a>]. It is not concerned with element semantics, which are
defined elsewhere. For illustrative purposes, some element semantics
are alluded to, but in no way should semantics appearing here be
considered definitive.
The HTML encoding allows elements of DC metadata to be interspersed
with non-DC elements (provided such mixing is consistent with rules
governing use of those non-DC elements). A DC element is indicated
by the prefix "DC", and a non-DC element by another prefix; for
example, the prefix "AC" is used with elements from the A-Core [<a href="#ref-AC">AC</a>].
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. The META Tag</span>
The META tag of HTML is designed to encode a named metadata element.
Each element describes a given aspect of a document or other
information resource. For example, this tagged metadata element,
<meta name = "DC.Creator"
content = "Simpson, Homer">
says that Homer Simpson is the Creator, where the element named
Creator is defined in the DC element set. In the more general form,
<meta name = "PREFIX.ELEMENT_NAME"
content = "ELEMENT_VALUE">
the capitalized words are meant to be replaced in actual
descriptions; thus in the example,
ELEMENT_NAME was: Creator
ELEMENT_VALUE was: Simpson, Homer
and PREFIX was: DC
Within a META tag the first letter of a Dublin Core element name is
capitalized. DC places no restriction on alphabetic case in an
element value and any number of META tagged elements may appear
together, in any order. More than one DC element with the same name
may appear, and each DC element is optional. The next example is a
book description with two authors, two titles, and no other metadata.
<meta name = "DC.Title"
content = "The Communist Manifesto">
<meta name = "DC.Creator"
content = "Marx, K.">
<span class="grey">Kunze Informational [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc2731">RFC 2731</a> Encoding Dublin Core Metadata in HTML December 1999</span>
<meta name = "DC.Creator"
content = "Engels, F.">
<meta name = "DC.Title"
content = "Capital">
The prefix "DC" precedes each Dublin Core element encoded with META,
and it is separated by a period (.) from the element name following
it. Each non-DC element should be encoded with a prefix that can be
used to trace its origin and definition; the linkage between prefix
and element definition is made with the LINK tag, as explained in the
next section. Non-DC elements, such as Email from the A-Core [<a href="#ref-AC">AC</a>],
may appear together with DC elements, as in
<meta name = "DC.Creator"
content = "Da Costa, Jos&eacute;">
<meta name = "AC.Email"
content = "dacostaj@peoplesmail.org">
<meta name = "DC.Title"
content = "Jesse &#34;The Body&#34; Ventura--A Biography">
This example also shows how some special characters may be encoded.
The author name in the first element contains a diacritic encoded as
an HTML character entity reference -- in this case an accented letter
E. Similarly, the last line contains two double-quote characters
encoded so as to avoid being interpreted as element content
delimiters.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. The LINK Tag</span>
The LINK tag of HTML may be used to associate an element name prefix
with the reference definition of the element set that it identifies.
A sequence of META tags describing a resource is incomplete without
one such LINK tag for each different prefix appearing in the
sequence. The previous example could be considered complete with the
addition of these two LINK tags:
<link rel = "schema.DC"
href = "<a href="http://purl.org/DC/elements/1.0/">http://purl.org/DC/elements/1.0/</a>">
<link rel = "schema.AC"
href = "<a href="http://metadata.net/ac/2.0/">http://metadata.net/ac/2.0/</a>">
In general, the association takes the form
<link rel = "schema.PREFIX"
href = "LOCATION_OF_DEFINITION">
<span class="grey">Kunze Informational [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc2731">RFC 2731</a> Encoding Dublin Core Metadata in HTML December 1999</span>
where, in actual descriptions, PREFIX is to be replaced by the prefix
and LOCATION_OF_DEFINITION by the URL or URN of the defining
document. When embedded in the HEAD part of an HTML file, a sequence
of LINK and META tags describes the information in the surrounding
HTML file itself. Here is a complete HTML file with its own embedded
description.
<html>
<head>
<title> A Dirge </title>
<link rel = "schema.DC"
href = "<a href="http://purl.org/DC/elements/1.0/">http://purl.org/DC/elements/1.0/</a>">
<meta name = "DC.Title"
content = "A Dirge">
<meta name = "DC.Creator"
content = "Shelley, Percy Bysshe">
<meta name = "DC.Type"
content = "poem">
<meta name = "DC.Date"
content = "1820">
<meta name = "DC.Format"
content = "text/html">
<meta name = "DC.Language"
content = "en">
</head>
<body><pre>
Rough wind, that moanest loud
Grief too sad for song;
Wild wind, when sullen cloud
Knells all the night long;
Sad storm, whose tears are vain,
Bare woods, whose branches strain,
Deep caves and dreary main, -
Wail, for the world's wrong!
</pre></body>
</html>
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Encoding Recommendations</span>
HTML allows more flexibility in principle and in practice than is
recommended here for encoding metadata. Limited flexibility
encourages easy development of software for extracting and processing
metadata. At this early evolutionary stage of internet metadata,
easy prototyping and experimentation hastens the development of
useful standards.
<span class="grey">Kunze Informational [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc2731">RFC 2731</a> Encoding Dublin Core Metadata in HTML December 1999</span>
Adherence is therefore recommended to the tagging style exemplified
in this document as regards prefix and element name capitalization,
double-quoting (") of attribute values, and not starting more than
one META tag on a line. There is much room for flexibility, but
choosing a style and sticking with it will likely make metadata
manipulation and editing easier. The following META tags adhere to
the recommendations and carry identical metadata in three different
styles:
<META NAME="DC.Format"
CONTENT="text/html; 12 Kbytes">
<meta
Content = "text/html; 12 Kbytes"
Name = "DC.Format"
>
<meta name = "DC.Format" content = "text/html; 12 Kbytes">
Use of these recommendations is known to result in metadata that may
be harvested, indexed, and manipulated by popular, freely available
software packages such as [<a href="#ref-SWISH-E">SWISH-E</a>], [<a href="#ref-freeWAIS-sf2.0">freeWAIS-sf2.0</a>], [<a href="#ref-GLIMPSE">GLIMPSE</a>],
[<a href="#ref-HARVEST">HARVEST</a>], and [<a href="#ref-ISEARCH">ISEARCH</a>], among others. These conventions also work
with the metadata processing scripts appearing in the appendix, as
well as with most of the [<a href="#ref-DCPROJECTS">DCPROJECTS</a>] applications referenced from
the [<a href="#ref-DCHOME">DCHOME</a>] site. Software support for the LINK tag and qualifier
conventions (see the next section) is not currently widespread.
Ordering of metadata elements is not preserved in general. Writers
of software for metadata indexing and display should try to preserve
relative ordering among META tagged elements having the same name
(e.g., among multiple authors), however, metadata providers and
searchers have no guarantee that ordering will be preserved in
metadata that passes through unknown systems.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Dublin Core in Real Descriptions</span>
In actual resource description it is often necessary to qualify
Dublin Core elements to add nuances of meaning. While neither the
general principles nor the specific semantics of DC qualifiers are
within scope of this document, everyday uses of the qualifier syntax
are illustrated to lend realism to later examples. Without further
explanation, the three ways in which the optional qualifier syntax is
currently (subject to change) used to supplement the META tag may be
summarized as follows:
<meta lang = "LANGUAGE_OF_METADATA_CONTENT" ... >
<meta scheme = "CONTROLLED_FORMAT_OR_VOCABULARY_OF_METADATA" ... >
<span class="grey">Kunze Informational [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc2731">RFC 2731</a> Encoding Dublin Core Metadata in HTML December 1999</span>
<meta name = "PREFIX.ELEMENT_NAME.SUBELEMENT_NAME" ... >
Accordingly, a posthumous work in Spanish might be described with
<meta name = "DC.Language"
scheme = "<a href="./rfc1766">rfc1766</a>"
content = "es">
<meta name = "DC.Title"
lang = "es"
content = "La Mesa Verde y la Silla Roja">
<meta name = "DC.Title"
lang = "en"
content = "The Green Table and the Red Chair">
<meta name = "DC.Date.Created"
content = "1935">
<meta name = "DC.Date.Available"
content = "1939">
Note that the qualifier syntax and label suffixes (which follow an
element name and a period) used in examples in this document merely
reflect current trends in the HTML encoding of qualifiers. Use of
this syntax and these suffixes is neither a standard nor a
recommendation.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Encoding Dublin Core Elements</span>
This section consists of very simple Dublin Core encoding examples,
arranged by element.
Title (name given to the resource)
-----
<meta name = "DC.Title"
content = "Polycyclic aromatic hydrocarbon contamination">
<meta name = "DC.Title"
content = "Crime and Punishment">
<meta name = "DC.Title"
content = "Methods of Information in Medicine, Vol 32, No 4">
<meta name = "DC.Title"
content = "Still life #4 with flowers">
<meta name = "DC.Title"
lang = "de"
content = "Das Wohltemperierte Klavier, Teil I">
<span class="grey">Kunze Informational [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc2731">RFC 2731</a> Encoding Dublin Core Metadata in HTML December 1999</span>
Creator (entity that created the content)
-------
<meta name = "DC.Creator"
content = "Gogh, Vincent van">
<meta name = "DC.Creator"
content = "van Gogh, Vincent">
<meta name = "DC.Creator"
content = "Mao Tse Tung">
<meta name = "DC.Creator"
content = "Mao, Tse Tung">
<meta name = "DC.Creator"
content = "Plato">
<meta name = "DC.Creator"
lang = "fr"
content = "Platon">
<meta name = "DC.Creator.Director"
content = "Sturges, Preston">
<meta name = "DC.Creator.Writer"
content = "Hecht, Ben">
<meta name = "DC.Creator.Producer"
content = "Chaplin, Charles">
Subject (topic or keyword)
-------
<meta name = "DC.Subject"
content = "heart attack">
<meta name = "DC.Subject"
scheme = "MESH"
content = "Myocardial Infarction; Pericardial Effusion">
<meta name = "DC.Subject"
content = "vietnam war">
<meta name = "DC.Subject"
scheme = "LCSH"
content = "Vietnamese Conflict, 1961-1975">
<meta name = "DC.Subject"
content = "Friendship">
<meta name = "DC.Subject"
scheme = "ddc"
content = "158.25">
<span class="grey">Kunze Informational [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc2731">RFC 2731</a> Encoding Dublin Core Metadata in HTML December 1999</span>
Description (account, summary, or abstract of the content)
-----------
<meta name = "DC.Description"
lang = "en"
content = "The Author gives some Account of Himself and Family
-- His First Inducements to Travel -- He is
Shipwrecked, and Swims for his Life -- Gets safe on
Shore in the Country of Lilliput -- Is made a
Prisoner, and carried up the Country">
<meta name = "DC.Description"
content = "A tutorial and reference manual for Java.">
<meta name = "DC.Description"
content = "Seated family of five, coconut trees to the left,
sailboats moored off sandy beach to the right,
with volcano in the background.">
Publisher (entity that made the resource available)
---------
<meta name = "DC.Publisher"
content = "O'Reilly">
<meta name = "DC.Publisher"
content = "Digital Equipment Corporation">
<meta name = "DC.Publisher"
content = "University of California Press">
<meta name = "DC.Publisher"
content = "State of Florida (USA)">
Contributor (other entity that made a contribution)
-----------
<meta name = "DC.Contributor"
content = "Curie, Marie">
<meta name = "DC.Contributor.Photographer"
content = "Adams, Ansel">
<meta name = "DC.Contributor.Artist"
content = "Sendak, Maurice">
<meta name = "DC.Contributor.Editor"
content = "Starr, Kenneth">
<span class="grey">Kunze Informational [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc2731">RFC 2731</a> Encoding Dublin Core Metadata in HTML December 1999</span>
Date (of an event in the life of the resource; [<a href="#ref-WTN8601">WTN8601</a>] recommended)
----
<meta name = "DC.Date"
content = "1972">
<meta name = "DC.Date"
content = "1998-05-14">
<meta name = "DC.Date"
scheme = "WTN8601"
content = "1998-05-14">
<meta name = "DC.Date.Created"
content = "1998-05-14">
<meta name = "DC.Date.Available"
content = "1998-05-21">
<meta name = "DC.Date.Valid"
content = "1998-05-28">
<meta name = "DC.Date.Created"
content = "triassic">
<meta name = "DC.Date.Acquired"
content = "1957">
<meta name = "DC.Date.Accepted"
scheme = "WTN8601"
content = "1998-12-02T16:59">
<meta name = "DC.Date.DataGathered"
scheme = "ISO8601"
content = "98-W49-3T1659">
<meta name = "DC.Date.Issued"
scheme = "ANSI.X3.X30-1985"
content = "19980514">
Type (nature, genre, or category; [<a href="#ref-DCT1" title="DC Type Working Group">DCT1</a>] recommended)
----
<meta name = "DC.Type"
content = "poem">
<meta name = "DC.Type"
scheme = "DCT1"
content = "software">
<meta name = "DC.Type"
content = "software program source code">
<span class="grey">Kunze Informational [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc2731">RFC 2731</a> Encoding Dublin Core Metadata in HTML December 1999</span>
<meta name = "DC.Type"
content = "interactive video game">
<meta name = "DC.Type"
scheme = "DCT1"
content = "dataset">
<meta name = "DC.Type"
content = "web home page">
<meta name = "DC.Type"
content = "web bibliography">
<meta name = "DC.Type"
content = "painting">
<meta name = "DC.Type"
content = "image; woodblock">
<meta name = "DC.Type"
scheme = "AAT"
content = "clipeus (portrait)">
<meta name = "DC.Type"
lang = "en-US"
content = "image; advertizement">
<meta name = "DC.Type"
scheme = "DCT1"
content = "event">
<meta name = "DC.Type"
content = "event; periodic">
Format (physical or digital data format, plus optional dimensions)
------
<meta name = "DC.Format"
content = "text/xml">
<meta name = "DC.Format"
scheme = "IMT"
content = "text/xml">
<meta name = "DC.Format"
scheme = "IMT"
content = "image/jpeg">
<meta name = "DC.Format"
content = "A text file with mono-spaced tables and diagrams.">
<meta name = "DC.Format"
content = "video/mpeg; 14 minutes">
<span class="grey">Kunze Informational [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc2731">RFC 2731</a> Encoding Dublin Core Metadata in HTML December 1999</span>
<meta name = "DC.Format"
content = "unix tar archive, gzip compressed; 1.5 Mbytes">
<meta name = "DC.Format"
content = "watercolor; 23 cm x 31 cm">
Identifier (of the resource)
----------
<meta name = "DC.Identifier"
content = "<a href="http://foo.bar.org/zaf/">http://foo.bar.org/zaf/</a>">
<meta name = "DC.Identifier"
content = "urn:ietf:rfc:1766">
<meta name = "DC.Identifier"
scheme = "ISBN"
content = "1-56592-149-6">
<meta name = "DC.Identifier"
scheme = "LCCN"
content = "67-26020">
<meta name = "DC.Identifier"
scheme = "DOI"
content = "10.12345/33-824688ab">
Source (reference to the resource's origin)
------
<meta name = "DC.Source"
content = "Shakespeare's Romeo and Juliet">
<meta name = "DC.Source"
content = "<a href="http://a.b.org/manon/">http://a.b.org/manon/</a>">
Language (of the content of the resource; [<a href="./rfc1766" title=""Tags for the Identification of Languages"">RFC1766</a>] recommended)
--------
<meta name = "DC.Language"
content = "en">
<meta name = "DC.Language"
scheme = "<a href="./rfc1766">rfc1766</a>"
content = "en">
<meta name = "DC.Language"
scheme = "ISO639-2"
content = "eng">
<span class="grey">Kunze Informational [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc2731">RFC 2731</a> Encoding Dublin Core Metadata in HTML December 1999</span>
<meta name = "DC.Language"
scheme = "<a href="./rfc1766">rfc1766</a>"
content = "en-US">
<meta name = "DC.Language"
content = "zh">
<meta name = "DC.Language"
content = "ja">
<meta name = "DC.Language"
content = "es">
<meta name = "DC.Language"
content = "de">
<meta name = "DC.Language"
content = "german">
<meta name = "DC.Language"
lang = "fr"
content = "allemand">
Relation (reference to a related resource)
--------
<meta name = "DC.Relation.IsPartOf"
content = "<a href="http://foo.bar.org/abc/proceedings/1998/">http://foo.bar.org/abc/proceedings/1998/</a>">
<meta name = "DC.Relation.IsFormatOf"
content = "<a href="http://foo.bar.org/cd145.sgml">http://foo.bar.org/cd145.sgml</a>">
<meta name = "DC.Relation.IsVersionOf"
content = "<a href="http://foo.bar.org/draft9.4.4.2">http://foo.bar.org/draft9.4.4.2</a>">
<meta name = "DC.Relation.References"
content = "urn:isbn:1-56592-149-6">
<meta name = "DC.Relation.IsBasedOn"
content = "Shakespeare's Romeo and Juliet">
<meta name = "DC.Relation.Requires"
content = "LWP::UserAgent; HTML::Parse; URI::URL;
Net::DNS; Tk::Pixmap; Tk::Bitmap; Tk::Photo">
Coverage (extent or scope of the content)
--------
<meta name = "DC.Coverage"
content = "US civil war era; 1861-1865">
<span class="grey">Kunze Informational [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc2731">RFC 2731</a> Encoding Dublin Core Metadata in HTML December 1999</span>
<meta name = "DC.Coverage"
content = "Columbus, Ohio, USA; Lat: 39 57 N Long: 082 59 W">
<meta name = "DC.Coverage"
scheme = "TGN"
content = "Columbus (C,V)">
<meta name = "DC.Coverage.Jurisdiction"
content = "Commonwealth of Australia">
Rights (text or identifier of a rights management statement)
------
<meta name = "DC.Rights"
lang = "en"
content = "Copyright Acme 1999 - All rights reserved.">
<meta name = "DC.Rights"
content = "<a href="http://foo.bar.org/cgi-bin/terms">http://foo.bar.org/cgi-bin/terms</a>">
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Security Considerations</span>
The syntax rules for encoding Dublin Core metadata in HTML that are
documented here pose no direct risk to computers and networks.
People can use these rules to encode metadata that is inaccurate or
even deliberately misleading (creating mischief in the form of "index
spam"), however, this reflects a general pattern of HTML META tag
abuse that is not limited to the encoding of metadata from the Dublin
Core set. Even traditional metadata encoding schemes (e.g., [<a href="#ref-MARC">MARC</a>])
are not immune to inaccuracy, although they are generally followed in
environments where production quality greatly exceeds that of the
average Web site.
Systems that process metadata encoded with META tags need to consider
issues related to its accuracy and validity as part of their design
and implementation, and users of such systems need to consider the
design and implementation assumptions. Various approaches may be
relevant for certain applications, such as adding statements of
metadata provenance, signing of metadata with digital signatures, and
automating certain aspects of metadata creation; but these are far
outside the scope of this document and the underlying META tag syntax
that it describes.
<span class="grey">Kunze Informational [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc2731">RFC 2731</a> Encoding Dublin Core Metadata in HTML December 1999</span>
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. Appendix -- Perl Scripts that Manipulate HTML Encoded Metadata</span>
This section contains two simple programs that work with versions 4
and 5 of the Perl [<a href="#ref-PERL" title="R. Schwartz">PERL</a>] scripting language interpreter. They may be
taken and freely adapted for local organizational needs, research
proposals, venture capital bids, etc. A variety of applications are
within easy reach of implementors that choose to build on these
scripts.
Script 1: Metadata Format Conversion
-------------------------------------
Here is a simple Perl script that correctly recognizes every example
of metadata encoding in this document. It shows how a modest
scripting effort can produce a utility that converts metadata from
one format to another. Minor changes are sufficient to support a
number of output formats.
#!/depot/bin/perl
#
# This simple perl script extracts metadata embedded in an HTML file
# and outputs it in an alternate format. Issues warning about missing
# element name or value.
#
# Handles mixed case tags and attribute values, one per line or spanning
# several lines. Also handles a quoted string spanning multiple lines.
# No error checking. Does not tolerate more than one "<meta" per line.
print "@(urc;\n";
while (<>) {
next if (! /<meta/i);
($meta) = /(<meta.*$)/i;
if (! /<meta.*>/i) {
while (<>) {
$meta .= $_;
last if (/>/);
}
}
$name = $meta =~ /name\s*=\s*"([^"]*)"/i
? $1 : "MISSING ELEMENT NAME";
$content = $meta =~ /content\s*=\s*"([^"]*)"/i
? $1 : "MISSING ELEMENT VALUE";
($scheme) = $meta =~ /scheme\s*=\s*"([^"]*)"/i;
($lang) = $meta =~ /lang\s*=\s*"([^"]*)"/i;
if ($lang || $scheme) {
$mod = " ($lang";
if (! $scheme)
<span class="grey">Kunze Informational [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc2731">RFC 2731</a> Encoding Dublin Core Metadata in HTML December 1999</span>
{ $mod .= ")"; }
elsif (! $lang)
{ $mod .= "$scheme)" }
else
{ $mod .= ", $scheme)"; }
}
else
{ $mod = ""; }
print " @|$name$mod; $content\n";
}
print "@)urc;\n";
# ---- end of Perl script ----
When the conversion script is run on the metadata file example from
the LINK tag section (<a href="#section-4">section 4</a>), it produces the following output.
@(urc;
@|DC.Title; A Dirge
@|DC.Creator; Shelley, Percy Bysshe
@|DC.Type; poem
@|DC.Date; 1820
@|DC.Format; text/html
@|DC.Language; en
@)urc;
Script 2: Automated Metadata Creation
--------------------------------------
The creation and maintenance of high-quality metadata can be
extremely expensive without automation to assist in processes such as
supplying pre-set or computed defaults, validating syntax, verifying
value ranges, spell checking, etc. Considerable relief could be had
from a script that reduced an individual provider's metadata burden
to just the title of each document. Below is such a script. It lets
the provider of an HTML document abbreviate an entire embedded
resource description using a single HTML comment statement that looks
like
<!--metablock Little Red Riding Hood -->
Our script processes this statement specially as a kind of "metadata
block" declaration with attached title. The general form is
<!--metablock TITLE_OF_DOCUMENT -->
<span class="grey">Kunze Informational [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc2731">RFC 2731</a> Encoding Dublin Core Metadata in HTML December 1999</span>
This statement works much like a "Web server-side include" in that
the script replaces it with a fully-specified block of metadata and
triggers other replacements. Once installed, the script can output
HTML files suitable for integration into one's production Web server
procedures.
The individual provider keeps a separate "template" file of
infrequently changing pre-set values for metadata elements. If the
provider's needs are simple enough, the only element values besides
the title that differ from one document to the next may be generated
automatically. Using the script, values may be referenced as
variables from within the template or within the document. Our
variable references have the form "(--mbVARNAME)", and here is what
they look like inside a template:
<title> (--mbtitle) </title>
<meta name = "DC.Creator"
content = "Simpson, Homer">
<meta name = "DC.Title"
content = "(--mbtitle)">
<meta name = "DC.Date.Created"
content = "(--mbfilemodtime)">
<meta name = "DC.Identifier"
content = "(--mbbaseURL)/(--mbfilename)">
<meta name = "DC.Format"
content = "text/html; (--mbfilesize)">
<meta name = "DC.Language"
content = "(--mblanguage)-BUREAUCRATESE">
<meta name = "RC.MetadataAuthority"
content = "Springfield Nuclear">
<link rel = "schema.DC"
href = "<a href="http://purl.org/DC/elements/1.0/">http://purl.org/DC/elements/1.0/</a>">
<link rel = "schema.RC"
href = "<a href="http://nukes.org/ReactorCore/rc">http://nukes.org/ReactorCore/rc</a>">
The above template represents the metadata block that will describe
the document once the variable references are replaced with real
values. By the conventions of our script, the following variables
will be replaced in both the template and in the document:
(--mbfilesize) size of the final output file
(--mbtitle) title of the document
(--mblanguage) language of the document
(--mbbaseURL) beginning part of document identifier
(--mbfilename) last part (minus .html) of identifier
(--mbfilemodtime) last modification date of the document
<span class="grey">Kunze Informational [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc2731">RFC 2731</a> Encoding Dublin Core Metadata in HTML December 1999</span>
Here's an example HTML file to run the script on.
<html>
<head>
<!--metablock Nutritional Allocation Increase -->
<meta name = "DC.Type"
content = "Memorandum">
</head>
<body>
<p>
From: Acting Shift Supervisor
To: Plant Control Personnel
RE: (--mbtitle)
Date: (--mbfilemodtime)
<p>
Pursuant to directive DOH:10.2001/405aec of article B-2022,
sub<a href="#section-48.2.4.4.1">section 48.2.4.4.1</a>c regarding staff morale and employee
productivity standards, the current allocation of doughnut
acquisition funds shall be increased effective immediately.
</body>
</html>
Note that because replacement occurs throughout the document, the
provider need only enter the title once instead of twice (normally
the title must be entered once in the HTML head and again in the HTML
body). After running the script, the above file is transformed into
this:
<html>
<head>
<title> Nutritional Allocation Increase </title>
<meta name = "DC.Creator"
content = "Simpson, Homer">
<meta name = "DC.Title"
content = "Nutritional Allocation Increase">
<meta name = "DC.Date.Created"
content = "1999-03-08">
<meta name = "DC.Identifier"
content = "<a href="http://moes.bar.com/doh/homer.html">http://moes.bar.com/doh/homer.html</a>">
<meta name = "DC.Format"
content = "text/html; 1320 bytes">
<meta name = "DC.Language"
content = "en-BUREAUCRATESE">
<meta name = "RC.MetadataAuthority"
content = "Springfield Nuclear">
<link rel = "schema.DC"
href = "<a href="http://purl.org/DC/elements/1.0/">http://purl.org/DC/elements/1.0/</a>">
<link rel = "schema.RC"
<span class="grey">Kunze Informational [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc2731">RFC 2731</a> Encoding Dublin Core Metadata in HTML December 1999</span>
href = "<a href="http://nukes.org/ReactorCore/rc">http://nukes.org/ReactorCore/rc</a>">
<meta name = "DC.Type"
content = "Memorandum">
</head>
<body>
<p>
From: Acting Shift Supervisor
To: Plant Control Personnel
RE: Nutritional Allocation Increase
Date: 1999-03-08
<p>
Pursuant to directive DOH:10.2001/405aec of article B-2022,
sub<a href="#section-48.2.4.4.1">section 48.2.4.4.1</a>c regarding staff morale and employee
productivity standards, the current allocation of doughnut
acquisition funds shall be increased effective immediately.
</body>
</html>
Here is the script that accomplishes this transformation.
#!/depot/bin/perl
#
# This Perl script processes metadata block declarations of the form
# <!--metablock TITLE_OF_DOCUMENT --> and variable references of the
# form (--mbVARNAME), replacing them with full metadata blocks and
# variable values, respectively. Requires a "template" file.
# Outputs an HTML file.
#
# Invoke this script with a single filename argument, "foo". It creates
# an output file "foo.html" using a temporary working file "foo.work".
# The size of foo.work is measured after variable replacement, and is
# later inserted into the file in such a way that the file's size does
# not change in the process. Has little or no error checking.
$infile = shift;
open(IN, "< $infile")
or die("Could not open input file \"$infile\"");
$workfile = "$infile.work";
unlink($workfile);
open(WORK, "+> $workfile")
or die("Could not open work file \"$workfile\"");
@offsets = (); # records locations for late size replacement
$title = ""; # gets the title during metablock processing
$language = "en"; # pre-set language here (not in the template)
$baseURL = "<a href="http://moes.bar.com/doh">http://moes.bar.com/doh</a>"; # pre-set base URL here also
$filename = "$infile.html"; # final output filename
$filesize = "(--mbfilesize)"; # replaced late (separate pass)
<span class="grey">Kunze Informational [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc2731">RFC 2731</a> Encoding Dublin Core Metadata in HTML December 1999</span>
($year, $month, $day) = (localtime( (stat IN) [9] ))[5, 4, 3];
$filemodtime = sprintf "%s-%02s-%02s", 1900 + $year, 1 + $month, $day;
sub putout { # outputs current line with variable replacement
if (! /\(--mb/) {
print WORK;
return;
}
if (/\(--mbfilesize\)/) # remember where it was
{ push @offsets, tell WORK; } # but don't replace yet
s/\(--mbtitle\)/$title/g;
s/\(--mblanguage\)/$language/g;
s/\(--mbbaseURL\)/$baseURL/g;
s/\(--mbfilename\)/$filename/g;
s/\(--mbfilemodtime\)/$filemodtime/g;
print WORK;
}
while (<IN>) { # main loop for input file
if (! /(.*)<!--metablock\s*(.*)/) {
&putout;
next;
}
$title = $2;
$_ = $1;
&putout;
if ($title =~ s/\s*-->(.*)//) {
$remainder = $1;
}
else {
while (<IN>) {
$title .= $_;
last if (/(.*)\s*-->(.*)/);
}
$title .= $1;
$remainder = $2;
}
open(TPLATE, "< template")
or die("Could not open template file");
while (<TPLATE>) # subloop for template file
{ &putout; }
close(TPLATE);
$_ = $remainder;
&putout;
<span class="grey">Kunze Informational [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc2731">RFC 2731</a> Encoding Dublin Core Metadata in HTML December 1999</span>
}
close(IN);
# Now replace filesize variables without altering total byte count.
select( (select(WORK), $| = 1) [0] ); # first flush output so we
if (($size = -s WORK) < 100000) # can get final file size
{ $scale = 0; } # and set scale factor or
else { # compute it, keeping width of size field low
for ($scale = 0; $size >= 1000; $scale++)
{ $size /= 1024; }
}
$filesize = sprintf "%7.7s %sbytes",
$size, (" ", "K", "M", "G", "T", "P") [$scale];
foreach $pos (@offsets) { # loop through saved size locations
seek WORK, $pos, 0; # read the line found there
$_ = <WORK>;
# $filesize must be exactly as wide as "(--mbfilesize)"
s/\(--mbfilesize\)/$filesize/g;
seek WORK, $pos, 0; # rewrite it with replacement
print WORK;
}
close(WORK);
rename($workfile, "$filename")
or die("Could not rename \"$workfile\" to \"$filename\"");
# ---- end of Perl script ----
<span class="grey">Kunze Informational [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc2731">RFC 2731</a> Encoding Dublin Core Metadata in HTML December 1999</span>
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. Author's Address</span>
John A. Kunze
Center for Knowledge Management
University of California, San Francisco
530 Parnassus Ave, Box 0840
San Francisco, CA 94143-0840, USA
Fax: +1 415-476-4653
EMail: jak@ckm.ucsf.edu
<span class="h2"><a class="selflink" id="section-11" href="#section-11">11</a>. References</span>
[<a id="ref-AAT">AAT</a>] Art and Architecture Thesaurus, Getty Information
Institute.
<a href="http://shiva.pub.getty.edu/aat_browser/">http://shiva.pub.getty.edu/aat_browser/</a>
[<a id="ref-AC">AC</a>] The A-Core: Metadata about Content Metadata, (in
progress)
<a href="http://metadata.net/ac/draft-iannella-admin-01.txt">http://metadata.net/ac/draft-iannella-admin-01.txt</a>
[<a id="ref-DC1">DC1</a>] Weibel, S., Kunze, J., Lagoze, C. and M. Wolf,
"Dublin Core Metadata for Resource Discovery", <a href="./rfc2413">RFC</a>
<a href="./rfc2413">2413</a>, September 1998.
<a href="ftp://ftp.isi.edu/in-notes/rfc2413.txt">ftp://ftp.isi.edu/in-notes/rfc2413.txt</a>
[<a id="ref-DCHOME">DCHOME</a>] Dublin Core Initiative Home Page.
<a href="http://purl.org/DC/">http://purl.org/DC/</a>
[<a id="ref-DCPROJECTS">DCPROJECTS</a>] Projects Using Dublin Core Metadata.
<a href="http://purl.org/DC/projects/index.htm">http://purl.org/DC/projects/index.htm</a>
[<a id="ref-DCT1">DCT1</a>] Dublin Core Type List 1, DC Type Working Group,
March 1999.
<a href="http://www.loc.gov/marc/typelist.html">http://www.loc.gov/marc/typelist.html</a>
[<a id="ref-freeWAIS-sf2.0">freeWAIS-sf2.0</a>] The enhanced freeWAIS distribution, February 1999.
<a href="http://ls6-www.cs.uni-dortmund.de/ir/projects/freeWAIS-sf/">http://ls6-www.cs.uni-</a>
<a href="http://ls6-www.cs.uni-dortmund.de/ir/projects/freeWAIS-sf/">dortmund.de/ir/projects/freeWAIS-sf/</a>
[<a id="ref-GLIMPSE">GLIMPSE</a>] Glimpse Home Page.
<a href="http://glimpse.cs.arizona.edu/">http://glimpse.cs.arizona.edu/</a>
[<a id="ref-HARVEST">HARVEST</a>] Harvest Web Indexing.
<a href="http://www.tardis.ed.ac.uk/harvest/">http://www.tardis.ed.ac.uk/harvest/</a>
<span class="grey">Kunze Informational [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc2731">RFC 2731</a> Encoding Dublin Core Metadata in HTML December 1999</span>
[<a id="ref-HTML4.0">HTML4.0</a>] Hypertext Markup Language 4.0 Specification, April
1998.
<a href="http://www.w3.org/TR/REC-html40/">http://www.w3.org/TR/REC-html40/</a>
[<a id="ref-ISEARCH">ISEARCH</a>] Isearch Resources Page.
<a href="http://www.etymon.com/Isearch/">http://www.etymon.com/Isearch/</a>
[<a id="ref-ISO639-2">ISO639-2</a>] Code for the representation of names of languages,
1996.
<a href="http://www.indigo.ie/egt/standards/iso639/iso639-2-en.html">http://www.indigo.ie/egt/standards/iso639/iso639-2-</a>
<a href="http://www.indigo.ie/egt/standards/iso639/iso639-2-en.html">en.html</a>
[<a id="ref-ISO8601">ISO8601</a>] ISO 8601:1988(E), Data elements and interchange
formats -- Information interchange -- Representation
of dates and times, International Organization for
Standardization, June 1988.
<a href="http://www.iso.ch/markete/8601.pdf">http://www.iso.ch/markete/8601.pdf</a>
[<a id="ref-MARC">MARC</a>] USMARC Format for Bibliographic Data, US Library of
Congress.
<a href="http://lcweb.loc.gov/marc/marc.html">http://lcweb.loc.gov/marc/marc.html</a>
[<a id="ref-PERL">PERL</a>] L. Wall, T. Christiansen, R. Schwartz, Programming
Perl, Second Edition, O'Reilly, 1996.
[<a id="ref-RDF">RDF</a>] Resource Description Framework Model and Syntax
Specification, February 1999.
<a href="http://www.w3.org/TR/REC-rdf-syntax/">http://www.w3.org/TR/REC-rdf-syntax/</a>
[<a id="ref-RFC1766">RFC1766</a>] Alvestrand, H., "Tags for the Identification of
Languages", <a href="./rfc1766">RFC 1766</a>, March 1996.
<a href="ftp://ftp.isi.edu/in-notes/rfc1766.txt">ftp://ftp.isi.edu/in-notes/rfc1766.txt</a>
[<a id="ref-SWISH-E">SWISH-E</a>] Simple Web Indexing System for Humans - Enhanced.
<a href="http://sunsite.Berkeley.EDU/SWISH-E/">http://sunsite.Berkeley.EDU/SWISH-E/</a>
[<a id="ref-TGN">TGN</a>] Thesaurus of Geographic Names, Getty Information
Institute.
<a href="http://shiva.pub.getty.edu/tgn_browser/">http://shiva.pub.getty.edu/tgn_browser/</a>
[<a id="ref-WTN8601">WTN8601</a>] W3C Technical Note - Profile of ISO 8601 Date and
Time Formats.
<a href="http://www.w3.org/TR/NOTE-datetime">http://www.w3.org/TR/NOTE-datetime</a>
[<a id="ref-XML">XML</a>] Extensible Markup Language (XML).
<a href="http://www.w3.org/TR/REC-xml">http://www.w3.org/TR/REC-xml</a>
<span class="grey">Kunze Informational [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc2731">RFC 2731</a> Encoding Dublin Core Metadata in HTML December 1999</span>
<span class="h2"><a class="selflink" id="section-12" href="#section-12">12</a>. Full Copyright Statement</span>
Copyright (C) The Internet Society (1999). All Rights Reserved.
This document and translations of it may be copied and furnished to
others, and derivative works that comment on or otherwise explain it
or assist in its implementation may be prepared, copied, published
and distributed, in whole or in part, without restriction of any
kind, provided that the above copyright notice and this paragraph are
included on all such copies and derivative works. However, this
document itself may not be modified in any way, such as by removing
the copyright notice or references to the Internet Society or other
Internet organizations, except as needed for the purpose of
developing Internet standards in which case the procedures for
copyrights defined in the Internet Standards process must be
followed, or as required to translate it into languages other than
English.
The limited permissions granted above are perpetual and will not be
revoked by the Internet Society or its successors or assigns.
This document and the information contained herein is provided on an
"AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING
TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION
HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Acknowledgement
Funding for the RFC Editor function is currently provided by the
Internet Society.
Kunze Informational [Page 23]
</pre>
|