Show
Ignore:
Timestamp:
02/27/07 11:39:32 (21 months ago)
Author:
jburke
Message:

References #2366. Got web build cache to work, removed dojo.widget.Editor from editor.profile.js, and removed extraneous copyright from bootstrap1.js

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/0.4/buildscripts/webbuild/index.html

    r7450 r7459  
    11<html> 
     2<head> 
    23<style type="text/css"> 
    34 
     
    125126                outputNode.innerHTML = ""; 
    126127        } 
    127          
     128 
    128129        function getCachedBuildUrl(depList){ 
    129130                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(","); 
    131133                var buildKey = dojo.crypto.MD5.compute(sortedFileList, dojo.crypto.outputTypes.Hex); 
    132134                return "dojobuilds/" + buildKey + (doCompression ? "/compressed" : "") + "/dojo.js"; 
     
    259261                 
    260262                //Set up XD Dojo URL if available. 
    261                 xdDojoUrl = "@XD_DOJO_URL@"; 
     263                window.xdDojoUrl = "@XD_DOJO_URL@"; 
    262264                if(xdDojoUrl != ("@" + "XD_DOJO_URL" + "@")){ 
    263265                        dojo.byId("xdDojoUrl").innerHTML = xdDojoUrl; 
     
    267269                } 
    268270                 
    269                 version = "@VERSION@"; 
     271                window.version = "@VERSION@"; 
    270272                if(xdDojoUrl == ("@" + "VERSION" + "@")){ 
    271273                        version = ""; 
     
    419421} 
    420422</script> 
    421  
     423</head> 
    422424<body> 
    423425<form name="masterForm" onsubmit="return false">