Changeset 2365 for rfc2629xslt
- Timestamp:
- 01/09/13 15:41:42 (9 years ago)
- Location:
- rfc2629xslt
- Files:
-
- 53 edited
Legend:
- Unmodified
- Added
- Removed
-
rfc2629xslt/rfc2629.xslt
r2301 r2365 848 848 <xsl:call-template name="check-no-text-content"/> 849 849 850 <address class="vcard">850 <address> 851 851 <span class="vcardline"> 852 <span class="fn"> 853 <xsl:value-of select="@fullname" /> 854 </span> 852 <b><xsl:value-of select="@fullname" /></b> 855 853 <xsl:if test="@role"> 856 854 (<xsl:value-of select="@role" />) … … 861 859 <i><xsl:value-of select="@x:annotation"/></i> 862 860 </xsl:if> 863 <!-- components of name (hidden from display -->864 <span class="n hidden">865 <span class="family-name"><xsl:value-of select="@surname"/></span>866 <!-- given-name family-name -->867 <xsl:if test="@surname=substring(@fullname,1 + string-length(@fullname) - string-length(@surname))">868 <span class="given-name"><xsl:value-of select="normalize-space(substring(@fullname,1,string-length(@fullname) - string-length(@surname)))"/></span>869 </xsl:if>870 <!-- family-name given-name -->871 <xsl:if test="starts-with(@fullname,@surname)">872 <span class="given-name"><xsl:value-of select="normalize-space(substring-after(@fullname,@surname))"/></span>873 </xsl:if>874 </span>875 861 </span> 876 862 <xsl:if test="normalize-space(organization) != ''"> 877 <span class=" orgvcardline">863 <span class="vcardline"> 878 864 <xsl:value-of select="organization" /> 879 865 </span> 880 866 </xsl:if> 881 867 <xsl:if test="address/postal"> 882 <span class="adr"> 883 <xsl:if test="address/postal/street"> 884 <xsl:for-each select="address/postal/street"> 885 <xsl:variable name="street"> 868 <xsl:if test="address/postal/street"> 869 <xsl:for-each select="address/postal/street"> 870 <xsl:variable name="street"> 871 <xsl:call-template name="extract-normalized"> 872 <xsl:with-param name="node" select="."/> 873 <xsl:with-param name="name" select="'street'"/> 874 </xsl:call-template> 875 </xsl:variable> 876 <xsl:if test="$street!=''"> 877 <span class="vcardline"> 878 <xsl:value-of select="$street"/> 879 </span> 880 </xsl:if> 881 </xsl:for-each> 882 </xsl:if> 883 <xsl:if test="address/postal/city|address/postal/region|address/postal/code"> 884 <span class="vcardline"> 885 <xsl:if test="address/postal/city"> 886 <xsl:variable name="city"> 886 887 <xsl:call-template name="extract-normalized"> 887 <xsl:with-param name="node" select=" ."/>888 <xsl:with-param name="name" select="' street'"/>888 <xsl:with-param name="node" select="address/postal/city"/> 889 <xsl:with-param name="name" select="'address/postal/city'"/> 889 890 </xsl:call-template> 890 891 </xsl:variable> 891 <xsl:if test="$street!=''"> 892 <span class="street-address vcardline"> 893 <xsl:value-of select="$street"/> 894 </span> 892 <xsl:if test="$city!=''"> 893 <xsl:value-of select="$city"/> 894 <xsl:text>, </xsl:text> 895 895 </xsl:if> 896 </xsl:for-each> 897 </xsl:if> 898 <xsl:if test="address/postal/city|address/postal/region|address/postal/code"> 896 </xsl:if> 897 <xsl:if test="address/postal/region"> 898 <xsl:variable name="region"> 899 <xsl:call-template name="extract-normalized"> 900 <xsl:with-param name="node" select="address/postal/region"/> 901 <xsl:with-param name="name" select="'address/postal/region'"/> 902 </xsl:call-template> 903 </xsl:variable> 904 <xsl:if test="$region!=''"> 905 <xsl:value-of select="$region"/> 906 <xsl:text> </xsl:text> 907 </xsl:if> 908 </xsl:if> 909 <xsl:if test="address/postal/code"> 910 <xsl:variable name="code"> 911 <xsl:call-template name="extract-normalized"> 912 <xsl:with-param name="node" select="address/postal/code"/> 913 <xsl:with-param name="name" select="'address/postal/code'"/> 914 </xsl:call-template> 915 </xsl:variable> 916 <xsl:if test="$code!=''"> 917 <xsl:value-of select="$code"/> 918 </xsl:if> 919 </xsl:if> 920 </span> 921 </xsl:if> 922 <xsl:if test="address/postal/country"> 923 <xsl:variable name="country"> 924 <xsl:call-template name="extract-normalized"> 925 <xsl:with-param name="node" select="address/postal/country"/> 926 <xsl:with-param name="name" select="'address/postal/country'"/> 927 </xsl:call-template> 928 </xsl:variable> 929 <xsl:if test="$country!=''"> 899 930 <span class="vcardline"> 900 <xsl:if test="address/postal/city"> 901 <xsl:variable name="city"> 902 <xsl:call-template name="extract-normalized"> 903 <xsl:with-param name="node" select="address/postal/city"/> 904 <xsl:with-param name="name" select="'address/postal/city'"/> 905 </xsl:call-template> 906 </xsl:variable> 907 <xsl:if test="$city!=''"> 908 <span class="locality"> 909 <xsl:value-of select="$city"/> 910 </span> 911 <xsl:text>, </xsl:text> 912 </xsl:if> 913 </xsl:if> 914 <xsl:if test="address/postal/region"> 915 <xsl:variable name="region"> 916 <xsl:call-template name="extract-normalized"> 917 <xsl:with-param name="node" select="address/postal/region"/> 918 <xsl:with-param name="name" select="'address/postal/region'"/> 919 </xsl:call-template> 920 </xsl:variable> 921 <xsl:if test="$region!=''"> 922 <span class="region"> 923 <xsl:value-of select="$region"/> 924 </span> 925 <xsl:text> </xsl:text> 926 </xsl:if> 927 </xsl:if> 928 <xsl:if test="address/postal/code"> 929 <xsl:variable name="code"> 930 <xsl:call-template name="extract-normalized"> 931 <xsl:with-param name="node" select="address/postal/code"/> 932 <xsl:with-param name="name" select="'address/postal/code'"/> 933 </xsl:call-template> 934 </xsl:variable> 935 <xsl:if test="$code!=''"> 936 <span class="postal-code"> 937 <xsl:value-of select="$code"/> 938 </span> 939 </xsl:if> 940 </xsl:if> 931 <xsl:value-of select="$country"/> 941 932 </span> 942 933 </xsl:if> 943 <xsl:if test="address/postal/country"> 944 <xsl:variable name="country"> 945 <xsl:call-template name="extract-normalized"> 946 <xsl:with-param name="node" select="address/postal/country"/> 947 <xsl:with-param name="name" select="'address/postal/country'"/> 948 </xsl:call-template> 949 </xsl:variable> 950 <xsl:if test="$country!=''"> 951 <span class="country-name vcardline"> 952 <xsl:value-of select="$country"/> 953 </span> 954 </xsl:if> 955 </xsl:if> 956 </span> 934 </xsl:if> 957 935 </xsl:if> 958 936 <xsl:if test="address/phone"> … … 964 942 </xsl:variable> 965 943 <xsl:if test="$phone!=''"> 966 <span class="vcardline tel">944 <span class="vcardline"> 967 945 <xsl:text>Phone: </xsl:text> 968 <a href="tel:{translate($phone,' ','')}">< span class="value"><xsl:value-of select="$phone" /></span></a>946 <a href="tel:{translate($phone,' ','')}"><xsl:value-of select="$phone" /></a> 969 947 </span> 970 948 </xsl:if> … … 978 956 </xsl:variable> 979 957 <xsl:if test="$facsimile!=''"> 980 <span class="vcardline tel">981 < span class="type">Fax</span><xsl:text>: </xsl:text>982 <a href="fax:{translate($facsimile,' ','')}">< span class="value"><xsl:value-of select="$facsimile" /></span></a>958 <span class="vcardline"> 959 <xsl:text>Fax: </xsl:text> 960 <a href="fax:{translate($facsimile,' ','')}"><xsl:value-of select="$facsimile" /></a> 983 961 </span> 984 962 </xsl:if> … … 998 976 <xsl:attribute name="href">mailto:<xsl:value-of select="$email" /></xsl:attribute> 999 977 </xsl:if> 1000 < span class="email"><xsl:value-of select="$email" /></span>978 <xsl:value-of select="$email" /> 1001 979 </a> 1002 980 </span> … … 1009 987 <span class="vcardline"> 1010 988 <xsl:text>URI: </xsl:text> 1011 <a href="{$uri}" class="url"><xsl:value-of select="$uri" /></a>989 <a href="{$uri}"><xsl:value-of select="$uri" /></a> 1012 990 <xsl:if test="@x:annotation"> 1013 991 <xsl:text> </xsl:text> … … 1958 1936 <html lang="{$lang}"> 1959 1937 <head> 1960 <xsl:attribute name="profile"> 1961 <xsl:text>http://www.w3.org/2006/03/hcard</xsl:text> 1962 <xsl:if test="$xml2rfc-ext-support-rfc2731!='no'"> 1963 <xsl:text> </xsl:text> 1964 <xsl:text>http://dublincore.org/documents/2008/08/04/dc-html/</xsl:text> 1965 </xsl:if> 1966 </xsl:attribute> 1938 <xsl:if test="$xml2rfc-ext-support-rfc2731!='no'"> 1939 <xsl:attribute name="profile">http://dublincore.org/documents/2008/08/04/dc-html/</xsl:attribute> 1940 </xsl:if> 1967 1941 <title> 1968 1942 <xsl:apply-templates select="front/title" mode="get-text-content" /> … … 3794 3768 .fn { 3795 3769 font-weight: bold; 3796 }3797 .hidden {3798 display: none;3799 3770 } 3800 3771 .left { … … 6712 6683 <xsl:text>http://greenbytes.de/tech/webdav/rfc2629.xslt, </xsl:text> 6713 6684 <!-- when RCS keyword substitution in place, add version info --> 6714 <xsl:if test="contains('$Revision: 1.59 8$',':')">6715 <xsl:value-of select="concat('Revision ',normalize-space(translate(substring-after('$Revision: 1.59 8$', 'Revision: '),'$','')),', ')" />6685 <xsl:if test="contains('$Revision: 1.599 $',':')"> 6686 <xsl:value-of select="concat('Revision ',normalize-space(translate(substring-after('$Revision: 1.599 $', 'Revision: '),'$','')),', ')" /> 6716 6687 </xsl:if> 6717 <xsl:if test="contains('$Date: 2013/0 6/23 14:11:10$',':')">6718 <xsl:value-of select="concat(normalize-space(translate(substring-after('$Date: 2013/0 6/23 14:11:10$', 'Date: '),'$','')),', ')" />6688 <xsl:if test="contains('$Date: 2013/08/29 10:34:28 $',':')"> 6689 <xsl:value-of select="concat(normalize-space(translate(substring-after('$Date: 2013/08/29 10:34:28 $', 'Date: '),'$','')),', ')" /> 6719 6690 </xsl:if> 6720 6691 <xsl:value-of select="concat('XSLT vendor: ',system-property('xsl:vendor'),' ',system-property('xsl:vendor-url'))" /> -
rfc2629xslt/rfc2629toXHTML.xslt
r2301 r2365 716 716 <xsl:call-template name="check-no-text-content"/> 717 717 718 <address xmlns="http://www.w3.org/1999/xhtml" class="vcard">718 <address xmlns="http://www.w3.org/1999/xhtml"> 719 719 <span class="vcardline"> 720 <span class="fn"> 721 <xsl:value-of select="@fullname"/> 722 </span> 720 <b><xsl:value-of select="@fullname"/></b> 723 721 <xsl:if test="@role"> 724 722 (<xsl:value-of select="@role"/>) … … 729 727 <i><xsl:value-of select="@x:annotation"/></i> 730 728 </xsl:if> 731 <!-- components of name (hidden from display -->732 <span class="n hidden">733 <span class="family-name"><xsl:value-of select="@surname"/></span>734 <!-- given-name family-name -->735 <xsl:if test="@surname=substring(@fullname,1 + string-length(@fullname) - string-length(@surname))">736 <span class="given-name"><xsl:value-of select="normalize-space(substring(@fullname,1,string-length(@fullname) - string-length(@surname)))"/></span>737 </xsl:if>738 <!-- family-name given-name -->739 <xsl:if test="starts-with(@fullname,@surname)">740 <span class="given-name"><xsl:value-of select="normalize-space(substring-after(@fullname,@surname))"/></span>741 </xsl:if>742 </span>743 729 </span> 744 730 <xsl:if test="normalize-space(organization) != ''"> 745 <span class=" orgvcardline">731 <span class="vcardline"> 746 732 <xsl:value-of select="organization"/> 747 733 </span> 748 734 </xsl:if> 749 735 <xsl:if test="address/postal"> 750 <span class="adr"> 751 <xsl:if test="address/postal/street"> 752 <xsl:for-each select="address/postal/street"> 753 <xsl:variable name="street"> 736 <xsl:if test="address/postal/street"> 737 <xsl:for-each select="address/postal/street"> 738 <xsl:variable name="street"> 739 <xsl:call-template name="extract-normalized"> 740 <xsl:with-param name="node" select="."/> 741 <xsl:with-param name="name" select="'street'"/> 742 </xsl:call-template> 743 </xsl:variable> 744 <xsl:if test="$street!=''"> 745 <span class="vcardline"> 746 <xsl:value-of select="$street"/> 747 </span> 748 </xsl:if> 749 </xsl:for-each> 750 </xsl:if> 751 <xsl:if test="address/postal/city|address/postal/region|address/postal/code"> 752 <span class="vcardline"> 753 <xsl:if test="address/postal/city"> 754 <xsl:variable name="city"> 754 755 <xsl:call-template name="extract-normalized"> 755 <xsl:with-param name="node" select=" ."/>756 <xsl:with-param name="name" select="' street'"/>756 <xsl:with-param name="node" select="address/postal/city"/> 757 <xsl:with-param name="name" select="'address/postal/city'"/> 757 758 </xsl:call-template> 758 759 </xsl:variable> 759 <xsl:if test="$street!=''"> 760 <span class="street-address vcardline"> 761 <xsl:value-of select="$street"/> 762 </span> 760 <xsl:if test="$city!=''"> 761 <xsl:value-of select="$city"/> 762 <xsl:text>, </xsl:text> 763 763 </xsl:if> 764 </xsl:for-each> 765 </xsl:if> 766 <xsl:if test="address/postal/city|address/postal/region|address/postal/code"> 764 </xsl:if> 765 <xsl:if test="address/postal/region"> 766 <xsl:variable name="region"> 767 <xsl:call-template name="extract-normalized"> 768 <xsl:with-param name="node" select="address/postal/region"/> 769 <xsl:with-param name="name" select="'address/postal/region'"/> 770 </xsl:call-template> 771 </xsl:variable> 772 <xsl:if test="$region!=''"> 773 <xsl:value-of select="$region"/> 774 <xsl:text> </xsl:text> 775 </xsl:if> 776 </xsl:if> 777 <xsl:if test="address/postal/code"> 778 <xsl:variable name="code"> 779 <xsl:call-template name="extract-normalized"> 780 <xsl:with-param name="node" select="address/postal/code"/> 781 <xsl:with-param name="name" select="'address/postal/code'"/> 782 </xsl:call-template> 783 </xsl:variable> 784 <xsl:if test="$code!=''"> 785 <xsl:value-of select="$code"/> 786 </xsl:if> 787 </xsl:if> 788 </span> 789 </xsl:if> 790 <xsl:if test="address/postal/country"> 791 <xsl:variable name="country"> 792 <xsl:call-template name="extract-normalized"> 793 <xsl:with-param name="node" select="address/postal/country"/> 794 <xsl:with-param name="name" select="'address/postal/country'"/> 795 </xsl:call-template> 796 </xsl:variable> 797 <xsl:if test="$country!=''"> 767 798 <span class="vcardline"> 768 <xsl:if test="address/postal/city"> 769 <xsl:variable name="city"> 770 <xsl:call-template name="extract-normalized"> 771 <xsl:with-param name="node" select="address/postal/city"/> 772 <xsl:with-param name="name" select="'address/postal/city'"/> 773 </xsl:call-template> 774 </xsl:variable> 775 <xsl:if test="$city!=''"> 776 <span class="locality"> 777 <xsl:value-of select="$city"/> 778 </span> 779 <xsl:text>, </xsl:text> 780 </xsl:if> 781 </xsl:if> 782 <xsl:if test="address/postal/region"> 783 <xsl:variable name="region"> 784 <xsl:call-template name="extract-normalized"> 785 <xsl:with-param name="node" select="address/postal/region"/> 786 <xsl:with-param name="name" select="'address/postal/region'"/> 787 </xsl:call-template> 788 </xsl:variable> 789 <xsl:if test="$region!=''"> 790 <span class="region"> 791 <xsl:value-of select="$region"/> 792 </span> 793 <xsl:text> </xsl:text> 794 </xsl:if> 795 </xsl:if> 796 <xsl:if test="address/postal/code"> 797 <xsl:variable name="code"> 798 <xsl:call-template name="extract-normalized"> 799 <xsl:with-param name="node" select="address/postal/code"/> 800 <xsl:with-param name="name" select="'address/postal/code'"/> 801 </xsl:call-template> 802 </xsl:variable> 803 <xsl:if test="$code!=''"> 804 <span class="postal-code"> 805 <xsl:value-of select="$code"/> 806 </span> 807 </xsl:if> 808 </xsl:if> 799 <xsl:value-of select="$country"/> 809 800 </span> 810 801 </xsl:if> 811 <xsl:if test="address/postal/country"> 812 <xsl:variable name="country"> 813 <xsl:call-template name="extract-normalized"> 814 <xsl:with-param name="node" select="address/postal/country"/> 815 <xsl:with-param name="name" select="'address/postal/country'"/> 816 </xsl:call-template> 817 </xsl:variable> 818 <xsl:if test="$country!=''"> 819 <span class="country-name vcardline"> 820 <xsl:value-of select="$country"/> 821 </span> 822 </xsl:if> 823 </xsl:if> 824 </span> 802 </xsl:if> 825 803 </xsl:if> 826 804 <xsl:if test="address/phone"> … … 832 810 </xsl:variable> 833 811 <xsl:if test="$phone!=''"> 834 <span class="vcardline tel">812 <span class="vcardline"> 835 813 <xsl:text>Phone: </xsl:text> 836 <a href="tel:{translate($phone,' ','')}">< span class="value"><xsl:value-of select="$phone"/></span></a>814 <a href="tel:{translate($phone,' ','')}"><xsl:value-of select="$phone"/></a> 837 815 </span> 838 816 </xsl:if> … … 846 824 </xsl:variable> 847 825 <xsl:if test="$facsimile!=''"> 848 <span class="vcardline tel">849 < span class="type">Fax</span><xsl:text>: </xsl:text>850 <a href="fax:{translate($facsimile,' ','')}">< span class="value"><xsl:value-of select="$facsimile"/></span></a>826 <span class="vcardline"> 827 <xsl:text>Fax: </xsl:text> 828 <a href="fax:{translate($facsimile,' ','')}"><xsl:value-of select="$facsimile"/></a> 851 829 </span> 852 830 </xsl:if> … … 866 844 <xsl:attribute name="href">mailto:<xsl:value-of select="$email"/></xsl:attribute> 867 845 </xsl:if> 868 < span class="email"><xsl:value-of select="$email"/></span>846 <xsl:value-of select="$email"/> 869 847 </a> 870 848 </span> … … 877 855 <span class="vcardline"> 878 856 <xsl:text>URI: </xsl:text> 879 <a href="{$uri}" class="url"><xsl:value-of select="$uri"/></a>857 <a href="{$uri}"><xsl:value-of select="$uri"/></a> 880 858 <xsl:if test="@x:annotation"> 881 859 <xsl:text> </xsl:text> … … 1826 1804 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{$lang}"> 1827 1805 <head> 1828 <xsl:attribute name="profile"> 1829 <xsl:text>http://www.w3.org/2006/03/hcard</xsl:text> 1830 <xsl:if test="$xml2rfc-ext-support-rfc2731!='no'"> 1831 <xsl:text> </xsl:text> 1832 <xsl:text>http://dublincore.org/documents/2008/08/04/dc-html/</xsl:text> 1833 </xsl:if> 1834 </xsl:attribute> 1806 <xsl:if test="$xml2rfc-ext-support-rfc2731!='no'"> 1807 <xsl:attribute name="profile">http://dublincore.org/documents/2008/08/04/dc-html/</xsl:attribute> 1808 </xsl:if> 1835 1809 <title> 1836 1810 <xsl:apply-templates select="front/title" mode="get-text-content"/> … … 3662 3636 .fn { 3663 3637 font-weight: bold; 3664 }3665 .hidden {3666 display: none;3667 3638 } 3668 3639 .left { … … 6569 6540 <xsl:text>http://greenbytes.de/tech/webdav/rfc2629.xslt, </xsl:text> 6570 6541 <!-- when RCS keyword substitution in place, add version info --> 6571 <xsl:if test="contains('$Revision: 1.59 8$',':')">6572 <xsl:value-of select="concat('Revision ',normalize-space(translate(substring-after('$Revision: 1.59 8$', 'Revision: '),'$','')),', ')"/>6542 <xsl:if test="contains('$Revision: 1.599 $',':')"> 6543 <xsl:value-of select="concat('Revision ',normalize-space(translate(substring-after('$Revision: 1.599 $', 'Revision: '),'$','')),', ')"/> 6573 6544 </xsl:if> 6574 <xsl:if test="contains('$Date: 2013/0 6/23 14:11:10$',':')">6575 <xsl:value-of select="concat(normalize-space(translate(substring-after('$Date: 2013/0 6/23 14:11:10$', 'Date: '),'$','')),', ')"/>6545 <xsl:if test="contains('$Date: 2013/08/29 10:34:28 $',':')"> 6546 <xsl:value-of select="concat(normalize-space(translate(substring-after('$Date: 2013/08/29 10:34:28 $', 'Date: '),'$','')),', ')"/> 6576 6547 </xsl:if> 6577 6548 <xsl:value-of select="concat('XSLT vendor: ',system-property('xsl:vendor'),' ',system-property('xsl:vendor-url'))"/> -
rfc2629xslt/rfc2629xslt.html
r2333 r2365 2 2 <!DOCTYPE html 3 3 PUBLIC "-//W3C//DTD HTML 4.01//EN"> 4 <html lang="en"><head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">4 <html lang="en"><head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 5 5 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 6 6 <title>Transforming RFC2629-formatted XML through XSLT</title><style type="text/css" title="Xml2Rfc (sans serif)"> … … 276 276 .fn { 277 277 font-weight: bold; 278 }279 .hidden {280 display: none;281 278 } 282 279 .left { … … 372 369 } 373 370 } 374 </style><link rel="Contents" href="#rfc.toc"><link rel="Author" href="#rfc.authors"><link rel="Index" href="#rfc.index"><link rel="Chapter" title="1 Introduction" href="#rfc.section.1"><link rel="Chapter" title="2 Supported RFC2629 elements" href="#rfc.section.2"><link rel="Chapter" title="3 Processing Instructions" href="#rfc.section.3"><link rel="Chapter" title="4 Anchors" href="#rfc.section.4"><link rel="Chapter" title="5 Supported XSLT engines" href="#rfc.section.5"><link rel="Chapter" title="6 Transforming to HTML" href="#rfc.section.6"><link rel="Chapter" title="7 Transforming to XHTML" href="#rfc.section.7"><link rel="Chapter" title="8 Transforming to CHM (Microsoft Compiled Help)" href="#rfc.section.8"><link rel="Chapter" title="9 Transforming to PDF" href="#rfc.section.9"><link rel="Chapter" title="10 Transforming to ePub" href="#rfc.section.10"><link rel="Chapter" title="11 Generic Extensions" href="#rfc.section.11"><link rel="Chapter" title="12 Utilities" href="#rfc.section.12"><link rel="Chapter" href="#rfc.section.13" title="13 Informative References"><link rel="Appendix" title="A RELAX NG Compact Schema" href="#rfc.section.A"><link rel="Appendix" title="B Implementation Notes" href="#rfc.section.B"><link rel="Appendix" title="C Examples" href="#rfc.section.C"><link rel="Appendix" title="D Producing the IETF 'Boilerplate'" href="#rfc.section.D"><link rel="Appendix" title="E License" href="#rfc.section.E"><link rel="Appendix" title="F Change Logs" href="#rfc.section.F"><meta name="generator" content="http://greenbytes.de/tech/webdav/rfc2629.xslt, Revision 1.59 8, 2013/06/23 14:11:10, XSLT vendor: SAXON 6.5.5 from Michael Kay http://saxon.sf.net/"><meta name="keywords" content="RFC2629, xml2rfc, XSLT, hCard, XSL-FO, PDF, GRDDL, epub, Dublin Core"><link rel="schema.dct" href="http://purl.org/dc/terms/"><meta name="dct.creator" content="Reschke, J. F."></head><body><table class="header"><tbody><tr><td class="left">RFC2629 through XSLT</td><td class="right">J. Reschke</td></tr><tr><td class="left"></td><td class="right">greenbytes</td></tr><tr><td class="left"></td><td class="right">July 2013</td></tr></tbody></table><p class="title">Transforming RFC2629-formatted XML through XSLT</p><hr class="noprint"><h1 class="np" id="rfc.toc"><a href="#rfc.toc">Table of Contents</a></h1><ul class="toc"><li><a href="#rfc.section.1">1.</a> <a href="#rfc.section.1">Introduction</a></li><li><a href="#rfc.section.2">2.</a> <a href="#supported.elements">Supported RFC2629 elements</a><ul><li><a href="#rfc.section.2.1">2.1</a> <a href="#rfc.section.2.1">Extension elements</a></li></ul></li><li><a href="#rfc.section.3">3.</a> <a href="#processing.instructions">Processing Instructions</a><ul><li><a href="#rfc.section.3.1">3.1</a> <a href="#rfc.section.3.1">Supported xml2rfc-compatible PIs</a></li><li><a href="#rfc.section.3.2">3.2</a> <a href="#rfc.section.3.2">Unsupported xml2rfc-compatible PIs</a></li><li><a href="#rfc.section.3.3">3.3</a> <a href="#rfc.section.3.3">Extension PIs</a></li></ul></li><li><a href="#rfc.section.4">4.</a> <a href="#anchors">Anchors</a></li><li><a href="#rfc.section.5">5.</a> <a href="#xslt.engines">Supported XSLT engines</a><ul><li><a href="#rfc.section.5.1">5.1</a> <a href="#rfc.section.5.1">Standalone Engines</a></li><li><a href="#rfc.section.5.2">5.2</a> <a href="#xslt.engines.browser">In-Browser Engines</a></li></ul></li><li><a href="#rfc.section.6">6.</a> <a href="#output.html">Transforming to HTML</a><ul><li><a href="#rfc.section.6.1">6.1</a> <a href="#rfc.section.6.1">HTML compliance</a></li><li><a href="#rfc.section.6.2">6.2</a> <a href="#html.link">Standard HTML LINK elements</a></li><li><a href="#rfc.section.6.3">6.3</a> <a href="#rfc.section.6.3">Standard HTML metadata</a></li><li><a href="#rfc.section.6.4">6.4</a> <a href="#rfc2731.properties">Dublin Core (RFC2731) metadata</a></li><li><a href="#rfc.section.6.5">6.5</a> <a href="#hcard">Experimental hCard support</a></li></ul></li><li><a href="#rfc.section.7">7.</a> <a href="#output.xhtml">Transforming to XHTML</a></li><li><a href="#rfc.section.8">8.</a> <a href="#output.chm">Transforming to CHM (Microsoft Compiled Help)</a></li><li><a href="#rfc.section.9">9.</a> <a href="#output.pdf">Transforming to PDF</a><ul><li><a href="#rfc.section.9.1">9.1</a> <a href="#output.pdf.fop">Via XSL-FO</a><ul><li><a href="#rfc.section.9.1.1">9.1.1</a> <a href="#rfc.section.9.1.1">Extension feature matrix</a></li><li><a href="#rfc.section.9.1.2">9.1.2</a> <a href="#rfc.section.9.1.2">Example: producing output for Apache FOP</a></li></ul></li><li><a href="#rfc.section.9.2">9.2</a> <a href="#output.pdf.html">Via X(HTML)</a></li></ul></li><li><a href="#rfc.section.10">10.</a> <a href="#output.epub">Transforming to ePub</a></li><li><a href="#rfc.section.11">11.</a> <a href="#extensions">Generic Extensions</a><ul><li><a href="#rfc.section.11.1">11.1</a> <a href="#ext.element.abnf-char-sequence"><abnf-char-sequence> element</a></li><li><a href="#rfc.section.11.2">11.2</a> <a href="#ext.element.anchor-alias"><anchor-alias> element</a></li><li><a href="#rfc.section.11.3">11.3</a> <a href="#ext.element.bcp14"><bcp14> element</a></li><li><a href="#rfc.section.11.4">11.4</a> <a href="#ext.element.bb"><bb> element</a></li><li><a href="#rfc.section.11.5">11.5</a> <a href="#ext.element.bc"><bc> element</a></li><li><a href="#rfc.section.11.6">11.6</a> <a href="#ext.element.blockquote"><blockquote> element</a></li><li><a href="#rfc.section.11.7">11.7</a> <a href="#ext.element.boilerplate"><boilerplate> element</a></li><li><a href="#rfc.section.11.8">11.8</a> <a href="#ext.element.bt"><bt> element</a></li><li><a href="#rfc.section.11.9">11.9</a> <a href="#ext.element.dfn"><dfn> element</a></li><li><a href="#rfc.section.11.10">11.10</a> <a href="#ext.element.feedback"><feedback> element</a></li><li><a href="#rfc.section.11.11">11.11</a> <a href="#ext.element.h"><h> element</a></li><li><a href="#rfc.section.11.12">11.12</a> <a href="#ext.element.highlight"><highlight> element</a></li><li><a href="#rfc.section.11.13">11.13</a> <a href="#ext.element.length-of"><length-of> element</a></li><li><a href="#rfc.section.11.14">11.14</a> <a href="#ext.element.link"><link> element</a></li><li><a href="#rfc.section.11.15">11.15</a> <a href="#ext.element.lt"><lt> element</a></li><li><a href="#rfc.section.11.16">11.16</a> <a href="#ext.element.note"><note> element</a></li><li><a href="#rfc.section.11.17">11.17</a> <a href="#ext.element.parse-xml"><parse-xml> element</a></li><li><a href="#rfc.section.11.18">11.18</a> <a href="#ext.element.prose"><prose> element</a></li><li><a href="#rfc.section.11.19">11.19</a> <a href="#ext.element.q"><q> element</a></li><li><a href="#rfc.section.11.20">11.20</a> <a href="#ext.element.ref"><ref> element</a></li><li><a href="#rfc.section.11.21">11.21</a> <a href="#ext.element.source"><source> element</a></li><li><a href="#rfc.section.11.22">11.22</a> <a href="#ext.element.sup"><sup> element</a></li><li><a href="#rfc.section.11.23">11.23</a> <a href="#ext-rfc2629.artwork">Extensions to Xml2rfc <artwork> element</a></li><li><a href="#rfc.section.11.24">11.24</a> <a href="#ext-rfc2629.iref">Extensions to Xml2rfc <iref> element</a></li><li><a href="#rfc.section.11.25">11.25</a> <a href="#ext-rfc2629.list">Extensions to Xml2rfc <list> element</a></li><li><a href="#rfc.section.11.26">11.26</a> <a href="#ext-rfc2629.rfc">Extensions to Xml2rfc <rfc> element</a></li><li><a href="#rfc.section.11.27">11.27</a> <a href="#ext-rfc2629.section">Extensions to Xml2rfc <section> element</a></li><li><a href="#rfc.section.11.28">11.28</a> <a href="#ext-rfc2629.xref">Extensions to Xml2rfc <xref> element</a></li></ul></li><li><a href="#rfc.section.12">12.</a> <a href="#utilities">Utilities</a><ul><li><a href="#rfc.section.12.1">12.1</a> <a href="#checking-references">Checking References</a></li><li><a href="#rfc.section.12.2">12.2</a> <a href="#rfc.section.12.2">Generating Graphs from References</a></li><li><a href="#rfc.section.12.3">12.3</a> <a href="#rfc.section.12.3">Producing reference entries for books</a></li><li><a href="#rfc.section.12.4">12.4</a> <a href="#clean-for-dtd">Down-converting to RFC2629bis DTD</a></li><li><a href="#rfc.section.12.5">12.5</a> <a href="#extract-artwork">Extracting artwork</a></li><li><a href="#rfc.section.12.6">12.6</a> <a href="#grddl">GRRDL</a></li></ul></li><li><a href="#rfc.section.13">13.</a> <a href="#rfc.references">Informative References</a></li><li><a href="#rfc.authors">Author's Address</a></li><li><a href="#rfc.section.A">A.</a> <a href="#grammar">RELAX NG Compact Schema</a></li><li><a href="#rfc.section.B">B.</a> <a href="#rfc.section.B">Implementation Notes</a><ul><li><a href="#rfc.section.B.1">B.1</a> <a href="#rfc.section.B.1">Recognized type attributes for <artwork> element</a></li></ul></li><li><a href="#rfc.section.C">C.</a> <a href="#examples">Examples</a><ul><li><a href="#rfc.section.C.1">C.1</a> <a href="#examples.internalsubset">Using the 'Internal Subset'</a></li><li><a href="#rfc.section.C.2">C.2</a> <a href="#examples.customizing">Customization</a></li></ul></li><li><a href="#rfc.section.D">D.</a> <a href="#boilerplate">Producing the IETF 'Boilerplate'</a><ul><li><a href="#rfc.section.D.1">D.1</a> <a href="#attribute-ipr">The /rfc/@ipr Attribute</a><ul><li><a href="#rfc.section.D.1.1">D.1.1</a> <a href="#attribute-ipr-current">Current Values: '*trust200902'</a><ul><li><a href="#rfc.section.D.1.1.1">D.1.1.1</a> <a href="#attribute-ipr-trust200902">trust200902</a></li><li><a href="#rfc.section.D.1.1.2">D.1.1.2</a> <a href="#attribute-ipr-noModificationTrust200902">noModificationTrust200902</a></li><li><a href="#rfc.section.D.1.1.3">D.1.1.3</a> <a href="#attribute-ipr-noDerivativesTrust200902">noDerivativesTrust200902</a></li><li><a href="#rfc.section.D.1.1.4">D.1.1.4</a> <a href="#attribute-ipr-pre5378Trust200902">pre5378Trust200902</a></li></ul></li><li><a href="#rfc.section.D.1.2">D.1.2</a> <a href="#attribute-ipr-historic">Historic Values</a><ul><li><a href="#rfc.section.D.1.2.1">D.1.2.1</a> <a href="#attribute-ipr-200811">Historic Values: '*trust200811'</a></li><li><a href="#rfc.section.D.1.2.2">D.1.2.2</a> <a href="#attribute-ipr-3978">Historic Values: '*3978'</a></li><li><a href="#rfc.section.D.1.2.3">D.1.2.3</a> <a href="#attribute-ipr-3667">Historic Values: '*3667'</a></li><li><a href="#rfc.section.D.1.2.4">D.1.2.4</a> <a href="#attribute-ipr-2026">Historic Values: '*2026'</a></li></ul></li></ul></li><li><a href="#rfc.section.D.2">D.2</a> <a href="#attribute-category">The /rfc/@category Attribute</a></li><li><a href="#rfc.section.D.3">D.3</a> <a href="#attribute-submissiontype">The /rfc/@submissionType Attribute</a></li><li><a href="#rfc.section.D.4">D.4</a> <a href="#attribute-consensus">The /rfc/@consensus Attribute</a></li><li><a href="#rfc.section.D.5">D.5</a> <a href="#attribute-number">The /rfc/@number Attribute</a></li><li><a href="#rfc.section.D.6">D.6</a> <a href="#attribute-docname">The /rfc/@docName Attribute</a></li><li><a href="#rfc.section.D.7">D.7</a> <a href="#attribute-obsoletes">The /rfc/@obsoletes Attribute</a></li><li><a href="#rfc.section.D.8">D.8</a> <a href="#attribute-updates">The /rfc/@updates Attribute</a></li></ul></li><li><a href="#rfc.section.E">E.</a> <a href="#license">License</a></li><li><a href="#rfc.section.F">F.</a> <a href="#rfc.section.F">Change Logs</a><ul><li><a href="#rfc.section.F.1">F.1</a> <a href="#rfc.section.F.1">Package</a></li><li><a href="#rfc.section.F.2">F.2</a> <a href="#rfc.section.F.2">amazon-asin.xslt</a></li><li><a href="#rfc.section.F.3">F.3</a> <a href="#rfc.section.F.3">check-references.xslt</a></li><li><a href="#rfc.section.F.4">F.4</a> <a href="#rfc.section.F.4">gen-reference-graph.xslt</a></li><li><a href="#rfc.section.F.5">F.5</a> <a href="#rfc.section.F.5">rfc2629.xslt</a></li><li><a href="#rfc.section.F.6">F.6</a> <a href="#rfc.section.F.6">rfc2629toFO.xslt</a></li><li><a href="#rfc.section.F.7">F.7</a> <a href="#rfc.section.F.7">xsl11toAn.xslt</a></li><li><a href="#rfc.section.F.8">F.8</a> <a href="#rfc.section.F.8">xsl11toFop.xslt</a></li><li><a href="#rfc.section.F.9">F.9</a> <a href="#rfc.section.F.9">xsl11toXep.xslt</a></li></ul></li><li><a href="#rfc.index">Index</a></li></ul><hr class="noprint"><h1 id="rfc.section.1" class="np"><a href="#rfc.section.1">1.</a> Introduction</h1><p id="rfc.section.1.p.1">This document describes a set of XSLT transformations that can be used to transform RFC2629-compliant XML (see <a href="#RFC2629" id="rfc.xref.RFC2629.1"><cite title="Writing I-Ds and RFCs using XML">[RFC2629]</cite></a>) to various output formats, such as HTML and PDF. The main topics are </p><ul><li>compliance to the xml2rfc XML element set (<a href="#supported.elements" title="Supported RFC2629 elements">Section 2</a>),</li><li>support for xml2rfc processing instructions (<a href="#processing.instructions" title="Processing Instructions">Section 3</a>),</li><li>the names of anchor elements generated in HTML and PDF output (<a href="#anchors" title="Anchors">Section 4</a>),</li><li>various XSLT engines that can be used (<a href="#xslt.engines" title="Supported XSLT engines">Section 5</a>),</li><li>outputting HTML (<a href="#output.html" title="Transforming to HTML">Section 6</a>) and XHTML (<a href="#output.xhtml" title="Transforming to XHTML">Section 7</a>),</li><li>outputting CHM (Compiled Microsoft Help, <a href="#output.chm" title="Transforming to CHM (Microsoft Compiled Help)">Section 8</a>),</li><li>outputting PDF (<a href="#output.pdf" title="Transforming to PDF">Section 9</a>),</li><li>outputting ePub (<a href="#output.epub" title="Transforming to ePub">Section 10</a>),</li><li>extensions to the xml2rfc vocabulary (<a href="#extensions" title="Generic Extensions">Section 11</a>).</li><li>various utilities (<a href="#utilities" title="Utilities">Section 12</a>).</li></ul><p id="rfc.section.1.p.2">The full distribution is available at <<a href="http://greenbytes.de/tech/webdav/rfc2629xslt.zip">http://greenbytes.de/tech/webdav/rfc2629xslt.zip</a>>.</p><hr class="noprint"><h1 id="rfc.section.2" class="np"><a href="#rfc.section.2">2.</a> <a id="supported.elements" href="#supported.elements">Supported RFC2629 elements</a></h1><p id="rfc.section.2.p.1"><samp>rfc2629.xslt</samp> supports both all RFC2629 grammar elements and the extensions implemented in xml2rfc 1.36.</p><h2 id="rfc.section.2.1"><a href="#rfc.section.2.1">2.1</a> Extension elements</h2><p id="rfc.section.2.1.p.1"><samp>rfc2629.xslt</samp> supports two kind of extension elements, using different XML namespaces.</p><p id="rfc.section.2.1.p.2">The first set contains (hopefully) generally useful extensions, see <a href="#extensions" title="Generic Extensions">Section 11</a>.</p><p id="rfc.section.2.1.p.3">The second set is used for change and issue tracking and currently is not documented here. Please email the author in case you're interested in using these extensions.</p><hr class="noprint"><h1 id="rfc.section.3" class="np"><a href="#rfc.section.3">3.</a> <a id="processing.instructions" href="#processing.instructions">Processing Instructions</a></h1><p id="rfc.section.3.p.1">All PIs can be set as XSLT parameter as well, overriding any value that is found in the source file to be transformed.</p><div id="rfc.figure.u.1"></div><p>Using processing instructions:</p><pre class="text"><?rfc toc="yes"?>371 </style><link rel="Contents" href="#rfc.toc"><link rel="Author" href="#rfc.authors"><link rel="Index" href="#rfc.index"><link rel="Chapter" title="1 Introduction" href="#rfc.section.1"><link rel="Chapter" title="2 Supported RFC2629 elements" href="#rfc.section.2"><link rel="Chapter" title="3 Processing Instructions" href="#rfc.section.3"><link rel="Chapter" title="4 Anchors" href="#rfc.section.4"><link rel="Chapter" title="5 Supported XSLT engines" href="#rfc.section.5"><link rel="Chapter" title="6 Transforming to HTML" href="#rfc.section.6"><link rel="Chapter" title="7 Transforming to XHTML" href="#rfc.section.7"><link rel="Chapter" title="8 Transforming to CHM (Microsoft Compiled Help)" href="#rfc.section.8"><link rel="Chapter" title="9 Transforming to PDF" href="#rfc.section.9"><link rel="Chapter" title="10 Transforming to ePub" href="#rfc.section.10"><link rel="Chapter" title="11 Generic Extensions" href="#rfc.section.11"><link rel="Chapter" title="12 Utilities" href="#rfc.section.12"><link rel="Chapter" href="#rfc.section.13" title="13 Informative References"><link rel="Appendix" title="A RELAX NG Compact Schema" href="#rfc.section.A"><link rel="Appendix" title="B Implementation Notes" href="#rfc.section.B"><link rel="Appendix" title="C Examples" href="#rfc.section.C"><link rel="Appendix" title="D Producing the IETF 'Boilerplate'" href="#rfc.section.D"><link rel="Appendix" title="E License" href="#rfc.section.E"><link rel="Appendix" title="F Change Logs" href="#rfc.section.F"><meta name="generator" content="http://greenbytes.de/tech/webdav/rfc2629.xslt, Revision 1.599, 2013/08/29 10:34:28, XSLT vendor: SAXON 6.5.5 from Michael Kay http://saxon.sf.net/"><meta name="keywords" content="RFC2629, xml2rfc, XSLT, hCard, XSL-FO, PDF, GRDDL, epub, Dublin Core"><link rel="schema.dct" href="http://purl.org/dc/terms/"><meta name="dct.creator" content="Reschke, J. F."></head><body><table class="header"><tbody><tr><td class="left">RFC2629 through XSLT</td><td class="right">J. Reschke</td></tr><tr><td class="left"></td><td class="right">greenbytes</td></tr><tr><td class="left"></td><td class="right">July 2013</td></tr></tbody></table><p class="title">Transforming RFC2629-formatted XML through XSLT</p><hr class="noprint"><h1 class="np" id="rfc.toc"><a href="#rfc.toc">Table of Contents</a></h1><ul class="toc"><li><a href="#rfc.section.1">1.</a> <a href="#rfc.section.1">Introduction</a></li><li><a href="#rfc.section.2">2.</a> <a href="#supported.elements">Supported RFC2629 elements</a><ul><li><a href="#rfc.section.2.1">2.1</a> <a href="#rfc.section.2.1">Extension elements</a></li></ul></li><li><a href="#rfc.section.3">3.</a> <a href="#processing.instructions">Processing Instructions</a><ul><li><a href="#rfc.section.3.1">3.1</a> <a href="#rfc.section.3.1">Supported xml2rfc-compatible PIs</a></li><li><a href="#rfc.section.3.2">3.2</a> <a href="#rfc.section.3.2">Unsupported xml2rfc-compatible PIs</a></li><li><a href="#rfc.section.3.3">3.3</a> <a href="#rfc.section.3.3">Extension PIs</a></li></ul></li><li><a href="#rfc.section.4">4.</a> <a href="#anchors">Anchors</a></li><li><a href="#rfc.section.5">5.</a> <a href="#xslt.engines">Supported XSLT engines</a><ul><li><a href="#rfc.section.5.1">5.1</a> <a href="#rfc.section.5.1">Standalone Engines</a></li><li><a href="#rfc.section.5.2">5.2</a> <a href="#xslt.engines.browser">In-Browser Engines</a></li></ul></li><li><a href="#rfc.section.6">6.</a> <a href="#output.html">Transforming to HTML</a><ul><li><a href="#rfc.section.6.1">6.1</a> <a href="#rfc.section.6.1">HTML compliance</a></li><li><a href="#rfc.section.6.2">6.2</a> <a href="#html.link">Standard HTML LINK elements</a></li><li><a href="#rfc.section.6.3">6.3</a> <a href="#rfc.section.6.3">Standard HTML metadata</a></li><li><a href="#rfc.section.6.4">6.4</a> <a href="#rfc2731.properties">Dublin Core (RFC2731) metadata</a></li><li><a href="#rfc.section.6.5">6.5</a> <a href="#hcard">Experimental hCard support</a></li></ul></li><li><a href="#rfc.section.7">7.</a> <a href="#output.xhtml">Transforming to XHTML</a></li><li><a href="#rfc.section.8">8.</a> <a href="#output.chm">Transforming to CHM (Microsoft Compiled Help)</a></li><li><a href="#rfc.section.9">9.</a> <a href="#output.pdf">Transforming to PDF</a><ul><li><a href="#rfc.section.9.1">9.1</a> <a href="#output.pdf.fop">Via XSL-FO</a><ul><li><a href="#rfc.section.9.1.1">9.1.1</a> <a href="#rfc.section.9.1.1">Extension feature matrix</a></li><li><a href="#rfc.section.9.1.2">9.1.2</a> <a href="#rfc.section.9.1.2">Example: producing output for Apache FOP</a></li></ul></li><li><a href="#rfc.section.9.2">9.2</a> <a href="#output.pdf.html">Via X(HTML)</a></li></ul></li><li><a href="#rfc.section.10">10.</a> <a href="#output.epub">Transforming to ePub</a></li><li><a href="#rfc.section.11">11.</a> <a href="#extensions">Generic Extensions</a><ul><li><a href="#rfc.section.11.1">11.1</a> <a href="#ext.element.abnf-char-sequence"><abnf-char-sequence> element</a></li><li><a href="#rfc.section.11.2">11.2</a> <a href="#ext.element.anchor-alias"><anchor-alias> element</a></li><li><a href="#rfc.section.11.3">11.3</a> <a href="#ext.element.bcp14"><bcp14> element</a></li><li><a href="#rfc.section.11.4">11.4</a> <a href="#ext.element.bb"><bb> element</a></li><li><a href="#rfc.section.11.5">11.5</a> <a href="#ext.element.bc"><bc> element</a></li><li><a href="#rfc.section.11.6">11.6</a> <a href="#ext.element.blockquote"><blockquote> element</a></li><li><a href="#rfc.section.11.7">11.7</a> <a href="#ext.element.boilerplate"><boilerplate> element</a></li><li><a href="#rfc.section.11.8">11.8</a> <a href="#ext.element.bt"><bt> element</a></li><li><a href="#rfc.section.11.9">11.9</a> <a href="#ext.element.dfn"><dfn> element</a></li><li><a href="#rfc.section.11.10">11.10</a> <a href="#ext.element.feedback"><feedback> element</a></li><li><a href="#rfc.section.11.11">11.11</a> <a href="#ext.element.h"><h> element</a></li><li><a href="#rfc.section.11.12">11.12</a> <a href="#ext.element.highlight"><highlight> element</a></li><li><a href="#rfc.section.11.13">11.13</a> <a href="#ext.element.length-of"><length-of> element</a></li><li><a href="#rfc.section.11.14">11.14</a> <a href="#ext.element.link"><link> element</a></li><li><a href="#rfc.section.11.15">11.15</a> <a href="#ext.element.lt"><lt> element</a></li><li><a href="#rfc.section.11.16">11.16</a> <a href="#ext.element.note"><note> element</a></li><li><a href="#rfc.section.11.17">11.17</a> <a href="#ext.element.parse-xml"><parse-xml> element</a></li><li><a href="#rfc.section.11.18">11.18</a> <a href="#ext.element.prose"><prose> element</a></li><li><a href="#rfc.section.11.19">11.19</a> <a href="#ext.element.q"><q> element</a></li><li><a href="#rfc.section.11.20">11.20</a> <a href="#ext.element.ref"><ref> element</a></li><li><a href="#rfc.section.11.21">11.21</a> <a href="#ext.element.source"><source> element</a></li><li><a href="#rfc.section.11.22">11.22</a> <a href="#ext.element.sup"><sup> element</a></li><li><a href="#rfc.section.11.23">11.23</a> <a href="#ext-rfc2629.artwork">Extensions to Xml2rfc <artwork> element</a></li><li><a href="#rfc.section.11.24">11.24</a> <a href="#ext-rfc2629.iref">Extensions to Xml2rfc <iref> element</a></li><li><a href="#rfc.section.11.25">11.25</a> <a href="#ext-rfc2629.list">Extensions to Xml2rfc <list> element</a></li><li><a href="#rfc.section.11.26">11.26</a> <a href="#ext-rfc2629.rfc">Extensions to Xml2rfc <rfc> element</a></li><li><a href="#rfc.section.11.27">11.27</a> <a href="#ext-rfc2629.section">Extensions to Xml2rfc <section> element</a></li><li><a href="#rfc.section.11.28">11.28</a> <a href="#ext-rfc2629.xref">Extensions to Xml2rfc <xref> element</a></li></ul></li><li><a href="#rfc.section.12">12.</a> <a href="#utilities">Utilities</a><ul><li><a href="#rfc.section.12.1">12.1</a> <a href="#checking-references">Checking References</a></li><li><a href="#rfc.section.12.2">12.2</a> <a href="#rfc.section.12.2">Generating Graphs from References</a></li><li><a href="#rfc.section.12.3">12.3</a> <a href="#rfc.section.12.3">Producing reference entries for books</a></li><li><a href="#rfc.section.12.4">12.4</a> <a href="#clean-for-dtd">Down-converting to RFC2629bis DTD</a></li><li><a href="#rfc.section.12.5">12.5</a> <a href="#extract-artwork">Extracting artwork</a></li><li><a href="#rfc.section.12.6">12.6</a> <a href="#grddl">GRRDL</a></li></ul></li><li><a href="#rfc.section.13">13.</a> <a href="#rfc.references">Informative References</a></li><li><a href="#rfc.authors">Author's Address</a></li><li><a href="#rfc.section.A">A.</a> <a href="#grammar">RELAX NG Compact Schema</a></li><li><a href="#rfc.section.B">B.</a> <a href="#rfc.section.B">Implementation Notes</a><ul><li><a href="#rfc.section.B.1">B.1</a> <a href="#rfc.section.B.1">Recognized type attributes for <artwork> element</a></li></ul></li><li><a href="#rfc.section.C">C.</a> <a href="#examples">Examples</a><ul><li><a href="#rfc.section.C.1">C.1</a> <a href="#examples.internalsubset">Using the 'Internal Subset'</a></li><li><a href="#rfc.section.C.2">C.2</a> <a href="#examples.customizing">Customization</a></li></ul></li><li><a href="#rfc.section.D">D.</a> <a href="#boilerplate">Producing the IETF 'Boilerplate'</a><ul><li><a href="#rfc.section.D.1">D.1</a> <a href="#attribute-ipr">The /rfc/@ipr Attribute</a><ul><li><a href="#rfc.section.D.1.1">D.1.1</a> <a href="#attribute-ipr-current">Current Values: '*trust200902'</a><ul><li><a href="#rfc.section.D.1.1.1">D.1.1.1</a> <a href="#attribute-ipr-trust200902">trust200902</a></li><li><a href="#rfc.section.D.1.1.2">D.1.1.2</a> <a href="#attribute-ipr-noModificationTrust200902">noModificationTrust200902</a></li><li><a href="#rfc.section.D.1.1.3">D.1.1.3</a> <a href="#attribute-ipr-noDerivativesTrust200902">noDerivativesTrust200902</a></li><li><a href="#rfc.section.D.1.1.4">D.1.1.4</a> <a href="#attribute-ipr-pre5378Trust200902">pre5378Trust200902</a></li></ul></li><li><a href="#rfc.section.D.1.2">D.1.2</a> <a href="#attribute-ipr-historic">Historic Values</a><ul><li><a href="#rfc.section.D.1.2.1">D.1.2.1</a> <a href="#attribute-ipr-200811">Historic Values: '*trust200811'</a></li><li><a href="#rfc.section.D.1.2.2">D.1.2.2</a> <a href="#attribute-ipr-3978">Historic Values: '*3978'</a></li><li><a href="#rfc.section.D.1.2.3">D.1.2.3</a> <a href="#attribute-ipr-3667">Historic Values: '*3667'</a></li><li><a href="#rfc.section.D.1.2.4">D.1.2.4</a> <a href="#attribute-ipr-2026">Historic Values: '*2026'</a></li></ul></li></ul></li><li><a href="#rfc.section.D.2">D.2</a> <a href="#attribute-category">The /rfc/@category Attribute</a></li><li><a href="#rfc.section.D.3">D.3</a> <a href="#attribute-submissiontype">The /rfc/@submissionType Attribute</a></li><li><a href="#rfc.section.D.4">D.4</a> <a href="#attribute-consensus">The /rfc/@consensus Attribute</a></li><li><a href="#rfc.section.D.5">D.5</a> <a href="#attribute-number">The /rfc/@number Attribute</a></li><li><a href="#rfc.section.D.6">D.6</a> <a href="#attribute-docname">The /rfc/@docName Attribute</a></li><li><a href="#rfc.section.D.7">D.7</a> <a href="#attribute-obsoletes">The /rfc/@obsoletes Attribute</a></li><li><a href="#rfc.section.D.8">D.8</a> <a href="#attribute-updates">The /rfc/@updates Attribute</a></li></ul></li><li><a href="#rfc.section.E">E.</a> <a href="#license">License</a></li><li><a href="#rfc.section.F">F.</a> <a href="#rfc.section.F">Change Logs</a><ul><li><a href="#rfc.section.F.1">F.1</a> <a href="#rfc.section.F.1">Package</a></li><li><a href="#rfc.section.F.2">F.2</a> <a href="#rfc.section.F.2">amazon-asin.xslt</a></li><li><a href="#rfc.section.F.3">F.3</a> <a href="#rfc.section.F.3">check-references.xslt</a></li><li><a href="#rfc.section.F.4">F.4</a> <a href="#rfc.section.F.4">gen-reference-graph.xslt</a></li><li><a href="#rfc.section.F.5">F.5</a> <a href="#rfc.section.F.5">rfc2629.xslt</a></li><li><a href="#rfc.section.F.6">F.6</a> <a href="#rfc.section.F.6">rfc2629toFO.xslt</a></li><li><a href="#rfc.section.F.7">F.7</a> <a href="#rfc.section.F.7">xsl11toAn.xslt</a></li><li><a href="#rfc.section.F.8">F.8</a> <a href="#rfc.section.F.8">xsl11toFop.xslt</a></li><li><a href="#rfc.section.F.9">F.9</a> <a href="#rfc.section.F.9">xsl11toXep.xslt</a></li></ul></li><li><a href="#rfc.index">Index</a></li></ul><hr class="noprint"><h1 id="rfc.section.1" class="np"><a href="#rfc.section.1">1.</a> Introduction</h1><p id="rfc.section.1.p.1">This document describes a set of XSLT transformations that can be used to transform RFC2629-compliant XML (see <a href="#RFC2629" id="rfc.xref.RFC2629.1"><cite title="Writing I-Ds and RFCs using XML">[RFC2629]</cite></a>) to various output formats, such as HTML and PDF. The main topics are </p><ul><li>compliance to the xml2rfc XML element set (<a href="#supported.elements" title="Supported RFC2629 elements">Section 2</a>),</li><li>support for xml2rfc processing instructions (<a href="#processing.instructions" title="Processing Instructions">Section 3</a>),</li><li>the names of anchor elements generated in HTML and PDF output (<a href="#anchors" title="Anchors">Section 4</a>),</li><li>various XSLT engines that can be used (<a href="#xslt.engines" title="Supported XSLT engines">Section 5</a>),</li><li>outputting HTML (<a href="#output.html" title="Transforming to HTML">Section 6</a>) and XHTML (<a href="#output.xhtml" title="Transforming to XHTML">Section 7</a>),</li><li>outputting CHM (Compiled Microsoft Help, <a href="#output.chm" title="Transforming to CHM (Microsoft Compiled Help)">Section 8</a>),</li><li>outputting PDF (<a href="#output.pdf" title="Transforming to PDF">Section 9</a>),</li><li>outputting ePub (<a href="#output.epub" title="Transforming to ePub">Section 10</a>),</li><li>extensions to the xml2rfc vocabulary (<a href="#extensions" title="Generic Extensions">Section 11</a>).</li><li>various utilities (<a href="#utilities" title="Utilities">Section 12</a>).</li></ul><p id="rfc.section.1.p.2">The full distribution is available at <<a href="http://greenbytes.de/tech/webdav/rfc2629xslt.zip">http://greenbytes.de/tech/webdav/rfc2629xslt.zip</a>>.</p><hr class="noprint"><h1 id="rfc.section.2" class="np"><a href="#rfc.section.2">2.</a> <a id="supported.elements" href="#supported.elements">Supported RFC2629 elements</a></h1><p id="rfc.section.2.p.1"><samp>rfc2629.xslt</samp> supports both all RFC2629 grammar elements and the extensions implemented in xml2rfc 1.36.</p><h2 id="rfc.section.2.1"><a href="#rfc.section.2.1">2.1</a> Extension elements</h2><p id="rfc.section.2.1.p.1"><samp>rfc2629.xslt</samp> supports two kind of extension elements, using different XML namespaces.</p><p id="rfc.section.2.1.p.2">The first set contains (hopefully) generally useful extensions, see <a href="#extensions" title="Generic Extensions">Section 11</a>.</p><p id="rfc.section.2.1.p.3">The second set is used for change and issue tracking and currently is not documented here. Please email the author in case you're interested in using these extensions.</p><hr class="noprint"><h1 id="rfc.section.3" class="np"><a href="#rfc.section.3">3.</a> <a id="processing.instructions" href="#processing.instructions">Processing Instructions</a></h1><p id="rfc.section.3.p.1">All PIs can be set as XSLT parameter as well, overriding any value that is found in the source file to be transformed.</p><div id="rfc.figure.u.1"></div><p>Using processing instructions:</p><pre class="text"><?rfc toc="yes"?> 375 372 <?rfc-ext support-rfc2731="no"?> 376 373 </pre><div id="rfc.figure.u.2"></div><p>Using XSLT parameters (Saxon):</p><pre class="text">java -cp saxon.jar com.icl.saxon.StyleSheet source.xml rfc2629.xslt \ … … 494 491 </pre><p id="rfc.section.12.5.p.3">In addition, artwork of a specific type can be extracted, such as with:</p><div id="rfc.figure.u.23"></div><pre class="text">saxon rfc3986.xml extract-artwork.xslt type=abnf 495 492 </pre><p id="rfc.section.12.5.p.5">When extracting by type, artwork elements with a specified name can be excluded; this can be handy when the document uses some kind of schema language, and an appendix contains the collected schema, repeating definitions from earlier on. Example:</p><div id="rfc.figure.u.24"></div><pre class="text">saxon rfc3986.xml extract-artwork.xslt type=abnf except-name=clschm 496 </pre><h2 id="rfc.section.12.6"><a href="#rfc.section.12.6">12.6</a> <a id="grddl" href="#grddl">GRRDL</a></h2><p id="rfc.section.12.6.p.1"><samp>rfc2629grddl.xslt</samp> extracts RDF information. This is experimental work-in-progress. See <<a href="http://www.w3.org/TR/grddl/">http://www.w3.org/TR/grddl/</a>> for more information.</p><h1 class="np" id="rfc.references"><a href="#rfc.section.13" id="rfc.section.13">13.</a> Informative References</h1><table><tr><td class="reference"><b id="BCP97">[BCP97]</b></td><td class="top"><a href="mailto:klensin+ietf@jck.com">Klensin, J.</a> and <a href="mailto:hartmans-ietf@mit.edu" title="MIT">S. Hartman</a>, “<a href="http://tools.ietf.org/html/rfc4897">Handling Normative References to Standards-Track Documents</a>”, BCP 97, RFC 4897, June 2007.</td></tr><tr><td class="reference"><b id="DC-HTML">[DC-HTML]</b></td><td class="top"><a href="mailto:pete.johnston@eduserv.org.uk" title="Eduserv Foundation">Johnston, P.</a> and <a href="mailto:andy.powell@eduserv.org.uk" title="Eduserv Foundation">A. Powell</a>, “<a href="http://dublincore.org/documents/2008/08/04/dc-html/">Expressing Dublin Core metadata using HTML/XHTML meta and link elements</a>”, Dublin Core Metadata Initiative, August 2008, <<a href="http://dublincore.org/documents/2008/08/04/dc-html/">http://dublincore.org/documents/2008/08/04/dc-html/</a>>.</td></tr><tr><td class="reference"><b id="HTML">[HTML]</b></td><td class="top"><a href="mailto:dsr@w3.org" title="W3C">Raggett, D.</a>, Hors, A., and I. Jacobs, “<a href="http://www.w3.org/TR/html401/">HTML 4.01 Specification</a>”, W3C REC-html401-19991224, December 1999, <<a href="http://www.w3.org/TR/html401/">http://www.w3.org/TR/html401/</a>>.</td></tr><tr><td class="reference"><b id="RFC2026">[RFC2026]</b></td><td class="top"><a href="mailto:sob@harvard.edu" title="Harvard University">Bradner, S.</a>, “<a href="http://tools.ietf.org/html/rfc2026">The Internet Standards Process -- Revision 3</a>”, BCP 9, RFC 2026, October 1996.</td></tr><tr><td class="reference"><b id="RFC2119">[RFC2119]</b></td><td class="top"><a href="mailto:sob@harvard.edu" title="Harvard University">Bradner, S.</a>, “<a href="http://tools.ietf.org/html/rfc2119">Key words for use in RFCs to Indicate Requirement Levels</a>”, BCP 14, RFC 2119, March 1997.</td></tr><tr><td class="reference"><b id="RFC2616">[RFC2616]</b></td><td class="top"><a href="mailto:fielding@ics.uci.edu" title="University of California, Irvine, Information and Computer Science">Fielding, R.</a>, <a href="mailto:jg@w3.org" title="World Wide Web Consortium, MIT Laboratory for Computer Science">Gettys, J.</a>, <a href="mailto:mogul@wrl.dec.com" title="Compaq Computer Corporation, Western Research Laboratory">Mogul, J.</a>, <a href="mailto:frystyk@w3.org" title="World Wide Web Consortium, MIT Laboratory for Computer Science">Nielsen, H.</a>, <a href="mailto:masinter@parc.xerox.com" title="Xerox Corporation">Masinter, L.</a>, <a href="mailto:paulle@microsoft.com" title="Microsoft Corporation">Leach, P.</a>, and <a href="mailto:timbl@w3.org" title="World Wide Web Consortium, MIT Laboratory for Computer Science">T. Berners-Lee</a>, “<a href="http://tools.ietf.org/html/rfc2616">Hypertext Transfer Protocol -- HTTP/1.1</a>”, RFC 2616, June 1999.</td></tr><tr><td class="reference"><b id="RFC2629">[RFC2629]</b></td><td class="top"><a href="mailto:mrose@not.invisible.net" title="Invisible Worlds, Inc.">Rose, M.</a>, “<a href="http://tools.ietf.org/html/rfc2629">Writing I-Ds and RFCs using XML</a>”, RFC 2629, June 1999.</td></tr><tr><td class="reference"><b id="RFC2648">[RFC2648]</b></td><td class="top"><a href="mailto:jayhawk@att.com" title="AT&T">Moats, R.</a>, “<a href="http://tools.ietf.org/html/rfc2648">A URN Namespace for IETF Documents</a>”, RFC 2648, August 1999.</td></tr><tr><td class="reference"><b id="RFC2731">[RFC2731]</b></td><td class="top"><a href="mailto:jak@ckm.ucsf.edu" title="University of California, San Francisco, Center for Knowledge Management">Kunze, J.</a>, “<a href="http://tools.ietf.org/html/rfc2731">Encoding Dublin Core Metadata in HTML</a>”, RFC 2731, December 1999.</td></tr><tr><td class="reference"><b id="RFC5234">[RFC5234]</b></td><td class="top"><a href="mailto:dcrocker@bbiw.net" title="Brandenburg InternetWorking">Crocker, D., Ed.</a> and <a href="mailto:paul.overell@thus.net" title="THUS plc.">P. Overell</a>, “<a href="http://tools.ietf.org/html/rfc5234">Augmented BNF for Syntax Specifications: ABNF</a>”, STD 68, RFC 5234, January 2008.</td></tr><tr><td class="reference"><b id="RFC5741">[RFC5741]</b></td><td class="top">Daigle, L. and O. Kolkman, “<a href="http://tools.ietf.org/html/rfc5741">RFC Streams, Headers, and Boilerplates</a>”, RFC 5741, December 2009.</td></tr><tr><td class="reference"><b id="RNC">[RNC]</b></td><td class="top"><a href="mailto:jjc@jclark.com">Clark, J.</a>, “<a href="http://www.oasis-open.org/committees/relax-ng/compact-20021121.html">RELAX NG Compact Syntax</a>”, OASIS, Nov 2002, <<a href="http://www.oasis-open.org/committees/relax-ng/compact-20021121.html">http://www.oasis-open.org/committees/relax-ng/compact-20021121.html</a>>.</td></tr><tr><td class="reference"><b id="XHTML2">[XHTML2]</b></td><td class="top">Axelsson, J., Birbeck, M., Dubinko, M., Epperson, B., Ishikawa, M., McCarron, S., Navarro, A., and S. Pemberton, “<a href="http://www.w3.org/TR/xhtml2">XHTML™ 2.0</a>”, W3C WD-xhtml2-20060726, July 2006, <<a href="http://www.w3.org/TR/xhtml2">http://www.w3.org/TR/xhtml2</a>>.</td></tr><tr><td class="reference"><b id="XML">[XML]</b></td><td class="top"><a href="mailto:tbray@textuality.com" title="Textuality and Netscape">Bray, T.</a>, <a href="mailto:jeanpa@microsoft.com" title="Microsoft">Paoli, J.</a>, <a href="mailto:cmsmcq@w3.org" title="W3C">Sperberg-McQueen, C.</a>, <a href="mailto:eve.maler@east.sun.com" title="Sun Microsystems">Maler, E.</a>, and F. Yergeau, “<a href="http://www.w3.org/TR/2008/REC-xml-20081126/">Extensible Markup Language (XML) 1.0 (Fifth Edition)</a>”, W3C REC-xml-20081126, November 2008, <<a href="http://www.w3.org/TR/2008/REC-xml-20081126/">http://www.w3.org/TR/2008/REC-xml-20081126/</a>>.</td></tr><tr><td class="reference"><b id="XSL-FO">[XSL-FO]</b></td><td class="top"><a href="mailto:alrb@us.ibm.com" title="IBM">Berglund, A.</a>, “<a href="http://www.w3.org/TR/2006/REC-xsl11-20061205/">Extensible Stylesheet Language (XSL) Version 1.1</a>”, W3C REC-xsl11-20061205, Dec 2006, <<a href="http://www.w3.org/TR/2006/REC-xsl11-20061205/">http://www.w3.org/TR/2006/REC-xsl11-20061205/</a>>.</td></tr></table><hr class="noprint"><div class="avoidbreak"><h1 id="rfc.authors" class="np"><a href="#rfc.authors">Author's Address</a></h1><address class="vcard"><span class="vcardline"><span class="fn">Julian F. Reschke</span><span class="n hidden"><span class="family-name">Reschke</span><span class="given-name">Julian F.</span></span></span><span class="org vcardline">greenbytes GmbH</span><span class="adr"><span class="street-address vcardline">Hafenweg 16</span><span class="vcardline"><span class="locality">Muenster</span>, <span class="region">NW</span> <span class="postal-code">48155</span></span><span class="country-name vcardline">Germany</span></span><span class="vcardline tel">Phone: <a href="tel:+492512807760"><span class="value">+49 251 2807760</span></a></span><span class="vcardline">EMail: <a href="mailto:julian.reschke@greenbytes.de"><span class="email">julian.reschke@greenbytes.de</span></a></span><span class="vcardline">URI: <a href="http://greenbytes.de/tech/webdav/" class="url">http://greenbytes.de/tech/webdav/</a></span></address></div><hr class="noprint"><div id="rfc.iref.g.3"></div><div id="rfc.iref.s.14"></div><div id="rfc.iref.r.24"></div><h1 id="rfc.section.A" class="np"><a href="#rfc.section.A">A.</a> <a id="grammar" href="#grammar">RELAX NG Compact Schema</a></h1><p id="rfc.section.A.p.1">The RelaxNG schema (<a href="#RNC" id="rfc.xref.RNC.1"><cite title="RELAX NG Compact Syntax">[RNC]</cite></a>) below can be used to validate input documents (for instance, with <a href="http://www.thaiopensource.com/relaxng/jing.html">Jing</a>).</p><p id="rfc.section.A.p.2"><em>Note that this is work in progress, and doesn't yet cover all extensions completely.</em> </p><div id="rfc.figure.u.25"></div><pre class="inline"><em># WORK IN PROGRESS! PLEASE REPORT PROBLEMS TO THE AUTHOR.</em>493 </pre><h2 id="rfc.section.12.6"><a href="#rfc.section.12.6">12.6</a> <a id="grddl" href="#grddl">GRRDL</a></h2><p id="rfc.section.12.6.p.1"><samp>rfc2629grddl.xslt</samp> extracts RDF information. This is experimental work-in-progress. See <<a href="http://www.w3.org/TR/grddl/">http://www.w3.org/TR/grddl/</a>> for more information.</p><h1 class="np" id="rfc.references"><a href="#rfc.section.13" id="rfc.section.13">13.</a> Informative References</h1><table><tr><td class="reference"><b id="BCP97">[BCP97]</b></td><td class="top"><a href="mailto:klensin+ietf@jck.com">Klensin, J.</a> and <a href="mailto:hartmans-ietf@mit.edu" title="MIT">S. Hartman</a>, “<a href="http://tools.ietf.org/html/rfc4897">Handling Normative References to Standards-Track Documents</a>”, BCP 97, RFC 4897, June 2007.</td></tr><tr><td class="reference"><b id="DC-HTML">[DC-HTML]</b></td><td class="top"><a href="mailto:pete.johnston@eduserv.org.uk" title="Eduserv Foundation">Johnston, P.</a> and <a href="mailto:andy.powell@eduserv.org.uk" title="Eduserv Foundation">A. Powell</a>, “<a href="http://dublincore.org/documents/2008/08/04/dc-html/">Expressing Dublin Core metadata using HTML/XHTML meta and link elements</a>”, Dublin Core Metadata Initiative, August 2008, <<a href="http://dublincore.org/documents/2008/08/04/dc-html/">http://dublincore.org/documents/2008/08/04/dc-html/</a>>.</td></tr><tr><td class="reference"><b id="HTML">[HTML]</b></td><td class="top"><a href="mailto:dsr@w3.org" title="W3C">Raggett, D.</a>, Hors, A., and I. Jacobs, “<a href="http://www.w3.org/TR/html401/">HTML 4.01 Specification</a>”, W3C REC-html401-19991224, December 1999, <<a href="http://www.w3.org/TR/html401/">http://www.w3.org/TR/html401/</a>>.</td></tr><tr><td class="reference"><b id="RFC2026">[RFC2026]</b></td><td class="top"><a href="mailto:sob@harvard.edu" title="Harvard University">Bradner, S.</a>, “<a href="http://tools.ietf.org/html/rfc2026">The Internet Standards Process -- Revision 3</a>”, BCP 9, RFC 2026, October 1996.</td></tr><tr><td class="reference"><b id="RFC2119">[RFC2119]</b></td><td class="top"><a href="mailto:sob@harvard.edu" title="Harvard University">Bradner, S.</a>, “<a href="http://tools.ietf.org/html/rfc2119">Key words for use in RFCs to Indicate Requirement Levels</a>”, BCP 14, RFC 2119, March 1997.</td></tr><tr><td class="reference"><b id="RFC2616">[RFC2616]</b></td><td class="top"><a href="mailto:fielding@ics.uci.edu" title="University of California, Irvine, Information and Computer Science">Fielding, R.</a>, <a href="mailto:jg@w3.org" title="World Wide Web Consortium, MIT Laboratory for Computer Science">Gettys, J.</a>, <a href="mailto:mogul@wrl.dec.com" title="Compaq Computer Corporation, Western Research Laboratory">Mogul, J.</a>, <a href="mailto:frystyk@w3.org" title="World Wide Web Consortium, MIT Laboratory for Computer Science">Nielsen, H.</a>, <a href="mailto:masinter@parc.xerox.com" title="Xerox Corporation">Masinter, L.</a>, <a href="mailto:paulle@microsoft.com" title="Microsoft Corporation">Leach, P.</a>, and <a href="mailto:timbl@w3.org" title="World Wide Web Consortium, MIT Laboratory for Computer Science">T. Berners-Lee</a>, “<a href="http://tools.ietf.org/html/rfc2616">Hypertext Transfer Protocol -- HTTP/1.1</a>”, RFC 2616, June 1999.</td></tr><tr><td class="reference"><b id="RFC2629">[RFC2629]</b></td><td class="top"><a href="mailto:mrose@not.invisible.net" title="Invisible Worlds, Inc.">Rose, M.</a>, “<a href="http://tools.ietf.org/html/rfc2629">Writing I-Ds and RFCs using XML</a>”, RFC 2629, June 1999.</td></tr><tr><td class="reference"><b id="RFC2648">[RFC2648]</b></td><td class="top"><a href="mailto:jayhawk@att.com" title="AT&T">Moats, R.</a>, “<a href="http://tools.ietf.org/html/rfc2648">A URN Namespace for IETF Documents</a>”, RFC 2648, August 1999.</td></tr><tr><td class="reference"><b id="RFC2731">[RFC2731]</b></td><td class="top"><a href="mailto:jak@ckm.ucsf.edu" title="University of California, San Francisco, Center for Knowledge Management">Kunze, J.</a>, “<a href="http://tools.ietf.org/html/rfc2731">Encoding Dublin Core Metadata in HTML</a>”, RFC 2731, December 1999.</td></tr><tr><td class="reference"><b id="RFC5234">[RFC5234]</b></td><td class="top"><a href="mailto:dcrocker@bbiw.net" title="Brandenburg InternetWorking">Crocker, D., Ed.</a> and <a href="mailto:paul.overell@thus.net" title="THUS plc.">P. Overell</a>, “<a href="http://tools.ietf.org/html/rfc5234">Augmented BNF for Syntax Specifications: ABNF</a>”, STD 68, RFC 5234, January 2008.</td></tr><tr><td class="reference"><b id="RFC5741">[RFC5741]</b></td><td class="top">Daigle, L. and O. Kolkman, “<a href="http://tools.ietf.org/html/rfc5741">RFC Streams, Headers, and Boilerplates</a>”, RFC 5741, December 2009.</td></tr><tr><td class="reference"><b id="RNC">[RNC]</b></td><td class="top"><a href="mailto:jjc@jclark.com">Clark, J.</a>, “<a href="http://www.oasis-open.org/committees/relax-ng/compact-20021121.html">RELAX NG Compact Syntax</a>”, OASIS, Nov 2002, <<a href="http://www.oasis-open.org/committees/relax-ng/compact-20021121.html">http://www.oasis-open.org/committees/relax-ng/compact-20021121.html</a>>.</td></tr><tr><td class="reference"><b id="XHTML2">[XHTML2]</b></td><td class="top">Axelsson, J., Birbeck, M., Dubinko, M., Epperson, B., Ishikawa, M., McCarron, S., Navarro, A., and S. Pemberton, “<a href="http://www.w3.org/TR/xhtml2">XHTML™ 2.0</a>”, W3C WD-xhtml2-20060726, July 2006, <<a href="http://www.w3.org/TR/xhtml2">http://www.w3.org/TR/xhtml2</a>>.</td></tr><tr><td class="reference"><b id="XML">[XML]</b></td><td class="top"><a href="mailto:tbray@textuality.com" title="Textuality and Netscape">Bray, T.</a>, <a href="mailto:jeanpa@microsoft.com" title="Microsoft">Paoli, J.</a>, <a href="mailto:cmsmcq@w3.org" title="W3C">Sperberg-McQueen, C.</a>, <a href="mailto:eve.maler@east.sun.com" title="Sun Microsystems">Maler, E.</a>, and F. Yergeau, “<a href="http://www.w3.org/TR/2008/REC-xml-20081126/">Extensible Markup Language (XML) 1.0 (Fifth Edition)</a>”, W3C REC-xml-20081126, November 2008, <<a href="http://www.w3.org/TR/2008/REC-xml-20081126/">http://www.w3.org/TR/2008/REC-xml-20081126/</a>>.</td></tr><tr><td class="reference"><b id="XSL-FO">[XSL-FO]</b></td><td class="top"><a href="mailto:alrb@us.ibm.com" title="IBM">Berglund, A.</a>, “<a href="http://www.w3.org/TR/2006/REC-xsl11-20061205/">Extensible Stylesheet Language (XSL) Version 1.1</a>”, W3C REC-xsl11-20061205, Dec 2006, <<a href="http://www.w3.org/TR/2006/REC-xsl11-20061205/">http://www.w3.org/TR/2006/REC-xsl11-20061205/</a>>.</td></tr></table><hr class="noprint"><div class="avoidbreak"><h1 id="rfc.authors" class="np"><a href="#rfc.authors">Author's Address</a></h1><address><span class="vcardline"><b>Julian F. Reschke</b></span><span class="vcardline">greenbytes GmbH</span><span class="vcardline">Hafenweg 16</span><span class="vcardline">Muenster, NW 48155</span><span class="vcardline">Germany</span><span class="vcardline">Phone: <a href="tel:+492512807760">+49 251 2807760</a></span><span class="vcardline">EMail: <a href="mailto:julian.reschke@greenbytes.de">julian.reschke@greenbytes.de</a></span><span class="vcardline">URI: <a href="http://greenbytes.de/tech/webdav/">http://greenbytes.de/tech/webdav/</a></span></address></div><hr class="noprint"><div id="rfc.iref.g.3"></div><div id="rfc.iref.s.14"></div><div id="rfc.iref.r.24"></div><h1 id="rfc.section.A" class="np"><a href="#rfc.section.A">A.</a> <a id="grammar" href="#grammar">RELAX NG Compact Schema</a></h1><p id="rfc.section.A.p.1">The RelaxNG schema (<a href="#RNC" id="rfc.xref.RNC.1"><cite title="RELAX NG Compact Syntax">[RNC]</cite></a>) below can be used to validate input documents (for instance, with <a href="http://www.thaiopensource.com/relaxng/jing.html">Jing</a>).</p><p id="rfc.section.A.p.2"><em>Note that this is work in progress, and doesn't yet cover all extensions completely.</em> </p><div id="rfc.figure.u.25"></div><pre class="inline"><em># WORK IN PROGRESS! PLEASE REPORT PROBLEMS TO THE AUTHOR.</em> 497 494 498 495 <em># Define our extension namespace</em> -
rfc2629xslt/rfc2629xslt.txt
r2333 r2365 4 4 RFC2629 through XSLT J. Reschke 5 5 greenbytes 6 July 27,20136 July 2013 7 7 8 8 -
rfc2629xslt/samples/rfc2629.xslt
r2301 r2365 848 848 <xsl:call-template name="check-no-text-content"/> 849 849 850 <address class="vcard">850 <address> 851 851 <span class="vcardline"> 852 <span class="fn"> 853 <xsl:value-of select="@fullname" /> 854 </span> 852 <b><xsl:value-of select="@fullname" /></b> 855 853 <xsl:if test="@role"> 856 854 (<xsl:value-of select="@role" />) … … 861 859 <i><xsl:value-of select="@x:annotation"/></i> 862 860 </xsl:if> 863 <!-- components of name (hidden from display -->864 <span class="n hidden">865 <span class="family-name"><xsl:value-of select="@surname"/></span>866 <!-- given-name family-name -->867 <xsl:if test="@surname=substring(@fullname,1 + string-length(@fullname) - string-length(@surname))">868 <span class="given-name"><xsl:value-of select="normalize-space(substring(@fullname,1,string-length(@fullname) - string-length(@surname)))"/></span>869 </xsl:if>870 <!-- family-name given-name -->871 <xsl:if test="starts-with(@fullname,@surname)">872 <span class="given-name"><xsl:value-of select="normalize-space(substring-after(@fullname,@surname))"/></span>873 </xsl:if>874 </span>875 861 </span> 876 862 <xsl:if test="normalize-space(organization) != ''"> 877 <span class=" orgvcardline">863 <span class="vcardline"> 878 864 <xsl:value-of select="organization" /> 879 865 </span> 880 866 </xsl:if> 881 867 <xsl:if test="address/postal"> 882 <span class="adr"> 883 <xsl:if test="address/postal/street"> 884 <xsl:for-each select="address/postal/street"> 885 <xsl:variable name="street"> 868 <xsl:if test="address/postal/street"> 869 <xsl:for-each select="address/postal/street"> 870 <xsl:variable name="street"> 871 <xsl:call-template name="extract-normalized"> 872 <xsl:with-param name="node" select="."/> 873 <xsl:with-param name="name" select="'street'"/> 874 </xsl:call-template> 875 </xsl:variable> 876 <xsl:if test="$street!=''"> 877 <span class="vcardline"> 878 <xsl:value-of select="$street"/> 879 </span> 880 </xsl:if> 881 </xsl:for-each> 882 </xsl:if> 883 <xsl:if test="address/postal/city|address/postal/region|address/postal/code"> 884 <span class="vcardline"> 885 <xsl:if test="address/postal/city"> 886 <xsl:variable name="city"> 886 887 <xsl:call-template name="extract-normalized"> 887 <xsl:with-param name="node" select=" ."/>888 <xsl:with-param name="name" select="' street'"/>888 <xsl:with-param name="node" select="address/postal/city"/> 889 <xsl:with-param name="name" select="'address/postal/city'"/> 889 890 </xsl:call-template> 890 891 </xsl:variable> 891 <xsl:if test="$street!=''"> 892 <span class="street-address vcardline"> 893 <xsl:value-of select="$street"/> 894 </span> 892 <xsl:if test="$city!=''"> 893 <xsl:value-of select="$city"/> 894 <xsl:text>, </xsl:text> 895 895 </xsl:if> 896 </xsl:for-each> 897 </xsl:if> 898 <xsl:if test="address/postal/city|address/postal/region|address/postal/code"> 896 </xsl:if> 897 <xsl:if test="address/postal/region"> 898 <xsl:variable name="region"> 899 <xsl:call-template name="extract-normalized"> 900 <xsl:with-param name="node" select="address/postal/region"/> 901 <xsl:with-param name="name" select="'address/postal/region'"/> 902 </xsl:call-template> 903 </xsl:variable> 904 <xsl:if test="$region!=''"> 905 <xsl:value-of select="$region"/> 906 <xsl:text> </xsl:text> 907 </xsl:if> 908 </xsl:if> 909 <xsl:if test="address/postal/code"> 910 <xsl:variable name="code"> 911 <xsl:call-template name="extract-normalized"> 912 <xsl:with-param name="node" select="address/postal/code"/> 913 <xsl:with-param name="name" select="'address/postal/code'"/> 914 </xsl:call-template> 915 </xsl:variable> 916 <xsl:if test="$code!=''"> 917 <xsl:value-of select="$code"/> 918 </xsl:if> 919 </xsl:if> 920 </span> 921 </xsl:if> 922 <xsl:if test="address/postal/country"> 923 <xsl:variable name="country"> 924 <xsl:call-template name="extract-normalized"> 925 <xsl:with-param name="node" select="address/postal/country"/> 926 <xsl:with-param name="name" select="'address/postal/country'"/> 927 </xsl:call-template> 928 </xsl:variable> 929 <xsl:if test="$country!=''"> 899 930 <span class="vcardline"> 900 <xsl:if test="address/postal/city"> 901 <xsl:variable name="city"> 902 <xsl:call-template name="extract-normalized"> 903 <xsl:with-param name="node" select="address/postal/city"/> 904 <xsl:with-param name="name" select="'address/postal/city'"/> 905 </xsl:call-template> 906 </xsl:variable> 907 <xsl:if test="$city!=''"> 908 <span class="locality"> 909 <xsl:value-of select="$city"/> 910 </span> 911 <xsl:text>, </xsl:text> 912 </xsl:if> 913 </xsl:if> 914 <xsl:if test="address/postal/region"> 915 <xsl:variable name="region"> 916 <xsl:call-template name="extract-normalized"> 917 <xsl:with-param name="node" select="address/postal/region"/> 918 <xsl:with-param name="name" select="'address/postal/region'"/> 919 </xsl:call-template> 920 </xsl:variable> 921 <xsl:if test="$region!=''"> 922 <span class="region"> 923 <xsl:value-of select="$region"/> 924 </span> 925 <xsl:text> </xsl:text> 926 </xsl:if> 927 </xsl:if> 928 <xsl:if test="address/postal/code"> 929 <xsl:variable name="code"> 930 <xsl:call-template name="extract-normalized"> 931 <xsl:with-param name="node" select="address/postal/code"/> 932 <xsl:with-param name="name" select="'address/postal/code'"/> 933 </xsl:call-template> 934 </xsl:variable> 935 <xsl:if test="$code!=''"> 936 <span class="postal-code"> 937 <xsl:value-of select="$code"/> 938 </span> 939 </xsl:if> 940 </xsl:if> 931 <xsl:value-of select="$country"/> 941 932 </span> 942 933 </xsl:if> 943 <xsl:if test="address/postal/country"> 944 <xsl:variable name="country"> 945 <xsl:call-template name="extract-normalized"> 946 <xsl:with-param name="node" select="address/postal/country"/> 947 <xsl:with-param name="name" select="'address/postal/country'"/> 948 </xsl:call-template> 949 </xsl:variable> 950 <xsl:if test="$country!=''"> 951 <span class="country-name vcardline"> 952 <xsl:value-of select="$country"/> 953 </span> 954 </xsl:if> 955 </xsl:if> 956 </span> 934 </xsl:if> 957 935 </xsl:if> 958 936 <xsl:if test="address/phone"> … … 964 942 </xsl:variable> 965 943 <xsl:if test="$phone!=''"> 966 <span class="vcardline tel">944 <span class="vcardline"> 967 945 <xsl:text>Phone: </xsl:text> 968 <a href="tel:{translate($phone,' ','')}">< span class="value"><xsl:value-of select="$phone" /></span></a>946 <a href="tel:{translate($phone,' ','')}"><xsl:value-of select="$phone" /></a> 969 947 </span> 970 948 </xsl:if> … … 978 956 </xsl:variable> 979 957 <xsl:if test="$facsimile!=''"> 980 <span class="vcardline tel">981 < span class="type">Fax</span><xsl:text>: </xsl:text>982 <a href="fax:{translate($facsimile,' ','')}">< span class="value"><xsl:value-of select="$facsimile" /></span></a>958 <span class="vcardline"> 959 <xsl:text>Fax: </xsl:text> 960 <a href="fax:{translate($facsimile,' ','')}"><xsl:value-of select="$facsimile" /></a> 983 961 </span> 984 962 </xsl:if> … … 998 976 <xsl:attribute name="href">mailto:<xsl:value-of select="$email" /></xsl:attribute> 999 977 </xsl:if> 1000 < span class="email"><xsl:value-of select="$email" /></span>978 <xsl:value-of select="$email" /> 1001 979 </a> 1002 980 </span> … … 1009 987 <span class="vcardline"> 1010 988 <xsl:text>URI: </xsl:text> 1011 <a href="{$uri}" class="url"><xsl:value-of select="$uri" /></a>989 <a href="{$uri}"><xsl:value-of select="$uri" /></a> 1012 990 <xsl:if test="@x:annotation"> 1013 991 <xsl:text> </xsl:text> … … 1958 1936 <html lang="{$lang}"> 1959 1937 <head> 1960 <xsl:attribute name="profile"> 1961 <xsl:text>http://www.w3.org/2006/03/hcard</xsl:text> 1962 <xsl:if test="$xml2rfc-ext-support-rfc2731!='no'"> 1963 <xsl:text> </xsl:text> 1964 <xsl:text>http://dublincore.org/documents/2008/08/04/dc-html/</xsl:text> 1965 </xsl:if> 1966 </xsl:attribute> 1938 <xsl:if test="$xml2rfc-ext-support-rfc2731!='no'"> 1939 <xsl:attribute name="profile">http://dublincore.org/documents/2008/08/04/dc-html/</xsl:attribute> 1940 </xsl:if> 1967 1941 <title> 1968 1942 <xsl:apply-templates select="front/title" mode="get-text-content" /> … … 3794 3768 .fn { 3795 3769 font-weight: bold; 3796 }3797 .hidden {3798 display: none;3799 3770 } 3800 3771 .left { … … 6712 6683 <xsl:text>http://greenbytes.de/tech/webdav/rfc2629.xslt, </xsl:text> 6713 6684 <!-- when RCS keyword substitution in place, add version info --> 6714 <xsl:if test="contains('$Revision: 1.59 8$',':')">6715 <xsl:value-of select="concat('Revision ',normalize-space(translate(substring-after('$Revision: 1.59 8$', 'Revision: '),'$','')),', ')" />6685 <xsl:if test="contains('$Revision: 1.599 $',':')"> 6686 <xsl:value-of select="concat('Revision ',normalize-space(translate(substring-after('$Revision: 1.599 $', 'Revision: '),'$','')),', ')" /> 6716 6687 </xsl:if> 6717 <xsl:if test="contains('$Date: 2013/0 6/23 14:11:10$',':')">6718 <xsl:value-of select="concat(normalize-space(translate(substring-after('$Date: 2013/0 6/23 14:11:10$', 'Date: '),'$','')),', ')" />6688 <xsl:if test="contains('$Date: 2013/08/29 10:34:28 $',':')"> 6689 <xsl:value-of select="concat(normalize-space(translate(substring-after('$Date: 2013/08/29 10:34:28 $', 'Date: '),'$','')),', ')" /> 6719 6690 </xsl:if> 6720 6691 <xsl:value-of select="concat('XSLT vendor: ',system-property('xsl:vendor'),' ',system-property('xsl:vendor-url'))" /> -
rfc2629xslt/samples/sample.ipr.id.noDerivativesTrust200902.200909.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>Example for @ipr="noDerivativesTrust200902" as of September 2009</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 353 350 <a href="#rfc.authors">Author's Address</a> 354 351 </h1> 355 <address class="vcard">352 <address> 356 353 <span class="vcardline"> 357 <span class="fn">John Doe</span> 358 <span class="n hidden"> 359 <span class="family-name">Doe</span> 360 <span class="given-name">John</span> 361 </span> 354 <b>John Doe</b> 362 355 </span> 363 356 </address> -
rfc2629xslt/samples/sample.ipr.id.noModification3978.200606.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>Example for @ipr="noModification3978" as of June 2006</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 353 350 <a href="#rfc.authors">Author's Address</a> 354 351 </h1> 355 <address class="vcard">352 <address> 356 353 <span class="vcardline"> 357 <span class="fn">John Doe</span> 358 <span class="n hidden"> 359 <span class="family-name">Doe</span> 360 <span class="given-name">John</span> 361 </span> 354 <b>John Doe</b> 362 355 </span> 363 356 </address> -
rfc2629xslt/samples/sample.ipr.id.noModificationTrust200902.200909.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>Example for @ipr="noModificationTrust200902" as of September 2009</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 353 350 <a href="#rfc.authors">Author's Address</a> 354 351 </h1> 355 <address class="vcard">352 <address> 356 353 <span class="vcardline"> 357 <span class="fn">John Doe</span> 358 <span class="n hidden"> 359 <span class="family-name">Doe</span> 360 <span class="given-name">John</span> 361 </span> 354 <b>John Doe</b> 362 355 </span> 363 356 </address> -
rfc2629xslt/samples/sample.ipr.id.pre5378Trust200902.200909.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>Example for @ipr="pre5378Trust200902" as of September 2009</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 353 350 <a href="#rfc.authors">Author's Address</a> 354 351 </h1> 355 <address class="vcard">352 <address> 356 353 <span class="vcardline"> 357 <span class="fn">John Doe</span> 358 <span class="n hidden"> 359 <span class="family-name">Doe</span> 360 <span class="given-name">John</span> 361 </span> 354 <b>John Doe</b> 362 355 </span> 363 356 </address> -
rfc2629xslt/samples/sample.ipr.id.pre5378Trust200902.200912.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>Example for @ipr="pre5378Trust200902" as of December 2009</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 354 351 <a href="#rfc.authors">Author's Address</a> 355 352 </h1> 356 <address class="vcard">353 <address> 357 354 <span class="vcardline"> 358 <span class="fn">John Doe</span> 359 <span class="n hidden"> 360 <span class="family-name">Doe</span> 361 <span class="given-name">John</span> 362 </span> 355 <b>John Doe</b> 363 356 </span> 364 357 </address> -
rfc2629xslt/samples/sample.ipr.id.pre5378Trust200902.201011.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>Example for @ipr="pre5378Trust200902" as of November 2010</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 352 349 <a href="#rfc.authors">Author's Address</a> 353 350 </h1> 354 <address class="vcard">351 <address> 355 352 <span class="vcardline"> 356 <span class="fn">John Doe</span> 357 <span class="n hidden"> 358 <span class="family-name">Doe</span> 359 <span class="given-name">John</span> 360 </span> 353 <b>John Doe</b> 361 354 </span> 362 355 </address> -
rfc2629xslt/samples/sample.ipr.id.trust200902.200909.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>Example for @ipr="trust200902" as of September 2009</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 353 350 <a href="#rfc.authors">Author's Address</a> 354 351 </h1> 355 <address class="vcard">352 <address> 356 353 <span class="vcardline"> 357 <span class="fn">John Doe</span> 358 <span class="n hidden"> 359 <span class="family-name">Doe</span> 360 <span class="given-name">John</span> 361 </span> 354 <b>John Doe</b> 362 355 </span> 363 356 </address> -
rfc2629xslt/samples/sample.ipr.id.trust200902.200911.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>Example for @ipr="trust200902" as of November 2009</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 353 350 <a href="#rfc.authors">Author's Address</a> 354 351 </h1> 355 <address class="vcard">352 <address> 356 353 <span class="vcardline"> 357 <span class="fn">John Doe</span> 358 <span class="n hidden"> 359 <span class="family-name">Doe</span> 360 <span class="given-name">John</span> 361 </span> 354 <b>John Doe</b> 362 355 </span> 363 356 </address> -
rfc2629xslt/samples/sample.ipr.id.trust200902.201006.iab.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>Example for @ipr="trust200902"/@submissionType="IAB" as of June 2010</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 351 348 <a href="#rfc.authors">Author's Address</a> 352 349 </h1> 353 <address class="vcard">350 <address> 354 351 <span class="vcardline"> 355 <span class="fn">John Doe</span> 356 <span class="n hidden"> 357 <span class="family-name">Doe</span> 358 <span class="given-name">John</span> 359 </span> 352 <b>John Doe</b> 360 353 </span> 361 354 </address> -
rfc2629xslt/samples/sample.ipr.id.trust200902.201006.ietf.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>Example for @ipr="trust200902"/@submissionType="IETF" as of June 2010</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 351 348 <a href="#rfc.authors">Author's Address</a> 352 349 </h1> 353 <address class="vcard">350 <address> 354 351 <span class="vcardline"> 355 <span class="fn">John Doe</span> 356 <span class="n hidden"> 357 <span class="family-name">Doe</span> 358 <span class="given-name">John</span> 359 </span> 352 <b>John Doe</b> 360 353 </span> 361 354 </address> -
rfc2629xslt/samples/sample.ipr.id.trust200902.201006.ind.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>Example for @ipr="trust200902"/@submissionType="independent" as of June 2010</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 351 348 <a href="#rfc.authors">Author's Address</a> 352 349 </h1> 353 <address class="vcard">350 <address> 354 351 <span class="vcardline"> 355 <span class="fn">John Doe</span> 356 <span class="n hidden"> 357 <span class="family-name">Doe</span> 358 <span class="given-name">John</span> 359 </span> 352 <b>John Doe</b> 360 353 </span> 361 354 </address> -
rfc2629xslt/samples/sample.ipr.id.trust200902.201006.irtf.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>Example for @ipr="trust200902"/@submissionType="IRTF" as of June 2010</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 351 348 <a href="#rfc.authors">Author's Address</a> 352 349 </h1> 353 <address class="vcard">350 <address> 354 351 <span class="vcardline"> 355 <span class="fn">John Doe</span> 356 <span class="n hidden"> 357 <span class="family-name">Doe</span> 358 <span class="given-name">John</span> 359 </span> 352 <b>John Doe</b> 360 353 </span> 361 354 </address> -
rfc2629xslt/samples/sample.ipr.id.trust200902.201006.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>Example for @ipr="trust200902" as of June 2010</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 351 348 <a href="#rfc.authors">Author's Address</a> 352 349 </h1> 353 <address class="vcard">350 <address> 354 351 <span class="vcardline"> 355 <span class="fn">John Doe</span> 356 <span class="n hidden"> 357 <span class="family-name">Doe</span> 358 <span class="given-name">John</span> 359 </span> 352 <b>John Doe</b> 360 353 </span> 361 354 </address> -
rfc2629xslt/samples/sample.ipr.rfc.200201.iprnotified.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>Default RFC IPR (w. iprnotified PI set to yes) as of January 2002</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 345 342 <a href="#rfc.authors">Author's Address</a> 346 343 </h1> 347 <address class="vcard">344 <address> 348 345 <span class="vcardline"> 349 <span class="fn">John Doe</span> 350 <span class="n hidden"> 351 <span class="family-name">Doe</span> 352 <span class="given-name">John</span> 353 </span> 346 <b>John Doe</b> 354 347 </span> 355 348 </address> -
rfc2629xslt/samples/sample.ipr.rfc.200201.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>Default RFC IPR as of January 2002</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 345 342 <a href="#rfc.authors">Author's Address</a> 346 343 </h1> 347 <address class="vcard">344 <address> 348 345 <span class="vcardline"> 349 <span class="fn">John Doe</span> 350 <span class="n hidden"> 351 <span class="family-name">Doe</span> 352 <span class="given-name">John</span> 353 </span> 346 <b>John Doe</b> 354 347 </span> 355 348 </address> -
rfc2629xslt/samples/sample.ipr.rfc.200609.ind.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>Default RFC IPR/@submissionType="independent" as of September 2006</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 345 342 <a href="#rfc.authors">Author's Address</a> 346 343 </h1> 347 <address class="vcard">344 <address> 348 345 <span class="vcardline"> 349 <span class="fn">John Doe</span> 350 <span class="n hidden"> 351 <span class="family-name">Doe</span> 352 <span class="given-name">John</span> 353 </span> 346 <b>John Doe</b> 354 347 </span> 355 348 </address> -
rfc2629xslt/samples/sample.ipr.rfc.200609.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>Default RFC IPR as of September 2006</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 349 346 <a href="#rfc.authors">Author's Address</a> 350 347 </h1> 351 <address class="vcard">348 <address> 352 349 <span class="vcardline"> 353 <span class="fn">John Doe</span> 354 <span class="n hidden"> 355 <span class="family-name">Doe</span> 356 <span class="given-name">John</span> 357 </span> 350 <b>John Doe</b> 358 351 </span> 359 352 </address> -
rfc2629xslt/samples/sample.ipr.rfc.200808.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>Default RFC IPR as of August 2008</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 341 338 <a href="#rfc.authors">Author's Address</a> 342 339 </h1> 343 <address class="vcard">340 <address> 344 341 <span class="vcardline"> 345 <span class="fn">John Doe</span> 346 <span class="n hidden"> 347 <span class="family-name">Doe</span> 348 <span class="given-name">John</span> 349 </span> 342 <b>John Doe</b> 350 343 </span> 351 344 </address> -
rfc2629xslt/samples/sample.ipr.rfc.200812.nomod.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>RFC IPR with ipr="noModificationTrust200811" as of December 2008</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 347 344 <a href="#rfc.authors">Author's Address</a> 348 345 </h1> 349 <address class="vcard">346 <address> 350 347 <span class="vcardline"> 351 <span class="fn">John Doe</span> 352 <span class="n hidden"> 353 <span class="family-name">Doe</span> 354 <span class="given-name">John</span> 355 </span> 348 <b>John Doe</b> 356 349 </span> 357 350 </address> -
rfc2629xslt/samples/sample.ipr.rfc.200812.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>Default RFC IPR as of December 2008</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 346 343 <a href="#rfc.authors">Author's Address</a> 347 344 </h1> 348 <address class="vcard">345 <address> 349 346 <span class="vcardline"> 350 <span class="fn">John Doe</span> 351 <span class="n hidden"> 352 <span class="family-name">Doe</span> 353 <span class="given-name">John</span> 354 </span> 347 <b>John Doe</b> 355 348 </span> 356 349 </address> -
rfc2629xslt/samples/sample.ipr.rfc.200906.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>Default RFC IPR as of June 2009</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 346 343 <a href="#rfc.authors">Author's Address</a> 347 344 </h1> 348 <address class="vcard">345 <address> 349 346 <span class="vcardline"> 350 <span class="fn">John Doe</span> 351 <span class="n hidden"> 352 <span class="family-name">Doe</span> 353 <span class="given-name">John</span> 354 </span> 347 <b>John Doe</b> 355 348 </span> 356 349 </address> -
rfc2629xslt/samples/sample.ipr.rfc.200907.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>Default RFC IPR as of July 2009</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 346 343 <a href="#rfc.authors">Author's Address</a> 347 344 </h1> 348 <address class="vcard">345 <address> 349 346 <span class="vcardline"> 350 <span class="fn">John Doe</span> 351 <span class="n hidden"> 352 <span class="family-name">Doe</span> 353 <span class="given-name">John</span> 354 </span> 347 <b>John Doe</b> 355 348 </span> 356 349 </address> -
rfc2629xslt/samples/sample.ipr.rfc.200909.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>Default RFC IPR as of September 2009</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 346 343 <a href="#rfc.authors">Author's Address</a> 347 344 </h1> 348 <address class="vcard">345 <address> 349 346 <span class="vcardline"> 350 <span class="fn">John Doe</span> 351 <span class="n hidden"> 352 <span class="family-name">Doe</span> 353 <span class="given-name">John</span> 354 </span> 347 <b>John Doe</b> 355 348 </span> 356 349 </address> -
rfc2629xslt/samples/sample.ipr.rfc.200912.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>Default RFC IPR as of December 2009</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 350 347 <a href="#rfc.authors">Author's Address</a> 351 348 </h1> 352 <address class="vcard">349 <address> 353 350 <span class="vcardline"> 354 <span class="fn">John Doe</span> 355 <span class="n hidden"> 356 <span class="family-name">Doe</span> 357 <span class="given-name">John</span> 358 </span> 351 <b>John Doe</b> 359 352 </span> 360 353 </address> -
rfc2629xslt/samples/sample.ipr.rfc.201001.ietf.bcp.c.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>IETF Best Current Practice w/ consensus</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 352 349 <a href="#rfc.authors">Author's Address</a> 353 350 </h1> 354 <address class="vcard">351 <address> 355 352 <span class="vcardline"> 356 <span class="fn">John Doe</span> 357 <span class="n hidden"> 358 <span class="family-name">Doe</span> 359 <span class="given-name">John</span> 360 </span> 353 <b>John Doe</b> 361 354 </span> 362 355 </address> -
rfc2629xslt/samples/sample.ipr.rfc.201001.ietf.exp.c.nomod.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>IETF Experimental w/ consensus and ipr="noModificationTrust200902"</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 353 350 <a href="#rfc.authors">Author's Address</a> 354 351 </h1> 355 <address class="vcard">352 <address> 356 353 <span class="vcardline"> 357 <span class="fn">John Doe</span> 358 <span class="n hidden"> 359 <span class="family-name">Doe</span> 360 <span class="given-name">John</span> 361 </span> 354 <b>John Doe</b> 362 355 </span> 363 356 </address> -
rfc2629xslt/samples/sample.ipr.rfc.201001.ietf.exp.c.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>IETF Experimental w/ consensus</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 352 349 <a href="#rfc.authors">Author's Address</a> 353 350 </h1> 354 <address class="vcard">351 <address> 355 352 <span class="vcardline"> 356 <span class="fn">John Doe</span> 357 <span class="n hidden"> 358 <span class="family-name">Doe</span> 359 <span class="given-name">John</span> 360 </span> 353 <b>John Doe</b> 361 354 </span> 362 355 </address> -
rfc2629xslt/samples/sample.ipr.rfc.201001.ietf.exp.nc.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>IETF Experimental w/o consensus</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 352 349 <a href="#rfc.authors">Author's Address</a> 353 350 </h1> 354 <address class="vcard">351 <address> 355 352 <span class="vcardline"> 356 <span class="fn">John Doe</span> 357 <span class="n hidden"> 358 <span class="family-name">Doe</span> 359 <span class="given-name">John</span> 360 </span> 353 <b>John Doe</b> 361 354 </span> 362 355 </address> -
rfc2629xslt/samples/sample.ipr.rfc.201001.ietf.hist.c.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>IETF Historic w/ consensus</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 352 349 <a href="#rfc.authors">Author's Address</a> 353 350 </h1> 354 <address class="vcard">351 <address> 355 352 <span class="vcardline"> 356 <span class="fn">John Doe</span> 357 <span class="n hidden"> 358 <span class="family-name">Doe</span> 359 <span class="given-name">John</span> 360 </span> 353 <b>John Doe</b> 361 354 </span> 362 355 </address> -
rfc2629xslt/samples/sample.ipr.rfc.201001.ietf.hist.nc.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>IETF Historic w/o consensus</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 352 349 <a href="#rfc.authors">Author's Address</a> 353 350 </h1> 354 <address class="vcard">351 <address> 355 352 <span class="vcardline"> 356 <span class="fn">John Doe</span> 357 <span class="n hidden"> 358 <span class="family-name">Doe</span> 359 <span class="given-name">John</span> 360 </span> 353 <b>John Doe</b> 361 354 </span> 362 355 </address> -
rfc2629xslt/samples/sample.ipr.rfc.201001.ietf.inf.c.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>IETF Informational w/ consensus</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 352 349 <a href="#rfc.authors">Author's Address</a> 353 350 </h1> 354 <address class="vcard">351 <address> 355 352 <span class="vcardline"> 356 <span class="fn">John Doe</span> 357 <span class="n hidden"> 358 <span class="family-name">Doe</span> 359 <span class="given-name">John</span> 360 </span> 353 <b>John Doe</b> 361 354 </span> 362 355 </address> -
rfc2629xslt/samples/sample.ipr.rfc.201001.ietf.inf.nc.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>IETF Informational w/o consensus</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 352 349 <a href="#rfc.authors">Author's Address</a> 353 350 </h1> 354 <address class="vcard">351 <address> 355 352 <span class="vcardline"> 356 <span class="fn">John Doe</span> 357 <span class="n hidden"> 358 <span class="family-name">Doe</span> 359 <span class="given-name">John</span> 360 </span> 353 <b>John Doe</b> 361 354 </span> 362 355 </address> -
rfc2629xslt/samples/sample.ipr.rfc.201001.ietf.std.c.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>IETF Standards Track w/ consensus</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 352 349 <a href="#rfc.authors">Author's Address</a> 353 350 </h1> 354 <address class="vcard">351 <address> 355 352 <span class="vcardline"> 356 <span class="fn">John Doe</span> 357 <span class="n hidden"> 358 <span class="family-name">Doe</span> 359 <span class="given-name">John</span> 360 </span> 353 <b>John Doe</b> 361 354 </span> 362 355 </address> -
rfc2629xslt/samples/sample.ipr.rfc.201001.ind.exp.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>Independent Submission Experimental</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 352 349 <a href="#rfc.authors">Author's Address</a> 353 350 </h1> 354 <address class="vcard">351 <address> 355 352 <span class="vcardline"> 356 <span class="fn">John Doe</span> 357 <span class="n hidden"> 358 <span class="family-name">Doe</span> 359 <span class="given-name">John</span> 360 </span> 353 <b>John Doe</b> 361 354 </span> 362 355 </address> -
rfc2629xslt/samples/sample.ipr.rfc.201001.ind.hist.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>Independent Submission Historic</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 352 349 <a href="#rfc.authors">Author's Address</a> 353 350 </h1> 354 <address class="vcard">351 <address> 355 352 <span class="vcardline"> 356 <span class="fn">John Doe</span> 357 <span class="n hidden"> 358 <span class="family-name">Doe</span> 359 <span class="given-name">John</span> 360 </span> 353 <b>John Doe</b> 361 354 </span> 362 355 </address> -
rfc2629xslt/samples/sample.ipr.rfc.201001.ind.inf.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>Independent Submission Informational</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 352 349 <a href="#rfc.authors">Author's Address</a> 353 350 </h1> 354 <address class="vcard">351 <address> 355 352 <span class="vcardline"> 356 <span class="fn">John Doe</span> 357 <span class="n hidden"> 358 <span class="family-name">Doe</span> 359 <span class="given-name">John</span> 360 </span> 353 <b>John Doe</b> 361 354 </span> 362 355 </address> -
rfc2629xslt/samples/sample.ipr.rfc.201001.irtf.exp.c.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>IRTF Experimental w/ RG consensus</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 352 349 <a href="#rfc.authors">Author's Address</a> 353 350 </h1> 354 <address class="vcard">351 <address> 355 352 <span class="vcardline"> 356 <span class="fn">John Doe</span> 357 <span class="n hidden"> 358 <span class="family-name">Doe</span> 359 <span class="given-name">John</span> 360 </span> 353 <b>John Doe</b> 361 354 </span> 362 355 </address> -
rfc2629xslt/samples/sample.ipr.rfc.201001.irtf.exp.nc.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>IRTF Experimental w/o RG consensus</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 352 349 <a href="#rfc.authors">Author's Address</a> 353 350 </h1> 354 <address class="vcard">351 <address> 355 352 <span class="vcardline"> 356 <span class="fn">John Doe</span> 357 <span class="n hidden"> 358 <span class="family-name">Doe</span> 359 <span class="given-name">John</span> 360 </span> 353 <b>John Doe</b> 361 354 </span> 362 355 </address> -
rfc2629xslt/samples/sample.ipr.rfc.201001.irtf.exp.norg.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>IRTF Experimental (no RG)</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 352 349 <a href="#rfc.authors">Author's Address</a> 353 350 </h1> 354 <address class="vcard">351 <address> 355 352 <span class="vcardline"> 356 <span class="fn">John Doe</span> 357 <span class="n hidden"> 358 <span class="family-name">Doe</span> 359 <span class="given-name">John</span> 360 </span> 353 <b>John Doe</b> 361 354 </span> 362 355 </address> -
rfc2629xslt/samples/sample.ipr.rfc.201001.irtf.hist.c.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>IRTF Historic w/ RG consensus</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 352 349 <a href="#rfc.authors">Author's Address</a> 353 350 </h1> 354 <address class="vcard">351 <address> 355 352 <span class="vcardline"> 356 <span class="fn">John Doe</span> 357 <span class="n hidden"> 358 <span class="family-name">Doe</span> 359 <span class="given-name">John</span> 360 </span> 353 <b>John Doe</b> 361 354 </span> 362 355 </address> -
rfc2629xslt/samples/sample.ipr.rfc.201001.irtf.hist.nc.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>IRTF Historic w/o RG consensus</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 352 349 <a href="#rfc.authors">Author's Address</a> 353 350 </h1> 354 <address class="vcard">351 <address> 355 352 <span class="vcardline"> 356 <span class="fn">John Doe</span> 357 <span class="n hidden"> 358 <span class="family-name">Doe</span> 359 <span class="given-name">John</span> 360 </span> 353 <b>John Doe</b> 361 354 </span> 362 355 </address> -
rfc2629xslt/samples/sample.ipr.rfc.201001.irtf.hist.norg.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>IRTF Historic (No RG)</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 352 349 <a href="#rfc.authors">Author's Address</a> 353 350 </h1> 354 <address class="vcard">351 <address> 355 352 <span class="vcardline"> 356 <span class="fn">John Doe</span> 357 <span class="n hidden"> 358 <span class="family-name">Doe</span> 359 <span class="given-name">John</span> 360 </span> 353 <b>John Doe</b> 361 354 </span> 362 355 </address> -
rfc2629xslt/samples/sample.ipr.rfc.201001.irtf.inf.c.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>IRTF Informational w/ RG consensus</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 352 349 <a href="#rfc.authors">Author's Address</a> 353 350 </h1> 354 <address class="vcard">351 <address> 355 352 <span class="vcardline"> 356 <span class="fn">John Doe</span> 357 <span class="n hidden"> 358 <span class="family-name">Doe</span> 359 <span class="given-name">John</span> 360 </span> 353 <b>John Doe</b> 361 354 </span> 362 355 </address> -
rfc2629xslt/samples/sample.ipr.rfc.201001.irtf.inf.nc.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>IRTF Informational w/o RG consensus</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 352 349 <a href="#rfc.authors">Author's Address</a> 353 350 </h1> 354 <address class="vcard">351 <address> 355 352 <span class="vcardline"> 356 <span class="fn">John Doe</span> 357 <span class="n hidden"> 358 <span class="family-name">Doe</span> 359 <span class="given-name">John</span> 360 </span> 353 <b>John Doe</b> 361 354 </span> 362 355 </address> -
rfc2629xslt/samples/sample.ipr.rfc.201001.irtf.inf.norg.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>IRTF Informational (No RG)</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 352 349 <a href="#rfc.authors">Author's Address</a> 353 350 </h1> 354 <address class="vcard">351 <address> 355 352 <span class="vcardline"> 356 <span class="fn">John Doe</span> 357 <span class="n hidden"> 358 <span class="family-name">Doe</span> 359 <span class="given-name">John</span> 360 </span> 353 <b>John Doe</b> 361 354 </span> 362 355 </address> -
rfc2629xslt/samples/sample.ipr.rfc.pre5378Trust200902.200912.test.xhtml
r2272 r2365 4 4 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 6 <head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">6 <head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 7 7 <title>pre5378Trust200902 RFC IPR as of December 2009</title> 8 8 <style type="text/css" title="Xml2Rfc (sans serif)"> … … 197 197 .fn { 198 198 font-weight: bold; 199 }200 .hidden {201 display: none;202 199 } 203 200 .left { … … 347 344 <a href="#rfc.authors">Author's Address</a> 348 345 </h1> 349 <address class="vcard">346 <address> 350 347 <span class="vcardline"> 351 <span class="fn">John Doe</span> 352 <span class="n hidden"> 353 <span class="family-name">Doe</span> 354 <span class="given-name">John</span> 355 </span> 348 <b>John Doe</b> 356 349 </span> 357 350 </address> -
rfc2629xslt/testcase.html
r2301 r2365 2 2 <!DOCTYPE html 3 3 PUBLIC "-//W3C//DTD HTML 4.01//EN"> 4 <html lang="en"><head profile="http:// www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">4 <html lang="en"><head profile="http://dublincore.org/documents/2008/08/04/dc-html/"> 5 5 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 6 6 <title>Test cases for RFC2629 formatting</title><style type="text/css" title="Xml2Rfc (sans serif)"> … … 289 289 .fn { 290 290 font-weight: bold; 291 }292 .hidden {293 display: none;294 291 } 295 292 .left { … … 385 382 } 386 383 } 387 </style><link rel="Contents" href="#rfc.toc"><link rel="Author" href="#rfc.authors"><link rel="Index" href="#rfc.index"><link rel="Chapter" title="1 Lists" href="#rfc.section.1"><link rel="Chapter" title="2 spanx" href="#rfc.section.2"><link rel="Chapter" title="3 Tables" href="#rfc.section.3"><link rel="Chapter" title="4 Figures" href="#rfc.section.4"><link rel="Chapter" title="5 References" href="#rfc.section.5"><link rel="Chapter" title="6 Paragraph formatting" href="#rfc.section.6"><link rel="Chapter" title="7 Sections" href="#rfc.section.7"><link rel="Chapter" title="8 Comments" href="#rfc.section.8"><link rel="Chapter" title="9 Artwork Width" href="#rfc.section.9"><link rel="Chapter" title="10 Extensions" href="#rfc.section.10"><link rel="Chapter" title="11 Blank Lines" href="#rfc.section.11"><link rel="Chapter" title="12 Other" href="#rfc.section.12"><link rel="Chapter" href="#rfc.section.13" title="13 References"><meta name="generator" content="http://greenbytes.de/tech/webdav/rfc2629.xslt, Revision 1.59 8, 2013/06/23 14:11:10, XSLT vendor: SAXON 6.5.5 from Michael Kay http://saxon.sf.net/"><meta name="keywords" content="RFC2629, test case, xml2rfc"><link rel="schema.dct" href="http://purl.org/dc/terms/"><meta name="dct.creator" content="Reschke, J. F."></head><body><table class="header"><tbody><tr><td class="left">RFC2629 test cases</td><td class="right">J. F. Reschke</td></tr><tr><td class="left"></td><td class="right">greenbytes</td></tr><tr><td class="left"></td><td class="right">May 2013</td></tr></tbody></table><p class="title">Test cases for RFC2629 formatting</p><hr class="noprint"><h1 class="np" id="rfc.toc"><a href="#rfc.toc">Table of Contents</a></h1><ul class="toc"><li><a href="#rfc.section.1">1.</a> <a href="#lists">Lists</a><ul><li><a href="#rfc.section.1.1">1.1</a> <a href="#rfc.section.1.1">hanging list</a></li><li><a href="#rfc.section.1.2">1.2</a> <a href="#ordered.list.numbers">numbered list</a></li><li><a href="#rfc.section.1.3">1.3</a> <a href="#ordered.list.letters">ordered list (letters)</a></li><li><a href="#rfc.section.1.4">1.4</a> <a href="#rfc.section.1.4">no explicit counters</a></li><li><a href="#rfc.section.1.5">1.5</a> <a href="#rfc.section.1.5">with explicit counters</a></li><li><a href="#rfc.section.1.6">1.6</a> <a href="#rfc.section.1.6">Nested list</a></li><li><a href="#rfc.section.1.7">1.7</a> <a href="#rfc.section.1.7">list without style</a></li><li><a href="#rfc.section.1.8">1.8</a> <a href="#rfc.section.1.8">list with multiple paragraphs in a single list item</a></li></ul></li><li><a href="#rfc.section.2">2.</a> <a href="#rfc.section.2">spanx</a></li><li><a href="#rfc.section.3">3.</a> <a href="#rfc.section.3">Tables</a><ul><li><a href="#rfc.section.3.1">3.1</a> <a href="#rfc.section.3.1">no borders</a></li><li><a href="#rfc.section.3.2">3.2</a> <a href="#rfc.section.3.2">borders around headers</a></li><li><a href="#rfc.section.3.3">3.3</a> <a href="#rfc.section.3.3">example from xml2rc README</a></li><li><a href="#rfc.section.3.4">3.4</a> <a href="#rfc.section.3.4">no column titles</a></li><li><a href="#rfc.section.3.5">3.5</a> <a href="#rfc.section.3.5">referencing tables</a></li><li><a href="#rfc.section.3.6">3.6</a> <a href="#rfc.section.3.6">table captions</a></li><li><a href="#rfc.section.3.7">3.7</a> <a href="#rfc.section.3.7">single column</a></li><li><a href="#rfc.section.3.8">3.8</a> <a href="#rfc.section.3.8">table alignment</a></li></ul></li><li><a href="#rfc.section.4">4.</a> <a href="#rfc.section.4">Figures</a><ul><li><a href="#rfc.section.4.1">4.1</a> <a href="#rfc.section.4.1">with preamble, no title...</a></li><li><a href="#rfc.section.4.2">4.2</a> <a href="#rfc.section.4.2">with postamble and title...</a></li><li><a href="#rfc.section.4.3">4.3</a> <a href="#rfc.section.4.3">Whitespace handling</a></li><li><a href="#rfc.section.4.4">4.4</a> <a href="#rfc.section.4.4">Whitespace around figures</a></li><li><a href="#rfc.section.4.5">4.5</a> <a href="#rfc.section.4.5">SVG</a></li><li><a href="#rfc.section.4.6">4.6</a> <a href="#code.components">Code Components</a></li></ul></li><li><a href="#rfc.section.5">5.</a> <a href="#refs">References</a><ul><li><a href="#rfc.section.5.1">5.1</a> <a href="#xref.with.no.content">xref with no content</a></li><li><a href="#rfc.section.5.2">5.2</a> <a href="#rfc.section.5.2">xref to named <t> element</a></li><li><a href="#rfc.section.5.3">5.3</a> <a href="#rfc.section.5.3">xref to named <spanx> element</a></li><li><a href="#rfc.section.5.4">5.4</a> <a href="#rfc.section.5.4">xref to named <t> element inside list</a></li><li><a href="#rfc.section.5.5">5.5</a> <a href="#rfc.section.5.5">xref to named <cref> element</a></li><li><a href="#rfc.section.5.6">5.6</a> <a href="#rfc.section.5.6">xref to named <t> element inside list</a></li><li><a href="#rfc.section.5.7">5.7</a> <a href="#rfc.section.5.7">xref with no auto-formatting</a></li><li><a href="#rfc.section.5.8">5.8</a> <a href="#rfc.section.5.8">xref with content and auto-formatting</a></li><li><a href="#rfc.section.5.9">5.9</a> <a href="#rfc.section.5.9">xref with content and no formatting</a></li><li><a href="#rfc.section.5.10">5.10</a> <a href="#formatting.none">xref with content and 'none' formatting</a></li><li><a href="#rfc.section.5.11">5.11</a> <a href="#rfc.section.5.11">xref with no content and anchor formatting</a></li><li><a href="#rfc.section.5.12">5.12</a> <a href="#rfc.section.5.12">eref with no content</a></li><li><a href="#rfc.section.5.13">5.13</a> <a href="#rfc.section.5.13">eref with content</a></li><li><a href="#rfc.section.5.14">5.14</a> <a href="#rfc.section.5.14">iref inside paragraph</a></li></ul></li><li><a href="#rfc.section.6">6.</a> <a href="#rfc.section.6">Paragraph formatting</a></li><li><a href="#rfc.section.7">7.</a> <a href="#rfc.section.7">Sections</a><ul><li><a href="#rfc.section.7.1">7.1</a> <a href="#rfc.section.7.1">Subsection with TOC entry</a></li><li class="excluded"><ul><li><a href="#rfc.section.7.2.1">7.2.1</a> <a href="#rfc.section.7.2.1">Sub-subsection with TOC entry</a></li></ul></li></ul></li><li><a href="#rfc.section.8">8.</a> <a href="#rfc.section.8">Comments</a></li><li><a href="#rfc.section.9">9.</a> <a href="#rfc.section.9">Artwork Width</a></li><li><a href="#rfc.section.10">10.</a> <a href="#extensions">Extensions</a><ul><li><a href="#rfc.section.10.1">10.1</a> <a href="#rfc.section.10.1">Markup in figure/artwork</a></li><li><a href="#rfc.section.10.2">10.2</a> <a href="#rfc.section.10.2">Measuring Lengths</a></li><li><a href="#rfc.section.10.3">10.3</a> <a href="#rfc.section.10.3">Quotations</a></li><li><a href="#rfc.section.10.4">10.4</a> <a href="#rfc.section.10.4">Subsections</a></li><li><a href="#rfc.section.10.5">10.5</a> <a href="#rfc.section.10.5">Box Drawing</a></li><li><a href="#rfc.section.10.6">10.6</a> <a href="#computed.reference.targets">Computed Reference Targets</a></li><li><a href="#rfc.section.10.7">10.7</a> <a href="#abnf.support">ABNF Support</a></li></ul></li><li><a href="#rfc.section.11">11.</a> <a href="#rfc.section.11">Blank Lines</a></li><li><a href="#rfc.section.12">12.</a> <a href="#rfc.section.12">Other</a><ul><li><a href="#rfc.section.12.1">12.1</a> <a href="#rfc.section.12.1">Comments in Text</a></li><li><a href="#rfc.section.12.2">12.2</a> <a href="#rfc.section.12.2">Special Characters</a><ul><li><a href="#rfc.section.12.2.1">12.2.1</a> <a href="#nbsp">Non-Breaking Space</a></li><li><a href="#rfc.section.12.2.2">12.2.2</a> <a href="#nbhy">Non-Breaking Hyphen</a></li><li><a href="#rfc.section.12.2.3">12.2.3</a> <a href="#dashes">Dashes</a></li></ul></li></ul></li><li><a href="#rfc.section.13">13.</a> <a href="#rfc.references">References</a></li><li><a href="#rfc.comments">Editorial Comments</a></li><li><a href="#rfc.authors">Author's Address</a></li><li><a href="#rfc.index">Index</a></li></ul><ul class="toc"><li>Figures384 </style><link rel="Contents" href="#rfc.toc"><link rel="Author" href="#rfc.authors"><link rel="Index" href="#rfc.index"><link rel="Chapter" title="1 Lists" href="#rfc.section.1"><link rel="Chapter" title="2 spanx" href="#rfc.section.2"><link rel="Chapter" title="3 Tables" href="#rfc.section.3"><link rel="Chapter" title="4 Figures" href="#rfc.section.4"><link rel="Chapter" title="5 References" href="#rfc.section.5"><link rel="Chapter" title="6 Paragraph formatting" href="#rfc.section.6"><link rel="Chapter" title="7 Sections" href="#rfc.section.7"><link rel="Chapter" title="8 Comments" href="#rfc.section.8"><link rel="Chapter" title="9 Artwork Width" href="#rfc.section.9"><link rel="Chapter" title="10 Extensions" href="#rfc.section.10"><link rel="Chapter" title="11 Blank Lines" href="#rfc.section.11"><link rel="Chapter" title="12 Other" href="#rfc.section.12"><link rel="Chapter" href="#rfc.section.13" title="13 References"><meta name="generator" content="http://greenbytes.de/tech/webdav/rfc2629.xslt, Revision 1.599, 2013/08/29 10:34:28, XSLT vendor: SAXON 6.5.5 from Michael Kay http://saxon.sf.net/"><meta name="keywords" content="RFC2629, test case, xml2rfc"><link rel="schema.dct" href="http://purl.org/dc/terms/"><meta name="dct.creator" content="Reschke, J. F."></head><body><table class="header"><tbody><tr><td class="left">RFC2629 test cases</td><td class="right">J. F. Reschke</td></tr><tr><td class="left"></td><td class="right">greenbytes</td></tr><tr><td class="left"></td><td class="right">May 2013</td></tr></tbody></table><p class="title">Test cases for RFC2629 formatting</p><hr class="noprint"><h1 class="np" id="rfc.toc"><a href="#rfc.toc">Table of Contents</a></h1><ul class="toc"><li><a href="#rfc.section.1">1.</a> <a href="#lists">Lists</a><ul><li><a href="#rfc.section.1.1">1.1</a> <a href="#rfc.section.1.1">hanging list</a></li><li><a href="#rfc.section.1.2">1.2</a> <a href="#ordered.list.numbers">numbered list</a></li><li><a href="#rfc.section.1.3">1.3</a> <a href="#ordered.list.letters">ordered list (letters)</a></li><li><a href="#rfc.section.1.4">1.4</a> <a href="#rfc.section.1.4">no explicit counters</a></li><li><a href="#rfc.section.1.5">1.5</a> <a href="#rfc.section.1.5">with explicit counters</a></li><li><a href="#rfc.section.1.6">1.6</a> <a href="#rfc.section.1.6">Nested list</a></li><li><a href="#rfc.section.1.7">1.7</a> <a href="#rfc.section.1.7">list without style</a></li><li><a href="#rfc.section.1.8">1.8</a> <a href="#rfc.section.1.8">list with multiple paragraphs in a single list item</a></li></ul></li><li><a href="#rfc.section.2">2.</a> <a href="#rfc.section.2">spanx</a></li><li><a href="#rfc.section.3">3.</a> <a href="#rfc.section.3">Tables</a><ul><li><a href="#rfc.section.3.1">3.1</a> <a href="#rfc.section.3.1">no borders</a></li><li><a href="#rfc.section.3.2">3.2</a> <a href="#rfc.section.3.2">borders around headers</a></li><li><a href="#rfc.section.3.3">3.3</a> <a href="#rfc.section.3.3">example from xml2rc README</a></li><li><a href="#rfc.section.3.4">3.4</a> <a href="#rfc.section.3.4">no column titles</a></li><li><a href="#rfc.section.3.5">3.5</a> <a href="#rfc.section.3.5">referencing tables</a></li><li><a href="#rfc.section.3.6">3.6</a> <a href="#rfc.section.3.6">table captions</a></li><li><a href="#rfc.section.3.7">3.7</a> <a href="#rfc.section.3.7">single column</a></li><li><a href="#rfc.section.3.8">3.8</a> <a href="#rfc.section.3.8">table alignment</a></li></ul></li><li><a href="#rfc.section.4">4.</a> <a href="#rfc.section.4">Figures</a><ul><li><a href="#rfc.section.4.1">4.1</a> <a href="#rfc.section.4.1">with preamble, no title...</a></li><li><a href="#rfc.section.4.2">4.2</a> <a href="#rfc.section.4.2">with postamble and title...</a></li><li><a href="#rfc.section.4.3">4.3</a> <a href="#rfc.section.4.3">Whitespace handling</a></li><li><a href="#rfc.section.4.4">4.4</a> <a href="#rfc.section.4.4">Whitespace around figures</a></li><li><a href="#rfc.section.4.5">4.5</a> <a href="#rfc.section.4.5">SVG</a></li><li><a href="#rfc.section.4.6">4.6</a> <a href="#code.components">Code Components</a></li></ul></li><li><a href="#rfc.section.5">5.</a> <a href="#refs">References</a><ul><li><a href="#rfc.section.5.1">5.1</a> <a href="#xref.with.no.content">xref with no content</a></li><li><a href="#rfc.section.5.2">5.2</a> <a href="#rfc.section.5.2">xref to named <t> element</a></li><li><a href="#rfc.section.5.3">5.3</a> <a href="#rfc.section.5.3">xref to named <spanx> element</a></li><li><a href="#rfc.section.5.4">5.4</a> <a href="#rfc.section.5.4">xref to named <t> element inside list</a></li><li><a href="#rfc.section.5.5">5.5</a> <a href="#rfc.section.5.5">xref to named <cref> element</a></li><li><a href="#rfc.section.5.6">5.6</a> <a href="#rfc.section.5.6">xref to named <t> element inside list</a></li><li><a href="#rfc.section.5.7">5.7</a> <a href="#rfc.section.5.7">xref with no auto-formatting</a></li><li><a href="#rfc.section.5.8">5.8</a> <a href="#rfc.section.5.8">xref with content and auto-formatting</a></li><li><a href="#rfc.section.5.9">5.9</a> <a href="#rfc.section.5.9">xref with content and no formatting</a></li><li><a href="#rfc.section.5.10">5.10</a> <a href="#formatting.none">xref with content and 'none' formatting</a></li><li><a href="#rfc.section.5.11">5.11</a> <a href="#rfc.section.5.11">xref with no content and anchor formatting</a></li><li><a href="#rfc.section.5.12">5.12</a> <a href="#rfc.section.5.12">eref with no content</a></li><li><a href="#rfc.section.5.13">5.13</a> <a href="#rfc.section.5.13">eref with content</a></li><li><a href="#rfc.section.5.14">5.14</a> <a href="#rfc.section.5.14">iref inside paragraph</a></li></ul></li><li><a href="#rfc.section.6">6.</a> <a href="#rfc.section.6">Paragraph formatting</a></li><li><a href="#rfc.section.7">7.</a> <a href="#rfc.section.7">Sections</a><ul><li><a href="#rfc.section.7.1">7.1</a> <a href="#rfc.section.7.1">Subsection with TOC entry</a></li><li class="excluded"><ul><li><a href="#rfc.section.7.2.1">7.2.1</a> <a href="#rfc.section.7.2.1">Sub-subsection with TOC entry</a></li></ul></li></ul></li><li><a href="#rfc.section.8">8.</a> <a href="#rfc.section.8">Comments</a></li><li><a href="#rfc.section.9">9.</a> <a href="#rfc.section.9">Artwork Width</a></li><li><a href="#rfc.section.10">10.</a> <a href="#extensions">Extensions</a><ul><li><a href="#rfc.section.10.1">10.1</a> <a href="#rfc.section.10.1">Markup in figure/artwork</a></li><li><a href="#rfc.section.10.2">10.2</a> <a href="#rfc.section.10.2">Measuring Lengths</a></li><li><a href="#rfc.section.10.3">10.3</a> <a href="#rfc.section.10.3">Quotations</a></li><li><a href="#rfc.section.10.4">10.4</a> <a href="#rfc.section.10.4">Subsections</a></li><li><a href="#rfc.section.10.5">10.5</a> <a href="#rfc.section.10.5">Box Drawing</a></li><li><a href="#rfc.section.10.6">10.6</a> <a href="#computed.reference.targets">Computed Reference Targets</a></li><li><a href="#rfc.section.10.7">10.7</a> <a href="#abnf.support">ABNF Support</a></li></ul></li><li><a href="#rfc.section.11">11.</a> <a href="#rfc.section.11">Blank Lines</a></li><li><a href="#rfc.section.12">12.</a> <a href="#rfc.section.12">Other</a><ul><li><a href="#rfc.section.12.1">12.1</a> <a href="#rfc.section.12.1">Comments in Text</a></li><li><a href="#rfc.section.12.2">12.2</a> <a href="#rfc.section.12.2">Special Characters</a><ul><li><a href="#rfc.section.12.2.1">12.2.1</a> <a href="#nbsp">Non-Breaking Space</a></li><li><a href="#rfc.section.12.2.2">12.2.2</a> <a href="#nbhy">Non-Breaking Hyphen</a></li><li><a href="#rfc.section.12.2.3">12.2.3</a> <a href="#dashes">Dashes</a></li></ul></li></ul></li><li><a href="#rfc.section.13">13.</a> <a href="#rfc.references">References</a></li><li><a href="#rfc.comments">Editorial Comments</a></li><li><a href="#rfc.authors">Author's Address</a></li><li><a href="#rfc.index">Index</a></li></ul><ul class="toc"><li>Figures 388 385 <ul><li><a href="#rfc.figure.1">Figure 1: another figure</a></li></ul></li></ul><hr class="noprint"><h1 id="rfc.section.1" class="np"><a href="#rfc.section.1">1.</a> <a id="lists" href="#lists">Lists</a></h1><h2 id="rfc.section.1.1"><a href="#rfc.section.1.1">1.1</a> hanging list</h2><dl><dt>Name:</dt><dd>timeout</dd><dt>Namespace:</dt><dd>DAV:</dd><dt>Purpose:</dt><dd>The timeout associated with a lock</dd><dt>Value:</dt><dd>TimeType ;Defined in section 9.8</dd></dl><h2 id="rfc.section.1.2"><a href="#rfc.section.1.2">1.2</a> <a id="ordered.list.numbers" href="#ordered.list.numbers">numbered list</a></h2><p id="rfc.section.1.2.p.1">A numbered list: </p><ol><li>one</li><li>two</li><li id="ordered.list.numbers.last">>three</li></ol><h2 id="rfc.section.1.3"><a href="#rfc.section.1.3">1.3</a> <a id="ordered.list.letters" href="#ordered.list.letters">ordered list (letters)</a></h2><p id="rfc.section.1.3.p.1">An ordered list using letters: </p><ol class="la"><li>one</li><li>two</li><li>three</li><li>one</li><li>two</li><li>three</li><li>one</li><li>two</li><li>three</li><li>one</li><li>two</li><li>three</li><li>one</li><li>two</li><li>three</li><li>one</li><li>two</li><li>three</li><li>one</li><li>two</li><li>three</li><li>one</li><li>two</li><li>three</li><li>one</li><li>two</li><li>three</li><li>one</li><li>two</li><li id="ordered.list.letters.last">three</li></ol><h2 id="rfc.section.1.4"><a href="#rfc.section.1.4">1.4</a> no explicit counters</h2><p id="rfc.section.1.4.p.1">Example for numbered list with user-defined-format: </p><dl><dt>R1:</dt><dd>R1</dd><dt>R2:</dt><dd>R2</dd></dl><p id="rfc.section.1.4.p.2">Another list: </p><dl><dt>S1:</dt><dd>S1</dd><dt>S2:</dt><dd>S2</dd></dl><p id="rfc.section.1.4.p.3">Next list should continue counting R's: </p><dl><dt>R3:</dt><dd>R3</dd><dt>R4:</dt><dd>R4</dd></dl><p id="rfc.section.1.4.p.4">Same with character-based numbering: </p><dl><dt>c-a:</dt><dd>c-a</dd><dt>c-b:</dt><dd>c-b</dd></dl><h2 id="rfc.section.1.5"><a href="#rfc.section.1.5">1.5</a> with explicit counters</h2><p id="rfc.section.1.5.p.1">A few requirements: </p><dl><dt>R1:</dt><dd>req R1</dd><dt>R2:</dt><dd>req R2</dd></dl><p id="rfc.section.1.5.p.2">More requirements: </p><dl><dt>R3:</dt><dd>req R3</dd><dt>R4:</dt><dd>req R4</dd></dl><p id="rfc.section.1.5.p.3">A few rules: </p><dl><dt>R1:</dt><dd>rule R1</dd><dt>R2:</dt><dd>rule R2</dd><dt>R3:</dt><dd>rule R3</dd></dl><p id="rfc.section.1.5.p.4">Explicit counter with name matching it's format string: </p><dl><dt>c-c:</dt><dd>c-c</dd><dt>c-d:</dt><dd>c-d</dd></dl><p id="rfc.section.1.5.p.5">Same, without counter: </p><dl><dt>c-e:</dt><dd>c-e</dd><dt>c-f:</dt><dd>c-f</dd></dl><h2 id="rfc.section.1.6"><a href="#rfc.section.1.6">1.6</a> Nested list</h2><p id="rfc.section.1.6.p.1"></p><ol><li>One</li><li>Two <ol class="ua"><li>17</li><li>42</li></ol> </li><li>Three</li></ol><h2 id="rfc.section.1.7"><a href="#rfc.section.1.7">1.7</a> list without style</h2><ul class="empty"><li>One</li><li>Two</li><li>Three</li></ul><h2 id="rfc.section.1.8"><a href="#rfc.section.1.8">1.8</a> list with multiple paragraphs in a single list item</h2><ol><li><p>Simple list item.</p></li><li><p>This one has two paragraphs. This is the first one.</p><p>This one has two paragraphs. This is the second one.</p></li><li><p>Another simple list item.</p></li></ol><hr class="noprint"><h1 id="rfc.section.2" class="np"><a href="#rfc.section.2">2.</a> spanx</h1><p id="rfc.section.2.p.1">This is <em>default</em>.</p><p id="rfc.section.2.p.2">This is <em>emph(asized)</em>.</p><p id="rfc.section.2.p.3">This is <strong>strong</strong>.</p><p id="rfc.section.2.p.4">This is <samp>verb(atim)</samp>.</p><p id="rfc.section.2.p.5">Here is <samp>a carriage return inside</samp> a spanx element.</p><hr class="noprint"><h1 id="rfc.section.3" class="np"><a href="#rfc.section.3">3.</a> Tables</h1><div id="rfc.table.u.1"><p>The list of valid keywords are:</p><table class="tt full center" cellpadding="3" cellspacing="0"><thead><tr><th class="right" style="width: 20%;">keyword</th><th class="center" style="width: 20%;">default</th><th class="left">meaning</th><th class="left">not aligned</th></tr></thead><tbody><tr><td class="right">strict</td><td class="center">no</td><td class="left">try to enforce the ID-nits conventions and DTD validity</td><td class="left">a</td></tr><tr><td class="right">iprnotified</td><td class="center">no</td><td class="left">include boilerplate from Section 10.4(d) of <a href="#RFC2026" id="rfc.xref.RFC2026.1"><cite title="The Internet Standards Process -- Revision 3">[RFC2026]</cite></a></td><td class="left">bb bb</td></tr><tr><td class="right">compact</td><td class="center">no</td><td class="left">when producing a txt/nroff file, try to conserve vertical whitespace</td><td class="left">ccc ccc ccc</td></tr><tr><td class="right">subcompact</td><td class="center">compact</td><td class="left">if compact is "yes", then setting this to "no" will make things a little less compact</td><td class="left">dddd dddd dddd dddd</td></tr><tr><td class="right">needLines</td><td class="center">n/a</td><td class="left">an integer hint indicating how many contiguous lines are needed at this point in the output</td><td class="left">eeeee eeeee eeeee eeeee eeeee</td></tr><tr><td class="right">here come empty cells</td><td class="center"></td><td class="left"></td><td class="left"></td></tr></tbody></table><p>Remember, that as with everything else in XML, keywords and values are case-sensitive.</p></div><h2 id="rfc.section.3.1"><a href="#rfc.section.3.1">3.1</a> no borders</h2><div id="rfc.table.1"><div id="tablenoborder"></div><p>The table below should appear with no borders.</p><table class="tt none center" cellpadding="3" cellspacing="0"><caption>Table 1: a table with no borders</caption><thead><tr><th class="left">C1</th><th class="left">C2</th></tr></thead><tbody><tr><td class="left">11</td><td class="left">12</td></tr><tr><td class="left">21</td><td class="left">22</td></tr></tbody></table></div><h2 id="rfc.section.3.2"><a href="#rfc.section.3.2">3.2</a> borders around headers</h2><div id="rfc.table.u.2"><p>The table below should appear with borders just around the headers.</p><table class="tt headers center" cellpadding="3" cellspacing="0"><thead><tr><th class="left">C1</th><th class="left">C2</th></tr></thead><tbody><tr><td class="left">11</td><td class="left">12</td></tr><tr><td class="left">21</td><td class="left">22</td></tr></tbody></table></div><h2 id="rfc.section.3.3"><a href="#rfc.section.3.3">3.3</a> example from xml2rc README</h2><div id="rfc.table.2"><div id="table_example"></div><p>So, putting it all together, we have, e.g.,</p><table class="tt full center" cellpadding="3" cellspacing="0"><caption>Table 2</caption><thead><tr><th class="center">ttcol #1</th><th class="center">ttcol #2</th></tr></thead><tbody><tr><td class="center">c #1</td><td class="center">c #2</td></tr><tr><td class="center">c #3</td><td class="center">c #4</td></tr><tr><td class="center">c #5</td><td class="center">c #6</td></tr></tbody></table><p>which is a very simple example.</p></div><h2 id="rfc.section.3.4"><a href="#rfc.section.3.4">3.4</a> no column titles</h2><div id="rfc.table.3"><div id="tablenotitles"></div><p>The table below should appear with no titles.</p><table class="tt full center" cellpadding="3" cellspacing="0"><caption>Table 3: a table with no column titles</caption><tbody><tr><td class="left">11</td><td class="left">12</td></tr><tr><td class="left">21</td><td class="left">22</td></tr></tbody></table></div><div id="rfc.table.4"><div id="tableonetitle"></div><p>The table below should appear with column titles (one being non-empty).</p><table class="tt full center" cellpadding="3" cellspacing="0"><caption>Table 4: a table with a single column title</caption><thead><tr><th class="left">FOO</th><th class="left"></th></tr></thead><tbody><tr><td class="left">11</td><td class="left">12</td></tr><tr><td class="left">21</td><td class="left">22</td></tr></tbody></table></div><h2 id="rfc.section.3.5"><a href="#rfc.section.3.5">3.5</a> referencing tables</h2><p id="rfc.section.3.5.p.1"><a href="#tablenoborder">Table 1</a> shows a table with no borders.</p><p id="rfc.section.3.5.p.2"><a href="#tablenoborder">The table above</a> shows a table with no borders.</p><h2 id="rfc.section.3.6"><a href="#rfc.section.3.6">3.6</a> table captions</h2><div id="rfc.table.u.3"><p>No anchor, no title</p><table class="tt full center" cellpadding="3" cellspacing="0"><thead><tr><th class="left">Anchor</th><th class="left">Title</th></tr></thead><tbody><tr><td class="left">-</td><td class="left">-</td></tr></tbody></table></div><div id="rfc.table.5"><div id="texttable1"></div><p>Anchor (not being referenced), no title</p><table class="tt full center" cellpadding="3" cellspacing="0"><caption>Table 5</caption><thead><tr><th class="left">Anchor</th><th class="left">Title</th></tr></thead><tbody><tr><td class="left">yes</td><td class="left">-</td></tr></tbody></table></div><div id="rfc.table.6"><p>No anchor, with title</p><table class="tt full center" cellpadding="3" cellspacing="0"><caption>Table 6: title</caption><thead><tr><th class="left">Anchor</th><th class="left">Title</th></tr></thead><tbody><tr><td class="left">-</td><td class="left">"title"</td></tr></tbody></table></div><div id="rfc.table.7"><div id="texttable2"></div><p>Both anchor and title</p><table class="tt full center" cellpadding="3" cellspacing="0"><caption>Table 7: title</caption><thead><tr><th class="left">Anchor</th><th class="left">Title</th></tr></thead><tbody><tr><td class="left">yes</td><td class="left">"title"</td></tr></tbody></table></div><h2 id="rfc.section.3.7"><a href="#rfc.section.3.7">3.7</a> single column</h2><div id="rfc.table.u.4"><table class="tt full center" cellpadding="3" cellspacing="0"><thead><tr><th class="left">title</th></tr></thead><tbody><tr><td class="left">1</td></tr><tr><td class="left">2</td></tr></tbody></table></div><h2 id="rfc.section.3.8"><a href="#rfc.section.3.8">3.8</a> table alignment</h2><div id="rfc.table.u.5"><table class="tt full left" cellpadding="3" cellspacing="0"><thead><tr><th class="left">left</th></tr></thead><tbody><tr><td class="left">1</td></tr></tbody></table></div><div id="rfc.table.u.6"><table class="tt full center" cellpadding="3" cellspacing="0"><thead><tr><th class="left">center</th></tr></thead><tbody><tr><td class="left">1</td></tr></tbody></table></div><div id="rfc.table.u.7"><table class="tt full right" cellpadding="3" cellspacing="0"><thead><tr><th class="left">right</th></tr></thead><tbody><tr><td class="left">1</td></tr></tbody></table></div><div id="rfc.table.u.8"><table class="tt full center" cellpadding="3" cellspacing="0"><thead><tr><th class="left">default</th></tr></thead><tbody><tr><td class="left">1</td></tr></tbody></table></div><hr class="noprint"><h1 id="rfc.section.4" class="np"><a href="#rfc.section.4">4.</a> Figures</h1><h2 id="rfc.section.4.1"><a href="#rfc.section.4.1">4.1</a> with preamble, no title...</h2><div id="rfc.figure.u.1"></div><p>with preamble, no title...</p><pre> +--+ 389 386 | | … … 445 442 </dt><dd>No anchor, no source.</dd><dt id="rfc.comment.2"> 446 443 [rfc.comment.2] 447 </dt><dd>No anchor, no source, but embedded markup: <<a href="http://xml.resource.org">http://xml.resource.org</a>>.</dd></dl><hr class="noprint"><div class="avoidbreak"><h1 id="rfc.authors" class="np"><a href="#rfc.authors">Author's Address</a></h1><address class="vcard"><span class="vcardline"><span class="fn">Julian F. Reschke</span><span class="n hidden"><span class="family-name">Reschke</span><span class="given-name">Julian F.</span></span></span><span class="org vcardline">greenbytes GmbH</span><span class="adr"><span class="street-address vcardline">Hafenweg 16</span><span class="vcardline"><span class="locality">Muenster</span>, <span class="region">NW</span> <span class="postal-code">48155</span></span><span class="country-name vcardline">Germany</span></span><span class="vcardline tel">Phone: <a href="tel:+492512807760"><span class="value">+49 251 2807760</span></a></span><span class="vcardline tel"><span class="type">Fax</span>: <a href="fax:+492512807761"><span class="value">+49 251 2807761</span></a></span><span class="vcardline">EMail: <a href="mailto:julian.reschke@greenbytes.de"><span class="email">julian.reschke@greenbytes.de</span></a></span><span class="vcardline">URI: <a href="http://greenbytes.de/tech/webdav/" class="url">http://greenbytes.de/tech/webdav/</a></span></address></div><hr class="noprint"><h1 id="rfc.index" class="np"><a href="#rfc.index">Index</a></h1><p class="noprint"><a href="#rfc.index.I">I</a> <a href="#rfc.index.R">R</a> <a href="#rfc.index.T">T</a> </p><div class="print2col"><ul class="ind"><li><b><</b><ul><li><iref> in <artwork> <a href="#rfc.iref.1">10.1</a></li></ul></li><li><a id="rfc.index.I" href="#rfc.index.I"><b>I</b></a><ul><li>inline iref <a href="#rfc.iref.i.1">5.14</a></li></ul></li><li><a id="rfc.index.R" href="#rfc.index.R"><b>R</b></a><ul><li><em>RFC2026</em> <a href="#rfc.xref.RFC2026.1">3</a>, <a href="#rfc.xref.RFC2026.2">5.9</a>, <a href="#rfc.xref.RFC2026.3">5.10</a>, <a href="#rfc.xref.RFC2026.4">5.11</a>, <a href="#RFC2026"><b>13</b></a></li><li><em>RFC2396</em> <a href="#rfc.xref.RFC2396.1">5.11</a>, <a href="#rfc.xref.RFC2396.2">10.1</a>, <a href="#RFC2396"><b>13</b></a></li></ul></li><li><a id="rfc.index.T" href="#rfc.index.T"><b>T</b></a><ul><li><em>TSTCS</em> <a href="#rfc.xref.TSTCS.1">10.6</a>, <a href="#rfc.xref.TSTCS.2">10.6</a>, <a href="#rfc.xref.TSTCS.3">10.6</a>, <a href="#rfc.xref.TSTCS.4">10.6</a>, <a href="#TSTCS"><b>13</b></a><ul><li><em>Appendix </em> <a href="#rfc.xref.TSTCS.4">10.6</a></li><li><em>Section 10.6</em> <a href="#rfc.xref.TSTCS.1">10.6</a>, <a href="#rfc.xref.TSTCS.2">10.6</a>, <a href="#rfc.xref.TSTCS.3">10.6</a></li></ul></li></ul></li></ul></div></body></html>444 </dt><dd>No anchor, no source, but embedded markup: <<a href="http://xml.resource.org">http://xml.resource.org</a>>.</dd></dl><hr class="noprint"><div class="avoidbreak"><h1 id="rfc.authors" class="np"><a href="#rfc.authors">Author's Address</a></h1><address><span class="vcardline"><b>Julian F. Reschke</b></span><span class="vcardline">greenbytes GmbH</span><span class="vcardline">Hafenweg 16</span><span class="vcardline">Muenster, NW 48155</span><span class="vcardline">Germany</span><span class="vcardline">Phone: <a href="tel:+492512807760">+49 251 2807760</a></span><span class="vcardline">Fax: <a href="fax:+492512807761">+49 251 2807761</a></span><span class="vcardline">EMail: <a href="mailto:julian.reschke@greenbytes.de">julian.reschke@greenbytes.de</a></span><span class="vcardline">URI: <a href="http://greenbytes.de/tech/webdav/">http://greenbytes.de/tech/webdav/</a></span></address></div><hr class="noprint"><h1 id="rfc.index" class="np"><a href="#rfc.index">Index</a></h1><p class="noprint"><a href="#rfc.index.I">I</a> <a href="#rfc.index.R">R</a> <a href="#rfc.index.T">T</a> </p><div class="print2col"><ul class="ind"><li><b><</b><ul><li><iref> in <artwork> <a href="#rfc.iref.1">10.1</a></li></ul></li><li><a id="rfc.index.I" href="#rfc.index.I"><b>I</b></a><ul><li>inline iref <a href="#rfc.iref.i.1">5.14</a></li></ul></li><li><a id="rfc.index.R" href="#rfc.index.R"><b>R</b></a><ul><li><em>RFC2026</em> <a href="#rfc.xref.RFC2026.1">3</a>, <a href="#rfc.xref.RFC2026.2">5.9</a>, <a href="#rfc.xref.RFC2026.3">5.10</a>, <a href="#rfc.xref.RFC2026.4">5.11</a>, <a href="#RFC2026"><b>13</b></a></li><li><em>RFC2396</em> <a href="#rfc.xref.RFC2396.1">5.11</a>, <a href="#rfc.xref.RFC2396.2">10.1</a>, <a href="#RFC2396"><b>13</b></a></li></ul></li><li><a id="rfc.index.T" href="#rfc.index.T"><b>T</b></a><ul><li><em>TSTCS</em> <a href="#rfc.xref.TSTCS.1">10.6</a>, <a href="#rfc.xref.TSTCS.2">10.6</a>, <a href="#rfc.xref.TSTCS.3">10.6</a>, <a href="#rfc.xref.TSTCS.4">10.6</a>, <a href="#TSTCS"><b>13</b></a><ul><li><em>Appendix </em> <a href="#rfc.xref.TSTCS.4">10.6</a></li><li><em>Section 10.6</em> <a href="#rfc.xref.TSTCS.1">10.6</a>, <a href="#rfc.xref.TSTCS.2">10.6</a>, <a href="#rfc.xref.TSTCS.3">10.6</a></li></ul></li></ul></li></ul></div></body></html>
Note: See TracChangeset
for help on using the changeset viewer.