yuicompressor网站压缩

所属分类:软件工程
开发工具:Java
文件大小:1930KB
下载次数:0
上传日期:2020-04-08 14:45:19
上 传 者执手明天
说明:  YUI Compressor非常好用,特别是JS的混淆是众多JS Coding的最爱。可惜官网提供的版本都不具备右键功能,每次压缩都要cmd输入一些命令实在是繁琐,本文就介绍如何给YUI Compressor添加右键命令,方便使用。
(YUI Compressor is very easy to use, especially the confusion of JS is the favorite of many JS Coding. Unfortunately, the version provided by the official website does not have the right-click function. It is tedious to input some commands by CMD for each compression. This paper introduces how to add the right-click command to YUI compressor for easy use.)

文件列表:
yuicompressor\ant.properties (215, 2011-09-28)
yuicompressor\build\yuicompressor-2.4.7.jar (891148, 2011-09-28)
yuicompressor\build (0, 2011-09-28)
yuicompressor\build.xml (2570, 2011-09-28)
yuicompressor\compressor.cmd (2261, 2013-06-21)
yuicompressor\compressor.reg (265, 2013-06-21)
yuicompressor\doc\CHANGELOG (10531, 2011-09-28)
yuicompressor\doc (0, 2011-09-28)
yuicompressor\Help.txt (116, 2013-06-21)
yuicompressor\lib\jargs-1.0.jar (11406, 2011-09-28)
yuicompressor\lib\rhino-1.6R7.jar (813521, 2011-09-28)
yuicompressor\lib (0, 2011-09-28)
yuicompressor\LICENSE.TXT (2419, 2011-09-28)
yuicompressor\ports\js\cssmin.js (13030, 2011-09-28)
yuicompressor\ports\js (0, 2011-09-28)
yuicompressor\ports (0, 2011-09-28)
yuicompressor\src\com\yahoo\platform\yui\compressor\Bootstrap.java (814, 2011-09-28)
yuicompressor\src\com\yahoo\platform\yui\compressor\CssCompressor.java (14870, 2011-09-28)
yuicompressor\src\com\yahoo\platform\yui\compressor\JarClassLoader.java (4528, 2011-09-28)
yuicompressor\src\com\yahoo\platform\yui\compressor\JavaScriptCompressor.java (51407, 2011-09-28)
yuicompressor\src\com\yahoo\platform\yui\compressor\JavaScriptIdentifier.java (1314, 2011-09-28)
yuicompressor\src\com\yahoo\platform\yui\compressor\JavaScriptToken.java (651, 2011-09-28)
yuicompressor\src\com\yahoo\platform\yui\compressor\ScriptOrFnScope.java (5495, 2011-09-28)
yuicompressor\src\com\yahoo\platform\yui\compressor\YUICompressor.java (11200, 2011-09-28)
yuicompressor\src\com\yahoo\platform\yui\compressor (0, 2011-09-28)
yuicompressor\src\com\yahoo\platform\yui (0, 2011-09-28)
yuicompressor\src\com\yahoo\platform (0, 2011-09-28)
yuicompressor\src\com\yahoo (0, 2011-09-28)
yuicompressor\src\com (0, 2011-09-28)
yuicompressor\src\org\mozilla\javascript\Decompiler.java (27812, 2011-09-28)
yuicompressor\src\org\mozilla\javascript\Decompiler.java.orig (28274, 2011-09-28)
yuicompressor\src\org\mozilla\javascript\Parser.java (71053, 2011-09-28)
yuicompressor\src\org\mozilla\javascript\Parser.java.orig (70928, 2011-09-28)
yuicompressor\src\org\mozilla\javascript\Token.java (16125, 2011-09-28)
yuicompressor\src\org\mozilla\javascript\Token.java.orig (16744, 2011-09-28)
yuicompressor\src\org\mozilla\javascript\TokenStream.java (48093, 2011-09-28)
yuicompressor\src\org\mozilla\javascript\TokenStream.java.orig (49628, 2011-09-28)
yuicompressor\src\org\mozilla\javascript (0, 2011-09-28)
yuicompressor\src\org\mozilla (0, 2011-09-28)
... ...

============================================================================== YUI Compressor ============================================================================== NAME YUI Compressor - The Yahoo! JavaScript and CSS Compressor SYNOPSIS Usage: java -jar yuicompressor-x.y.z.jar [options] [input file] Global Options -h, --help Displays this information --type Specifies the type of the input file --charset Read the input file using --line-break Insert a line break after the specified column number -v, --verbose Display informational messages and warnings -o Place the output into or a file pattern. Defaults to stdout. JavaScript Options --nomunge Minify only, do not obfuscate --preserve-semi Preserve all semicolons --disable-optimizations Disable all micro optimizations DESCRIPTION The YUI Compressor is a JavaScript compressor which, in addition to removing comments and white-spaces, obfuscates local variables using the smallest possible variable name. This obfuscation is safe, even when using constructs such as 'eval' or 'with' (although the compression is not optimal is those cases) Compared to jsmin, the average savings is around 20%. The YUI Compressor is also able to safely compress CSS files. The decision on which compressor is being used is made on the file extension (js or css) GLOBAL OPTIONS -h, --help Prints help on how to use the YUI Compressor --line-break Some source control tools don't like files containing lines longer than, say 8000 characters. The linebreak option is used in that case to split long lines after a specific column. It can also be used to make the code more readable, easier to debug (especially with the MS Script Debugger) Specify 0 to get a line break after each semi-colon in JavaScript, and after each rule in CSS. --type js|css The type of compressor (JavaScript or CSS) is chosen based on the extension of the input file name (.js or .css) This option is required if no input file has been specified. Otherwise, this option is only required if the input file extension is neither 'js' nor 'css'. --charset character-set If a supported character set is specified, the YUI Compressor will use it to read the input file. Otherwise, it will assume that the platform's default character set is being used. The output file is encoded using the same character set. -o outfile Place output in file outfile. If not specified, the YUI Compressor will default to the standard output, which you can redirect to a file. Supports a filter syntax for expressing the output pattern when there are multiple input files. ex: java -jar yuicompressor.jar -o '.css$:-min.css' *.css ... will minify all .css files and save them as -min.css -v, --verbose Display informational messages and warnings. JAVASCRIPT ONLY OPTIONS --nomunge Minify only. Do not obfuscate local symbols. --preserve-semi Preserve unnecessary semicolons (such as right before a '}') This option is useful when compressed code has to be run through JSLint (which is the case of YUI for example) --disable-optimizations Disable all the built-in micro optimizations. NOTES + If no input file is specified, it defaults to stdin. + Supports wildcards for specifying multiple input files. + The YUI Compressor requires Java version >= 1.5. + It is possible to prevent a local variable, nested function or function argument from being obfuscated by using "hints". A hint is a string that is located at the very beginning of a function body like so: function fn (arg1, arg2, arg3) { "arg2:nomunge, localVar:nomunge, nestedFn:nomunge"; ... var localVar; ... function nestedFn () { .... } ... } The hint itself disappears from the compressed file. + C-style comments starting with /*! are preserved. This is useful with comments containing copyright/license information. For example: /*! * TERMS OF USE - EASING EQUATIONS * Open source under the BSD License. * Copyright 2001 Robert Penner All rights reserved. */ becomes: /* * TERMS OF USE - EASING EQUATIONS * Open source under the BSD License. * Copyright 2001 Robert Penner All rights reserved. */ MODIFIED RHINO FILES YUI Compressor uses a modified version of the Rhino library (http://www.mozilla.org/rhino/) The changes were made to support JScript conditional comments, preserved comments, unescaped slash characters in regular expressions, and to allow for the optimization of escaped quotes in string literals. COPYRIGHT AND LICENSE Copyright (c) 2011 Yahoo! Inc. All rights reserved. The copyrights embodied in the content of this file are licensed by Yahoo! Inc. under the BSD (revised) open source license.

近期下载者

相关文件


收藏者