Difference between revisions of "OWF user manual"

From SW_OWF
Jump to navigation Jump to search
(recent additions in yellow →‎Feature table)
(description →‎Feature table)
Line 72: Line 72:
 
== Feature table ==
 
== Feature table ==
  
 +
This table shows how OWF mapes ontologies to default Fresnel, and how it maps Frensel triples to semantic wiki interface components.
 
<html>
 
<html>
  

Revision as of 10:11, 21 March 2013

Welcome to the OWL Wiki Forms user manual for version 0.2. This page offers instructions for OWL Wiki Forms in the form of an example interface creation session. It has a sequence of screen dumps with explanations. Users should be able to replicate this session after an OWL Wiki Forms v0.2 installation.

Generating an interface

To generate an interface, enter on the OWF special URIs for online RDF files to process. The special page then displays a table of links to wiki pages for the generated interface components. The URIs entered include address of files of the ontologies for which the interface is to be generated. They can also include address of files that include user-tailored Fresnel style triples that cascade on top of the default triples OWF generates.

Enter URIs

Entering the FOAF ontology URI in the OWL Wiki Forms special page

After installing OWL, start a session by going to the Special:OWLwikiForms page on your wiki. In the field "URIs of ontologies to generate interface from", enter a list of URIs separated by commas. The the list is entered, click on "Generate". OWF will then generate an interface for the ontologies that the files at these URIs define.

Get links to generated interface

Report displayed after OWF generates the default interface for the FOAF ontology

After a click on the "Generate" button, the OWF special page shows a table of links to the category, informbox, form and property pages that OWF created for the interface. The user can click these links to look at the new pages, or to get started with annotating uses the forms created. The original URI entry field en "Generate" button remain at the bottom of this page to enable entering more ontology URIs to make more interface pages from.

Default interface

The following subsections show components from the default interface that OWF generates for our example. All the user does to make this interface is enter URIs for the ontologies to generate the interface from.

Fill in a form

Example of filling in a default FOAF Person form, with autocompletion for the property field "knows"

OWF creates form pages that used the Semantic Forms extension of Semantic Mediawiki. Each form conforms to a given class and lets the user enter values of properties with that class as their domain. A form field has autocompletion to pages of a given wiki category when the field corresponds with an object property whose range includes the ontology's class that corresponds with that category. In this figure, the "knows" field has autocompletion to wiki pages in the category Person.

View an informbox

The default informbox display for a FOAF person

Once the user fills a form and save it, it creates an informbox display show the page's new annotations.

Tailored interface

The administrator can fine tune the default interface OWF generates by writing Fresnel triples that define additional interface style that cascades over the default. To give OWF access to these cascading Fresnel triples, put them in an RDF file and include the URI of that file in the list of URIs given to OWF to generate an interface from.

Cascade Fresnel to hide undesired properties

FOAF person form resulting from cascading Fresnel style hiding undesired properties

One possibility for cascading Fresnel style overriding the default style is the use of the fresnel:hideProperties property. To do so, make an RDF file with fresnel:hideProperties from the form lens for the undesired properties, and include a URI to that file in the list of ontologies to generate the interface from. The screendump here compared to the screendump in the "Fill in a form" section above has fewer displayed properties.

The Fresnel code that overrides default use of certain properties in the example here is:

:defaultLenshttpxmlnscomfoaf01Person rdf:type fresnel:Lens ;
fresnel:hideProperties foaf:currentProject, foaf:family_name, foaf:geekcode, foaf:lastName, foaf:myersBriggs, foaf:pastProject, foaf:plan, foaf:publications, foaf:schoolHomepage, foaf:surname, foaf:workInfoHomepage, foaf:workplaceHomepage .


Cascade Fresnel to override property display defaults

Informbox display from cascading Fresnel style formatting foaf:img as an image

Default OWF interfaces render object property values as wiki page names. Cascading Fresnel style can override this default by assigning the fresnel:value property associated with the property to display with a fresnel value how how the wiki should display it. In the screendump here, the foaf:img property gets displayed as an image instead of a page name, as it was in the screendump in the "View an informbox" section above .

The Fresnel code that overrides defaults to show images as images rather than URIs is:

:imgFormat rdf:type fresnel:Format ;
fresnel:value fresnel:image ;
fresnel:propertyFormatDomain foaf:img .


Feature table

This table shows how OWF mapes ontologies to default Fresnel, and how it maps Frensel triples to semantic wiki interface components.

Ontology

Fresnel

         MediaWiki and extensions       

 

URIs

label

Pagename MW

Label on form and box displays OWF

 

 

[[EquivalentURI::¥]] SMW

 

rdf:Property

 

Gets own Property: page SMW

 

rdfs:

Class

Lens

defaultLens

classLensDomain

Gets own Category: page MW

[[Category:¥]] on topic page MW

Gets own informbox (if domain) OWF

[[Has default form::¥]] on category SF

subclassOf

 

[[Category:¥]] on category page MW

 

domain

showProperties

(Un)assign property to informbox OWF

 

cascading only

hideProperties

 

range value is

class

 

autocomplete on category=¥ SF

[[Has default form::¥]] on property SF

[[Has type::Page]] SMW

 

Literal

some xsd:²s

[[Has type::String]] SMW

 

other xsd:²s

[[Has type::Number]] SMW

 

xsd:URI

[[Has type::URL]] SMW

 

xsd:date(time)

[[Has type::Date]] SMW

 

xsd:Boolean

[[Has type::Boolean]] SMW

values=Yes,No | input type=radiobutton SF

cascading only

image

[[Has type::URL]] SMW

owl:

DataRange

with oneOf

 

input type=Enumeration SF
values=
SF
[[Allows value::¥]]
SMW

 

values

hasValue

allValuesFrom

autocomplete on category=¥ SF

 

someValuesFrom

mandatory SF

Cardinality

¥>0, min¥>0

¥=1, max¥=1

No #arraymap SF, No list SF

 

¥>1, min¥>1

#arraymap SF, list SF,

Repeated mandatory fields SF

 

 

 

Code and parameters generated by OWF from these technologies:
  MW MediaWiki, SMW Semantic MediaWiki, SF Semantic Forms, OWF OWF-only
Planned or under development in OWF (the rest is already implemented)

Recent additions