You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by bu...@apache.org on 2012/12/30 21:10:51 UTC

svn commit: r844333 - in /websites/staging/jena/trunk/content: ./ documentation/assembler/assembler-howto.html documentation/assembler/assembler.ttl documentation/assembler/examples.ttl

Author: buildbot
Date: Sun Dec 30 20:10:50 2012
New Revision: 844333

Log:
Staging update by buildbot for jena

Modified:
    websites/staging/jena/trunk/content/   (props changed)
    websites/staging/jena/trunk/content/documentation/assembler/assembler-howto.html
    websites/staging/jena/trunk/content/documentation/assembler/assembler.ttl
    websites/staging/jena/trunk/content/documentation/assembler/examples.ttl

Propchange: websites/staging/jena/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Sun Dec 30 20:10:50 2012
@@ -1 +1 @@
-1426790
+1426981

Modified: websites/staging/jena/trunk/content/documentation/assembler/assembler-howto.html
==============================================================================
--- websites/staging/jena/trunk/content/documentation/assembler/assembler-howto.html (original)
+++ websites/staging/jena/trunk/content/documentation/assembler/assembler-howto.html Sun Dec 30 20:10:50 2012
@@ -226,7 +226,7 @@ the next sections.</p>
 <p>Assembler specifications can describe many kinds of models: memory,
 inference, ontology, and file-backed. All of these model
 specifications share a set of base properties for attaching
-content, prefix mappings, and reification modes.</p>
+content and prefix mappings.</p>
 <div class="codehilite"><pre><span class="err">ja:Loadable</span> <span class="err">a</span> <span class="err">rdfs:Class</span> <span class="err">;</span>
   <span class="err">rdfs:subClassOf</span> <span class="err">ja:Object</span>
 <span class="err">.</span>
@@ -243,14 +243,11 @@ content, prefix mappings, and reificatio
   <span class="err">rdfs:subClassOf</span> <span class="err">ja:ContentItem</span> <span class="err">;</span>
   <span class="err">rdfs:subClassOf</span> <span class="err">ja:Loadable</span>
 <span class="err">.</span>
+
 <span class="err">ja:prefixMapping</span> <span class="err">a</span> <span class="err">rdf:Property</span> <span class="err">;</span>
   <span class="err">rdfs:domain</span> <span class="err">ja:Model</span> <span class="err">;</span>
   <span class="err">rdfs:range</span> <span class="err">ja:PrefixMapping</span>
 <span class="err">.</span>
-<span class="err">ja:reificationMode</span> <span class="err">a</span> <span class="err">rdf:Property</span> <span class="err">;</span>
-  <span class="err">rdfs:domain</span> <span class="err">ja:Model</span> <span class="err">;</span>
-  <span class="err">rdfs:range</span> <span class="err">ja:ReificationMode</span>
-<span class="err">.</span>
 </pre></div>
 
 
@@ -282,10 +279,6 @@ has any prefix mappings, then they are a
 constructed and used to set the prefixes of the model. See
 <a href="#spec-prefix-mapping">PrefixMapping</a> for the description of
 Content specifications.</p>
-<p>A model may have a single <code>ja:reificationMode</code> property whose value
-must be one of the constants <code>ja:standard</code>, <code>ja:convenient</code>, or
-<code>ja:minimal</code>. The model's reification mode is set accordingly, if
-possible.</p>
 <h3 id="content-specification">Content specification</h3>
 <p>A Content specification describes content that can be used to fill
 models. Content can be external (files and URLs) or literal

Modified: websites/staging/jena/trunk/content/documentation/assembler/assembler.ttl
==============================================================================
--- websites/staging/jena/trunk/content/documentation/assembler/assembler.ttl (original)
+++ websites/staging/jena/trunk/content/documentation/assembler/assembler.ttl Sun Dec 30 20:10:50 2012
@@ -70,17 +70,6 @@ ja:Model a rdfs:Class
     .
 
 #
-# every Model can be given a ReificationMode
-#
-
-ja:reificationMode a rdf:Property
-    ; rdfs:label "Assembler.reificationMode"
-    ; rdfs:comment "property to attach a ReificationMode to a Model"
-    ; rdfs:domain ja:Model
-    ; rdfs:range ja:ReificationMode
-    .
-
-#
 # every model can has some content specified by a Content object.
 #
 
@@ -669,30 +658,6 @@ ja:dbClassProperty a rdf:Property
     .
 
 #
-# reification modes
-#
-
-ja:ReificationMode a rdfs:Class
-    ; rdfs:label "Assembler.ReificationMode"
-    ; rdfs:comment "the class of reification modes"
-    .
-
-ja:standard a ja:ReificationMode
-    ; rdfs:label "Standard"
-    ; rdfs:comment "reification mode Standard - all reification triples visible"
-    .
-
-ja:minimal a ja:ReificationMode
-    ; rdfs:label "Minimal"
-    ; rdfs:comment "reification mode Minimal - no reification triples visible"
-    .
-
-ja:convenient a ja:ReificationMode
-    ; rdfs:label "Convenient"
-    ; rdfs:comment "reification mode Convenient"
-    .
-
-#
 # prefix mappings
 #
 

Modified: websites/staging/jena/trunk/content/documentation/assembler/examples.ttl
==============================================================================
--- websites/staging/jena/trunk/content/documentation/assembler/examples.ttl (original)
+++ websites/staging/jena/trunk/content/documentation/assembler/examples.ttl Sun Dec 30 20:10:50 2012
@@ -19,7 +19,6 @@
 @prefix owl:        <http://www.w3.org/2002/07/owl#> .
 
 @prefix ja:         <http://jena.hpl.hp.com/2005/11/Assembler#> .
-@prefix jr:         <http://jena.hpl.hp.com/2003/08/Assembler.ReificationMode#> .
 
 @prefix dc:         <http://purl.org/dc/elements/1.1/> .
 @prefix eg:         <http://www.example.org/> .
@@ -38,7 +37,6 @@
     dc:creator       "Chris Dollin" ;
     dc:creator       "the Jena team" ;
     dc:subject       "" ;
-    dc:publisher     "HP" ;
     dc:title         "Assembler examples" ;
     dc:description   "Assembler examples" ;
     dc:date          "2005-11-30" ;