Blame | Last modification | View Log | RSS feed
<!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 parametervar result = location.href.match(/[\?\&]locale=([^\&]+)/);djConfig = {locale: result && result[1] || "en-us"}; // default locale is en-us</script><script type="text/javascript" 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 HelloWorlddojo.requireLocalization("dijit.demos.nihao", "helloworld");var resourceBundle;dojo.addOnLoad(function(){// create the DateTextBox from the HTML segment with the dojoType setdojo.parser.parse();// make current locale selecteddojo.byId('langList').value = dojo.locale;// get the resource bundle object of the current global localeresourceBundle = dojo.i18n.getLocalization("dijit.demos.nihao", "helloworld");// do formatting and update the resource stringsdojo.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){dojo.byId('secondsToGo').innerHTML = dojo.string.substitute(resourceBundle.dateStr,[dojo.number.format((dijit.byId("dateBox").getValue() - 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>