mirror of
https://github.com/tuxis-ie/nsedit.git
synced 2025-06-08 00:57:01 +03:00
Squashed 'jquery-ui/' content from commit 3dd8a09
git-subtree-dir: jquery-ui git-subtree-split: 3dd8a09b441d65445f2b6a7c73e72af65445d5da
This commit is contained in:
commit
d32092c1f0
717 changed files with 518330 additions and 0 deletions
47
build/release-test.js
Normal file
47
build/release-test.js
Normal file
|
@ -0,0 +1,47 @@
|
|||
var shell = require( "shelljs" );
|
||||
var Release = {
|
||||
define: function( props ) {
|
||||
for ( var key in props ) {
|
||||
Release[ key ] = props[ key ];
|
||||
}
|
||||
},
|
||||
exec: function( _options, errorMessage ) {
|
||||
var result,
|
||||
command = _options.command || _options,
|
||||
options = {};
|
||||
|
||||
if ( _options.silent ) {
|
||||
options.silent = true;
|
||||
}
|
||||
|
||||
errorMessage = errorMessage || "Error executing command: " + command;
|
||||
|
||||
result = shell.exec( command, options );
|
||||
if ( result.code !== 0 ) {
|
||||
Release.abort( errorMessage );
|
||||
}
|
||||
|
||||
return result.output;
|
||||
},
|
||||
abort: function() {
|
||||
console.error.apply( console, arguments );
|
||||
process.exit( 1 );
|
||||
},
|
||||
newVersion: require( "../package" ).version
|
||||
};
|
||||
|
||||
var script = require( "./release" );
|
||||
script( Release );
|
||||
|
||||
// Ignores actual version installed, should be good enough for a test
|
||||
if ( shell.exec( "npm ls --depth 0 | grep download.jqueryui.com" ).code === 1 ) {
|
||||
shell.exec( "npm install " + script.dependencies.join( " " ) );
|
||||
}
|
||||
|
||||
// If AUTHORS.txt is outdated, this will update it
|
||||
// Very annoying during an actual release
|
||||
shell.exec( "grunt update-authors" );
|
||||
|
||||
Release.generateArtifacts( function() {
|
||||
console.log( "Done generating artifacts, verify output, should be in dist/cdn" );
|
||||
} );
|
118
build/release.js
Normal file
118
build/release.js
Normal file
|
@ -0,0 +1,118 @@
|
|||
module.exports = function( Release ) {
|
||||
|
||||
var crypto = require( "crypto" );
|
||||
var shell = require( "shelljs" ),
|
||||
path = require( "path" ),
|
||||
fs = require( "fs" );
|
||||
|
||||
function replaceAtVersion() {
|
||||
console.log( "Replacing @VERSION..." );
|
||||
var matches = [];
|
||||
|
||||
function recurse( folder ) {
|
||||
fs.readdirSync( folder ).forEach( function( fileName ) {
|
||||
var content,
|
||||
fullPath = folder + "/" + fileName;
|
||||
if ( fs.statSync( fullPath ).isDirectory() ) {
|
||||
recurse( fullPath );
|
||||
return;
|
||||
}
|
||||
content = fs.readFileSync( fullPath, {
|
||||
encoding: "utf-8"
|
||||
} );
|
||||
if ( !/@VERSION/.test( content ) ) {
|
||||
return;
|
||||
}
|
||||
matches.push( fullPath );
|
||||
fs.writeFileSync( fullPath, content.replace( /@VERSION/g, Release.newVersion ) );
|
||||
} );
|
||||
}
|
||||
|
||||
[ "ui", "themes" ].forEach( recurse );
|
||||
|
||||
console.log( "Replaced @VERSION in " + matches.length + " files." );
|
||||
|
||||
return matches;
|
||||
}
|
||||
|
||||
function addManifest( packager ) {
|
||||
var output = packager.builtFiles;
|
||||
output.MANIFEST = Object.keys( output ).sort( function( a, b ) {
|
||||
return a.localeCompare( b );
|
||||
} ).map( function( filepath ) {
|
||||
var md5 = crypto.createHash( "md5" );
|
||||
md5.update( output[ filepath ] );
|
||||
return filepath + " " + md5.digest( "hex" );
|
||||
} ).join( "\n" );
|
||||
}
|
||||
|
||||
function buildCDNPackage( callback ) {
|
||||
console.log( "Building CDN package" );
|
||||
var JqueryUi = require( "download.jqueryui.com/lib/jquery-ui" );
|
||||
var Package = require( "download.jqueryui.com/lib/package-1-12-themes" );
|
||||
var Packager = require( "node-packager" );
|
||||
var jqueryUi = new JqueryUi( path.resolve( "." ) );
|
||||
var target = fs.createWriteStream( "../" + jqueryUi.pkg.name + "-" + jqueryUi.pkg.version +
|
||||
"-cdn.zip" );
|
||||
var packager = new Packager( jqueryUi.files().cache, Package, {
|
||||
components: jqueryUi.components().map( function( component ) {
|
||||
return component.name;
|
||||
} ),
|
||||
jqueryUi: jqueryUi,
|
||||
themeVars: null
|
||||
} );
|
||||
packager.ready.then( function() {
|
||||
addManifest( packager );
|
||||
packager.toZip( target, {
|
||||
basedir: ""
|
||||
}, function( error ) {
|
||||
if ( error ) {
|
||||
Release.abort( "Failed to zip CDN package", error );
|
||||
}
|
||||
callback();
|
||||
} );
|
||||
} );
|
||||
}
|
||||
|
||||
Release.define( {
|
||||
npmPublish: true,
|
||||
issueTracker: "trac",
|
||||
contributorReportId: 22,
|
||||
changelogShell: function() {
|
||||
var monthNames = [ "January", "February", "March", "April", "May", "June", "July",
|
||||
"August", "September", "October", "November", "December" ],
|
||||
now = new Date();
|
||||
return "<script>{\n\t\"title\": \"jQuery UI " + Release.newVersion + " Changelog\"\n" +
|
||||
"}</script>\n\nReleased on " + monthNames[ now.getMonth() ] + " " + now.getDate() +
|
||||
", " + now.getFullYear() + "\n\n";
|
||||
},
|
||||
generateArtifacts: function( fn ) {
|
||||
var files = replaceAtVersion();
|
||||
|
||||
buildCDNPackage( function copyCdnFiles() {
|
||||
var zipFile = shell.ls( "../jquery*-cdn.zip" )[ 0 ],
|
||||
tmpFolder = "../tmp-zip-output",
|
||||
unzipCommand = "unzip -o " + zipFile + " -d " + tmpFolder;
|
||||
|
||||
console.log( "Unzipping for dist/cdn copies" );
|
||||
shell.mkdir( "-p", tmpFolder );
|
||||
Release.exec( {
|
||||
command: unzipCommand,
|
||||
silent: true
|
||||
}, "Failed to unzip cdn files" );
|
||||
|
||||
shell.mkdir( "-p", "dist/cdn" );
|
||||
shell.cp( tmpFolder + "/jquery-ui*.js", "dist/cdn" );
|
||||
shell.cp( "-r", tmpFolder + "/themes", "dist/cdn" );
|
||||
fn( files );
|
||||
} );
|
||||
}
|
||||
} );
|
||||
|
||||
};
|
||||
|
||||
module.exports.dependencies = [
|
||||
"download.jqueryui.com@2.1.2",
|
||||
"node-packager@0.0.6",
|
||||
"shelljs@0.2.6"
|
||||
];
|
42
build/tasks/build.js
Normal file
42
build/tasks/build.js
Normal file
|
@ -0,0 +1,42 @@
|
|||
module.exports = function( grunt ) {
|
||||
|
||||
"use strict";
|
||||
|
||||
grunt.registerTask( "clean", function() {
|
||||
require( "rimraf" ).sync( "dist" );
|
||||
} );
|
||||
|
||||
grunt.registerTask( "asciilint", function() {
|
||||
var valid = true,
|
||||
files = grunt.file.expand( { filter: "isFile" }, "ui/*.js" );
|
||||
files.forEach( function( filename ) {
|
||||
var i, c,
|
||||
text = grunt.file.read( filename );
|
||||
|
||||
// Ensure files use only \n for line endings, not \r\n
|
||||
if ( /\x0d\x0a/.test( text ) ) {
|
||||
grunt.log.error( filename + ": Incorrect line endings (\\r\\n)" );
|
||||
valid = false;
|
||||
}
|
||||
|
||||
// Ensure only ASCII chars so script tags don't need a charset attribute
|
||||
if ( text.length !== Buffer.byteLength( text, "utf8" ) ) {
|
||||
grunt.log.error( filename + ": Non-ASCII characters detected:" );
|
||||
for ( i = 0; i < text.length; i++ ) {
|
||||
c = text.charCodeAt( i );
|
||||
if ( c > 127 ) {
|
||||
grunt.log.error( "- position " + i + ": " + c );
|
||||
grunt.log.error( "-- " + text.substring( i - 20, i + 20 ) );
|
||||
break;
|
||||
}
|
||||
}
|
||||
valid = false;
|
||||
}
|
||||
} );
|
||||
if ( valid ) {
|
||||
grunt.log.ok( files.length + " files lint free." );
|
||||
}
|
||||
return valid;
|
||||
} );
|
||||
|
||||
};
|
108
build/tasks/testswarm.js
Normal file
108
build/tasks/testswarm.js
Normal file
|
@ -0,0 +1,108 @@
|
|||
module.exports = function( grunt ) {
|
||||
|
||||
"use strict";
|
||||
|
||||
var versions = {
|
||||
"git": "git",
|
||||
"3.1": "3.1.0",
|
||||
"3.0": "3.0.0",
|
||||
"2.2": "2.2.4",
|
||||
"2.1": "2.1.4",
|
||||
"2.0": "2.0.3",
|
||||
"1.12": "1.12.4",
|
||||
"1.11": "1.11.3",
|
||||
"1.10": "1.10.2",
|
||||
"1.9": "1.9.1",
|
||||
"1.8": "1.8.3",
|
||||
"1.7": "1.7.2"
|
||||
},
|
||||
tests = {
|
||||
"Accordion": "accordion/accordion.html",
|
||||
"Autocomplete": "autocomplete/autocomplete.html",
|
||||
"Button": "button/button.html",
|
||||
"Checkboxradio": "checkboxradio/checkboxradio.html",
|
||||
"Controlgroup": "controlgroup/controlgroup.html",
|
||||
"Core": "core/core.html",
|
||||
"Datepicker": "datepicker/datepicker.html",
|
||||
"Dialog": "dialog/dialog.html",
|
||||
"Draggable": "draggable/draggable.html",
|
||||
"Droppable": "droppable/droppable.html",
|
||||
"Effects": "effects/effects.html",
|
||||
"Form Reset Mixin": "form-reset-mixin/form-reset-mixin.html",
|
||||
"Menu": "menu/menu.html",
|
||||
"Position": "position/position.html",
|
||||
"Progressbar": "progressbar/progressbar.html",
|
||||
"Resizable": "resizable/resizable.html",
|
||||
"Selectable": "selectable/selectable.html",
|
||||
"Selectmenu": "selectmenu/selectmenu.html",
|
||||
"Slider": "slider/slider.html",
|
||||
"Sortable": "sortable/sortable.html",
|
||||
"Spinner": "spinner/spinner.html",
|
||||
"Tabs": "tabs/tabs.html",
|
||||
"Tooltip": "tooltip/tooltip.html",
|
||||
"Widget": "widget/widget.html"
|
||||
};
|
||||
|
||||
function submit( commit, runs, configFile, extra, done ) {
|
||||
var testName,
|
||||
testswarm = require( "testswarm" ),
|
||||
config = grunt.file.readJSON( configFile ).jqueryui,
|
||||
browserSets = config.browserSets,
|
||||
commitUrl = "https://github.com/jquery/jquery-ui/commit/" + commit;
|
||||
|
||||
if ( extra ) {
|
||||
|
||||
// jQuery >= 2.0.0 don't support IE 8.
|
||||
if ( extra.substring( 0, 6 ) !== "core 1" ) {
|
||||
browserSets = "jquery-ui-future";
|
||||
}
|
||||
|
||||
extra = " (" + extra + ")";
|
||||
}
|
||||
|
||||
for ( testName in runs ) {
|
||||
runs[ testName ] = config.testUrl + commit + "/tests/unit/" + runs[ testName ];
|
||||
}
|
||||
|
||||
testswarm.createClient( {
|
||||
url: config.swarmUrl
|
||||
} )
|
||||
.addReporter( testswarm.reporters.cli )
|
||||
.auth( {
|
||||
id: config.authUsername,
|
||||
token: config.authToken
|
||||
} )
|
||||
.addjob( {
|
||||
name: "Commit <a href='" + commitUrl + "'>" + commit.substr( 0, 10 ) + "</a>" + extra,
|
||||
runs: runs,
|
||||
runMax: config.runMax,
|
||||
browserSets: browserSets,
|
||||
timeout: 1000 * 60 * 30
|
||||
}, function( error, passed ) {
|
||||
if ( error ) {
|
||||
grunt.log.error( error );
|
||||
}
|
||||
done( passed );
|
||||
} );
|
||||
}
|
||||
|
||||
grunt.registerTask( "testswarm", function( commit, configFile ) {
|
||||
var test,
|
||||
latestTests = {};
|
||||
for ( test in tests ) {
|
||||
latestTests[ test ] = tests[ test ] + "?nojshint=true";
|
||||
}
|
||||
submit( commit, latestTests, configFile, "", this.async() );
|
||||
} );
|
||||
|
||||
grunt.registerTask( "testswarm-multi-jquery", function( commit, configFile, minor ) {
|
||||
var allTests = {};
|
||||
versions[ minor ].split( " " ).forEach( function( version ) {
|
||||
for ( var test in tests ) {
|
||||
allTests[ test + "-" + version ] = tests[ test ] + "?nojshint=true&jquery=" + version;
|
||||
}
|
||||
} );
|
||||
submit( commit, allTests, configFile, "core " + minor, this.async() );
|
||||
} );
|
||||
|
||||
};
|
1
build/themes
Normal file
1
build/themes
Normal file
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue