You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stanbol.apache.org by co...@apache.org on 2011/06/14 13:12:37 UTC

svn commit: r1135486 [2/12] - in /incubator/stanbol/trunk: launchers/kres/ ontologymanager/ontonet/src/main/java/org/apache/stanbol/ontologymanager/ontonet/impl/renderers/ ontologymanager/web/src/main/java/org/apache/stanbol/ontologymanager/web/resourc...

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/reasoners/ClassifyDemo.java
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/reasoners/ClassifyDemo.java?rev=1135486&view=auto
==============================================================================
--- incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/reasoners/ClassifyDemo.java (added)
+++ incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/reasoners/ClassifyDemo.java Tue Jun 14 11:12:32 2011
@@ -0,0 +1,200 @@
+/*
+ * To change this template, choose Tools | Templates
+ * and open the template in the editor.
+ */
+
+package org.apache.stanbol.intcheck.reasoners;
+
+import java.io.File;
+import java.io.FileNotFoundException;
+import java.io.FileOutputStream;
+import java.util.Hashtable;
+import java.util.Iterator;
+import java.util.Set;
+
+import javax.servlet.ServletContext;
+import javax.ws.rs.Consumes;
+import javax.ws.rs.FormParam;
+import javax.ws.rs.POST;
+import javax.ws.rs.Path;
+import javax.ws.rs.Produces;
+import javax.ws.rs.WebApplicationException;
+import javax.ws.rs.core.Context;
+import javax.ws.rs.core.HttpHeaders;
+import javax.ws.rs.core.MediaType;
+import javax.ws.rs.core.Response;
+import javax.ws.rs.core.UriInfo;
+
+import org.apache.clerezza.rdf.core.access.TcManager;
+import org.apache.stanbol.commons.web.base.format.KRFormat;
+import org.apache.stanbol.ontologymanager.ontonet.api.ONManager;
+import org.apache.stanbol.ontologymanager.ontonet.impl.ONManagerImpl;
+import org.apache.stanbol.ontologymanager.ontonet.impl.io.ClerezzaOntologyStorage;
+import org.apache.stanbol.reasoners.base.commands.RunRules;
+import org.apache.stanbol.rules.base.api.Rule;
+import org.apache.stanbol.rules.base.api.RuleStore;
+import org.apache.stanbol.rules.base.api.util.RuleList;
+import org.apache.stanbol.rules.manager.KB;
+import org.apache.stanbol.rules.manager.changes.RuleStoreImpl;
+import org.apache.stanbol.rules.manager.parse.RuleParserImpl;
+import org.semanticweb.owlapi.apibinding.OWLManager;
+import org.semanticweb.owlapi.model.AddAxiom;
+import org.semanticweb.owlapi.model.AxiomType;
+import org.semanticweb.owlapi.model.OWLAxiom;
+import org.semanticweb.owlapi.model.OWLDataProperty;
+import org.semanticweb.owlapi.model.OWLLiteral;
+import org.semanticweb.owlapi.model.OWLNamedIndividual;
+import org.semanticweb.owlapi.model.OWLOntology;
+import org.semanticweb.owlapi.model.OWLOntologyCreationException;
+import org.semanticweb.owlapi.model.OWLOntologyManager;
+import org.semanticweb.owlapi.model.OWLOntologyStorageException;
+import org.semanticweb.owlapi.model.IRI;
+import org.semanticweb.owlapi.model.OWLDataFactory;
+import org.semanticweb.owlapi.model.SWRLRule;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+
+
+/**
+ *
+ * @author elvio
+ */
+@Path("/classify/demo")
+public class ClassifyDemo {
+
+    private RuleStore kresRuleStore;
+
+    protected ONManager onm;
+    protected ClerezzaOntologyStorage storage;
+
+    private Logger log = LoggerFactory.getLogger(getClass());
+     
+     public ClassifyDemo(){
+    	 
+     }
+
+    /**
+    * To get the RuleStoreImpl where are stored the rules and the recipes
+    *
+    * @param servletContext
+    *            {To get the context where the REST service is running.}
+    */
+    public ClassifyDemo(@Context ServletContext servletContext){
+        this.kresRuleStore = (RuleStoreImpl) servletContext.getAttribute(RuleStore.class.getName());
+        this.onm = (ONManager) servletContext.getAttribute(ONManager.class.getName());
+
+        if (onm == null) {
+        log.warn("No KReSONManager in servlet context. Instantiating manually...");
+        onm = new ONManagerImpl(new TcManager(), null, new Hashtable<String, Object>());
+        }
+        
+        this.storage = onm.getOntologyStore();
+        if (storage == null) {
+        log.warn("No OntologyStorage in servlet context. Instantiating manually...");
+        storage = new ClerezzaOntologyStorage(new TcManager(),null);
+        }
+        
+        if (kresRuleStore == null) {
+                    log.warn("No KReSRuleStore with stored rules and recipes found in servlet context. Instantiating manually with default values...");
+                    this.kresRuleStore = new RuleStoreImpl(onm,new Hashtable<String, Object>(), "");
+                    log.debug("PATH TO OWL FILE LOADED: "+ kresRuleStore.getFilePath());
+        }
+    } 
+
+    @POST
+    @Consumes(MediaType.APPLICATION_FORM_URLENCODED)   
+    @Produces(value = {KRFormat.RDF_XML, KRFormat.TURTLE, KRFormat.OWL_XML, KRFormat.FUNCTIONAL_OWL,KRFormat.MANCHESTER_OWL, KRFormat.RDF_JSON})
+    public Response ontologyClassify(@FormParam(value="scope") String scope,
+                                @FormParam(value="rule") String rule,
+                                @Context UriInfo uriInfo, 
+                                @Context HttpHeaders headers,
+                                @Context ServletContext servletContext){
+        
+       //System.out.println(":::::: START");  
+       final OWLOntologyManager man = OWLManager.createOWLOntologyManager();
+       final OWLDataFactory factory = OWLManager.getOWLDataFactory();
+       
+        try {
+            
+            OWLOntology ontology = man.loadOntologyFromOntologyDocument(IRI.create(scope+"/all"));
+            
+            //System.out.println(":::::: RECUPERATO LO SCOPE COME ONTOLOGIA "+ontology.getAxiomCount()); 
+            if(rule != null){
+                    
+                    OWLOntologyManager manager = OWLManager.createOWLOntologyManager();
+                    OWLOntology ontologyRule = manager.loadOntologyFromOntologyDocument(IRI.create(rule));
+                    OWLOntology ruleOntology = manager.createOntology();
+                    
+                    String ind = rule.substring(rule.lastIndexOf("http"),rule.length());
+                    OWLNamedIndividual ontoind = factory.getOWLNamedIndividual(IRI.create(ind));
+                    OWLDataProperty bodyhead = factory.getOWLDataProperty(IRI.create("http://kres.iks-project.eu/ontology/meta/rmi.owl#hasBodyAndHead"));
+                    Set<OWLLiteral> literal = ontoind.getDataPropertyValues(bodyhead, ontologyRule);
+                    KB kReSKB = RuleParserImpl.parse(literal.iterator().next().getLiteral());
+                    //System.out.println(":::::: RECUPERO LA REGOLA IN KB"); 
+                    RuleList ruleList = kReSKB.getkReSRuleList();
+                    Iterator<Rule> ruleiter = ruleList.iterator();
+                    while(ruleiter.hasNext()){
+                            Rule myrule = ruleiter.next();
+                            SWRLRule swrlRule = myrule.toSWRL(factory);
+                            manager.applyChange(new AddAxiom(ruleOntology, swrlRule));
+                    }
+                    //System.out.println(":::::: CREO le swrlRule e le metto in ruleOntology "+ruleOntology.getAxiomCount()); 
+                    //Faccio eseguire il reasoner e ritorno il risultato.    
+                    if(ruleOntology!=null){
+                        //System.out.println("::: PRIMA DEL REASONER :::");
+                        RunRules reasoner = new RunRules(ruleOntology,ontology);
+                        //System.out.println("AVVIO REASONER");
+                        OWLOntology reasonerresult = reasoner.runRulesReasoner();
+                        //System.out.println("REASONER FINITO");
+                        return Response.ok(reasonerresult).build();
+                    }
+                    else{
+                        return Response.status(204).build();
+                    }     
+            }else{
+                return Response.status(204).build();
+            }
+            
+            
+
+        } catch (OWLOntologyCreationException ex) {
+            throw new WebApplicationException(ex, Response.Status.INTERNAL_SERVER_ERROR);
+        }
+    }
+    
+    public static void main(String[] args){
+    	OWLOntologyManager man = OWLManager.createOWLOntologyManager();
+    	
+		OWLOntology ont;
+		
+		
+		try {
+			ont = man.createOntology();
+			OWLOntology ontology = man.loadOntology(IRI.create("http://dbpedia.org/resource/Sony_Music_Entertainment"));
+			Set<OWLAxiom> axioms = ontology.getAxioms();
+			for(OWLAxiom axiom : axioms){
+				
+				if(!axiom.isOfType(AxiomType.DATA_PROPERTY_ASSERTION)){
+					man.addAxiom(ont, axiom);
+				}
+			}
+			
+			
+			try {
+				FileOutputStream fos = new FileOutputStream(new File("/Users/mac/Desktop/Sony_Music_Entertainment.rdf"));
+				man.saveOntology(ont, fos);
+			} catch (OWLOntologyStorageException e) {
+				// TODO Auto-generated catch block
+				e.printStackTrace();
+			} catch (FileNotFoundException e) {
+				// TODO Auto-generated catch block
+				e.printStackTrace();
+			}
+			
+		} catch (OWLOntologyCreationException e) {
+			// TODO Auto-generated catch block
+			e.printStackTrace();
+		}
+    }
+}

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/reasoners/ReasoningResource.java
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/reasoners/ReasoningResource.java?rev=1135486&view=auto
==============================================================================
--- incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/reasoners/ReasoningResource.java (added)
+++ incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/reasoners/ReasoningResource.java Tue Jun 14 11:12:32 2011
@@ -0,0 +1,13 @@
+package org.apache.stanbol.intcheck.reasoners;
+
+import javax.ws.rs.Path;
+
+import com.sun.jersey.api.view.ImplicitProduces;
+
+import org.apache.stanbol.intcheck.resource.NavigationMixin;
+
+@Path("/reasoning")
+@ImplicitProduces("text/html")
+public class ReasoningResource extends NavigationMixin {
+
+}

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/reasoners/ReasoningResource.java
------------------------------------------------------------------------------
    svn:executable = *

Copied: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/DocumentationResource.java (from r1103633, incubator/stanbol/trunk/ontologymanager/web/src/main/java/org/apache/stanbol/ontologymanager/web/resource/DocumentationResource.java)
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/DocumentationResource.java?p2=incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/DocumentationResource.java&p1=incubator/stanbol/trunk/ontologymanager/web/src/main/java/org/apache/stanbol/ontologymanager/web/resource/DocumentationResource.java&r1=1103633&r2=1135486&rev=1135486&view=diff
==============================================================================
--- incubator/stanbol/trunk/ontologymanager/web/src/main/java/org/apache/stanbol/ontologymanager/web/resource/DocumentationResource.java (original)
+++ incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/DocumentationResource.java Tue Jun 14 11:12:32 2011
@@ -1,4 +1,4 @@
-package org.apache.stanbol.ontologymanager.web.resource;
+package org.apache.stanbol.intcheck.resource;
 
 import javax.ws.rs.Path;
 import javax.ws.rs.core.MediaType;

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/GraphsResource.java
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/GraphsResource.java?rev=1135486&view=auto
==============================================================================
--- incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/GraphsResource.java (added)
+++ incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/GraphsResource.java Tue Jun 14 11:12:32 2011
@@ -0,0 +1,16 @@
+/*
+ * To change this template, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package org.apache.stanbol.intcheck.resource;
+
+import javax.ws.rs.Path;
+import javax.ws.rs.core.MediaType;
+
+import com.sun.jersey.api.view.ImplicitProduces;
+
+@Path("/graphs")
+@ImplicitProduces(MediaType.TEXT_HTML + ";qs=2")
+public class GraphsResource extends NavigationMixin{
+    
+}

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/NavigationMixin.java
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/NavigationMixin.java?rev=1135486&view=auto
==============================================================================
--- incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/NavigationMixin.java (added)
+++ incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/NavigationMixin.java Tue Jun 14 11:12:32 2011
@@ -0,0 +1,82 @@
+package org.apache.stanbol.intcheck.resource;
+
+import java.net.URI;
+import java.util.Arrays;
+import java.util.List;
+
+import javax.ws.rs.core.Context;
+import javax.ws.rs.core.UriInfo;
+
+
+public class NavigationMixin {
+
+    @Context
+    protected UriInfo uriInfo;
+
+    public URI getPublicBaseUri() {
+        return uriInfo.getBaseUri();
+    }
+
+    public List<MenuItem> getMainMenuItems() {
+        return Arrays.asList(//new MenuItem("Home", "/intcheck", "homeMenu", uriInfo, null),
+        		//new MenuItem("ONM", "javascript:expandMenu('onmanagerMenu')", "onmanagerMenu", uriInfo,Arrays.asList(
+                    new MenuItem("Scopes", "javascript:listScopes()", "scopesMenu", uriInfo, null),
+                    //new MenuItem("Sessions", "/intcheck/session", "sessionsMenu", uriInfo, null))),
+        		//new MenuItem("R&I", "javascript:expandMenu('reasoningMenu')", "reasoningMenu", uriInfo,Arrays.asList(
+                    new MenuItem("Recipes&Rules", "/intcheck/recipe", "rulesMenu", uriInfo, null),
+                    //new MenuItem("Reasoning services", "/intcheck/reasoning", "reasoningServicesMenu", uriInfo, null))),
+        		//new MenuItem("Semion", "javascript:expandMenu('semionMenu')", "semionMenu", uriInfo,Arrays.asList(
+                    //new MenuItem("Reenginner", "/intcheck/reengineer", "reengineerMenu", uriInfo, null),
+                    //new MenuItem("Refactorer", "/intcheck/refactorer", "refactorerMenu", uriInfo, null))),
+        		//new MenuItem("Storage", "/intcheck/graphs", "storageMenu", uriInfo, null),
+        		//new MenuItem("Usage", "javascript:expandMenu('usageMenu')", "usageMenu", uriInfo, Arrays.asList(
+                    //new MenuItem("Documentation", "/intcheck/documentation", "documentationMenu", uriInfo, null),
+                    //new MenuItem("RESTful services", "/intcheck/documentation/restful", "documentationMenu", uriInfo, null),
+                    new MenuItem("Demo", "/intcheck/demo", "demoWikinewsMenu", uriInfo, null));
+        
+        
+    }
+
+    public static class MenuItem {
+
+        public MenuItem(String label, String link, String id, UriInfo uriInfo, List<MenuItem> subMenu) {
+            this.label = label;
+            this.link = link;
+            this.id = id;
+            this.subMenu = subMenu;
+            cssClass = uriInfo.getPath().startsWith(link.substring(1)) ? "current" : "unselected";
+        }
+
+        protected final String label;
+        
+        protected final String id;
+
+        protected final  String link;
+        
+        protected final  List<MenuItem> subMenu;
+
+        protected final  String cssClass;
+
+        public String getLabel() {
+            return label;
+        }
+
+        public String getLink() {
+            return link;
+        }
+
+        public String getCssClass() {
+            return cssClass;
+        }
+        
+        public String getId() {
+			return id;
+		}
+        
+        public List<MenuItem> getSubMenu() {
+			return subMenu;
+		}
+
+    }
+
+}

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/NavigationMixin.java
------------------------------------------------------------------------------
    svn:executable = *

Copied: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/RESTfulResource.java (from r1103633, incubator/stanbol/trunk/ontologymanager/web/src/main/java/org/apache/stanbol/ontologymanager/web/resource/RESTfulResource.java)
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/RESTfulResource.java?p2=incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/RESTfulResource.java&p1=incubator/stanbol/trunk/ontologymanager/web/src/main/java/org/apache/stanbol/ontologymanager/web/resource/RESTfulResource.java&r1=1103633&r2=1135486&rev=1135486&view=diff
==============================================================================
--- incubator/stanbol/trunk/ontologymanager/web/src/main/java/org/apache/stanbol/ontologymanager/web/resource/RESTfulResource.java (original)
+++ incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/RESTfulResource.java Tue Jun 14 11:12:32 2011
@@ -1,4 +1,4 @@
-package org.apache.stanbol.ontologymanager.web.resource;
+package org.apache.stanbol.intcheck.resource;
 
 import javax.ws.rs.Path;
 import javax.ws.rs.core.MediaType;

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/RecipeResource.java
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/RecipeResource.java?rev=1135486&view=auto
==============================================================================
--- incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/RecipeResource.java (added)
+++ incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/RecipeResource.java Tue Jun 14 11:12:32 2011
@@ -0,0 +1,16 @@
+/*
+ * To change this template, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package org.apache.stanbol.intcheck.resource;
+
+import javax.ws.rs.Path;
+import javax.ws.rs.core.MediaType;
+
+import com.sun.jersey.api.view.ImplicitProduces;
+
+@Path("/recipe")
+@ImplicitProduces(MediaType.TEXT_HTML + ";qs=2")
+public class RecipeResource extends NavigationMixin {
+    
+}

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/ReengineerResource.java
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/ReengineerResource.java?rev=1135486&view=auto
==============================================================================
--- incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/ReengineerResource.java (added)
+++ incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/ReengineerResource.java Tue Jun 14 11:12:32 2011
@@ -0,0 +1,16 @@
+/*
+ * To change this template, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package org.apache.stanbol.intcheck.resource;
+
+import javax.ws.rs.Path;
+import javax.ws.rs.core.MediaType;
+
+import com.sun.jersey.api.view.ImplicitProduces;
+
+@Path("/reengineer")
+@ImplicitProduces(MediaType.TEXT_HTML + ";qs=2")
+public class ReengineerResource extends NavigationMixin {
+    
+}

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/RefactorerResource.java
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/RefactorerResource.java?rev=1135486&view=auto
==============================================================================
--- incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/RefactorerResource.java (added)
+++ incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/RefactorerResource.java Tue Jun 14 11:12:32 2011
@@ -0,0 +1,16 @@
+/*
+ * To change this template, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package org.apache.stanbol.intcheck.resource;
+
+import javax.ws.rs.Path;
+import javax.ws.rs.core.MediaType;
+
+import com.sun.jersey.api.view.ImplicitProduces;
+
+@Path("/refactorer")
+@ImplicitProduces(MediaType.TEXT_HTML + ";qs=2")
+public class RefactorerResource extends NavigationMixin {
+    
+}

Copied: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/RootResource.java (from r1103633, incubator/stanbol/trunk/ontologymanager/web/src/main/java/org/apache/stanbol/ontologymanager/web/resource/RootResource.java)
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/RootResource.java?p2=incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/RootResource.java&p1=incubator/stanbol/trunk/ontologymanager/web/src/main/java/org/apache/stanbol/ontologymanager/web/resource/RootResource.java&r1=1103633&r2=1135486&rev=1135486&view=diff
==============================================================================
--- incubator/stanbol/trunk/ontologymanager/web/src/main/java/org/apache/stanbol/ontologymanager/web/resource/RootResource.java (original)
+++ incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/RootResource.java Tue Jun 14 11:12:32 2011
@@ -1,4 +1,4 @@
-package org.apache.stanbol.ontologymanager.web.resource;
+package org.apache.stanbol.intcheck.resource;
 
 import javax.ws.rs.Path;
 

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/SessionResource.java
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/SessionResource.java?rev=1135486&view=auto
==============================================================================
--- incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/SessionResource.java (added)
+++ incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/SessionResource.java Tue Jun 14 11:12:32 2011
@@ -0,0 +1,16 @@
+/*
+ * To change this template, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package org.apache.stanbol.intcheck.resource;
+
+import javax.ws.rs.Path;
+import javax.ws.rs.core.MediaType;
+
+import com.sun.jersey.api.view.ImplicitProduces;
+
+@Path("/session")
+@ImplicitProduces(MediaType.TEXT_HTML + ";qs=2")
+public class SessionResource extends NavigationMixin {
+    
+}

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/WIkinewsDemoResource.java
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/WIkinewsDemoResource.java?rev=1135486&view=auto
==============================================================================
--- incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/WIkinewsDemoResource.java (added)
+++ incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/WIkinewsDemoResource.java Tue Jun 14 11:12:32 2011
@@ -0,0 +1,12 @@
+package org.apache.stanbol.intcheck.resource;
+
+import javax.ws.rs.Path;
+import javax.ws.rs.core.MediaType;
+
+import com.sun.jersey.api.view.ImplicitProduces;
+
+@Path("/demo")
+@ImplicitProduces(MediaType.TEXT_HTML + ";qs=2")
+public class WIkinewsDemoResource extends NavigationMixin {
+
+}

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/resource/WIkinewsDemoResource.java
------------------------------------------------------------------------------
    svn:executable = *

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/web/JerseyEndpoint.java
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/web/JerseyEndpoint.java?rev=1135486&view=auto
==============================================================================
--- incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/web/JerseyEndpoint.java (added)
+++ incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/web/JerseyEndpoint.java Tue Jun 14 11:12:32 2011
@@ -0,0 +1,133 @@
+package org.apache.stanbol.intcheck.web;
+
+import java.io.IOException;
+import java.util.Dictionary;
+import java.util.Hashtable;
+
+import javax.servlet.ServletContext;
+import javax.servlet.ServletException;
+
+import org.apache.clerezza.rdf.core.serializedform.Serializer;
+import org.apache.felix.scr.annotations.Component;
+import org.apache.felix.scr.annotations.Property;
+import org.apache.felix.scr.annotations.Reference;
+import org.osgi.framework.BundleContext;
+import org.osgi.service.component.ComponentContext;
+import org.osgi.service.http.HttpService;
+import org.osgi.service.http.NamespaceException;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import com.sun.jersey.spi.container.servlet.ServletContainer;
+
+import org.apache.stanbol.intcheck.processors.IntcheckViewProcessor;
+
+/**
+ * Jersey-based RESTful endpoint for KReS.
+ *
+ * This OSGi component serves as a bridge between the OSGi context and the
+ * Servlet context available to JAX-RS resources.
+ * 
+ * @author andrea.nuzzolese
+ */
+
+@Component(immediate = true, metatype = true)
+public class JerseyEndpoint {
+
+    private final Logger log = LoggerFactory.getLogger(getClass());
+
+    @Property(value = "/intcheck")
+    public static final String ALIAS_PROPERTY = "org.apache.stanbol.intcheck.alias";
+
+    @Property(value = "/intcheck/static")
+    public static final String STATIC_RESOURCES_URL_ROOT_PROPERTY = "org.apache.stanbol.intcheck.static.url";
+
+    @Property(value = "/META-INF/static")
+    public static final String STATIC_RESOURCES_CLASSPATH_PROPERTY = "org.apache.stanbol.intcheck.static.classpath";
+
+    @Property(value = "/META-INF/templates")
+    public static final String FREEMARKER_TEMPLATE_CLASSPATH_PROPERTY = "org.apache.stanbol.intcheck.templates.classpath";
+
+    @Reference
+    HttpService httpService;
+
+    @Reference
+    Serializer serializer;
+
+
+    protected ServletContext servletContext;
+
+    public Dictionary<String, String> getInitParams() {
+        // pass configuration for Jersey resource
+        // TODO: make the list of enabled JAX-RS resources and providers
+        // configurable using an OSGi service
+        Dictionary<String, String> initParams = new Hashtable<String, String>();
+        initParams.put("javax.ws.rs.Application",
+                JerseyEndpointApplication.class.getName());
+
+        // make jersey automatically turn resources into Viewable models and
+        // hence lookup matching freemarker templates
+        initParams.put("com.sun.jersey.config.feature.ImplicitViewables",
+                "true");
+        return initParams;
+    }
+
+    protected void activate(ComponentContext ctx) throws IOException,
+            ServletException, NamespaceException {
+
+        // register the JAX-RS resources as a servlet under configurable alias
+        ServletContainer container = new ServletContainer();
+        String alias = (String) ctx.getProperties().get(ALIAS_PROPERTY);
+        String staticUrlRoot = (String) ctx.getProperties().get(
+                STATIC_RESOURCES_URL_ROOT_PROPERTY);
+        String staticClasspath = (String) ctx.getProperties().get(
+                STATIC_RESOURCES_CLASSPATH_PROPERTY);
+        String freemakerTemplates = (String) ctx.getProperties().get(
+                FREEMARKER_TEMPLATE_CLASSPATH_PROPERTY);
+
+        log.info("Registering servlets with HTTP service "
+                + httpService.toString());
+        ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
+        Thread.currentThread().setContextClassLoader(
+                getClass().getClassLoader());
+        try {
+            httpService.registerServlet(alias, container, getInitParams(), null);
+            httpService.registerResources(staticUrlRoot, staticClasspath, null);
+        } finally {
+            Thread.currentThread().setContextClassLoader(classLoader);
+        }
+
+        // forward the main KReS OSGi components to the servlet context so that
+        // they can be looked up by the JAX-RS resources
+        servletContext = container.getServletContext();
+        servletContext.setAttribute(BundleContext.class.getName(),
+                ctx.getBundleContext());
+        servletContext.setAttribute(Serializer.class.getName(), serializer);
+    
+
+        servletContext.setAttribute(STATIC_RESOURCES_URL_ROOT_PROPERTY,
+                staticUrlRoot);
+        servletContext.setAttribute(
+                IntcheckViewProcessor.FREEMARKER_TEMPLATE_PATH_INIT_PARAM,
+                freemakerTemplates);
+
+        log.info("Jersey servlet registered at {}", alias);
+    }
+
+    protected void deactivate(ComponentContext ctx) {
+        log.info("Deactivating jersey bundle");
+        String alias = (String) ctx.getProperties().get(ALIAS_PROPERTY);
+        httpService.unregister(alias);
+        servletContext = null;
+    }
+
+    
+    protected void bindHttpService(HttpService httpService) {
+        this.httpService = httpService;
+    }
+
+    protected void unbindHttpService(HttpService httpService) {
+        this.httpService = null;
+    }
+
+}
\ No newline at end of file

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/web/JerseyEndpoint.java
------------------------------------------------------------------------------
    svn:executable = *

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/web/JerseyEndpointApplication.java
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/web/JerseyEndpointApplication.java?rev=1135486&view=auto
==============================================================================
--- incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/web/JerseyEndpointApplication.java (added)
+++ incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/web/JerseyEndpointApplication.java Tue Jun 14 11:12:32 2011
@@ -0,0 +1,64 @@
+package org.apache.stanbol.intcheck.web;
+
+import java.util.HashSet;
+import java.util.Set;
+
+import javax.ws.rs.core.Application;
+
+import org.apache.stanbol.intcheck.processors.IntcheckViewProcessor;
+import org.apache.stanbol.intcheck.reasoners.ClassifyDemo;
+import org.apache.stanbol.intcheck.reasoners.ReasoningResource;
+import org.apache.stanbol.intcheck.resource.DocumentationResource;
+import org.apache.stanbol.intcheck.resource.GraphsResource;
+import org.apache.stanbol.intcheck.resource.RESTfulResource;
+import org.apache.stanbol.intcheck.resource.RecipeResource;
+import org.apache.stanbol.intcheck.resource.WIkinewsDemoResource;
+import org.apache.stanbol.intcheck.resource.RootResource;
+import org.apache.stanbol.intcheck.resource.ReengineerResource;
+import org.apache.stanbol.intcheck.resource.RefactorerResource;
+import org.apache.stanbol.intcheck.resource.SessionResource;
+
+/**
+ * Statically define the list of available resources and providers to be used by
+ * the KReS JAX-RS Endpoint.
+ * 
+ * The jersey auto-scan mechanism does not seem to work when deployed through
+ * OSGi's HttpService initialization.
+ * 
+ * In the future this class might get refactored as an OSGi service to allow for
+ * dynamic configuration and deployment of additional JAX-RS resources and
+ * providers.
+ * 
+ * @author andrea.nuzzolese
+ */
+
+public class JerseyEndpointApplication extends Application {
+
+	@Override
+	public Set<Class<?>> getClasses() {
+            Set<Class<?>> classes = new HashSet<Class<?>>();
+		
+            classes.add(WIkinewsDemoResource.class);//OK
+            //classes.add(ReasoningResource.class);//OK
+            classes.add(ClassifyDemo.class);//OK
+            //classes.add(DocumentationResource.class);//OK
+            //classes.add(RootResource.class);
+            //classes.add(RESTfulResource.class);
+            classes.add(RecipeResource.class);
+            //classes.add(SessionResource.class);
+            //classes.add(ReengineerResource.class);
+            //classes.add(RefactorerResource.class);
+            //classes.add(GraphsResource.class);
+        
+            return classes;
+	}
+
+	@Override
+	public Set<Object> getSingletons() {
+		Set<Object> singletons = new HashSet<Object>();
+		// view processors
+		singletons.add(new IntcheckViewProcessor());
+		return singletons;
+	}
+
+}
\ No newline at end of file

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/web/JerseyEndpointApplication.java
------------------------------------------------------------------------------
    svn:executable = *

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/web/JettyServer.java
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/web/JettyServer.java?rev=1135486&view=auto
==============================================================================
--- incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/web/JettyServer.java (added)
+++ incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/web/JettyServer.java Tue Jun 14 11:12:32 2011
@@ -0,0 +1,96 @@
+package org.apache.stanbol.intcheck.web;
+
+import java.net.URI;
+import java.util.Dictionary;
+import java.util.Enumeration;
+
+import org.mortbay.jetty.Server;
+import org.mortbay.jetty.servlet.Context;
+import org.mortbay.jetty.servlet.ServletHolder;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import com.sun.jersey.spi.container.servlet.ServletContainer;
+
+/**
+ * Standalone (OSGi independent) Jetty-based server with the KReS Jersey
+ * endpoint. The OSGi component need be injected manually to the ServletContext
+ * to make them available to the resources.
+ *
+ * This class is mainly useful for testing the JAX-RS resources without faking a
+ * complete OSGI runtime.
+ *
+ * For seamless OSGi deployments the JerseyEndpoint component should be
+ * automatically registered in the container and registers the JAXRS resources
+ * automatically.
+ * 
+ * @author andrea.nuzzolese
+ */
+public class JettyServer {
+
+    private final Logger log = LoggerFactory.getLogger(getClass());
+
+    public static String DEFAUL_BASE_URI = "http://localhost:9998/";
+
+    protected Server server = new Server();
+
+    private Context context;
+
+    public void start(String baseUri) throws Exception {
+        log.info("starting the Jetty / Jersey endpoint");
+        ServletHolder servletHolder = new ServletHolder(ServletContainer.class);
+        Dictionary<String, String> initParams = new JerseyEndpoint().getInitParams();
+        Enumeration<String> keys = initParams.keys();
+        while (keys.hasMoreElements()) {
+            String key = keys.nextElement();
+            servletHolder.setInitParameter(key, initParams.get(key));
+        }
+
+        URI uri = new URI(baseUri);
+        // restart any previous server instance while keeping the previous
+        // attribute settings
+        if (server.isRunning()) {
+            server.stop();
+        }
+        server = new Server(uri.getPort());
+        context = new Context(server, "/", Context.SESSIONS);
+        context.addServlet(servletHolder, "/*");
+        server.start();
+    }
+
+    public void stop() throws Exception {
+        log.info("stopping the Jetty / Jersey endpoint");
+        server.stop();
+    }
+
+    public void setAttribute(String name, Object value) {
+        if (context != null) {
+            context.getServletContext().setAttribute(name, value);
+        }
+    }
+
+    public Object getAttribute(String name) {
+        if (context != null) {
+            return context.getServletContext().getAttribute(name);
+        }
+        return null;
+    }
+
+    public void removeAttribute(String name) {
+        if (context != null) {
+            context.getServletContext().removeAttribute(name);
+        }
+    }
+
+    /**
+     * For starting manually.
+     */
+    public static void main(String[] args) throws Exception {
+        JettyServer server = new JettyServer();
+        server.start(DEFAUL_BASE_URI);
+        System.out.println("Hit enter to stop it...");
+        System.in.read();
+        server.stop();
+    }
+
+}
\ No newline at end of file

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/java/org/apache/stanbol/intcheck/web/JettyServer.java
------------------------------------------------------------------------------
    svn:executable = *

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/KReS-subsystems.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/KReS-subsystems.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/KReS-subsystems.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/KReS-subsystems.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/add.gif
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/add.gif?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/add.gif
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/add.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/addRule.gif
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/addRule.gif?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/addRule.gif
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/addRule.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/ajax-loader.gif
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/ajax-loader.gif?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/ajax-loader.gif
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/ajax-loader.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/anonymous_48.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/anonymous_48.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/anonymous_48.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/anonymous_48.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/black_gear_128.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/black_gear_128.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/black_gear_128.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/black_gear_128.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/black_gear_16.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/black_gear_16.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/black_gear_16.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/black_gear_16.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/caos_puzzle.jpg
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/caos_puzzle.jpg?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/caos_puzzle.jpg
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/caos_puzzle.jpg
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/compass_48.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/compass_48.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/compass_48.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/compass_48.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/compass_map_48.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/compass_map_48.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/compass_map_48.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/compass_map_48.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/configure.gif
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/configure.gif?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/configure.gif
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/configure.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/configure.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/configure.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/configure.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/delete.gif
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/delete.gif?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/delete.gif
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/delete.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/download.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/download.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/download.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/download.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/download_rdf.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/download_rdf.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/download_rdf.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/download_rdf.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/external.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/external.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/external.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/external.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/favicon-black.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/favicon-black.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/favicon-black.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/favicon-black.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/favicon-sw.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/favicon-sw.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/favicon-sw.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/favicon-sw.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/favicon.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/favicon.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/favicon.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/favicon.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/fise_logo_cropped.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/fise_logo_cropped.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/fise_logo_cropped.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/fise_logo_cropped.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/fise_logo_white.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/fise_logo_white.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/fise_logo_white.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/fise_logo_white.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/fise_logo_white_small.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/fise_logo_white_small.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/fise_logo_white_small.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/fise_logo_white_small.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/foldable_folded.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/foldable_folded.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/foldable_folded.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/foldable_folded.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/foldable_unfolded.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/foldable_unfolded.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/foldable_unfolded.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/foldable_unfolded.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/header_bg.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/header_bg.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/header_bg.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/header_bg.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/iks_project_logo.jpg
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/iks_project_logo.jpg?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/iks_project_logo.jpg
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/iks_project_logo.jpg
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/kresLogo.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/kresLogo.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/kresLogo.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/kresLogo.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/kresLogoExtended.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/kresLogoExtended.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/kresLogoExtended.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/kresLogoExtended.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/loading.gif
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/loading.gif?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/loading.gif
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/loading.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/loadingSmall.gif
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/loadingSmall.gif?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/loadingSmall.gif
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/loadingSmall.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/loadingSmall2.gif
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/loadingSmall2.gif?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/loadingSmall2.gif
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/loadingSmall2.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/new_configure.gif
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/new_configure.gif?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/new_configure.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/new_configure_16.gif
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/new_configure_16.gif?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/new_configure_16.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/next.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/next.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/next.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/next.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/ok.gif
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/ok.gif?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/ok.gif
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/ok.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/organization_48.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/organization_48.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/organization_48.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/organization_48.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/previous.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/previous.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/previous.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/previous.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/rdf.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/rdf.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/rdf.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/rdf.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/rdf_flyer.64.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/rdf_flyer.64.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/rdf_flyer.64.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/rdf_flyer.64.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/rdf_flyer_16.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/rdf_flyer_16.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/rdf_flyer_16.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/rdf_flyer_16.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/rdf_flyer_24.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/rdf_flyer_24.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/rdf_flyer_24.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/rdf_flyer_24.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/rules.gif
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/rules.gif?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/rules.gif
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/rules.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/stlabLogo.jpg
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/stlabLogo.jpg?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/stlabLogo.jpg
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/stlabLogo.jpg
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/stlabLogo.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/stlabLogo.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/stlabLogo.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/stlabLogo.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/sw-cube.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/sw-cube.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/sw-cube.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/sw-cube.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/user_48.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/user_48.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/user_48.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/user_48.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/user_group_48.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/user_group_48.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/user_group_48.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/user_group_48.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/wait.gif
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/wait.gif?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/wait.gif
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/wait.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/wikipedia_w_16.png
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/wikipedia_w_16.png?rev=1135486&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/wikipedia_w_16.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/stanbol/trunk/reasoners/demo/integritycheck/src/main/resources/META-INF/static/images/wikipedia_w_16.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream