Changeset 8607
- Timestamp:
- 05/14/07 13:50:20 (20 months ago)
- Location:
- branches/0.4/buildscripts
- Files:
-
- 2 modified
-
makeDojoJsWeb.js (modified) (1 diff)
-
webbuild/index.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.4/buildscripts/makeDojoJsWeb.js
r7738 r8607 52 52 var buildSigDir = dojo.crypto.MD5.compute(depList.sort().join(","), dojo.crypto.outputTypes.Hex); 53 53 try{ 54 var contents = buildUtil.createLayerContents( dependencyResult.depList, dependencyResult.provideList, version);54 var contents = buildUtil.createLayerContents(null, dependencyResult.depList, dependencyResult.provideList, version); 55 55 var compressedContents = ""; 56 56 var prefixes = [["dojo", "src"]]; -
branches/0.4/buildscripts/webbuild/index.html
r7459 r8607 139 139 140 140 //Find out if the build result is already on the server. 141 var cachedBuildUrl = getCachedBuildUrl(dependencyResult .depList);141 var cachedBuildUrl = getCachedBuildUrl(dependencyResult[0].depList); 142 142 dojo.io.bind({ 143 143 //Add an URL marker for the server to know if this is an existence query. … … 152 152 if(httpStatus >= 400){ 153 153 //Build does not exist. Ask server to make it. 154 requestServerBuild(dependencyResult );154 requestServerBuild(dependencyResult[0]); 155 155 }else{ 156 outputBuildResults(dependencyResult );156 outputBuildResults(dependencyResult[0]); 157 157 window.location = "../" + cachedBuildUrl; 158 158 }