You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by gn...@apache.org on 2010/07/02 16:29:54 UTC

svn commit: r960004 - /karaf/trunk/features/command/src/main/resources/OSGI-INF/blueprint/features-command.xml

Author: gnodet
Date: Fri Jul  2 14:29:53 2010
New Revision: 960004

URL: http://svn.apache.org/viewvc?rev=960004&view=rev
Log:
KARAF-101: features:refreshUrl doesn't auto complete

Modified:
    karaf/trunk/features/command/src/main/resources/OSGI-INF/blueprint/features-command.xml

Modified: karaf/trunk/features/command/src/main/resources/OSGI-INF/blueprint/features-command.xml
URL: http://svn.apache.org/viewvc/karaf/trunk/features/command/src/main/resources/OSGI-INF/blueprint/features-command.xml?rev=960004&r1=960003&r2=960004&view=diff
==============================================================================
--- karaf/trunk/features/command/src/main/resources/OSGI-INF/blueprint/features-command.xml (original)
+++ karaf/trunk/features/command/src/main/resources/OSGI-INF/blueprint/features-command.xml Fri Jul  2 14:29:53 2010
@@ -30,11 +30,14 @@
         <command name="features/removeUrl">
             <action class="org.apache.karaf.features.command.RemoveUrlCommand"/>
             <completers>
-                <ref component-id="removeUrlCompleter" />
+                <ref component-id="featureUrlCompleter" />
             </completers>
         </command>
         <command name="features/refreshUrl">
             <action class="org.apache.karaf.features.command.RefreshUrlCommand"/>
+            <completers>
+                <ref component-id="featureUrlCompleter" />
+            </completers>
         </command>
         <command name="features/install">
             <action class="org.apache.karaf.features.command.InstallFeatureCommand"/>
@@ -73,7 +76,7 @@
         <property name="featuresService" ref="featuresService" />
     </bean>
 
-    <bean id="removeUrlCompleter" class="org.apache.karaf.features.command.completers.FeatureRepositoryCompleter">
+    <bean id="featureUrlCompleter" class="org.apache.karaf.features.command.completers.FeatureRepositoryCompleter">
         <property name="featuresService" ref="featuresService" />
     </bean>