Skip to main content

By clicking Submit, you agree to the developerWorks terms of use.

The first time you sign into developerWorks, a profile is created for you. Select information in your profile (name, country/region, and company) is displayed to the public and will accompany any content you post. You may update your IBM account at any time.

All information submitted is secure.

  • Close [x]

The first time you sign in to developerWorks, a profile is created for you, so you need to choose a display name. Your display name accompanies the content you post on developerworks.

Please choose a display name between 3-31 characters. Your display name must be unique in the developerWorks community and should not be your email address for privacy reasons.

By clicking Submit, you agree to the developerWorks terms of use.

All information submitted is secure.

  • Close [x]

Basic XML and RDF techniques for knowledge management

Part 1: Generate RDF using XSLT

Return to article


Listing 2. An RDF representation of an issue's metadata

<?xml version='1.0' encoding='UTF-8'?>
<rdf:RDF
  xmlns:it='http://xmlns.rdfinference.org/ril/issue-tracker'
  xmlns:dc='http://purl.org/metadata/dublin_core#'
  xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'
>
<rdf:description about='http://rdfinference.org/ril/ril-20010502'>
  <it:issue
rdf:resource='http://rdfinference.org/ril/issue-tracker/issues/i2001030423'/>
</rdf:description>
<rdf:description
about='http://rdfinference.org/ril/issue-tracker/issues/i2001030423'>
  <it:author
rdf:resource='http://rdfinference.org/ril/issue-tracker/users/uogbuji'/>
  <it:comment>
    <rdf:description>
      <it:author>Alexandre Fayolle</it:author>
      <it:body>
The abbreviation in listing 8 doesn't seem necessary to us.
      </it:body>
    </rdf:description>
  </it:comment>
  <it:action>
    <rdf:description>
      <it:author
rdf:resource='http://rdfinference.org/ril/issue-tracker/users/uogbuji'/>
      <it:assigned-to
rdf:resource='http://rdfinference.org/ril/issue-tracker/users/uogbuji'>
      <it:body>Organize a vote on this topic</it:body>
    </rdf:description>
  </it:action>
</rdf:description>
</rdf:RDF>

Return to article