You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2013/09/03 12:03:29 UTC

svn commit: r1519628 - in /jena/site/trunk/content: getting_started/index.mdtext js/breadcrumbs.js

Author: andy
Date: Tue Sep  3 10:03:28 2013
New Revision: 1519628

URL: http://svn.apache.org/r1519628
Log:
Patch JENA-482 (breadcrumbs.diff)

Modified:
    jena/site/trunk/content/getting_started/index.mdtext
    jena/site/trunk/content/js/breadcrumbs.js

Modified: jena/site/trunk/content/getting_started/index.mdtext
URL: http://svn.apache.org/viewvc/jena/site/trunk/content/getting_started/index.mdtext?rev=1519628&r1=1519627&r2=1519628&view=diff
==============================================================================
--- jena/site/trunk/content/getting_started/index.mdtext (original)
+++ jena/site/trunk/content/getting_started/index.mdtext Tue Sep  3 10:03:28 2013
@@ -1,15 +1,47 @@
 Title: Getting started with Apache Jena
 
-*Please bear with us, we're in the process of updating this section of the site*.
-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:
-
-  - [Jena RDF API tutorial](/tutorials/rdf_api.html)
-  - [SPARQL tutorial](/tutorials/sparql.html)
-  - [Ontology API overview](/documentation/ontology)
+Apache Jena (or Jena in short) is a free and open source Java 
+framework for building [semantic web](http://en.wikipedia.org/wiki/Semantic_Web) and 
+[Linked Data](http://linkeddata.org/) 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 [tutorials](/tutorials/index.html). You can also browse [the documentation](/documentation/index.html) if you are interested in a particular topic.
 
-## Other resources
+<h2><img class="logo-menu" src="/images/jena-logo/jena-logo-notext-small.png" alt="jena logo">Tutorials</h2>
 
-Jena committer Paolo Castagna has listed some [example programs](https://github.com/castagna/jena-examples)
+* [RDF API tutorial](/tutorials/rdf_api.html) - you will learn 
+the essence of the semantic web and the graph representation
+behind RDF.
+* [SPARQL tutorial](/tutorials/sparql.html) - will guide you 
+into formulate expressive queries over RDF data.
+* [Ontology API](/documentation/ontology) - illustrates the
+usage of advanced semantic web features such as reasoning over your data using OWL.
+* Finally, [some of the tutorials](/tutorials/index.html) are also available in Traditional Chinese, Portuguese and French.
+
+<h2><img class="logo-menu" src="/images/jena-logo/jena-logo-notext-small.png" alt="jena logo">Documentation</h2>
+
+The following topics are covered in the documentation:
+
+* [The RDF API](/documentation/rdf/) - the core RDF API in Jena
+* [SPARQL](/documentation/query/) - querying and updating RDF models using the SPARQL standards
+* [Fuseki](/documentation/serving_data/) - SPARQL server which can present RDF data and answer SPARQL queries over HTTP
+* [Assembler](/documentation/assembler/) - describing recipes for constructing Jena models declaratively using RDF
+* [Inference](/documentation/inference/) - using the Jena rules engine and other inference algorithms to derive consequences from RDF models
+* [Javadoc](/documentation/javadoc/) - JavaDoc generated from the Jena source
+* [Text Search](/documentation/query/text-query.html) - enhanced indexes using Lucene or Solr for more efficient searching of text literals in Jena models and datasets.
+* [I/O](/documentation/io/) - notes on input and output of triples to and from Jena models
+* [How-To's](/documentation/notes/) - various topic-specific how-to documents
+* [Ontology](/documentation/ontology/) - support for handling OWL models in Jena
+* [TDB](/documentation/tdb/) - a fast persistent triple store that stores directly to disk
+* [SQL DB](/documentation/sdb/) - constructing persistent Jena models using SQL databases as the storage layer
+* [Tools](/documentation/tools/) - various command-line tools and utilities to help developers manage RDF data and other aspects of Jena
+
+<h2><img class="logo-menu" src="/images/jena-logo/jena-logo-notext-small.png" alt="jena logo">Framework Architecture</h2>
+
+The interaction between the different APIs:
+
+![Jena architecture overview](/images/jena-architecture.png "Jena architecture overview")
+
+<h2><img class="logo-menu" src="/images/jena-logo/jena-logo-notext-small.png" alt="jena logo">Other resources</h2>
+
+Finally, Jena committer Paolo Castagna has listed some [example programs](https://github.com/castagna/jena-examples)
 using Jena on his GitHub site.

Modified: jena/site/trunk/content/js/breadcrumbs.js
URL: http://svn.apache.org/viewvc/jena/site/trunk/content/js/breadcrumbs.js?rev=1519628&r1=1519627&r2=1519628&view=diff
==============================================================================
--- jena/site/trunk/content/js/breadcrumbs.js (original)
+++ jena/site/trunk/content/js/breadcrumbs.js Tue Sep  3 10:03:28 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'){