From xap-commits-return-222-apmail-incubator-xap-commits-archive=incubator.apache.org@incubator.apache.org Thu Aug 10 18:02:39 2006 Return-Path: Delivered-To: apmail-incubator-xap-commits-archive@locus.apache.org Received: (qmail 12122 invoked from network); 10 Aug 2006 18:02:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 10 Aug 2006 18:02:39 -0000 Received: (qmail 54875 invoked by uid 500); 10 Aug 2006 18:02:39 -0000 Delivered-To: apmail-incubator-xap-commits-archive@incubator.apache.org Received: (qmail 54851 invoked by uid 500); 10 Aug 2006 18:02:39 -0000 Mailing-List: contact xap-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: xap-dev@incubator.apache.org Delivered-To: mailing list xap-commits@incubator.apache.org Received: (qmail 54842 invoked by uid 99); 10 Aug 2006 18:02:39 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Aug 2006 11:02:39 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Aug 2006 11:02:34 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 3920D1A981A; Thu, 10 Aug 2006 11:02:08 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r430463 - in /incubator/xap/trunk/WebContent/examples/dojo: colorPicker.html colorPicker.js colorPicker.xal colorPickerHandler.js datePicker.html datePicker.js datePicker.xal dojoExample_0.html dojoExample_0.js dojoExample_0.xal Date: Thu, 10 Aug 2006 18:02:06 -0000 To: xap-commits@incubator.apache.org From: mturyn@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060810180208.3920D1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: mturyn Date: Thu Aug 10 11:02:05 2006 New Revision: 430463 URL: http://svn.apache.org/viewvc?rev=430463&view=rev Log: Standardised name of HTML DOM nodes and our client sessions. Modified: incubator/xap/trunk/WebContent/examples/dojo/colorPicker.html incubator/xap/trunk/WebContent/examples/dojo/colorPicker.js incubator/xap/trunk/WebContent/examples/dojo/colorPicker.xal incubator/xap/trunk/WebContent/examples/dojo/colorPickerHandler.js incubator/xap/trunk/WebContent/examples/dojo/datePicker.html incubator/xap/trunk/WebContent/examples/dojo/datePicker.js incubator/xap/trunk/WebContent/examples/dojo/datePicker.xal incubator/xap/trunk/WebContent/examples/dojo/dojoExample_0.html incubator/xap/trunk/WebContent/examples/dojo/dojoExample_0.js incubator/xap/trunk/WebContent/examples/dojo/dojoExample_0.xal Modified: incubator/xap/trunk/WebContent/examples/dojo/colorPicker.html URL: http://svn.apache.org/viewvc/incubator/xap/trunk/WebContent/examples/dojo/colorPicker.html?rev=430463&r1=430462&r2=430463&view=diff ============================================================================== --- incubator/xap/trunk/WebContent/examples/dojo/colorPicker.html (original) +++ incubator/xap/trunk/WebContent/examples/dojo/colorPicker.html Thu Aug 10 11:02:05 2006 @@ -70,11 +70,11 @@ 0.1. This is put here by plain old Dojo.
-
This cell is the xap ClientSession "MyApp"'s home-base.
+
This cell is the xap ClientSession "MyApp"'s home-base.
- This ColorPicker was put here via a xap application:
+ This ColorPicker was put here via a xap application:
Pick a color... Modified: incubator/xap/trunk/WebContent/examples/dojo/colorPicker.js URL: http://svn.apache.org/viewvc/incubator/xap/trunk/WebContent/examples/dojo/colorPicker.js?rev=430463&r1=430462&r2=430463&view=diff ============================================================================== --- incubator/xap/trunk/WebContent/examples/dojo/colorPicker.js (original) +++ incubator/xap/trunk/WebContent/examples/dojo/colorPicker.js Thu Aug 10 11:02:05 2006 @@ -1,5 +1,5 @@ document.showStatus = function(){ - var session = window["MyApp"] ; + var session = window["ColorPicker"] ; var node = session.domContainer ; var front = "" ; Modified: incubator/xap/trunk/WebContent/examples/dojo/colorPicker.xal URL: http://svn.apache.org/viewvc/incubator/xap/trunk/WebContent/examples/dojo/colorPicker.xal?rev=430463&r1=430462&r2=430463&view=diff ============================================================================== --- incubator/xap/trunk/WebContent/examples/dojo/colorPicker.xal (original) +++ incubator/xap/trunk/WebContent/examples/dojo/colorPicker.xal Thu Aug 10 11:02:05 2006 @@ -13,7 +13,7 @@ Picked : " - + "" - + "
" - +colour - + "
" - +"
" - +"   = rgb(" - +"" +rgb.r +"," - +"" +rgb.g +"," - +"" +rgb.b +"" - +")" - +"
" ; - displayer.innerHTML =str ; + var str = "Picked : " + + "" + + "
" + +colour + + "
" + +"
" + +"   = rgb(" + +"" +rgb.r +"," + +"" +rgb.g +"," + +"" +rgb.b +"" + +")" + +"
" ; + displayer.innerHTML =str ; } Modified: incubator/xap/trunk/WebContent/examples/dojo/datePicker.html URL: http://svn.apache.org/viewvc/incubator/xap/trunk/WebContent/examples/dojo/datePicker.html?rev=430463&r1=430462&r2=430463&view=diff ============================================================================== --- incubator/xap/trunk/WebContent/examples/dojo/datePicker.html (original) +++ incubator/xap/trunk/WebContent/examples/dojo/datePicker.html Thu Aug 10 11:02:05 2006 @@ -54,7 +54,10 @@ + + + @@ -71,18 +74,18 @@ 0.1. This is put here by plain old Dojo.
-
This cell is the xap ClientSession "MyApp"'s home-base.
+
This DatePicker was put here via a xap application:
This cell is the xap ClientSession "DatePicker"'s home-base.
- This DatePicker was put here via a xap application:
+
Pick a day....
- - +