/[suikacvs]/webroot/www/2006/auto-discovery.en.html
Suika

Contents of /webroot/www/2006/auto-discovery.en.html

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (hide annotations) (download) (as text)
Sun Dec 3 09:52:00 2006 UTC (17 years, 5 months ago) by wakaba
Branch: MAIN
File MIME type: text/html
New

1 wakaba 1.1 <!DOCTYPE html>
2     <html lang="en" class="formal-specification status-work-in-progress">
3     <head>
4     <title>Auto-Discovery Auto-Discovery Specification</title>
5     <link rel="stylesheet" href="http://suika.fam.cx/www/style/html/spec.css">
6     <link rel="license" href="http://suika.fam.cx/c/gnu/fdl">
7     </head>
8     <body class="has-abstract">
9    
10     <div class="header">
11     <h1>Auto-Discovery Auto-Discovery Specification</h1>
12    
13     <dl class="versions-uri">
14     <dt>This Version</dt>
15     <dd><code class="URI">&lt;<a href="http://suika.fam.cx/www/2006/auto-discovery"
16     >http://suika.fam.cx/www/2006/auto-discovery</a>&gt;</code></dd>
17     <dt>Latest Version</dt>
18     <dd><code class="URI">&lt;<a href="http://suika.fam.cx/www/2006/auto-discovery"
19     >http://suika.fam.cx/www/2006/auto-discovery</a>&gt;</code></dd>
20     <!--
21     <dt>Latest Working Draft</dt>
22     <dd><code class="URI">&lt;<a href="http://suika.fam.cx/www/2006/auto-discovery"
23     >http://suika.fam.cx/www/2006/auto-discovery</a>&gt;</code></dd>
24     -->
25     <!-- <dt>Previous Version</dt> -->
26     </dl>
27     <dl class="authors">
28     <dt>Author</dt>
29     <dd><a href="http://suika.fam.cx/~wakaba/who?" rel="author">Wakaba</a>
30     <code class="mail">&lt;<a href="mailto:w@suika.fam.cx" rel="author"
31     >w@suika.fam.cx</a>&gt;</code></dd>
32     </dl>
33    
34     <p class="copyright" lang="en">&#xA9; 2006 <a
35     href="http://suika.fam.cx/~wakaba/who?" rel="author">Wakaba</a>.
36     Permission is granted to copy, distribute and/or modify this document
37     under the terms of the <a rel="license"
38     href="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License</a>,
39     Version 1.2
40     or any later version published by the <a
41     href="http://www.fsf.org/">Free Software Foundation</a>;
42     with no Invariant Sections, no Front$B!>(BCover Texts, and no Back$B!>(BCover
43     Texts. A copy of the license is
44     available at <code class="URI">&lt;<a
45     href="http://www.gnu.org/copyleft/fdl.html"
46     rel="license">http://www.gnu.org/copyleft/fdl.html</a>&gt;</code>.</p>
47     </div>
48    
49     <div id="abstract" class="section">
50     <h2>Abstract</h2>
51    
52     <div class="ed issue">...</div>
53    
54     </div>
55    
56     <div id="status" class="section">
57     <h2>Status of This Document</h2>
58    
59     <div class="ed issue"><p>Work in progress</p></div>
60    
61     </div>
62    
63     <div id="introduction" class="section">
64     <h2>Introduction</h2>
65    
66     <div class="ed issue">...</div>
67    
68    
69     </div>
70    
71     <div class="section">
72     <h2>Embeding Auto-Discovery Auto-Discovery Link in HTML Document</h2>
73    
74     <div class="section informative">
75     <h3>Introduction</h3>
76    
77     <p>This section is <em>informative</em>.</p>
78    
79     <div class="example figure block">
80     <div class="caption">Auto-Discovery Auto-Discovery
81     for TrackBack Auto-Discovery</div>
82    
83     <pre><code class="HTML">
84     &lt;rdf:RDF
85     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
86     xmlns:dc="http://purl.org/dc/elements/1.1/"
87     xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"
88     xml:id="trackback">
89     &lt;rdf:Description
90     rdf:about="http://www.foo.example/archive.html#foo"
91     dc:identifier="http://www.foo.example/archive.html#foo"
92     dc:title="Foo Bar"
93     trackback:ping="http://www.foo.example/tb.cgi/5" />
94     &lt;/rdf:RDF>
95     &lt;link rel="meta" href="#trackback">
96     </code></pre>
97     </div>
98    
99     <div class="example figure block">
100     <div class="caption">Auto-Discovery Auto-Discovery
101     for Atom Auto-Discovery</div>
102    
103     <pre><code class="HTML">
104     &lt;link rel="meta" href="#atom">
105     &lt;link id="atom" rel="feed" href="feed.atom" type="application/atom+xml">
106     </code></pre>
107     </div>
108    
109     </div>
110    
111     <div class="section">
112     <h3>Definition</h3>
113    
114     <p>An <dfn id="DT-autodiscovery-autodiscovery-link">Auto-Discovery
115     Auto-Discovery link</dfn> is a hyperlink to
116     an Auto-Discovery element.
117     The <dfn id="DT-referenced-element">referenced element</dfn>
118     is the outermost element for the Auto-Discovery.</p>
119    
120     <p>The <dfn id="DT-referencing-element">referencing element</dfn>
121     is the element representing an <a
122     href="#DT-autodiscovery-autodiscovery-link">Auto-Discovery
123     Auto-Discovery link</a>.</p>
124    
125     <p>The <a href="#DT-referenced-element">referenced element</a>
126     <em class="rfc2119">MUST</em> have an
127     <code class="HTMLa">id</code> attribute.</p>
128    
129     <p>The <a href="#DT-referencing-element">referencing element</a>
130     <em class="rfc2119">MUST</em> be a <code class="HTMLe">link</code>
131     element in the <code class="URI">http://www.w3.org/1999/xhtml</code>
132     namespace.</p>
133    
134     <p>The <a href="#DT-referencing-element">referencing element</a>
135     <em class="rfc2119">MUST</em> have a <code class="HTMLa">rel</code>
136     attribute which contains <code class="HTML">meta</code>
137     as the only link relationship value.</p>
138    
139     <p>The <a href="#DT-referencing-element">referencing element</a>
140     <em class="rfc2119">MUST</em> have an <code class="HTMLa">id</code>
141     attribute whose value is a same-document IRI reference
142     <cite class="bibref normative">[<a href="#ref-IRI">IRI</a>]</cite>
143     referencing the <a href="#DT-referenced-element">referenced
144     element</a> in the same document. The
145     <a href="#DT-referenced-element">referenced element</a>
146     <em class="rfc2119">MUST NOT</em> be an element
147     representing an <a href="#DT-autodiscovery-autodiscovery-link">Auto-Discovery
148     Auto-Discovery link</a>.</p>
149    
150     <div class="issue ed">
151     <p>Ensure that <q>same-document IRI reference</q>
152     is a defined term.</p>
153     </div>
154    
155    
156     <p>The <a href="#DT-referencing-element">referencing element</a>
157     <em class="rfc2119">MAY</em> have other attributes.</p>
158    
159     <div class="ed">...</div>
160    
161     </div>
162    
163     </div>
164    
165     <div class="ed issue">
166     <p>In RSS, Atom, or other XML document...</p>
167     </div>
168    
169     <div id="references" class="section reference">
170     <h2>References</h1>
171    
172     <div id="normative-references" class="section normative reference">
173     <h3>Normative References</h3>
174    
175     <dl>
176     <dt id="ref-HTML5">HTML5</dt>
177     <dd class="ed">WA1</dd>
178     <dt id="ref-IRI">IRI</dt>
179     <dd class="ed">RFC 3987</dd>
180     </dl>
181     </div>
182    
183     <div id="informative-references" class="section informative reference">
184     <h3>Informative References</h3>
185    
186     <dl>
187     <dt id="ref-ACCOUNTAUTODISCOVERY">ACOUNTAUTODISCOVERY</dt>
188     <dd class="ed">...</dd>
189     <dt id="ref-ATOMAUTODISCOVERY">ATOMAUTODISCOVERY</dt>
190     <dd class="ed">I-D</dd>
191     <dt id="ref-FEEDAUTODISCOVERY">FEEDAUTODISCOVERY</dt>
192     <dd class="ed">wiki</dd>
193     <dt id="ref-FOAFAUTODISCOVERY">FOAFAUTODISCOVERY</dt>
194     <dd class="ed">...</dd>
195     <dt id="ref-MOBILEAUTODISCOVERY">MOBILEAUTODISCOVERY</dt>
196     <dd class="ed">...</dd>
197     <dt id="ref-PINGBACK">PINGBACK</dt>
198     <dd class="ed">...</dd>
199     <dt id="ref-RSSAUTODISCOVERY">RSSAUTODISCOVERY</dt>
200     <dd class="ed">...</dd>
201     <dt id="ref-TRACKBACK">TRACKBACK</dt>
202     <dd>Six Apart, <cite><a
203     href="http://www.sixapart.com/pronet/docs/trackback_spec"
204     >TrackBack Technical Specification</a></cite>,
205     Version 1.2, 1 August 2004.</dd>
206     <dt id="ref-WIDGETS">WIDGETS</dt>
207     <dd class="ed">...</dd>
208     </dl>
209     </div>
210    
211     </div>
212    
213     </body>
214     </html>

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24