Author: ldywicki
Date: Fri Jan 18 10:55:45 2013
New Revision: 1435083

URL: http://svn.apache.org/viewvc?rev=1435083&view=rev
Log:
[KARAF-1287] - extending-console synced with KARAF-1001

Author: Krzysztof Sobkowiak <krzys.sobkow...@gmail.com>
Signed-off-by: Lukasz Dywicki <l...@code-house.org>

Modified:
    karaf/trunk/manual/src/main/webapp/developers-guide/extending-console.conf

Modified: 
karaf/trunk/manual/src/main/webapp/developers-guide/extending-console.conf
URL: 
http://svn.apache.org/viewvc/karaf/trunk/manual/src/main/webapp/developers-guide/extending-console.conf?rev=1435083&r1=1435082&r2=1435083&view=diff
==============================================================================
--- karaf/trunk/manual/src/main/webapp/developers-guide/extending-console.conf 
(original)
+++ karaf/trunk/manual/src/main/webapp/developers-guide/extending-console.conf 
Fri Jan 18 10:55:45 2013
@@ -166,7 +166,7 @@ Inside this directory, create the {{OSGI
 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0";>
 
     <command-bundle xmlns="http://karaf.apache.org/xmlns/shell/v1.1.0";>
-        <command name="test/hello">
+        <command>
             <action class="org.apache.karaf.shell.samples.HelloShellCommand"/>
         </command>
     </command-bundle>
@@ -278,7 +278,7 @@ Using Blueprint, you can "inject" the co
 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0";>
 
     <command-bundle xmlns="http://karaf.apache.org/xmlns/shell/v1.1.0";>
-        <command name="test/hello">
+        <command>
             <action class="org.apache.karaf.shell.samples.HelloShellCommand"/>
             <completers>
                 <ref component-id="simpleNameCompleter"/>
@@ -331,7 +331,7 @@ blueprint configuration that will associ
 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0";>
 
     <command-bundle xmlns="http://karaf.apache.org/xmlns/shell/v1.1.0";>
-        <command name="test/hello">
+        <command>
             <action class="org.apache.karaf.shell.samples.HelloShellCommand"/>
             <completers>
                 <ref component-id="simpleNameCompleter"/>


Reply via email to