<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: UDD export as RDF data through D2R and a corresponding mapping definition</title>
	<atom:link href="http://www-public.it-sudparis.eu/~berger_o/weblog/2009/03/18/udd-export-as-rdf-data-through-d2r-and-a-corresponding-mapping-definition/feed/" rel="self" type="application/rss+xml" />
	<link>http://www-public.it-sudparis.eu/~berger_o/weblog/2009/03/18/udd-export-as-rdf-data-through-d2r-and-a-corresponding-mapping-definition/</link>
	<description>My WebLog at Intitut TELECOM, Télécom SudParis (ex GET/INT)</description>
	<lastBuildDate>Tue, 07 Feb 2012 10:03:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Olivier Berger</title>
		<link>http://www-public.it-sudparis.eu/~berger_o/weblog/2009/03/18/udd-export-as-rdf-data-through-d2r-and-a-corresponding-mapping-definition/comment-page-1/#comment-139529</link>
		<dc:creator>Olivier Berger</dc:creator>
		<pubDate>Fri, 30 Jul 2010 16:29:07 +0000</pubDate>
		<guid isPermaLink="false">http://www-public.it-sudparis.eu/~berger_o/weblog/?p=330#comment-139529</guid>
		<description>Bellow a copy of a &lt;a href=&quot;http://lists.debian.org/debian-qa/2010/07/msg00058.html&quot; rel=&quot;nofollow&quot;&gt;followup I&#039;ve sent to debian-qa&lt;/a&gt;

FYI, here&#039;s the return of our tool to do some UDD facts export as RDF.

Here&#039;s a server we have setup, which provides some RDF descriptions of bugs out of what is contained in the UDD database :
http://testforge.int-evry.fr/d2r-server/

This is work in progress and not meant for end-users. For reference on how we installed D2R to deploy this :
https://picoforge.int-evry.fr/cgi-bin/twiki/view/Helios_wp3/Web/UltimateDebianDatabaseToRDF


One will find metadata about bugs, but also some metadata about Debian packages (minimal), or Debbugs users (bug submitters), and Debian developers (out of carnivore), as SIOC and FOAF bits.


Given one bug number, one may get an XML/RDF version using :
 &lt;code&gt;curl -H &#039;Accept: application/rdf+xml&#039;  http://testforge.int-evry.fr/d2r-server/data/debbugs/585740&lt;/code&gt;

or the N3 version with :
 &lt;code&gt;curl -H &#039;Accept: text/rdf+n3&#039;  http://testforge.int-evry.fr/d2r-server/data/debbugs/585740&lt;/code&gt;


Btw, on our D2R server, one can also query custom searches using SPARQL. For instance :
&lt;a href=&quot;http://testforge.int-evry.fr/d2r-server/snorql/?query=SELECT+DISTINCT+*+WHERE+{%0D%0A++%3Fs+%3Fp+%3Fo.%0D%0A++%3Fs+owl%3AsameAs+%3Chttp%3A%2F%2Fbugs.debian.org%2F585740%3E.%0D%0A}%0D%0ALIMIT+10&quot; rel=&quot;nofollow&quot;&gt;http://testforge.int-evry.fr/d2r-server/snorql/?query=SELECT+DISTINCT+*+WHERE+{%0D%0A++%3Fs+%3Fp+%3Fo.%0D%0A++%3Fs+owl%3AsameAs+%3Chttp%3A%2F%2Fbugs.debian.org%2F585740%3E.%0D%0A}%0D%0ALIMIT+10&lt;/a&gt; which will search bug properties for bug #585740 :
&lt;code&gt; SELECT DISTINCT * WHERE {
  ?s ?p ?o.
  ?s owl:sameAs &lt;http: //bugs.debian.org/585740&gt;.
 }
 LIMIT 10&lt;/http:&gt;&lt;/code&gt;


About people, for an example, here&#039;s my FOAF profile :
http://testforge.int-evry.fr/d2r-server/resource/foafcarnivore/6688a14521cd97db162af8f9757f2e2232300e50

Given one&#039;s email address, it&#039;s easy to access one&#039;s FOAF profile there with for instance :
&lt;code&gt; curl -H &#039;Accept: application/rdf+xml&#039;  http://testforge.int-evry.fr/d2r-server/data/foafcarnivore/`echo -n &quot;mailto:$DEBEMAIL&quot; &#124; sha1sum &#124; sed &#039;s/ .*$//&#039;`&lt;/code&gt;


FYI, on related topics, I&#039;ve filed to wishlists, respectively for debbugs and the PTS :

* &lt;a href=&quot;http://bugs.debian.org/590931&quot; rel=&quot;nofollow&quot;&gt;#590931: Would be great to integrate RDFa metadata into debbugs pages&lt;/a&gt; 

* &lt;a href=&quot;http://bugs.debian.org/585740&quot; rel=&quot;nofollow&quot;&gt;#585740: Would be great if the PTS could provide RDFa metadata&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Bellow a copy of a <a href="http://lists.debian.org/debian-qa/2010/07/msg00058.html" rel="nofollow">followup I&#8217;ve sent to debian-qa</a></p>
<p>FYI, here&#8217;s the return of our tool to do some UDD facts export as RDF.</p>
<p>Here&#8217;s a server we have setup, which provides some RDF descriptions of bugs out of what is contained in the UDD database :<br />
<a href="http://testforge.int-evry.fr/d2r-server/" rel="nofollow">http://testforge.int-evry.fr/d2r-server/</a></p>
<p>This is work in progress and not meant for end-users. For reference on how we installed D2R to deploy this :<br />
<a href="https://picoforge.int-evry.fr/cgi-bin/twiki/view/Helios_wp3/Web/UltimateDebianDatabaseToRDF" rel="nofollow">https://picoforge.int-evry.fr/cgi-bin/twiki/view/Helios_wp3/Web/UltimateDebianDatabaseToRDF</a></p>
<p>One will find metadata about bugs, but also some metadata about Debian packages (minimal), or Debbugs users (bug submitters), and Debian developers (out of carnivore), as SIOC and FOAF bits.</p>
<p>Given one bug number, one may get an XML/RDF version using :<br />
 <code>curl -H 'Accept: application/rdf+xml'  <a href="http://testforge.int-evry.fr/d2r-server/data/debbugs/585740" rel="nofollow">http://testforge.int-evry.fr/d2r-server/data/debbugs/585740</a></code></p>
<p>or the N3 version with :<br />
 <code>curl -H 'Accept: text/rdf+n3'  <a href="http://testforge.int-evry.fr/d2r-server/data/debbugs/585740" rel="nofollow">http://testforge.int-evry.fr/d2r-server/data/debbugs/585740</a></code></p>
<p>Btw, on our D2R server, one can also query custom searches using SPARQL. For instance :<br />
<a href="http://testforge.int-evry.fr/d2r-server/snorql/?query=SELECT+DISTINCT+*+WHERE+{%0D%0A++%3Fs+%3Fp+%3Fo.%0D%0A++%3Fs+owl%3AsameAs+%3Chttp%3A%2F%2Fbugs.debian.org%2F585740%3E.%0D%0A}%0D%0ALIMIT+10" rel="nofollow"></a><a href="http://testforge.int-evry.fr/d2r-server/snorql/?query=SELECT+DISTINCT+*+WHERE+" rel="nofollow">http://testforge.int-evry.fr/d2r-server/snorql/?query=SELECT+DISTINCT+*+WHERE+</a>{%0D%0A++%3Fs+%3Fp+%3Fo.%0D%0A++%3Fs+owl%3AsameAs+%3Chttp%3A%2F%2Fbugs.debian.org%2F585740%3E.%0D%0A}%0D%0ALIMIT+10 which will search bug properties for bug #585740 :<br />
<code> SELECT DISTINCT * WHERE {<br />
  ?s ?p ?o.<br />
  ?s owl:sameAs <http: //bugs.debian.org/585740>.<br />
 }<br />
 LIMIT 10</http:></code></p>
<p>About people, for an example, here&#8217;s my FOAF profile :<br />
<a href="http://testforge.int-evry.fr/d2r-server/resource/foafcarnivore/6688a14521cd97db162af8f9757f2e2232300e50" rel="nofollow">http://testforge.int-evry.fr/d2r-server/resource/foafcarnivore/6688a14521cd97db162af8f9757f2e2232300e50</a></p>
<p>Given one&#8217;s email address, it&#8217;s easy to access one&#8217;s FOAF profile there with for instance :<br />
<code> curl -H 'Accept: application/rdf+xml'  <a href="http://testforge.int-evry.fr/d2r-server/data/foafcarnivore/" rel="nofollow">http://testforge.int-evry.fr/d2r-server/data/foafcarnivore/</a>`echo -n "mailto:$DEBEMAIL" | sha1sum | sed 's/ .*$//'`</code></p>
<p>FYI, on related topics, I&#8217;ve filed to wishlists, respectively for debbugs and the PTS :</p>
<p>* <a href="http://bugs.debian.org/590931" rel="nofollow">#590931: Would be great to integrate RDFa metadata into debbugs pages</a> </p>
<p>* <a href="http://bugs.debian.org/585740" rel="nofollow">#585740: Would be great if the PTS could provide RDFa metadata</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Extending bts-link beyond debbugs (starting with mantis) &#171; WebLog Pro Olivier Berger</title>
		<link>http://www-public.it-sudparis.eu/~berger_o/weblog/2009/03/18/udd-export-as-rdf-data-through-d2r-and-a-corresponding-mapping-definition/comment-page-1/#comment-119931</link>
		<dc:creator>Extending bts-link beyond debbugs (starting with mantis) &#171; WebLog Pro Olivier Berger</dc:creator>
		<pubDate>Fri, 10 Apr 2009 16:49:26 +0000</pubDate>
		<guid isPermaLink="false">http://www-public.it-sudparis.eu/~berger_o/weblog/?p=330#comment-119931</guid>
		<description>[...] at DebConf for this purpose : towards more semantic web into Debian servers (UDD and likes) (see previous post on that matter [...]</description>
		<content:encoded><![CDATA[<p>[...] at DebConf for this purpose : towards more semantic web into Debian servers (UDD and likes) (see previous post on that matter [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

