Modify the plugin label and name to be 'iPOJO'

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@963744 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/ipojo/webconsole-plugin/src/main/java/org/apache/felix/ipojo/webconsole/IPOJOPlugin.java b/ipojo/webconsole-plugin/src/main/java/org/apache/felix/ipojo/webconsole/IPOJOPlugin.java
index daf992e..ff0dd2c 100644
--- a/ipojo/webconsole-plugin/src/main/java/org/apache/felix/ipojo/webconsole/IPOJOPlugin.java
+++ b/ipojo/webconsole-plugin/src/main/java/org/apache/felix/ipojo/webconsole/IPOJOPlugin.java
@@ -47,7 +47,7 @@
 @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 @@
      * 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 @@
         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,