]> git.pond.sub.org Git - eow/blob - static/dojo-release-1.1.1/dojo/tests/_base/_loader/scope/scopeDjConfig.html
Comment class stub
[eow] / static / dojo-release-1.1.1 / dojo / tests / _base / _loader / scope / scopeDjConfig.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2         "http://www.w3.org/TR/html4/strict.dtd">
3 <html>
4         <head>
5                 <title>Multiversion Dojo: 0.4.3 and 1.0 (scoped djConfig)</title>
6
7                 <link rel="stylesheet" type="text/css" href="../../../../resources/dojo.css" />
8                 <link rel="stylesheet" type="text/css" href="../../../../../dijit/css/dijitTests.css" />
9                 <link rel="stylesheet" type="text/css" href="../../../../../dijit/themes/tundra/tundra.css" />
10                 
11                 <script type="text/javascript">
12                         //djConfig for 0.4.3 setup.
13                         djConfig = {
14                                 isDebug: true
15                         };
16                 </script>
17                 <script type="text/javascript" src="http://o.aolcdn.com/dojo/0.4.3/dojo.js"></script>
18
19                 <script type="text/javascript" src="../../../../dojo.js"></script>
20                 <script type="text/javascript">
21                         dojo.require("dojo.widget.DropdownDatePicker");
22
23                         //Notice that dijit._Calendar is required, not jidit._Calendar.
24                         //Same for the dojo resources (not jodo resources).
25                         jodo.require("dijit._Calendar");
26                         jodo.require("dojo.date.locale");
27                         jodo.require("dojo.parser"); // scan page for widgets
28
29                         dojo.addOnLoad(function(){
30                                 dojo.byId("output043").innerHTML = djConfig.baseUrl;
31                         });
32                         jodo.addOnLoad(function(){
33                                 dojo.byId("output10").innerHTML = jodo.baseUrl;
34                         });
35
36                         function myHandler(id,newValue){
37                                 console.debug("onChange for id = " + id + ", value: " + newValue);
38                         }
39                 </script>
40         </head>
41         <body>
42                 <h1>Multiversion Dojo: 0.4.3 and 1.0 (scoped djConfig)</h1>
43         
44                 <p><b>NOTE: This test only works with a built version of Dojo, and it must be built with the scopeDjConfig parameter (the backslashes below are required):</b></p>
45
46                 <p style="color: blue; background-color: yellow">build.sh profile=standard action=release scopeDjConfig=\{parseOnLoad:true,baseUrl:\"../../../../\",foo:\"bar\",scopeMap:[[\"dojo\",\"jodo\"],[\"dijit\",\"jidit\"],[\"dojox\",\"jodox\"]]\}</p>
47                 
48                 <p>This page loads Dojo 0.4.3 and Dojo 1.0 (under the jodo scope)</p>
49                 
50                 <p>djConfig.baseUrl should <b>not</b> exist: <span id="output043"></span></p>
51                 
52                 <p>jodo.baseUrl should be "../../../../": <span id="output10"></span></p>
53                 
54                 <p>
55                         <input dojoType="dropdowndatepicker" value="2006-10-31" containerToggle="wipe" containerToggleDuration="300" >
56                 </p>
57                 
58                 <p class="tundra">
59                         <input id="calendar1" jodoType="dijit._Calendar" onChange="myHandler(this.id,arguments[0])">
60                 </p>
61                 
62         </body>
63 </html>
64