You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@wookie.apache.org by sc...@apache.org on 2012/05/22 14:40:27 UTC

svn commit: r1341444 - /incubator/wookie/trunk/WebContent/demo/wookie.js

Author: scottbw
Date: Tue May 22 12:40:26 2012
New Revision: 1341444

URL: http://svn.apache.org/viewvc?rev=1341444&view=rev
Log:
Removed "localhost" from URLs in the demo so it can work on Wookie servers hosted at other domains.

Modified:
    incubator/wookie/trunk/WebContent/demo/wookie.js

Modified: incubator/wookie/trunk/WebContent/demo/wookie.js
URL: http://svn.apache.org/viewvc/incubator/wookie/trunk/WebContent/demo/wookie.js?rev=1341444&r1=1341443&r2=1341444&view=diff
==============================================================================
--- incubator/wookie/trunk/WebContent/demo/wookie.js (original)
+++ incubator/wookie/trunk/WebContent/demo/wookie.js Tue May 22 12:40:26 2012
@@ -62,7 +62,7 @@ function getWidgets(){
   }).keyup( function () {
     $(this).change();
   });
-
+  Wookie.configureConnection("/wookie", "TEST", "mysharedkey");
   Wookie.getWidgets(updateWidgets);
 
   var id = $.getUrlVar("id");
@@ -86,7 +86,7 @@ function updateWidgets(widgets){
 }
 
 function showWidget(id){
-    Wookie.setCurrentUser("alice","alice","http://localhost:8080/wookie/demo/alice.png");
+    Wookie.setCurrentUser("alice","alice","/wookie/demo/alice.png");
     var widgetInstance = Wookie.getOrCreateInstance(id);
     $('#preview_info').html('<br/>' + widgetInstance.title + '<br/>' + id);
     $("#preview_alice_widget").html('');
@@ -94,7 +94,7 @@ function showWidget(id){
     $("#alice_url").html("<a href='" + widgetInstance.url + "' target='_blank'>Full Screen</a>");
     Wookie.setPreference(id, "conference-manager","true");
     
-    Wookie.setCurrentUser("bob","bob","http://localhost:8080/wookie/demo/bob.png");
+    Wookie.setCurrentUser("bob","bob","/wookie/demo/bob.png");
     var widgetInstance = Wookie.getOrCreateInstance(id);
     $("#preview_bob_widget").html('');
     $("#preview_bob_widget").append("<iframe src='"+widgetInstance.url+"' height='"+widgetInstance.height+"' width='"+widgetInstance.width+"'></iframe>");