You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by ij...@apache.org on 2011/10/25 00:48:40 UTC

svn commit: r1188430 - in /incubator/jena/site/trunk/content/jena: css/jena.css documentation/index.mdtext documentation/io/iohowto.mdtext documentation/io/sax.mdtext

Author: ijd
Date: Mon Oct 24 22:48:39 2011
New Revision: 1188430

URL: http://svn.apache.org/viewvc?rev=1188430&view=rev
Log:
Minor cleanup on ARP documentation

Modified:
    incubator/jena/site/trunk/content/jena/css/jena.css
    incubator/jena/site/trunk/content/jena/documentation/index.mdtext
    incubator/jena/site/trunk/content/jena/documentation/io/iohowto.mdtext
    incubator/jena/site/trunk/content/jena/documentation/io/sax.mdtext

Modified: incubator/jena/site/trunk/content/jena/css/jena.css
URL: http://svn.apache.org/viewvc/incubator/jena/site/trunk/content/jena/css/jena.css?rev=1188430&r1=1188429&r2=1188430&view=diff
==============================================================================
--- incubator/jena/site/trunk/content/jena/css/jena.css (original)
+++ incubator/jena/site/trunk/content/jena/css/jena.css Mon Oct 24 22:48:39 2011
@@ -272,4 +272,25 @@ dt {
   background-color: #ededee;
   border: 1px dotted #688a6f;
   border-radius: 5px;
-}
\ No newline at end of file
+}
+
+/* Tables */
+table td {
+  vertical-align: top;
+  border-right: 1px dotted #ffdaae;
+  border-top: 1px dotted #ffdaae;
+  padding: 0.2em;
+}
+
+table {
+  border: 1px solid #ffdaae;
+  border-spacing: 0;
+}
+
+table tr th {
+  background-color: #ffeace;
+}
+
+table tr {
+}
+

Modified: incubator/jena/site/trunk/content/jena/documentation/index.mdtext
URL: http://svn.apache.org/viewvc/incubator/jena/site/trunk/content/jena/documentation/index.mdtext?rev=1188430&r1=1188429&r2=1188430&view=diff
==============================================================================
--- incubator/jena/site/trunk/content/jena/documentation/index.mdtext (original)
+++ incubator/jena/site/trunk/content/jena/documentation/index.mdtext Mon Oct 24 22:48:39 2011
@@ -6,16 +6,17 @@ please refer to the [Getting started](/j
 sections.
 
 ##Documentation index
-* [the RDF API](./rdf) - the core RDF API in Jena
+* [The RDF API](./rdf) - the core RDF API in Jena
 * [SPARQL](./query) - querying and updating RDF models using the SPARQL standards
-* [assembler](./assembler) - describing recipes for constructing Jena models declaratively using RDF
-* [inference](./inference) - using the Jena rules engine and other inference algorithms to derive consequences from RDF models
-* [javadoc](./javadoc) - JavaDoc generated from the Jena source
-* [larq](./larq) - enhanced indexes using Lucene for more efficient searching of text literals in Jena models
-* [how-tos](./notes) - various topic-specific how-to documents
-* [ontology](./ontology) - support for handling OWL models in Jena
+* [Assembler](./assembler) - describing recipes for constructing Jena models declaratively using RDF
+* [Inference](./inference) - using the Jena rules engine and other inference algorithms to derive consequences from RDF models
+* [Javadoc](./javadoc) - JavaDoc generated from the Jena source
+* [LARQ](./larq) - enhanced indexes using Lucene for more efficient searching of text literals in Jena models
+* [I/O](./io) - notes on input and output of triples to and from Jena models
+* [How-To's](./notes) - various topic-specific how-to documents
+* [Ontology](./ontology) - support for handling OWL models in Jena
 * [SQL DB](./sdb) - constructing persistent Jena models using SQL databases as the storage layer
 * [TDB](./tdb) - a fast persistent triple store that stores directly to disk without requiring a relational store
-* [serving RDF data](./serving_data) - servers which can present RDF data and answer SPARQL queries over HTTP
-* [tools](./tools) - various command-line tools and utilities to help developers manage RDF data and other aspects of Jena
+* [Serving RDF data](./serving_data) - servers which can present RDF data and answer SPARQL queries over HTTP
+* [Tools](./tools) - various command-line tools and utilities to help developers manage RDF data and other aspects of Jena
 

Modified: incubator/jena/site/trunk/content/jena/documentation/io/iohowto.mdtext
URL: http://svn.apache.org/viewvc/incubator/jena/site/trunk/content/jena/documentation/io/iohowto.mdtext?rev=1188430&r1=1188429&r2=1188430&view=diff
==============================================================================
--- incubator/jena/site/trunk/content/jena/documentation/io/iohowto.mdtext (original)
+++ incubator/jena/site/trunk/content/jena/documentation/io/iohowto.mdtext Mon Oct 24 22:48:39 2011
@@ -574,28 +574,27 @@ invocation.
 </tr>
 <tr>
 <td>`blockRules`</td>
-<td>A list of `Resource` or a `String` being a comma separated list of
-fragment IDs from
-[http://www.w3.org/TR/rdf-syntax-grammar](http://www.w3.org/TR/rdf-syntax-grammar)
-indicating grammar rules that will not be used. Rules that can be
-avoided are:
-
--   [section-Reification](http://www.w3.org/TR/rdf-syntax-grammar#section-Reification)
-    ([`RDFSyntax.sectionReification`](/jena/documentation/javadoc/jena/com/hp/hpl/jena/vocabulary/RDFSyntax.html#sectionReification))
--   [section-List-Expand](http://www.w3.org/TR/rdf-syntax-grammar#section-List-Expand)
-    ([`RDFSyntax.sectionListExpand`](/jena/documentation/javadoc/jena/com/hp/hpl/jena/vocabulary/RDFSyntax.html#sectionListExpand))
--   [parseTypeLiteralPropertyElt](http://www.w3.org/TR/rdf-syntax-grammar#parseTypeLiteralPropertyElt)
-    ([`RDFSyntax.parseTypeLiteralPropertyElt`](/jena/documentation/javadoc/jena/com/hp/hpl/jena/vocabulary/RDFSyntax.html#parseTypeLiteralPropertyElt))
--   [parseTypeResourcePropertyElt](http://www.w3.org/TR/rdf-syntax-grammar#parseTypeResourcePropertyElt)
-    ([`RDFSyntax.parseTypeLiteralPropertyElt`](/jena/documentation/javadoc/jena/com/hp/hpl/jena/vocabulary/RDFSyntax.html#parseTypeLiteralPropertyElt))
--   [parseTypeCollectionPropertyElt](http://www.w3.org/TR/rdf-syntax-grammar#parseTypeCollectionPropertyElt)
-    ([`RDFSyntax.parseTypeCollectionPropertyElt`](/jena/documentation/javadoc/jena/com/hp/hpl/jena/vocabulary/RDFSyntax.html#parseTypeCollectionPropertyElt))
--   [idAttr](http://www.w3.org/TR/rdf-syntax-grammar#idAttr)
-    ([`RDFSyntax.idAttr`](/jena/documentation/javadoc/jena/com/hp/hpl/jena/vocabulary/RDFSyntax.html#idAttr))
--   [propertyAttr](http://www.w3.org/TR/rdf-syntax-grammar#propertyAttr)
-    ([`RDFSyntax.propertyAttr`](/jena/documentation/javadoc/jena/com/hp/hpl/jena/vocabulary/RDFSyntax.html#propertyAttr))
+<td>
+A list of `Resource` or a `String` being a comma separated list of
+fragment IDs from [http://www.w3.org/TR/rdf-syntax-grammar](www.w3.org/TR/rdf-syntax-grammar)
+indicating grammar rules that will not be used. Rules that can be blocked are:
+
+- [section-Reification](http://www.w3.org/TR/rdf-syntax-grammar#section-Reification)
+ ([`RDFSyntax.sectionReification`](/jena/documentation/javadoc/jena/com/hp/hpl/jena/vocabulary/RDFSyntax.html#sectionReification))
+- [section-List-Expand](http://www.w3.org/TR/rdf-syntax-grammar#section-List-Expand)
+ ([`RDFSyntax.sectionListExpand`](/jena/documentation/javadoc/jena/com/hp/hpl/jena/vocabulary/RDFSyntax.html#sectionListExpand))
+- [parseTypeLiteralPropertyElt](http://www.w3.org/TR/rdf-syntax-grammar#parseTypeLiteralPropertyElt)
+ ([`RDFSyntax.parseTypeLiteralPropertyElt`](/jena/documentation/javadoc/jena/com/hp/hpl/jena/vocabulary/RDFSyntax.html#parseTypeLiteralPropertyElt))
+- [parseTypeResourcePropertyElt](http://www.w3.org/TR/rdf-syntax-grammar#parseTypeResourcePropertyElt)
+ ([`RDFSyntax.parseTypeLiteralPropertyElt`](/jena/documentation/javadoc/jena/com/hp/hpl/jena/vocabulary/RDFSyntax.html#parseTypeLiteralPropertyElt))
+- [parseTypeCollectionPropertyElt](http://www.w3.org/TR/rdf-syntax-grammar#parseTypeCollectionPropertyElt)
+ ([`RDFSyntax.parseTypeCollectionPropertyElt`](/jena/documentation/javadoc/jena/com/hp/hpl/jena/vocabulary/RDFSyntax.html#parseTypeCollectionPropertyElt))
+- [idAttr](http://www.w3.org/TR/rdf-syntax-grammar#idAttr)
+ ([`RDFSyntax.idAttr`](/jena/documentation/javadoc/jena/com/hp/hpl/jena/vocabulary/RDFSyntax.html#idAttr))
+- [propertyAttr](http://www.w3.org/TR/rdf-syntax-grammar#propertyAttr)
+ ([`RDFSyntax.propertyAttr`](/jena/documentation/javadoc/jena/com/hp/hpl/jena/vocabulary/RDFSyntax.html#propertyAttr))
 
-In addition "daml:collection"
+In addition `"daml:collection"`
 ([`DAML_OIL.collection`](/jena/documentation/javadoc/jena/com/hp/hpl/jena/vocabulary/DAML_OIL.html#collection))
 can be blocked. Blocking
 [idAttr](http://www.w3.org/TR/rdf-syntax-grammar#idAttr) also
@@ -605,10 +604,11 @@ By default, rule
 [propertyAttr](http://www.w3.org/TR/rdf-syntax-grammar#propertyAttr)
 is blocked. For the basic writer (RDF/XML) only
 [parseTypeLiteralPropertyElt](http://www.w3.org/TR/rdf-syntax-grammar#parseTypeLiteralPropertyElt)
-has any affect, since none of the other rules are implemented by
+has any effect, since none of the other rules are implemented by
 that writer.
 </td>
-<td>Resource[] or String</td>
+<td>`Resource[]` or `String`</td>
+<td></td>
 </tr>
 <tr> 
 <td>`prettyTypes`</td>
@@ -635,6 +635,7 @@ Example usage showing the a value suitab
 <td>
 `Resource[]`
 </td>
+<td></td>
 </tr>
 </table>
  

Modified: incubator/jena/site/trunk/content/jena/documentation/io/sax.mdtext
URL: http://svn.apache.org/viewvc/incubator/jena/site/trunk/content/jena/documentation/io/sax.mdtext?rev=1188430&r1=1188429&r2=1188430&view=diff
==============================================================================
--- incubator/jena/site/trunk/content/jena/documentation/io/sax.mdtext (original)
+++ incubator/jena/site/trunk/content/jena/documentation/io/sax.mdtext Mon Oct 24 22:48:39 2011
@@ -15,7 +15,7 @@ Jena Model.
 -   [Error Handler](#error_handler)
 -   [Options](#options)
 -   [XML Lang and Namespaces](#xml_lang_and_namespaces)
--   [Using your own statement handler](#using_your_own_statement_handler)
+-   [Using your own triple handler](#using_your_own_triple_handler)
 -   [Using a DOM as input](#using_a_dom_as_input)
 
 ## 1. Overview