You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by cl...@apache.org on 2010/07/13 16:50:30 UTC

svn commit: r963744 - /felix/trunk/ipojo/webconsole-plugin/src/main/java/org/apache/felix/ipojo/webconsole/IPOJOPlugin.java

Author: clement
Date: Tue Jul 13 14:50:30 2010
New Revision: 963744

URL: http://svn.apache.org/viewvc?rev=963744&view=rev
Log:
Modify the plugin label and name to be 'iPOJO'

Modified:
    felix/trunk/ipojo/webconsole-plugin/src/main/java/org/apache/felix/ipojo/webconsole/IPOJOPlugin.java

Modified: felix/trunk/ipojo/webconsole-plugin/src/main/java/org/apache/felix/ipojo/webconsole/IPOJOPlugin.java
URL: http://svn.apache.org/viewvc/felix/trunk/ipojo/webconsole-plugin/src/main/java/org/apache/felix/ipojo/webconsole/IPOJOPlugin.java?rev=963744&r1=963743&r2=963744&view=diff
==============================================================================
--- felix/trunk/ipojo/webconsole-plugin/src/main/java/org/apache/felix/ipojo/webconsole/IPOJOPlugin.java (original)
+++ felix/trunk/ipojo/webconsole-plugin/src/main/java/org/apache/felix/ipojo/webconsole/IPOJOPlugin.java Tue Jul 13 14:50:30 2010
@@ -47,7 +47,7 @@ import org.osgi.framework.ServiceReferen
 @Instantiate
 public class IPOJOPlugin extends AbstractWebConsolePlugin {
     
-    private static final String CSS[] = { "/res/ui/bundles.css" , "/iPOJO_2/res/ui/ipojo.css" }; // TODO Change
+    private static final String CSS[] = { "/res/ui/bundles.css" , "/iPOJO/res/ui/ipojo.css" };
 
     private final String INSTANCES;
     private final String FACTORIES;
@@ -61,13 +61,13 @@ public class IPOJOPlugin extends Abstrac
      * Label used by the web console.
      */
     @ServiceProperty(name = "felix.webconsole.label")
-    private String m_label = "iPOJO_2"; // TODO CHANGE
+    private String m_label = "iPOJO"; // TODO CHANGE
 
     /**
      * Title used by the web console.
      */
     @ServiceProperty(name = "felix.webconsole.title")
-    private String m_title = "iPOJO_2";  // TODO CHANGE
+    private String m_title = "iPOJO";  // TODO CHANGE
     
     @ServiceProperty(name= "felix.webconsole.css")
     protected String[] m_css = CSS;
@@ -96,7 +96,6 @@ public class IPOJOPlugin extends Abstrac
         HANDLERS = readTemplateFile(this.getClass(), "/res/handlers.html" );
         FACTORY_DETAILS = readTemplateFile(this.getClass(), "/res/factory.html" );
         INSTANCE_DETAILS = readTemplateFile(this.getClass(), "/res/instance.html" );
-
     }
     
     private final String readTemplateFile(final Class clazz,