Author: buildbot
Date: Tue Sep 3 10:04:13 2013
New Revision: 877140
Log:
Staging update by buildbot for jena
Modified:
websites/staging/jena/trunk/content/ (props changed)
websites/staging/jena/trunk/content/getting_started/index.html
websites/staging/jena/trunk/content/js/breadcrumbs.js
Propchange: websites/staging/jena/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Tue Sep 3 10:04:13 2013
@@ -1 +1 @@
-1519505
+1519628
Modified: websites/staging/jena/trunk/content/getting_started/index.html
==============================================================================
--- websites/staging/jena/trunk/content/getting_started/index.html (original)
+++ websites/staging/jena/trunk/content/getting_started/index.html Tue Sep 3
10:04:13 2013
@@ -126,17 +126,48 @@
<div class="col-md-12">
<div id="breadcrumbs"></div>
<h1 class="title">Getting started with Apache Jena</h1>
- <p><em>Please bear with us, we're in the process of updating this section of
the site</em>.
-This section will shortly contain some example projects illustrating aspects of
-using Jena for RDF processing. In the meantime, please see the following
-resources for help:</p>
+ <p>Apache Jena (or Jena in short) is a free and open source Java
+framework for building <a
href="http://en.wikipedia.org/wiki/Semantic_Web">semantic web</a> and
+<a href="http://linkeddata.org/">Linked Data</a> applications.
+The framework is composed of different APIs interacting together to process
RDF data. If you are new here, you might want to
+get started by following one of the <a
href="/tutorials/index.html">tutorials</a>. You can also browse <a
href="/documentation/index.html">the documentation</a> if you are interested in
a particular topic.</p>
+<h2><img class="logo-menu" src="/images/jena-logo/jena-logo-notext-small.png"
alt="jena logo">Tutorials</h2>
+
+<ul>
+<li><a href="/tutorials/rdf_api.html">RDF API tutorial</a> - you will learn
+the essence of the semantic web and the graph representation
+behind RDF.</li>
+<li><a href="/tutorials/sparql.html">SPARQL tutorial</a> - will guide you
+into formulate expressive queries over RDF data.</li>
+<li><a href="/documentation/ontology">Ontology API</a> - illustrates the
+usage of advanced semantic web features such as reasoning over your data using
OWL.</li>
+<li>Finally, <a href="/tutorials/index.html">some of the tutorials</a> are
also available in Traditional Chinese, Portuguese and French.</li>
+</ul>
+<h2><img class="logo-menu" src="/images/jena-logo/jena-logo-notext-small.png"
alt="jena logo">Documentation</h2>
+
+<p>The following topics are covered in the documentation:</p>
<ul>
-<li><a href="/tutorials/rdf_api.html">Jena RDF API tutorial</a></li>
-<li><a href="/tutorials/sparql.html">SPARQL tutorial</a></li>
-<li><a href="/documentation/ontology">Ontology API overview</a></li>
+<li><a href="/documentation/rdf/">The RDF API</a> - the core RDF API in
Jena</li>
+<li><a href="/documentation/query/">SPARQL</a> - querying and updating RDF
models using the SPARQL standards</li>
+<li><a href="/documentation/serving_data/">Fuseki</a> - SPARQL server which
can present RDF data and answer SPARQL queries over HTTP</li>
+<li><a href="/documentation/assembler/">Assembler</a> - describing recipes for
constructing Jena models declaratively using RDF</li>
+<li><a href="/documentation/inference/">Inference</a> - using the Jena rules
engine and other inference algorithms to derive consequences from RDF
models</li>
+<li><a href="/documentation/javadoc/">Javadoc</a> - JavaDoc generated from the
Jena source</li>
+<li><a href="/documentation/query/text-query.html">Text Search</a> - enhanced
indexes using Lucene or Solr for more efficient searching of text literals in
Jena models and datasets.</li>
+<li><a href="/documentation/io/">I/O</a> - notes on input and output of
triples to and from Jena models</li>
+<li><a href="/documentation/notes/">How-To's</a> - various topic-specific
how-to documents</li>
+<li><a href="/documentation/ontology/">Ontology</a> - support for handling OWL
models in Jena</li>
+<li><a href="/documentation/tdb/">TDB</a> - a fast persistent triple store
that stores directly to disk</li>
+<li><a href="/documentation/sdb/">SQL DB</a> - constructing persistent Jena
models using SQL databases as the storage layer</li>
+<li><a href="/documentation/tools/">Tools</a> - various command-line tools and
utilities to help developers manage RDF data and other aspects of Jena</li>
</ul>
-<h2 id="other-resources">Other resources</h2>
-<p>Jena committer Paolo Castagna has listed some <a
href="https://github.com/castagna/jena-examples">example programs</a>
+<h2><img class="logo-menu" src="/images/jena-logo/jena-logo-notext-small.png"
alt="jena logo">Framework Architecture</h2>
+
+<p>The interaction between the different APIs:</p>
+<p><img alt="Jena architecture overview" src="/images/jena-architecture.png"
title="Jena architecture overview" /></p>
+<h2><img class="logo-menu" src="/images/jena-logo/jena-logo-notext-small.png"
alt="jena logo">Other resources</h2>
+
+<p>Finally, Jena committer Paolo Castagna has listed some <a
href="https://github.com/castagna/jena-examples">example programs</a>
using Jena on his GitHub site.</p>
</div>
</div>
Modified: websites/staging/jena/trunk/content/js/breadcrumbs.js
==============================================================================
--- websites/staging/jena/trunk/content/js/breadcrumbs.js (original)
+++ websites/staging/jena/trunk/content/js/breadcrumbs.js Tue Sep 3 10:04:13
2013
@@ -1,7 +1,9 @@
$(document).ready(function() {
var url = $(location).attr('href');
- var prefix = '';
+
+ //Get the name of the domain dynamically
+ var prefix = 'http://' + location.host + '/';
if(url != prefix && url != prefix + 'index.html'){