Changeset 8607

Show
Ignore:
Timestamp:
05/14/07 13:50:20 (20 months ago)
Author:
jburke
Message:

Fixes #3008. Web builds now working again.

Location:
branches/0.4/buildscripts
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/0.4/buildscripts/makeDojoJsWeb.js

    r7738 r8607  
    5252        var buildSigDir = dojo.crypto.MD5.compute(depList.sort().join(","), dojo.crypto.outputTypes.Hex); 
    5353        try{ 
    54                 var contents = buildUtil.createLayerContents(dependencyResult.depList, dependencyResult.provideList, version); 
     54                var contents = buildUtil.createLayerContents(null, dependencyResult.depList, dependencyResult.provideList, version); 
    5555                var compressedContents = ""; 
    5656                var prefixes = [["dojo", "src"]]; 
  • branches/0.4/buildscripts/webbuild/index.html

    r7459 r8607  
    139139 
    140140                //Find out if the build result is already on the server. 
    141                 var cachedBuildUrl = getCachedBuildUrl(dependencyResult.depList); 
     141                var cachedBuildUrl = getCachedBuildUrl(dependencyResult[0].depList); 
    142142                dojo.io.bind({ 
    143143                        //Add an URL marker for the server to know if this is an existence query. 
     
    152152                                if(httpStatus >= 400){ 
    153153                                        //Build does not exist. Ask server to make it. 
    154                                         requestServerBuild(dependencyResult); 
     154                                        requestServerBuild(dependencyResult[0]); 
    155155                                }else{ 
    156                                         outputBuildResults(dependencyResult); 
     156                                        outputBuildResults(dependencyResult[0]); 
    157157                                        window.location = "../" + cachedBuildUrl; 
    158158                                }