You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shindig.apache.org by rb...@apache.org on 2012/08/13 03:10:40 UTC

svn commit: r1372232 - /shindig/trunk/features/src/main/javascript/features/selection/feature.xml

Author: rbaxter85
Date: Mon Aug 13 01:10:39 2012
New Revision: 1372232

URL: http://svn.apache.org/viewvc?rev=1372232&view=rev
Log:
Fixed bad exports in feature.xml

Modified:
    shindig/trunk/features/src/main/javascript/features/selection/feature.xml

Modified: shindig/trunk/features/src/main/javascript/features/selection/feature.xml
URL: http://svn.apache.org/viewvc/shindig/trunk/features/src/main/javascript/features/selection/feature.xml?rev=1372232&r1=1372231&r2=1372232&view=diff
==============================================================================
--- shindig/trunk/features/src/main/javascript/features/selection/feature.xml (original)
+++ shindig/trunk/features/src/main/javascript/features/selection/feature.xml Mon Aug 13 01:10:39 2012
@@ -36,8 +36,11 @@ specific language governing permissions 
   <container>
     <script src="selection_container.js"/>
     <api>
-      <exports type="rpc">gadgets.selection.set</exports>
-      <exports type="rpc">gadgets.selection.register</exports>
+      <exports type="rpc">osapi.container.Container.selection</exports>
+      <exports type="rpc">osapi.container.Container.selection.setSelection</exports>
+      <exports type="rpc">osapi.container.Container.selection.getSelection</exports>
+      <exports type="rpc">osapi.container.Container.selection.addListener</exports>
+      <exports type="rpc">osapi.container.Container.selection.removeListener</exports>
       <uses type="rpc">gadgets.selection.selectionChanged</uses>
     </api>
   </container>