You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by ld...@apache.org on 2013/01/18 11:55:45 UTC

svn commit: r1435083 - /karaf/trunk/manual/src/main/webapp/developers-guide/extending-console.conf

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 <kr...@gmail.com>
Signed-off-by: Lukasz Dywicki <lu...@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"/>