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 2016/07/12 20:06:37 UTC

svn commit: r992622 - in /websites/staging/jena/trunk/content: ./ documentation/txn/transactions.html documentation/txn/txn.html

Author: buildbot
Date: Tue Jul 12 20:06:36 2016
New Revision: 992622

Log:
Staging update by buildbot for jena

Modified:
    websites/staging/jena/trunk/content/   (props changed)
    websites/staging/jena/trunk/content/documentation/txn/transactions.html
    websites/staging/jena/trunk/content/documentation/txn/txn.html

Propchange: websites/staging/jena/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Tue Jul 12 20:06:36 2016
@@ -1 +1 @@
-1752338
+1752340

Modified: websites/staging/jena/trunk/content/documentation/txn/transactions.html
==============================================================================
--- websites/staging/jena/trunk/content/documentation/txn/transactions.html (original)
+++ websites/staging/jena/trunk/content/documentation/txn/transactions.html Tue Jul 12 20:06:36 2016
@@ -156,9 +156,10 @@
 }
 h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
 <p>This page gives an overview transaction in Jena.</p>
-<p>There are two2 API for transactions: the <a href="transactions_api.html">basic transaction interface</a>
-styled after the conventional <code>begin</code>-<code>commit</code> and a <a href="#txn.html">higher level <code>Txn</code> API</a>
-that builds on the basic API using Java8 features.</p>
+<p>There are two API for transactions: the <a href="transactions_api.html">basic transaction
+interface</a> styled after the conventional
+<code>begin</code>-<code>commit</code> and a <a href="#txn.html">higher level <code>Txn</code> API</a> that builds
+on the basic API using Java8 features.</p>
 <h2 id="apis">APIs<a class="headerlink" href="#apis" title="Permanent link">&para;</a></h2>
 <ul>
 <li><a href="transactions_api.html">Basic API for Transactions</a></li>
@@ -196,7 +197,7 @@ better concurrency with MR+SW (multiple-
 </thead>
 <tbody>
 <tr>
-<td><code>TxnMem</code></td>
+<td>TxnMem</td>
 <td>MR+SW</td>
 <td><code>DatasetFactory.createTxnMem</code></td>
 </tr>

Modified: websites/staging/jena/trunk/content/documentation/txn/txn.html
==============================================================================
--- websites/staging/jena/trunk/content/documentation/txn/txn.html (original)
+++ websites/staging/jena/trunk/content/documentation/txn/txn.html Tue Jul 12 20:06:36 2016
@@ -158,11 +158,13 @@ h2:hover > .headerlink, h3:hover > .head
 <p><code>Txn</code> provides a high level interface to Jena transactions.  It is a
 library over the core functionality - applications do not have to use <code>Txn</code>
 to use transactions.</p>
-<p>Features:
-<em> Java8 idioms
-</em> Application exceptions cause transaction aborts.
-<em> "Transaction continuation" - use any existing active trsnaction.
-</em> Autocommit - ensure actions are inside a transaction even if none is active.</p>
+<p>Features:</p>
+<ul>
+<li>Java8 idioms</li>
+<li>Application exceptions cause transaction aborts.</li>
+<li>"Transaction continuation" - use any existing active trsnaction.</li>
+<li>Autocommit - ensure actions are inside a transaction even if none is active.</li>
+</ul>
 <h2 id="transactions">Transactions<a class="headerlink" href="#transactions" title="Permanent link">&para;</a></h2>
 <p>The <a href="basic_txn_api.html">basic transactions API</a> provides opertions
 <code>begin</code>, <code>commit</code>, <code>abort</code> and <code>end</code>.</p>