You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-testmgr/external/ZendFramework-1.9.5/externals/dojo/util/buildscripts/jslib/convertTestsToXDomain.js

18 lines
575 B
JavaScript

//Make a copy of the tests dir, then run this script, giving the location
//of the tests copy, and the URL to use dojo.js
var startDir = arguments[0];
var xdDojoUrl = arguments[1];
load("jslib/fileUtil.js");
load("jslib/buildUtil.js");
var fileList = fileUtil.getFilteredFileList(startDir, /\.(html|htm)$/, true);
for(var i = 0; i < fileList.length; i++){
var fileName = fileList[i];
var fileContents = fileUtil.readFile(fileName);
fileContents = fileContents.replace(/src\=\".*dojo.js"/, 'src="' + xdDojoUrl + '"');
fileUtil.saveUtf8File(fileName, fileContents);
}