Changeset 7459 for branches/0.4/buildscripts/webbuild/index.html
- Timestamp:
- 02/27/07 11:39:32 (21 months ago)
- Files:
-
- 1 modified
-
branches/0.4/buildscripts/webbuild/index.html (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.4/buildscripts/webbuild/index.html
r7450 r7459 1 1 <html> 2 <head> 2 3 <style type="text/css"> 3 4 … … 125 126 outputNode.innerHTML = ""; 126 127 } 127 128 128 129 function getCachedBuildUrl(depList){ 129 130 var doCompression = document.masterForm.doCompression[1].checked ? true : false; 130 var sortedFileList = depList.sort().join(","); 131 //Create sorted file list. slice() is used to get a copy of the array. 132 var sortedFileList = depList.slice().sort().join(","); 131 133 var buildKey = dojo.crypto.MD5.compute(sortedFileList, dojo.crypto.outputTypes.Hex); 132 134 return "dojobuilds/" + buildKey + (doCompression ? "/compressed" : "") + "/dojo.js"; … … 259 261 260 262 //Set up XD Dojo URL if available. 261 xdDojoUrl = "@XD_DOJO_URL@";263 window.xdDojoUrl = "@XD_DOJO_URL@"; 262 264 if(xdDojoUrl != ("@" + "XD_DOJO_URL" + "@")){ 263 265 dojo.byId("xdDojoUrl").innerHTML = xdDojoUrl; … … 267 269 } 268 270 269 version = "@VERSION@";271 window.version = "@VERSION@"; 270 272 if(xdDojoUrl == ("@" + "VERSION" + "@")){ 271 273 version = ""; … … 419 421 } 420 422 </script> 421 423 </head> 422 424 <body> 423 425 <form name="masterForm" onsubmit="return false">