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 2015/03/04 11:20:55 UTC

svn commit: r942241 - in /websites/staging/jena/trunk/content: ./ documentation/fuseki2/index.html

Author: buildbot
Date: Wed Mar  4 10:20:55 2015
New Revision: 942241

Log:
Staging update by buildbot for jena

Modified:
    websites/staging/jena/trunk/content/   (props changed)
    websites/staging/jena/trunk/content/documentation/fuseki2/index.html

Propchange: websites/staging/jena/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Wed Mar  4 10:20:55 2015
@@ -1 +1 @@
-1663683
+1663918

Modified: websites/staging/jena/trunk/content/documentation/fuseki2/index.html
==============================================================================
--- websites/staging/jena/trunk/content/documentation/fuseki2/index.html (original)
+++ websites/staging/jena/trunk/content/documentation/fuseki2/index.html Wed Mar  4 10:20:55 2015
@@ -142,14 +142,120 @@
 	<div class="col-md-12">
 	<div id="breadcrumbs"></div>
 	<h1 class="title"></h1>
-  <h2 id="apache-jena-fuseki2">Apache Jena Fuseki2</h2>
-<p>Fuseki2 is a new major revision of Fuseki.</p>
+  <h2 id="apache-jena-fuseki">Apache Jena Fuseki</h2>
+<p>Apache Jena Fuseki is a SPARQL server.  It can run as a operating system
+service, as a Java web application (WAR file), and as a standalone server.
+It provides security (using <a href="https://shiro.apache.org/">Apache Shiro</a>) and
+has a user interface for server monitoring and administration.</p>
+<p>It provides the SPARQL 1.1 
+<a href="http://www.w3.org/TR/sparql11-protocol/">protocols for query and update</a> 
+as well as the 
+<a href="http://www.w3.org/TR/sparql11-http-rdf-update/">SPARQL Graph Store protocol</a>.</p>
+<p>Fuseki is tightly integrated with <a href="../tdb/index.html">TDB</a> to provide a robust,
+transactional persistent storage layer, and incorporates
+<a href="../query/text-query.html">Jena text query</a>
+and <a href="query/spatial-query.html">Jena spatial query</a>.<br />
+It can be used to provide the protocol engine for other RDF query and
+storage systems.</p>
+<h2 id="contents">Contents</h2>
 <ul>
-<li>Security support, provided by <a href="http://shiro.apache.org/">Apache Shiro</a></li>
-<li>New administration user interface for monitoring and managing datasets.</li>
-<li>WAR file deployment</li>
+<li><a href="#download-fuseki">Download</a></li>
+<li><a href="#getting-started-with-fuseki">Getting Started</a></li>
+<li><a href="fuseki-security.html">Security</a></li>
+<li><a href="fuseki-run.html">Running Fuseki</a><ul>
+<li><a href="fuseki-run.html#fuseki-as-a-web-application">As a web application</a></li>
+<li><a href="fuseki-run.html#fuseki-as-a-service">As a service</a></li>
+<li><a href="fuseki-run.html#fuseki-as-a-standalone%20server">As a standalone server</a></li>
 </ul>
-<p><a href="fuseki-main.html">Draft documentation</a>.</p>
+</li>
+<li>Architecture<ul>
+<li><a href="fuseki-data-services.html">Server URI scheme : services and datasets</a></li>
+<li><a href="fuseki-server-protocol.html">Server Admin Protocol</a></li>
+</ul>
+</li>
+<li><a href="fuseki-configuration.html">Fuseki Configuration</a></li>
+<li><a href="fuseki-logging.html">Logging</a></li>
+<li><a href="#how-to-contribute">How to Contribute</a></li>
+<li>Client access<ul>
+<li><a href="#sparql-java-clients">Use from Java</a></li>
+<li><a href="soh.html">SPARQL Over HTTP</a> - scripts to help with data management.</li>
+</ul>
+</li>
+<li><a href="rdf-sparql-standards.html">Links to Standards</a></li>
+</ul>
+<p>The Jena users mailing is the place to get help with Fuseki.  </p>
+<p><a href="/help_and_support/#email-support-lists">Email support lists</a></p>
+<h2 id="download-fuseki">Download Fuseki</h2>
+<p>Releases of Apache Jena Fuseki can be downloaded from one of the mirror sites:</p>
+<p><a href="/download">Jena Downloads</a></p>
+<p>and previous releases are available from <a href="http://archive.apache.org/dist/jena/">the archive</a>.
+We strongly recommend that users use the latest official Apache releases of Jena Fuseki in
+preference to any older versions or of development builds.</p>
+<p>Fuseki requires Java7.</p>
+<p><strong>Fuseki download files</strong></p>
+<table>
+<thead>
+<tr>
+<th>Filename</th>
+<th>Description</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td><code>fuseki-*VER*.distribution.zip</code></td>
+<td>Fuseki download, includes everything.</td>
+</tr>
+<tr>
+<td><code>fuseki-*VER*-server.jar</code></td>
+<td>Fuseki server, as an executable jar.</td>
+</tr>
+<tr>
+<td><code>fuseki-*VER*-server.war</code></td>
+<td>Fuseki server, as a web application archive (.war) file.</td>
+</tr>
+</tbody>
+</table>
+<blockquote>
+<p><em>@@ Not ready yet</em>
+It is also available as a Java web application WAR file via maven.</p>
+</blockquote>
+<div class="codehilite"><pre><span class="nt">&lt;dependency&gt;</span>
+   <span class="nt">&lt;groupId&gt;</span>org.apache.jena<span class="nt">&lt;/groupId&gt;</span>
+   <span class="nt">&lt;artifactId&gt;</span>jena-fuseki-webapp<span class="nt">&lt;/artifactId&gt;</span>
+   <span class="nt">&lt;type&gt;</span>war<span class="nt">&lt;/type&gt;</span>
+   <span class="nt">&lt;version&gt;</span>X.Y.Z<span class="nt">&lt;/version&gt;</span>
+<span class="nt">&lt;/dependency&gt;</span>
+</pre></div>
+
+
+<h3 id="previous-releases">Previous releases</h3>
+<p>While previous releases are available, we strongly recommend that wherever
+possible users use the latest official Apache releases of Jena in
+preference to using any older versions of Jena.</p>
+<p>Previous Apache Jena releases can be found in the Apache archive area
+at <a href="http://archive.apache.org/dist/jena/">http://archive.apache.org/dist/jena</a></p>
+<h3 id="development-builds">Development Builds</h3>
+<p>Regular developement builds of all of Jena are available (these are not
+formal releases) from the 
+<a href="https://repository.apache.org/snapshots/org/apache/jena">Apache snapshots maven repository</a>.
+This includes packaged builds of Fuseki.</p>
+<h2 id="getting-started-with-fuseki">Getting Started With Fuseki</h2>
+<p>This section serves as a basic guide to getting a Fuskei server running on
+your local machine.  See <a href="fuseki-run.html">other sections</a> for complete
+coverage of all the deployment methods for Fuseki.</p>
+<h2 id="how-to-contribute">How to Contribute</h2>
+<p>We welcome contributions towards making Jena a better platform for semantic
+web and linked data applications.  We appreciate feature suggestions, bug
+reports and patches for code or documentation.</p>
+<p>See "<a href="/getting_involved/index.html">Getting Involved</a>" for ways to
+contribute to Jena and Fuseki, including patches and making github
+pull-requests.</p>
+<h3 id="source-code">Source code</h3>
+<p>The development codebase is available from git.</p>
+<p>Development builds (not a formal release):
+<a href="https://repository.apache.org/content/repositories/snapshots/org/apache/jena/jena-fuseki/">SNAPSHOT</a></p>
+<p>Source code mirrored to github:
+<a href="https://github.com/apache/jena/jena-fuseki2">https://github.com/apache/jena/jena-fuseki2</a></p>
   </div>
 </div>