Ticket #4170: 4170_ckreleaser.patch
File 4170_ckreleaser.patch, 5.1 KB (added by , 16 years ago) |
---|
-
_source/includes/io.js
54 54 "xml" : 1 55 55 }; 56 56 57 function compressDirectory( sourcePath, outStream, compressMethod, rootDir)57 function isIgnoredFile( file, ignoredFiles ) 58 58 { 59 for ( var i =0 ; i < ignoredFiles.length ; i++ ) 60 { 61 if ( file.getCanonicalPath() == ignoredFiles[i].getCanonicalPath() ) 62 return true; 63 } 64 return false; 65 } 66 67 function compressDirectory( sourcePath, outStream, compressMethod, rootDir, ignoredFiles ) 68 { 59 69 if ( CKRELEASER.verbose ) 60 70 print( " " + compressMethod + ": " + sourcePath ); 61 71 … … 77 87 { 78 88 var f = new File( compressedDir, dirList[i] ); 79 89 90 if ( ignoredFiles && isIgnoredFile( f, ignoredFiles ) ) 91 { 92 if ( CKRELEASER.verbose ) 93 print( " File excluded from package: " + f ); 94 95 continue; 96 } 97 80 98 if ( f.isDirectory() ) 81 99 { 82 100 compressDirectory( f.getPath(), outStream, compressMethod, rootDir ); … … 218 236 } 219 237 }, 220 238 221 zipDirectory : function( sourcePath, targetFile, rootDir )239 zipDirectory : function( sourcePath, targetFile, rootDir, ignoredFiles ) 222 240 { 223 241 var outStream = new ZipOutputStream( new FileOutputStream( targetFile ) ); 224 compressDirectory( sourcePath, outStream, "zip", rootDir );242 compressDirectory( sourcePath, outStream, "zip", rootDir, ignoredFiles ); 225 243 outStream.close(); 226 244 }, 227 245 228 targzDirectory : function( sourcePath, targetFile, rootDir )246 targzDirectory : function( sourcePath, targetFile, rootDir, ignoredFiles ) 229 247 { 230 248 var outStream = new TarGzOutputStream( new FileOutputStream( targetFile ) ); 231 compressDirectory( sourcePath, outStream, "tar.gz", rootDir );249 compressDirectory( sourcePath, outStream, "tar.gz", rootDir, ignoredFiles ); 232 250 outStream.close(); 233 251 }, 234 252 -
_source/includes/releaser.js
32 32 this.samples = {}; 33 33 this.skins = {}; 34 34 this.header = ""; 35 this.separateDocPackage = false; 35 36 } 36 37 37 38 release.prototype.isIgnoredPath = function( path ) … … 407 408 if ( definitionObject.skins ) 408 409 CKRELEASER.release.skins = definitionObject.skins; 409 410 411 if ( definitionObject.separateDocPackage ) 412 CKRELEASER.release.separateDocPackage = definitionObject.separateDocPackage; 413 410 414 if ( !CKRELEASER.release.packages.length ) 411 415 throw "Nothing to release: no packages found in the release file (" + CKRELEASER.releaseFile + ")"; 412 416 }, … … 426 430 427 431 run : function() 428 432 { 429 var error, i, info, time = new Date();433 var error, i, info, excludeFromRelease = new Array(), time = new Date(); 430 434 431 435 var targetDir = new File( CKRELEASER.targetDir ); 432 436 var releaseDir = new File( CKRELEASER.releaseDir ); … … 507 511 info = CKRELEASER.io.getDirectoryInfo( docsDir ); 508 512 print( " Number of created files: " + info.files ); 509 513 print( " Total size.............: " + info.size + " bytes" ); 514 515 if ( CKRELEASER.release.separateDocPackage ) 516 { 517 excludeFromRelease.push( new File( CKRELEASER.releaseDir, CKRELEASER.release.documentation.root ) ); 518 519 var zipFile = new File( CKRELEASER.targetDir, CKRELEASER.fileName + "_api_docs.zip" ); 520 CKRELEASER.io.zipDirectory( docsDir, zipFile, "" ); 521 print( " Created " + zipFile.getName() + "...: " + zipFile.length() + " bytes (" 522 + Math.round( zipFile.length() / info.size * 100 ) + "% of original)" ); 523 524 var tarFile = new File( CKRELEASER.targetDir, CKRELEASER.fileName + "_api_docs.tar.gz" ); 525 CKRELEASER.io.targzDirectory( docsDir, tarFile, "" ); 526 print( " Created " + tarFile.getName() + ": " + tarFile.length() + " bytes (" 527 + Math.round( tarFile.length() / info.size * 100 ) + "% of original)" ); 528 } 510 529 } 511 530 else 512 531 print( "\nWARNING: documentation directive not found in the release file.\n" ); … … 552 571 print( "\nCreating compressed files...\n" ); 553 572 554 573 var zipFile = new File( CKRELEASER.targetDir, CKRELEASER.fileName + ".zip" ); 555 CKRELEASER.io.zipDirectory( CKRELEASER.releaseDir, zipFile, "ckeditor" );574 CKRELEASER.io.zipDirectory( CKRELEASER.releaseDir, zipFile, "ckeditor", excludeFromRelease ); 556 575 print( " Created " + zipFile.getName() + "...: " + zipFile.length() + " bytes (" 557 576 + Math.round( zipFile.length() / info.size * 100 ) + "% of original)" ); 558 577 559 578 var tarFile = new File( CKRELEASER.targetDir, CKRELEASER.fileName + ".tar.gz" ); 560 CKRELEASER.io.targzDirectory( CKRELEASER.releaseDir, tarFile, "ckeditor" );579 CKRELEASER.io.targzDirectory( CKRELEASER.releaseDir, tarFile, "ckeditor", excludeFromRelease ); 561 580 print( " Created " + tarFile.getName() + ": " + tarFile.length() + " bytes (" 562 581 + Math.round( tarFile.length() / info.size * 100 ) + "% of original)" ); 563 582