RE: DSpace + updated history, Joseki on simile.mit.edu

Great! That's works.  Thanks.

	Andy


http://simile.mit.edu:8080/rdfserver/DSpaceHistory?lang=fetch&r=dspace:item:
1;270d443065ba236d1fe18d3f65e0cf29

Or, in bash:

DB='http://simile.mit.edu:8080/rdfserver/DSpaceHistory'
OBJ='dspace:item:1;270d443065ba236d1fe18d3f65e0cf29'
URL="$DB?lang=fetch&r=$OBJ"

curl "$URL"
# or wget -q -O - "$URL"

------------------------------------------------------------

<rdf:RDF
    xmlns:harmony="http://metadata.net/harmony#"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:dsHist="http://dspace.org/history/1.0#">
  <dsHist:Item rdf:about="dspace:item:1;270d443065ba236d1fe18d3f65e0cf29"
     dsHist:hasSubmitter="robert.tansley@hp.com"
     dc:type="Image"
     rdf:type="http://www.w3.org/2000/01/rdf-schema#Resource">
    <dsHist:author>Tansley, Robert</dsHist:author>
    <harmony:inContext
rdf:resource="dspace:situation:8e70fe87de812ad0d1a23385175f2a0f"/>
    <harmony:phaseOf rdf:resource="dspace:item:1"/>
    <dc:description>The DSpace Logo.</dc:description>
    <dc:title>First Test Item for History System Test</dc:title>
    <rdf:type rdf:resource="http://metadata.net/harmony#Actuality"/>
    <dc:contributor>Tansley, Robert</dc:contributor>
  </dsHist:Item>
</rdf:RDF>

------------------------------------------------------------

@prefix dsHist:  <http://dspace.org/history/1.0#> .
@prefix dc:      <http://purl.org/dc/elements/1.1/> .
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix harmony:  <http://metadata.net/harmony#> .
@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix :        <#> .

<dspace:item:1;270d443065ba236d1fe18d3f65e0cf29>
      a       rdfs:Resource , harmony:Actuality , dsHist:Item ;
      dsHist:author "Tansley, Robert" ;
      dsHist:hasSubmitter "robert.tansley@hp.com" ;
      harmony:inContext <dspace:situation:8e70fe87de812ad0d1a23385175f2a0f>
;
      harmony:phaseOf <dspace:item:1> ;
      dc:contributor "Tansley, Robert" ;
      dc:description "The DSpace Logo." ;
      dc:title "First Test Item for History System Test" ;
      dc:type "Image" .



-------- Original Message --------
> From: Tansley, Robert <mailto:robert.tansley@hp.com>
> Date: 7 January 2004 18:28
> 
> > Could you add a "fetch" handler?  The changes to the config
> > file are below.
> 
> OK, it should be done now.
> 
>  Robert Tansley / Hewlett-Packard Laboratories / (+1) 617 551 7624

Received on Thursday, 8 January 2004 04:38:10 UTC