Re: WART implementation plan

Cool. I think that we should look seriously at generating annotea annotations
for pages as an option. As I understand it, for a given page we would do a
POST to an Annotea server of the EARL that we have.

Ther is more information at the Annotea protocols page
http://www.w3.org/2001/Annotea/User/Protocol but my rough summary is you post
something like the following:

POST /annot HTTP/1.1
Host: annotea.example.org
Content-Type: application/xml
Content-Length: 1082

<r:RDF xmlns:r="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
       xmlns:a="http://www.w3.org/2000/10/annotation-ns#"
       xmlns:d="http://purl.org/dc/elements/1.1/"
       xmlns:h="http://www.w3.org/1999/xx/http#">
 <r:Description>
  <r:type resource="http://www.w3.org/2000/10/annotation-ns#Annotation"/>
  <r:type resource="http://www.w3.org/2000/10/annotationType#EARL"/>   <!-- if they made that an annotation type... -->
  <a:annotates r:resource="http://example.com/some/page.html"/>
  <a:context
r:resource='http://example.com/some/page.html#xpointer(id("Main")/p[2])'/>
  <d:creator>Ralph Swick</d:creator>
  <a:created>1999-10-14T12:10Z</a:created>
  <d:date>1999-10-14T12:10Z</d:date>
   <a:body>
    <r:Description>
     <h:ContentType>text/rdf+xml</h:ContentType> <!-- or whatever it is -->
     <h:ContentLength>250</h:ContentLength>
     <h:Body r:parseType="Literal">
   <earl xmlns="http://www.w3.org/2001/03/earl/0.95#">
     <!-- and so on for an earl statement of the right length  -->
     <!-- how does the dc:creeator interact with earl:asserts? -->
   </earl>
    </h:Body>
   </r:Description>
  </a:body>
 </r:Description>
</r:RDF>

(Should check that with an annotea wizard)

You can then query the server for annotations and see what other people said,
or compare, or ... (all it needs is some user interface wizardry <grin/>)

chaals


On Mon, 2 Jul 2001, Wendy A Chisholm wrote:
[snip]
  Regardless, I have created a plan page for it with a lovely photo of a wart
  hog at: http://www.w3.org/WAI/ER/WART/plan.html

Received on Monday, 2 July 2001 19:25:15 UTC