You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stanbol.apache.org by ag...@apache.org on 2011/07/04 23:57:08 UTC

svn commit: r1142820 - in /incubator/stanbol/site/trunk/content/stanbol/docs/trunk: contentenhancement.mdtext engines.mdtext entityhub.mdtext index.mdtext services.mdtext

Author: agruber
Date: Mon Jul  4 21:57:08 2011
New Revision: 1142820

URL: http://svn.apache.org/viewvc?rev=1142820&view=rev
Log:
services and engines list completed, enhancement examples streamlined

Modified:
    incubator/stanbol/site/trunk/content/stanbol/docs/trunk/contentenhancement.mdtext
    incubator/stanbol/site/trunk/content/stanbol/docs/trunk/engines.mdtext
    incubator/stanbol/site/trunk/content/stanbol/docs/trunk/entityhub.mdtext
    incubator/stanbol/site/trunk/content/stanbol/docs/trunk/index.mdtext
    incubator/stanbol/site/trunk/content/stanbol/docs/trunk/services.mdtext

Modified: incubator/stanbol/site/trunk/content/stanbol/docs/trunk/contentenhancement.mdtext
URL: http://svn.apache.org/viewvc/incubator/stanbol/site/trunk/content/stanbol/docs/trunk/contentenhancement.mdtext?rev=1142820&r1=1142819&r2=1142820&view=diff
==============================================================================
--- incubator/stanbol/site/trunk/content/stanbol/docs/trunk/contentenhancement.mdtext (original)
+++ incubator/stanbol/site/trunk/content/stanbol/docs/trunk/contentenhancement.mdtext Mon Jul  4 21:57:08 2011
@@ -78,125 +78,77 @@ _Note: {name} denotes to the value you c
 
 ## Enhancement Example
 
-The text "John Smith was born in London." with a minimal configuration of enhancement engines (_Named Entity Extraction Enhancement Engine_ and _Named Entity Tagging Engine_) together with a local index of dbpedia entities will result in the following output graph of several Entity Annotations and Text Annotations (in Turtle-Syntax):
+The text "John Smith was born in London." with a minimal configuration of enhancement engines (_Named Entity Extraction Enhancement Engine_ and _Named Entity Tagging Engine_) together with a local index of dbpedia entities will result in the following output graph of several __Entity Annotations__ and __Text Annotations__. 
 
-    <urn:enhancement-37e084aa-abbd-5f15-d5e7-a59feea4deb2>
-      a       <http://fise.iks-project.eu/ontology/EntityAnnotation> , <http://fise.iks-project.eu/ontology/Enhancement> ;
-      <http://fise.iks-project.eu/ontology/confidence>
-              "46.396988"^^<http://www.w3.org/2001/XMLSchema#double> ;
-      <http://fise.iks-project.eu/ontology/entity-label>
-              "London, Ontario"@en ;
-      <http://fise.iks-project.eu/ontology/entity-reference>
-              <http://dbpedia.org/resource/London,_Ontario> ;
-      <http://fise.iks-project.eu/ontology/entity-type>
-              <http://www.w3.org/2002/07/owl#Thing> , <http://dbpedia.org/ontology/City> , <http://www.opengis.net/gml/_Feature> , <http://dbpedia.org/ontology/Place> , <http://dbpedia.org/ontology/Settlement> , <http://dbpedia.org/ontology/PopulatedPlace> ;
-      <http://fise.iks-project.eu/ontology/extracted-from>
-              <urn:content-item-sha1-88a2b5f6520df87e4567c06b48e742b7d1c71e9c> ;
-      <http://purl.org/dc/terms/created>
-              "2011-06-29T14:43:24.295+02:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;
-      <http://purl.org/dc/terms/creator> "org.apache.stanbol.enhancer.engines.entitytagging.impl.NamedEntityTaggingEngine"^^<http://www.w3.org/2001/XMLSchema#string> ;
-      <http://purl.org/dc/terms/relation>
-              <urn:enhancement-7af2e1a3-93fc-008f-fc6a-12accf05e58f> .
+Two of the relevant fragments for "London" are listed below in Turtle-Syntax:
 
+### Example for Text Annotation
 
+    <urn:enhancement-7af2e1a3-93fc-008f-fc6a-12accf05e58f>
+      a   <http://fise.iks-project.eu/ontology/TextAnnotation> , 
+          <http://fise.iks-project.eu/ontology/Enhancement> ;
+  
+          <http://fise.iks-project.eu/ontology/confidence>
+          "0.9973729691652052"^^<http://www.w3.org/2001/XMLSchema#double> ;
+  
+          <http://fise.iks-project.eu/ontology/end>
+          "29"^^<http://www.w3.org/2001/XMLSchema#int> ;
+  
+          <http://fise.iks-project.eu/ontology/extracted-from>
+          <urn:content-item-sha1-88a2b5f6520df87e4567c06b48e742b7d1c71e9c> ;
+ 
+          <http://fise.iks-project.eu/ontology/selected-text>
+          "London"^^<http://www.w3.org/2001/XMLSchema#string> ;
+ 
+          <http://fise.iks-project.eu/ontology/selection-context>
+          "John Smith was born in London."^^<http://www.w3.org/2001/XMLSchema#string> ;
+ 
+          <http://fise.iks-project.eu/ontology/start>
+          "23"^^<http://www.w3.org/2001/XMLSchema#int> ;
+ 
+          <http://purl.org/dc/terms/created>
+          "2011-06-29T14:43:24.291+02:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;
+ 
+          <http://purl.org/dc/terms/creator>             
+          "org.apache.stanbol.enhancer.engines.opennlp.impl.NEREngineCore"
+          ^^<http://www.w3.org/2001/XMLSchema#string> ;
+ 
+          <http://purl.org/dc/terms/type>
+          <http://dbpedia.org/ontology/Place> .
+
+### Example for Entity Annotation
+    
     <urn:enhancement-6fbf0996-b518-7130-92f8-00b4f7572031>
-      a       <http://fise.iks-project.eu/ontology/EntityAnnotation> , <http://fise.iks-project.eu/ontology/Enhancement> ;
-      <http://fise.iks-project.eu/ontology/confidence>
+      a       <http://fise.iks-project.eu/ontology/EntityAnnotation> , 
+              <http://fise.iks-project.eu/ontology/Enhancement> ;
+      
+              <http://fise.iks-project.eu/ontology/confidence>
               "183.53368"^^<http://www.w3.org/2001/XMLSchema#double> ;
-      <http://fise.iks-project.eu/ontology/entity-label>
+      
+              <http://fise.iks-project.eu/ontology/entity-label>
               "London"@en ;
-      <http://fise.iks-project.eu/ontology/entity-reference>
+               
+              <http://fise.iks-project.eu/ontology/entity-reference>
               <http://dbpedia.org/resource/London> ;
-      <http://fise.iks-project.eu/ontology/entity-type>
-              <http://www.w3.org/2002/07/owl#Thing> , <http://www.opengis.net/gml/_Feature> , <http://dbpedia.org/ontology/Settlement> , <http://dbpedia.org/ontology/Place> , <http://dbpedia.org/ontology/PopulatedPlace> ;
-      <http://fise.iks-project.eu/ontology/extracted-from>
+      
+              <http://fise.iks-project.eu/ontology/entity-type>
+              <http://www.w3.org/2002/07/owl#Thing> , <http://www.opengis.net/gml/_Feature> , 
+              <http://dbpedia.org/ontology/Settlement> , <http://dbpedia.org/ontology/Place> ,
+              <http://dbpedia.org/ontology/PopulatedPlace> ;
+      
+              <http://fise.iks-project.eu/ontology/extracted-from>
               <urn:content-item-sha1-88a2b5f6520df87e4567c06b48e742b7d1c71e9c> ;
-      <http://purl.org/dc/terms/created>
+      
+              <http://purl.org/dc/terms/created>
               "2011-06-29T14:43:24.295+02:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;
-      <http://purl.org/dc/terms/creator>      "org.apache.stanbol.enhancer.engines.entitytagging.impl.NamedEntityTaggingEngine"^^<http://www.w3.org/2001/XMLSchema#string> ;
-      <http://purl.org/dc/terms/relation>
+      
+              <http://purl.org/dc/terms/creator>           
+              "org.apache.stanbol.enhancer.engines.entitytagging.impl.NamedEntityTaggingEngine"
+              ^^<http://www.w3.org/2001/XMLSchema#string> ;
+      
+              <http://purl.org/dc/terms/relation>
               <urn:enhancement-7af2e1a3-93fc-008f-fc6a-12accf05e58f> .
 
 
-    <urn:enhancement-7af2e1a3-93fc-008f-fc6a-12accf05e58f>
-      a       <http://fise.iks-project.eu/ontology/TextAnnotation> , <http://fise.iks-project.eu/ontology/Enhancement> ;
-      <http://fise.iks-project.eu/ontology/confidence>
-              "0.9973729691652052"^^<http://www.w3.org/2001/XMLSchema#double> ;
-      <http://fise.iks-project.eu/ontology/end>
-              "29"^^<http://www.w3.org/2001/XMLSchema#int> ;
-      <http://fise.iks-project.eu/ontology/extracted-from>
-              <urn:content-item-sha1-88a2b5f6520df87e4567c06b48e742b7d1c71e9c> ;
-      <http://fise.iks-project.eu/ontology/selected-text>
-              "London"^^<http://www.w3.org/2001/XMLSchema#string> ;
-      <http://fise.iks-project.eu/ontology/selection-context>
-              "John Smith was born in London."^^<http://www.w3.org/2001/XMLSchema#string> ;
-      <http://fise.iks-project.eu/ontology/start>
-              "23"^^<http://www.w3.org/2001/XMLSchema#int> ;
-      <http://purl.org/dc/terms/created>
-              "2011-06-29T14:43:24.291+02:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;
-      <http://purl.org/dc/terms/creator>             "org.apache.stanbol.enhancer.engines.opennlp.impl.NEREngineCore"^^<http://www.w3.org/2001/XMLSchema#string> ;
-      <http://purl.org/dc/terms/type>
-              <http://dbpedia.org/ontology/Place> .
-
-
-    <urn:enhancement-4629f59b-7a78-4cb2-e7d6-99ffca61a3a7>
-      a       <http://fise.iks-project.eu/ontology/EntityAnnotation> , <http://fise.iks-project.eu/ontology/Enhancement> ;
-      <http://fise.iks-project.eu/ontology/confidence>
-              "33.187008"^^<http://www.w3.org/2001/XMLSchema#double> ;
-      <http://fise.iks-project.eu/ontology/entity-label>
-              "City of London"@en ;
-      <http://fise.iks-project.eu/ontology/entity-reference>
-              <http://dbpedia.org/resource/City_of_London> ;
-      <http://fise.iks-project.eu/ontology/entity-type>
-              <http://www.w3.org/2002/07/owl#Thing> , <http://www.opengis.net/gml/_Feature> , <http://dbpedia.org/ontology/Place> , <http://dbpedia.org/ontology/Settlement> , <http://dbpedia.org/ontology/PopulatedPlace> ;
-      <http://fise.iks-project.eu/ontology/extracted-from>
-              <urn:content-item-sha1-88a2b5f6520df87e4567c06b48e742b7d1c71e9c> ;
-      <http://purl.org/dc/terms/created>
-              "2011-06-29T14:43:24.296+02:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;
-      <http://purl.org/dc/terms/creator>       "org.apache.stanbol.enhancer.engines.entitytagging.impl.NamedEntityTaggingEngine"^^<http://www.w3.org/2001/XMLSchema#string> ;
-      <http://purl.org/dc/terms/relation>
-              <urn:enhancement-7af2e1a3-93fc-008f-fc6a-12accf05e58f> .
-
-
-    <urn:enhancement-37173dd0-240a-068c-91c9-60d91a8677e5>
-      a       <http://fise.iks-project.eu/ontology/TextAnnotation> , <http://fise.iks-project.eu/ontology/Enhancement> ;
-      <http://fise.iks-project.eu/ontology/confidence>
-              "0.8398552823821589"^^<http://www.w3.org/2001/XMLSchema#double> ;
-      <http://fise.iks-project.eu/ontology/end>
-              "10"^^<http://www.w3.org/2001/XMLSchema#int> ;
-      <http://fise.iks-project.eu/ontology/extracted-from>
-              <urn:content-item-sha1-88a2b5f6520df87e4567c06b48e742b7d1c71e9c> ;
-      <http://fise.iks-project.eu/ontology/selected-text>
-              "John Smith"^^<http://www.w3.org/2001/XMLSchema#string> ;
-      <http://fise.iks-project.eu/ontology/selection-context>
-              "John Smith was born in London."^^<http://www.w3.org/2001/XMLSchema#string> ;
-      <http://fise.iks-project.eu/ontology/start>
-              "0"^^<http://www.w3.org/2001/XMLSchema#int> ;
-      <http://purl.org/dc/terms/created>
-              "2011-06-29T14:43:24.289+02:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;
-      <http://purl.org/dc/terms/creator>      "org.apache.stanbol.enhancer.engines.opennlp.impl.NEREngineCore"^^<http://www.w3.org/2001/XMLSchema#string> ;
-      <http://purl.org/dc/terms/type>
-              <http://dbpedia.org/ontology/Person> .
-
-
-    <urn:enhancement-de0e2c42-f3f6-1fdb-ef30-2650dc398108>
-      a       <http://fise.iks-project.eu/ontology/EntityAnnotation> , <http://fise.iks-project.eu/ontology/Enhancement> ;
-      <http://fise.iks-project.eu/ontology/confidence>
-              "10.437969"^^<http://www.w3.org/2001/XMLSchema#double> ;
-      <http://fise.iks-project.eu/ontology/entity-label>
-              "John Maynard Smith"@en ;
-      <http://fise.iks-project.eu/ontology/entity-reference>
-              <http://dbpedia.org/resource/John_Maynard_Smith> ;
-      <http://fise.iks-project.eu/ontology/entity-type>
-              <http://xmlns.com/foaf/0.1/Person> , <http://www.w3.org/2002/07/owl#Thing> , <http://dbpedia.org/ontology/Scientist> , <http://dbpedia.org/ontology/Person> ;
-      <http://fise.iks-project.eu/ontology/extracted-from>
-              <urn:content-item-sha1-88a2b5f6520df87e4567c06b48e742b7d1c71e9c> ;
-      <http://purl.org/dc/terms/created>
-              "2011-06-29T14:43:24.304+02:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;
-      <http://purl.org/dc/terms/creator>              "org.apache.stanbol.enhancer.engines.entitytagging.impl.NamedEntityTaggingEngine"^^<http://www.w3.org/2001/XMLSchema#string> ;
-      <http://purl.org/dc/terms/relation>
-              <urn:enhancement-37173dd0-240a-068c-91c9-60d91a8677e5>
 
----
 
-_[Back to index](index.html)_

Modified: incubator/stanbol/site/trunk/content/stanbol/docs/trunk/engines.mdtext
URL: http://svn.apache.org/viewvc/incubator/stanbol/site/trunk/content/stanbol/docs/trunk/engines.mdtext?rev=1142820&r1=1142819&r2=1142820&view=diff
==============================================================================
--- incubator/stanbol/site/trunk/content/stanbol/docs/trunk/engines.mdtext (original)
+++ incubator/stanbol/site/trunk/content/stanbol/docs/trunk/engines.mdtext Mon Jul  4 21:57:08 2011
@@ -1,4 +1,4 @@
-Title: Enhancement Engines and their main features and usage
+Title: Enhancement Engines and their main features
 
 ## Preprocessing
 
@@ -16,7 +16,7 @@ Title: Enhancement Engines and their mai
 	- NLP processing
 	- detect occurrences of persons, places and organizations
 	
-- __Taxonomy Engine__
+- __Taxonomy Linking Engine__
 	- NLP processing
 	- detect occurrences of untyped entities as concepts, takes local taxonomies as linking target
 	
@@ -44,7 +44,3 @@ Title: Enhancement Engines and their mai
 	
 - __Refactor Engine__
 		- transforms enhancements according to a target ontology, requires KRES launcher.
-
-	
----
-_[Back to index](index.html)_

Modified: incubator/stanbol/site/trunk/content/stanbol/docs/trunk/entityhub.mdtext
URL: http://svn.apache.org/viewvc/incubator/stanbol/site/trunk/content/stanbol/docs/trunk/entityhub.mdtext?rev=1142820&r1=1142819&r2=1142820&view=diff
==============================================================================
--- incubator/stanbol/site/trunk/content/stanbol/docs/trunk/entityhub.mdtext (original)
+++ incubator/stanbol/site/trunk/content/stanbol/docs/trunk/entityhub.mdtext Mon Jul  4 21:57:08 2011
@@ -1,6 +1,8 @@
 Title: Entityhub
 
-The Entityhub provides two main services. One allows to manage a __network of sites__ to consume entity information and the second allows to __manage locally used entities__. They provide the connection to external linked open data sites as well as using indexes of them locally. The 
+The Entityhub provides two main services. The Entityhub provides the connection to external linked open data sites as well as using indexes of them locally. Its services allow to manage a __network of sites__ to consume entity information and to __manage entities locally__.  
+
+A small index of approx. 43k entities from dbpedia comes with the default installation.
 
 ## Service Endpoints
 
@@ -8,8 +10,20 @@ The RESTful API of the Entityhub ist str
 
 ### Entity Network ("/entityhub/site*"):
 
-- The Referenced Site Manager [/entityhub/sites](http://localhost:8080/entityhub/sites) allows to manages Sites and retrieve/search Entities in all sites of the Entity Network.
-- A Referenced Site @ /entityhub/site/{siteName} refers to a single site of the Referenced Site Manager and allows to retrieve all active sites. Referenced sites provide the same interface as the referenced site manager. Currently active referenced sites at the demo server are available and running for [dbpedia](http://dev.iks-project.eu:8080/entityhub/site/dbpedia/), [dplp](http://dev.iks-project.eu:8080/entityhub/site/dblp/) and [geonames](http://dev.iks-project.eu:8080/entityhub/site/geonames/).
+- The Referenced Site Manager @ [/entityhub/sites](http://localhost:8080/entityhub/sites) allows to manages sites and retrieve/search Entities in all sites of the Entity Network.
+- A Referenced Site @ /entityhub/site/{siteName} refers to a single site of the Referenced Site Manager and allows to retrieve all active sites. Referenced sites provide the same interface as the referenced site manager.
+
+ For both services, several features are available:
+
+ - [__Referenced__](http://localhost:8080/entityhub/sites/referenced) returns a json array containing the IDs of all available sites. Sites returned by this method can be accessed via the site service endpoint.
+
+ - [__Entity__](http://localhost:8080/entityhub/sites/entity) searches all referenced sites for the entity with the parsed URI.
+
+ - [__Find__](http://localhost:8080/entityhub/sites/find) provides a label based search service over all sites.
+
+ - [__Query__](http://localhost:8080/entityhub/sites/query) allows to parse JSON serialized field queries to the sites endpoint.
+
+ Currently active referenced sites at the demo server are available and running for [dbpedia](http://dev.iks-project.eu:8080/entityhub/site/dbpedia/), [dplp](http://dev.iks-project.eu:8080/entityhub/site/dblp/) and [geonames](http://dev.iks-project.eu:8080/entityhub/site/geonames/).
        
 
 ### Entityhub ("/entityhub"):
@@ -21,14 +35,3 @@ The RESTful API of the Entityhub ist str
 - Entity Lookup @/entityhub/lookup: Lookup Entities by id. This supports also to lookup Entities managed by Referenced Sites and the import of found Entities to the Entityhub.
 
 
-## Usage Examples for its services 
-
-(TODO: add concrete examples)
-
-- [__Referenced__](http://localhost:8080/entityhub/sites/referenced)
- 
-- [__Find__](http://localhost:8080/entityhub/sites/find): Label based search
-
-- [__Query__](http://localhost:8080/entityhub/sites/query)
-
-- [__Entity__](http://localhost:8080/entityhub/sites/entity)

Modified: incubator/stanbol/site/trunk/content/stanbol/docs/trunk/index.mdtext
URL: http://svn.apache.org/viewvc/incubator/stanbol/site/trunk/content/stanbol/docs/trunk/index.mdtext?rev=1142820&r1=1142819&r2=1142820&view=diff
==============================================================================
--- incubator/stanbol/site/trunk/content/stanbol/docs/trunk/index.mdtext (original)
+++ incubator/stanbol/site/trunk/content/stanbol/docs/trunk/index.mdtext Mon Jul  4 21:57:08 2011
@@ -13,9 +13,8 @@ Applications include extending existing 
 
 The Apache Stanbol project was initiated by the European R&D project [IKS - Interactive Knowledge Stack for small to medium CMS providers][iks]. Some people who are working on the project are part-funded by the IKS project, as well as by several European SME CMS providers, who are [adopting Apache Stanbol](http://wiki.iks-project.eu/index.php/Participants). 
 
-Online demos of Apache Stanbol are available at: 
+An online demo of a Apache Stanbol is available at: 
 
-* [http://dev.iks-project.eu:8080/](http://dev.iks-project.eu:8080/)
 * [http://stanbol.demo.nuxeo.com/](http://stanbol.demo.nuxeo.com/)
 
 
@@ -98,7 +97,8 @@ A detailed technical documentation of it
 * Ontology Manager
 * Reasoners
 * Reengineer
-* Rules 
+* Rules
+* FactStore
 * Benchmark
 
 

Modified: incubator/stanbol/site/trunk/content/stanbol/docs/trunk/services.mdtext
URL: http://svn.apache.org/viewvc/incubator/stanbol/site/trunk/content/stanbol/docs/trunk/services.mdtext?rev=1142820&r1=1142819&r2=1142820&view=diff
==============================================================================
--- incubator/stanbol/site/trunk/content/stanbol/docs/trunk/services.mdtext (original)
+++ incubator/stanbol/site/trunk/content/stanbol/docs/trunk/services.mdtext Mon Jul  4 21:57:08 2011
@@ -1,35 +1,57 @@
 Title: HTTP entry points for Apache Stanbol services
 
-The web interface of your Apache Stanbol installation provides information for the main HTTP entry points. Each resource comes with a web view that documents the matching RESTful API for applications. Depending on which launcher you use, you will get a different set of services.
+The web interface of your Apache Stanbol installation provides information for the main HTTP entry points. Each resource comes with a web view that documents the matching RESTful API for applications. 
 
-- [/engines][stan-engines] (stable)
+Depending on which launcher you use, you will get a different set of services. By choosing the __full launcher__, you will get everything including experimental services, if you choose the __stable launcher__ you will get the most stable services only. 
+
+
+## Stable Services
+
+- [/engines](http://localhost:8080/engines)
 
  This is a stateless interface to allow clients to submit content to be analyzed by the Enhancement Engines and get the resulting RDF enhancements at once without storing anything on the server-side.
 
-- [/entityhub](http://localhost:8080/entityhub) (stable)
+- [/entityhub](http://localhost:8080/entityhub)
  
  The Entityhub provides two main services: The entity network manages (external) referenced sites and lets one consume entity information, the Entityhub supports managing and using local entities.
 
+- [/system/console](http://localhost:8080/system/console/bundles)
 
-- [/system/console][stan-admin] (stable)
+ This is the OSGi administration console (for administrators and developers). The initial username / password is set to admin / admin. Use the console to add new bundles and activate, de-activate and configure components. The console can also be used to perform hot-(re)deployment of any OSGi bundles. 
 
- This is the OSGi administration console (for administrators and developers). The initial username / password is set to admin / admin. Use the console to add new bundles and activate, de-activate and configure components. The console can also be used to perform hot-(re)deployment of any OSGi bundles. For instance to re-deploy a new version of this web interface, go to the <code>$STANBOL_HOME/enhancer/jersey</code> source folder and run the following command:
+ For instance to re-deploy a new version of this web interface, go to the <code>$STANBOL_HOME/enhancer/jersey</code> source folder and run the following command:
 
  <code>$ mvn install -o -DskipTests -PinstallBundle \
     -Dsling.url=http://localhost:8080/system/console</code>
 
 
-- [/sparql](http://localhost:8080/sparql) (full)
+## Services "in the Lab"
+
+- [/sparql](http://localhost:8080/sparql)
 
  This is the SPARQL endpoint for the Stanbol store. SPARQL is the standard query language the most commonly used to provide interactive access to semantic knowledge bases.
 
-- [/contenthub](http://localhost:8080/contenthub) (full)
+- [/contenthub](http://localhost:8080/contenthub)
 
  This is a stateful interface to submit content to analyze and store the results on the server. It is then possible to browse the resulting enhanced content items. The longer-term goal of this endpoint is to implement faceted semantic search of the enhanced content items. (Note: Up to now, this endpoint is a proof of concept / experimental feature. It does not actually store the content on the disk, just in memory.)
 
-- [/ontonet](http://dev.iks-project.eu:8080/ontonet) (full)
+- [/ontonet](http://dev.iks-project.eu:8080/ontonet)
+
+ Ontonet provides a controlled environment for managing ontologies and ontology networks and user sessions managing them.
+	
+- [/reasoners](http://localhost:8080/reasoners)
+ The reasoners are made for classification, consistency checking, and enrichment of an ontology. Reasoning services are provided through the built-in HermiT reasoner.
+
+
+- [/rules](http://localhost:8080/rules)
+ The rules component lets you define rules to be used within the ontology networks and the reasoning services. 
+
+
+- [/factstore](http://dev.iks-project.eu:8080/factstore)
 
-- [/factstore](http://dev.iks-project.eu:8080/factstore) (full)
+ The FactStore implements a store for facts plus the ability to query for single facts and for combinations of facts. It implements:
+	- Persistence storage for n-ary facts about entities
+	- Query language to query for a single fact
+	- Query language to query for combinations of facts (reasoning)
 
--