Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/java/org/apache/stanbol/reasoners/web/JettyServer.java URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/java/org/apache/stanbol/reasoners/web/JettyServer.java?rev=1083484&view=auto ============================================================================== --- incubator/stanbol/trunk/kres/reasoners/web/src/main/java/org/apache/stanbol/reasoners/web/JettyServer.java (added) +++ incubator/stanbol/trunk/kres/reasoners/web/src/main/java/org/apache/stanbol/reasoners/web/JettyServer.java Sun Mar 20 16:13:06 2011 @@ -0,0 +1,96 @@ +package org.apache.stanbol.reasoners.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
Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/add.gif URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/add.gif?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/add.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/addRule.gif URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/addRule.gif?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/addRule.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/ajax-loader.gif URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/ajax-loader.gif?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/ajax-loader.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/anonymous_48.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/anonymous_48.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/anonymous_48.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/black_gear_128.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/black_gear_128.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/black_gear_128.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/black_gear_16.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/black_gear_16.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/black_gear_16.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/caos_puzzle.jpg URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/caos_puzzle.jpg?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/caos_puzzle.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/compass_48.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/compass_48.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/compass_48.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/compass_map_48.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/compass_map_48.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/compass_map_48.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/configure.gif URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/configure.gif?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/configure.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/delete.gif URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/delete.gif?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/delete.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/download.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/download.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/download.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/download_rdf.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/download_rdf.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/download_rdf.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/external.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/external.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/external.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/favicon-black.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/favicon-black.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/favicon-black.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/favicon-sw.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/favicon-sw.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/favicon-sw.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/favicon.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/favicon.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/favicon.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/fise_logo_cropped.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/fise_logo_cropped.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/fise_logo_cropped.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/fise_logo_white.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/fise_logo_white.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/fise_logo_white.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/fise_logo_white_small.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/fise_logo_white_small.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/fise_logo_white_small.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/foldable_folded.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/foldable_folded.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/foldable_folded.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/foldable_unfolded.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/foldable_unfolded.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/foldable_unfolded.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/header_bg.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/header_bg.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/header_bg.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/iks_project_logo.jpg URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/iks_project_logo.jpg?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/iks_project_logo.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/kresLogo.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/kresLogo.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/kresLogo.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/kresLogoExtended.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/kresLogoExtended.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/kresLogoExtended.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/loading.gif URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/loading.gif?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/loading.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/next.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/next.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/next.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/organization_48.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/organization_48.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/organization_48.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/previous.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/previous.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/previous.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/rdf.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/rdf.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/rdf.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/rdf_flyer.64.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/rdf_flyer.64.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/rdf_flyer.64.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/rdf_flyer_16.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/rdf_flyer_16.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/rdf_flyer_16.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/rdf_flyer_24.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/rdf_flyer_24.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/rdf_flyer_24.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/rules.gif URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/rules.gif?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/rules.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/stlabLogo.jpg URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/stlabLogo.jpg?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/stlabLogo.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/stlabLogo.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/stlabLogo.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/stlabLogo.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/sw-cube.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/sw-cube.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/sw-cube.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/user_48.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/user_48.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/user_48.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/user_group_48.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/user_group_48.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/user_group_48.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/wikipedia_w_16.png URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/wikipedia_w_16.png?rev=1083484&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/images/wikipedia_w_16.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/scripts/jit-yc.js URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/scripts/jit-yc.js?rev=1083484&view=auto ============================================================================== --- incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/scripts/jit-yc.js (added) +++ incubator/stanbol/trunk/kres/reasoners/web/src/main/resources/META-INF/static/scripts/jit-yc.js Sun Mar 20 16:13:06 2011 @@ -0,0 +1,27 @@ +/* + Copyright (c) 2010, Nicolas Garcia Belmonte + All rights reserved + + > Redistribution and use in source and binary forms, with or without + > modification, are permitted provided that the following conditions are met: + > * Redistributions of source code must retain the above copyright + > notice, this list of conditions and the following disclaimer. + > * Redistributions in binary form must reproduce the above copyright + > notice, this list of conditions and the following disclaimer in the + > documentation and/or other materials provided with the distribution. + > * Neither the name of the organization nor the + > names of its contributors may be used to endorse or promote products + > derived from this software without specific prior written permission. + > + > THIS SOFTWARE IS PROVIDED BY NICOLAS GARCIA BELMONTE ``AS IS'' AND ANY + > EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + > WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + > DISCLAIMED. IN NO EVENT SHALL NICOLAS GARCIA BELMONTE BE LIABLE FOR ANY + > DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + > (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + > LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + > ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + > (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + > SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ [... 3 lines stripped ...]
