You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xap-commits@incubator.apache.org by mt...@apache.org on 2006/08/11 21:55:32 UTC

svn commit: r430907 - in /incubator/xap/trunk/WebContent/examples: basic/dom0.html dojo/colorPicker.html dojo/dateAndColorPickers.html dojo/datePicker.html dojo/dojo1.html dojo/dojoExample_0.html

Author: mturyn
Date: Fri Aug 11 14:55:31 2006
New Revision: 430907

URL: http://svn.apache.org/viewvc?rev=430907&view=rev
Log:
Updated to match new parameter names.

Modified:
    incubator/xap/trunk/WebContent/examples/basic/dom0.html
    incubator/xap/trunk/WebContent/examples/dojo/colorPicker.html
    incubator/xap/trunk/WebContent/examples/dojo/dateAndColorPickers.html
    incubator/xap/trunk/WebContent/examples/dojo/datePicker.html
    incubator/xap/trunk/WebContent/examples/dojo/dojo1.html
    incubator/xap/trunk/WebContent/examples/dojo/dojoExample_0.html

Modified: incubator/xap/trunk/WebContent/examples/basic/dom0.html
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/WebContent/examples/basic/dom0.html?rev=430907&r1=430906&r2=430907&view=diff
==============================================================================
--- incubator/xap/trunk/WebContent/examples/basic/dom0.html (original)
+++ incubator/xap/trunk/WebContent/examples/basic/dom0.html Fri Aug 11 14:55:31 2006
@@ -77,7 +77,7 @@
  
  </head>
  
- <body onLoad="document.attachOurEvent();Xap.scanPage();if(xap.showStatus){xap.showStatus();};document.attachOurEvent();">
+ <body onLoad="document.attachOurEvent();Xap.createAllPredefinedSessions();if(xap.showStatus){xap.showStatus();};document.attachOurEvent();">
 	<script type="text/javascript">
 		DBG = new AjxDebug( AjxDebug.NONE, null, false ); 
 	</script>

Modified: incubator/xap/trunk/WebContent/examples/dojo/colorPicker.html
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/WebContent/examples/dojo/colorPicker.html?rev=430907&r1=430906&r2=430907&view=diff
==============================================================================
--- incubator/xap/trunk/WebContent/examples/dojo/colorPicker.html (original)
+++ incubator/xap/trunk/WebContent/examples/dojo/colorPicker.html Fri Aug 11 14:55:31 2006
@@ -57,7 +57,7 @@
  
  </head>
   
- <body onload="divv=document.getElementById('dp') ;dojo.widget.createWidget('ColorPalette',{widgetId:'dp'},divv);Xap.scanPage();if(document.showXapStatus){document.showXapStatus('ColorPicker');}; ">
+ <body onload="divv=document.getElementById('dp') ;dojo.widget.createWidget('ColorPalette',{widgetId:'dp'},divv);Xap.createAllPredefinedSessions();if(document.showXapStatus){document.showXapStatus('ColorPicker');}; ">
 	<script type="text/javascript">
 		DBG = new AjxDebug( AjxDebug.NONE, null, false ); 
 	</script>

Modified: incubator/xap/trunk/WebContent/examples/dojo/dateAndColorPickers.html
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/WebContent/examples/dojo/dateAndColorPickers.html?rev=430907&r1=430906&r2=430907&view=diff
==============================================================================
--- incubator/xap/trunk/WebContent/examples/dojo/dateAndColorPickers.html (original)
+++ incubator/xap/trunk/WebContent/examples/dojo/dateAndColorPickers.html Fri Aug 11 14:55:31 2006
@@ -61,7 +61,7 @@
  
  </head>
   
- <body onload="Xap.scanPage();if(document.showXapStatus){document.showXapStatus(['DatePicker','ColorPicker']);}; ">
+ <body onload="Xap.createAllPredefinedSessions();if(document.showXapStatus){document.showXapStatus(['DatePicker','ColorPicker']);}; ">
 	<script type="text/javascript">
 		DBG = new AjxDebug( AjxDebug.NONE, null, false ); 
 	</script>

Modified: incubator/xap/trunk/WebContent/examples/dojo/datePicker.html
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/WebContent/examples/dojo/datePicker.html?rev=430907&r1=430906&r2=430907&view=diff
==============================================================================
--- incubator/xap/trunk/WebContent/examples/dojo/datePicker.html (original)
+++ incubator/xap/trunk/WebContent/examples/dojo/datePicker.html Fri Aug 11 14:55:31 2006
@@ -62,7 +62,7 @@
  
  </head>
   
- <body onload="divv=document.getElementById('dp') ;dojo.widget.createWidget('datepicker',{widgetId:'dp'},divv);Xap.scanPage();if(document.showXapStatus){document.showXapStatus('DatePicker');}; ">
+ <body onload="divv=document.getElementById('dp') ;dojo.widget.createWidget('datepicker',{widgetId:'dp'},divv);Xap.createAllPredefinedSessions();if(document.showXapStatus){document.showXapStatus('DatePicker');}; ">
 	<script type="text/javascript">
 		DBG = new AjxDebug( AjxDebug.NONE, null, false ); 
 	</script>

Modified: incubator/xap/trunk/WebContent/examples/dojo/dojo1.html
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/WebContent/examples/dojo/dojo1.html?rev=430907&r1=430906&r2=430907&view=diff
==============================================================================
--- incubator/xap/trunk/WebContent/examples/dojo/dojo1.html (original)
+++ incubator/xap/trunk/WebContent/examples/dojo/dojo1.html Fri Aug 11 14:55:31 2006
@@ -55,7 +55,7 @@
  </head>
  
 
-<body onLoad="Xap.scanPage();if(document.showXapStatus){document.showXapStatus('MyApp');}">
+<body onLoad="Xap.createAllPredefinedSessions();if(document.showXapStatus){document.showXapStatus('MyApp');}">
 	<script type="text/javascript">
 		DBG = new AjxDebug( AjxDebug.NONE, null, false ); 
 	</script>

Modified: incubator/xap/trunk/WebContent/examples/dojo/dojoExample_0.html
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/WebContent/examples/dojo/dojoExample_0.html?rev=430907&r1=430906&r2=430907&view=diff
==============================================================================
--- incubator/xap/trunk/WebContent/examples/dojo/dojoExample_0.html (original)
+++ incubator/xap/trunk/WebContent/examples/dojo/dojoExample_0.html Fri Aug 11 14:55:31 2006
@@ -56,7 +56,7 @@
  </head>
 
 
-<body onLoad="Xap.scanPage()">
+<body onLoad="Xap.createAllPredefinedSessions()">
 	<script type="text/javascript">
 		DBG = new AjxDebug( AjxDebug.NONE, null, false ); 
 	</script>