[jQuery] Re: jquery and minify

2009-02-01 Thread Sam Sherlock
Thanks Ariel.

I have found out that http://code.google.com/p/minify/ retains comments when
that are like /*! */
also I have seen that sometimes jQuery has this style of comment already

2009/1/31 Ariel Flesler afles...@gmail.com


 You should keep the headers somewhere, preferably close to the code.
 Something like this:

 /**
  * jQuery
  */
 (function($){...});
 /**
  * Plugin 1
  */
 (function($){...});
 /**
  * Plugin 2
  */
 (function($){...});

 --
 Ariel Flesler
 http://flesler.blogspot.com

 On Jan 29, 10:53 pm, Sam Sherlock sam.sherl...@gmail.com wrote:
  Having just seen this sitehttp://www.highpointvillage.co.uk; running it
  through yslow (it got an f 50/100), one way to improve it would be
 reducing
  the http requests - but:-
 
  Would combining the scripts on a site like this with minify be contrary
 to
  the license of jQuery?
  could jquery be minifed in a file with the comment header retained at the
  top of combined file?
  or would one have to have a jquery.js file minified with comment header
  intact and combine the plugins?



[jQuery] Re: jquery and minify

2009-02-01 Thread Ariel Flesler

Yeah, I was just showing you the layout. We (jQuery) implemented the
/*! since 1.3 because the YUI compressor is now used and it indeed
recognizes /*!.

Cheers

On Sun, Feb 1, 2009 at 10:25 PM, Sam Sherlock sam.sherl...@gmail.com wrote:
 Thanks Ariel.

 I have found out that http://code.google.com/p/minify/ retains comments when
 that are like /*! */
 also I have seen that sometimes jQuery has this style of comment already

 2009/1/31 Ariel Flesler afles...@gmail.com

 You should keep the headers somewhere, preferably close to the code.
 Something like this:

 /**
  * jQuery
  */
 (function($){...});
 /**
  * Plugin 1
  */
 (function($){...});
 /**
  * Plugin 2
  */
 (function($){...});

 --
 Ariel Flesler
 http://flesler.blogspot.com

 On Jan 29, 10:53 pm, Sam Sherlock sam.sherl...@gmail.com wrote:
  Having just seen this sitehttp://www.highpointvillage.co.uk; running it
  through yslow (it got an f 50/100), one way to improve it would be
  reducing
  the http requests - but:-
 
  Would combining the scripts on a site like this with minify be contrary
  to
  the license of jQuery?
  could jquery be minifed in a file with the comment header retained at
  the
  top of combined file?
  or would one have to have a jquery.js file minified with comment header
  intact and combine the plugins?

 




-- 
Ariel Flesler
http://flesler.blogspot.com


[jQuery] Re: jquery and minify

2009-01-31 Thread Ariel Flesler

You should keep the headers somewhere, preferably close to the code.
Something like this:

/**
 * jQuery
 */
(function($){...});
/**
 * Plugin 1
 */
(function($){...});
/**
 * Plugin 2
 */
(function($){...});

--
Ariel Flesler
http://flesler.blogspot.com

On Jan 29, 10:53 pm, Sam Sherlock sam.sherl...@gmail.com wrote:
 Having just seen this sitehttp://www.highpointvillage.co.uk; running it
 through yslow (it got an f 50/100), one way to improve it would be reducing
 the http requests - but:-

 Would combining the scripts on a site like this with minify be contrary to
 the license of jQuery?
 could jquery be minifed in a file with the comment header retained at the
 top of combined file?
 or would one have to have a jquery.js file minified with comment header
 intact and combine the plugins?