aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dijit/demos/nihao.html
blob: 113a7500d36c47a2aa366806389b6c92717e4572 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
	"http://www.w3.org/TR/html4/strict.dtd">
<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
		<title>Dojo Globalization Hello World</title>

		<script language="JavaScript" type="text/javascript">
			// set the global locale for Dojo from the request parameter
			var result = location.href.match(/[\?\&]locale=([^\&]+)/);
			djConfig = {locale: result && result[1] || "en-us"}; // default locale is en-us
	 	</script>

		<script type="text/javascript" isDebug="true" src="../../dojo/dojo.js"></script>
	
		<style type="text/css">
	 		@import "../../dojo/resources/dojo.css";
			@import "../themes/tundra/tundra.css";
			@import "../themes/tundra/tundra_rtl.css";

			body {padding:1em}
		</style>

		<script language="JavaScript" type="text/javascript">
			dojo.require("dojo.date.locale");
			dojo.require("dojo.number");
			dojo.require("dojo.string");
			dojo.require("dojo.parser");
			dojo.require("dijit.form.DateTextBox");

			// load the resource bundle for HelloWorld
			dojo.requireLocalization("dijit.demos.nihao", "helloworld");

			var resourceBundle;

			dojo.addOnLoad(function(){
				// create the DateTextBox from the HTML segment with the dojoType set
				dojo.parser.parse();
			
				// make current locale selected
				dojo.byId('langList').value = dojo.locale;

				// get the resource bundle object of the current global locale
				resourceBundle = dojo.i18n.getLocalization("dijit.demos.nihao", "helloworld");

				// do formatting and update the resource strings
				dojo.byId('locale').innerHTML = resourceBundle.localeSelect;
				dojo.byId('content').innerHTML = dojo.string.substitute(
					resourceBundle.contentStr,
					[dojo.date.locale.format(new Date(), {selector:'date', formatLength:'long'})]);
				dojo.byId('date').innerHTML = resourceBundle.dateSelect;

				dateChanged();
			});

			function localeChanged(){
				open("nihao.html?locale=" + dojo.byId("langList").value, "_self");
			}
		
			function dateChanged(){
				if(resourceBundle){
					var stamp = dijit.byId("dateBox").getValue();
					if(stamp){
						dojo.byId('secondsToGo').innerHTML = dojo.string.substitute(
							resourceBundle.dateStr,
							[dojo.number.format((stamp - new Date()) / 1000)]);
					}
				}
			}
		</script>
	</head>

	<body class="tundra">
		<h1>Dojo Globalization Hello World</h1>
		<p>
			<span id="locale"></span>
			<select id="langList" onchange="localeChanged();" >
				<option value="en-us">en-US</option>
				<option value="fr-fr">fr-FR</option>
				<option value="zh-cn">zh-CN</option>
			</select>
		</p>		
		<hr>
		<p id="content"></p>			
		<p>
			<span id="date"></span>
			<input id="dateBox" type="text" dojoType="dijit.form.DateTextBox" constraints="{formatLength:'long'}" onchange="dateChanged();">
		</p>
		<p id="secondsToGo"></p>
	</body>
</html>