-
18 Sep 2007 2:02 AM #21
Yes, but
<span style="Dr. Szell">Is It Safe?</span>
-
18 Sep 2007 2:38 AM #22
and does it decompress fast (read: fast + low cpu usage) on a normal (read: non-development) machine?
AFAIK, dean edward's packer at max js compression also results in max decompression time.
Sencha Docs / Ext 3.x - ( Docs | Examples )
Learning Center / Saki's Examples (for 2.x) / HOWTO - ( Report Bugs | Post Proper Code )
-
18 Sep 2007 2:48 AM #23
-
18 Sep 2007 2:58 AM #24
Sencha Docs / Ext 3.x - ( Docs | Examples )
Learning Center / Saki's Examples (for 2.x) / HOWTO - ( Report Bugs | Post Proper Code )
-
18 Sep 2007 11:59 PM #25
ok, i run into problems with Dean Edwards 's Packer. Everything worked well: Layouts, dialogs, Accordion - but grid failed.
vg Steffen
--------------------------------------
Release Manager of TYPO3 4.5
energlobe.de - german online magazine
-
19 Sep 2007 12:37 AM #26
Dean Edwards' Packer mungs the semantics of the code in some situations.
Check Julien Lecomte's blog entries about the yui compressor.
It does seem like YAHOO is the best option.
-
19 Sep 2007 1:20 AM #27
does mootools use Dean Edwards' Packer ? May be they only linked to it.
I think YUI-compressor works best atm. Anyway i will inform Edwards, may be he fixes something.vg Steffen
--------------------------------------
Release Manager of TYPO3 4.5
energlobe.de - german online magazine
-
26 Sep 2007 9:57 PM #28
be careful when compressing with the latest yuicompressor-2.2.1.jar.
one new feature was added
which for some strange reason, turned this line in ext-all-debug.js
Originally Posted by http://www.julienlecomte.net/yuicompressor/
intoCode:document.write("<s"+'cript id="ie-deferred-loader" defer="defer" src="/'+'/:"></s'+"cript>");
which killed the minified script.Code:document.write("<s"+"cript id="ie-deferred-loader" defer="defer" src="/"+"/:"></s"+"cript>");
i've tried to inform the author of this. let's hope he replies soon.
Sencha Docs / Ext 3.x - ( Docs | Examples )
Learning Center / Saki's Examples (for 2.x) / HOWTO - ( Report Bugs | Post Proper Code )
-
27 Sep 2007 7:16 AM #29
Does anybody have expierience with ESC ? A friend of mine does all his javascript with this compressor, see his page
vg Steffen
--------------------------------------
Release Manager of TYPO3 4.5
energlobe.de - german online magazine
-
28 Sep 2007 4:43 AM #30
did some more testing.
this works (i.e. yui-compressor-2.2.1 doesn't mess up when minifying ext-all-debug)
but the minified version gets cleverly optimised toCode:document.write("<s"+"cript id='ie-deferred-loader' defer='defer' src='/"+"/:'></s"+"cript>");
looks like the only way to preserve the original string is to do thisCode:document.write("<script id='ie-deferred-loader' defer='defer' src='//:'></script>");
@jack/brian, any thoughts?Code:document.write(["<s",'cript id="ie-deferred-loader" defer="defer" src="/','/:"></s',"cript>"].join(""));
scratch all that.
yuicompressor-2.2.2 is out.
Sencha Docs / Ext 3.x - ( Docs | Examples )
Learning Center / Saki's Examples (for 2.x) / HOWTO - ( Report Bugs | Post Proper Code )
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote