You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@wookie.apache.org by rg...@apache.org on 2010/03/01 00:15:06 UTC

svn commit: r917319 - /incubator/wookie/trunk/WebContent/webmenu/demoWidget.jsp

Author: rgardler
Date: Sun Feb 28 23:15:06 2010
New Revision: 917319

URL: http://svn.apache.org/viewvc?rev=917319&view=rev
Log:
Now that we've switched to using the connector framework we no longer have anonymous users for widgets. This means the two widgets are actually owned by the same user, so put a note on the page to this effect until it is resolved.

Modified:
    incubator/wookie/trunk/WebContent/webmenu/demoWidget.jsp

Modified: incubator/wookie/trunk/WebContent/webmenu/demoWidget.jsp
URL: http://svn.apache.org/viewvc/incubator/wookie/trunk/WebContent/webmenu/demoWidget.jsp?rev=917319&r1=917318&r2=917319&view=diff
==============================================================================
--- incubator/wookie/trunk/WebContent/webmenu/demoWidget.jsp (original)
+++ incubator/wookie/trunk/WebContent/webmenu/demoWidget.jsp Sun Feb 28 23:15:06 2010
@@ -56,15 +56,21 @@
   
   <p>Remember, not all widgets are designed to be multi-user and thus you may not see any
   interaction between the two widget instances.</p>
+  
+  <h1>IMPORTANT NOTE</h1>
+  
+  <p>The code for this page is currently in development and at the time of writing both
+  widgets instances are owned by the same user.</p>
+  
   <table>
       <tr>
         <td>
-          <h2>Widget for user A</h2>
+          <h2>Widget for user Test User</h2>
 		  <iframe width="<%= request.getAttribute("widgetWidth") %>" height="<%= request.getAttribute("widgetHeight") %>" src="<%= request.getAttribute("widgetURL") %>?idkey=<%= request.getParameter("idkey") %>&proxy=<%=request.getAttribute("proxy")%>">
 		  </iframe>
 		</td>
         <td>
-          <h2>Widget for user B</h2>
+          <h2>Widget for user Test User</h2>
 		  <iframe width="<%= request.getAttribute("widgetWidth") %>" height="<%= request.getAttribute("widgetHeight") %>" src="<%= request.getAttribute("widgetURL") %>?idkey=<%= request.getParameter("idkey") %>&proxy=<%=request.getAttribute("proxy")%>">
 		  </iframe>
         </td>