[an error occurred while processing this directive]
[an error occurred while processing this directive]Ron Alford, Amy Alford
Users submit RDF through a webform, where they can choose to upload a file, create rdf in a text area, or submit a url. In the first two cases the file is copied to a directory on the web server where it can be publically downloaded. Either way the file is loaded into the redland database.
After the RDF is uploaded, a simple inferencer goes through and takes care of functional, inverse functional, and inverse properties.
A management page provides access to editing each of the files uploaded to the site, as well as options to remove or reload external RDF files.
The libraries we use to work with RDF know nothing about the final display format. This gives us the flexibility to output to multiple formats.
Most commonly we output XHTML snippits which can be included in we pages using server side includes.
For our news items we output RSS 1.0 for syndication.
For papers we output a bibtex bibliography database which is then fed through bibtex2html to produce a bibliogrpahy for display.
All of the RDF we use to create the owl.mindswap.org page is stored in Redland for easy access. This eliminates the need to download and parse RDF files each time a page is requested.
Because the redland perl interface is verbose and targeted at RDF not OWL we wrote a wrapper for redland called ``querier.'' The goal of querier is to make the most common queries needed for a web page simple and to simply working with instances rather than triples.
CWM is used to translate from N3 and Ntriples to RDF/XML. This is important, since most the data on our site is hand written in N3.
RET (RDF Extraction Tool) is a means of extracting RDF from common web files (HTML, PDF, SVG, and files using XMP).
[an error occurred while processing this directive]