|
Using GZip compression for js/css files
--------------------------------------- Key: OFBIZ-4792 URL: https://issues.apache.org/jira/browse/OFBIZ-4792 Project: OFBiz Issue Type: New Feature Components: ALL APPLICATIONS, specialpurpose/ecommerce Affects Versions: Release Branch 11.04 Environment: Windows/Linux Reporter: Mandeep Sidhu Fix For: Release Branch 11.04 I was wondering if it is possible to reduce the size of external javascript's/css files being fetched by making use of GZip encoding. The feeding server does understand and responds to GZip encoding, however Ofbiz is not requesting the content in GZip format. Kindly include this feature so that Ofbiz will include the GZip encoding option in the http header while requesting the external javascript file ? Also, if possible integrate the compressor module http://code.google.com/p/yui-compressor-ant-task/ as suggested by Jacques (Jacques Le Roux jacques.le.roux) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
[ https://issues.apache.org/jira/browse/OFBIZ-4792?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jacques Le Roux updated OFBIZ-4792: ----------------------------------- Priority: Trivial (was: Major) Affects Version/s: (was: Release Branch 11.04) SVN trunk Fix Version/s: (was: Release Branch 11.04) SVN trunk We commit only bug fixes in releases > Using GZip compression for js/css files > --------------------------------------- > > Key: OFBIZ-4792 > URL: https://issues.apache.org/jira/browse/OFBIZ-4792 > Project: OFBiz > Issue Type: New Feature > Components: ALL APPLICATIONS, specialpurpose/ecommerce > Affects Versions: SVN trunk > Environment: Windows/Linux > Reporter: Mandeep Sidhu > Priority: Trivial > Labels: build, features, javascript > Fix For: SVN trunk > > Original Estimate: 72h > Remaining Estimate: 72h > > I was wondering if it is possible to reduce the size of external javascript's/css files being fetched by making use of GZip encoding. > The feeding server does understand and responds to GZip encoding, however Ofbiz is not requesting the content in GZip format. > Kindly include this feature so that Ofbiz will include the GZip encoding option in the http header while requesting the external javascript file ? > Also, if possible integrate the compressor module > http://code.google.com/p/yui-compressor-ant-task/ > as suggested by Jacques (Jacques Le Roux jacques.le.roux) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-4792?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13249504#comment-13249504 ] Jacques Le Roux commented on OFBIZ-4792: ---------------------------------------- You are missing a point Mandeep. OFBiz is already compressing text files. This is done through the embedded Tomcat. See in ofbiz-containers.xml {code} <property name="compressableMimeType" value="text/html,text/xml,text/plain"/> <property name="compression" value="on"/> {code} Reference: http://tomcat.apache.org/tomcat-7.0-doc/config/http.html So my proposition was only to add an yui-compressor-ant-task to compress those files as described here http://developer.yahoo.com/yui/compressor/ > Using GZip compression for js/css files > --------------------------------------- > > Key: OFBIZ-4792 > URL: https://issues.apache.org/jira/browse/OFBIZ-4792 > Project: OFBiz > Issue Type: New Feature > Components: ALL APPLICATIONS, specialpurpose/ecommerce > Affects Versions: SVN trunk > Environment: Windows/Linux > Reporter: Mandeep Sidhu > Priority: Trivial > Labels: build, compression, features, javascript > Fix For: SVN trunk > > Original Estimate: 72h > Remaining Estimate: 72h > > I was wondering if it is possible to reduce the size of external javascript's/css files being fetched by making use of GZip encoding. > The feeding server does understand and responds to GZip encoding, however Ofbiz is not requesting the content in GZip format. > Kindly include this feature so that Ofbiz will include the GZip encoding option in the http header while requesting the external javascript file ? > Also, if possible integrate the compressor module > http://code.google.com/p/yui-compressor-ant-task/ > as suggested by Jacques (Jacques Le Roux jacques.le.roux) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-4792?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13249505#comment-13249505 ] Jacques Le Roux commented on OFBIZ-4792: ---------------------------------------- Note that for bigest files we already use compressed versions (ending by min.js, see framework/common/widget/CommonScreens.xml) > Using GZip compression for js/css files > --------------------------------------- > > Key: OFBIZ-4792 > URL: https://issues.apache.org/jira/browse/OFBIZ-4792 > Project: OFBiz > Issue Type: New Feature > Components: ALL APPLICATIONS, specialpurpose/ecommerce > Affects Versions: SVN trunk > Environment: Windows/Linux > Reporter: Mandeep Sidhu > Priority: Trivial > Labels: build, compression, features, javascript > Fix For: SVN trunk > > Original Estimate: 72h > Remaining Estimate: 72h > > I was wondering if it is possible to reduce the size of external javascript's/css files being fetched by making use of GZip encoding. > The feeding server does understand and responds to GZip encoding, however Ofbiz is not requesting the content in GZip format. > Kindly include this feature so that Ofbiz will include the GZip encoding option in the http header while requesting the external javascript file ? > Also, if possible integrate the compressor module > http://code.google.com/p/yui-compressor-ant-task/ > as suggested by Jacques (Jacques Le Roux jacques.le.roux) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-4792?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13249506#comment-13249506 ] Jacques Le Roux commented on OFBIZ-4792: ---------------------------------------- and specialpurpose/ecommerce/widget/CommonScreens.xml > Using GZip compression for js/css files > --------------------------------------- > > Key: OFBIZ-4792 > URL: https://issues.apache.org/jira/browse/OFBIZ-4792 > Project: OFBiz > Issue Type: New Feature > Components: ALL APPLICATIONS, specialpurpose/ecommerce > Affects Versions: SVN trunk > Environment: Windows/Linux > Reporter: Mandeep Sidhu > Priority: Trivial > Labels: build, compression, features, javascript > Fix For: SVN trunk > > Original Estimate: 72h > Remaining Estimate: 72h > > I was wondering if it is possible to reduce the size of external javascript's/css files being fetched by making use of GZip encoding. > The feeding server does understand and responds to GZip encoding, however Ofbiz is not requesting the content in GZip format. > Kindly include this feature so that Ofbiz will include the GZip encoding option in the http header while requesting the external javascript file ? > Also, if possible integrate the compressor module > http://code.google.com/p/yui-compressor-ant-task/ > as suggested by Jacques (Jacques Le Roux jacques.le.roux) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-4792?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jacques Le Roux updated OFBIZ-4792: ----------------------------------- Component/s: (was: ALL APPLICATIONS) (was: specialpurpose/ecommerce) framework Description: The idea is to create an ant task using [yui-compressor-ant-task|http://code.google.com/p/yui-compressor-ant-task/]to dynamically compress our own js and css files (most of the bigest external ones are already compressed) was: I was wondering if it is possible to reduce the size of external javascript's/css files being fetched by making use of GZip encoding. The feeding server does understand and responds to GZip encoding, however Ofbiz is not requesting the content in GZip format. Kindly include this feature so that Ofbiz will include the GZip encoding option in the http header while requesting the external javascript file ? Also, if possible integrate the compressor module http://code.google.com/p/yui-compressor-ant-task/ as suggested by Jacques (Jacques Le Roux jacques.le.roux) Labels: build compression css features javascript (was: build compression features javascript) Remaining Estimate: (was: 72h) Original Estimate: (was: 72h) Summary: Add a yui-compressor-ant-task (was: Using GZip compression for js/css files) I changed the description and removed the estimate > Add a yui-compressor-ant-task > ----------------------------- > > Key: OFBIZ-4792 > URL: https://issues.apache.org/jira/browse/OFBIZ-4792 > Project: OFBiz > Issue Type: New Feature > Components: framework > Affects Versions: SVN trunk > Environment: Windows/Linux > Reporter: Mandeep Sidhu > Priority: Trivial > Labels: build, compression, css, features, javascript > Fix For: SVN trunk > > > The idea is to create an ant task using [yui-compressor-ant-task|http://code.google.com/p/yui-compressor-ant-task/]to dynamically compress our own js and css files (most of the bigest external ones are already compressed) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-4792?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jacques Le Roux updated OFBIZ-4792: ----------------------------------- Description: The idea is to create an ant task using [yui-compressor-ant-task|http://code.google.com/p/yui-compressor-ant-task/] to dynamically minify our own (or custom for users) js and css files (most of the bigest external ones are already compressed) was: The idea is to create an ant task using [yui-compressor-ant-task|http://code.google.com/p/yui-compressor-ant-task/]to dynamically compress our own js and css files (most of the bigest external ones are already compressed) Fixes typos in description > Add a yui-compressor-ant-task > ----------------------------- > > Key: OFBIZ-4792 > URL: https://issues.apache.org/jira/browse/OFBIZ-4792 > Project: OFBiz > Issue Type: New Feature > Components: framework > Affects Versions: SVN trunk > Environment: Windows/Linux > Reporter: Mandeep Sidhu > Priority: Trivial > Labels: build, compression, css, features, javascript > Fix For: SVN trunk > > > The idea is to create an ant task using [yui-compressor-ant-task|http://code.google.com/p/yui-compressor-ant-task/] to dynamically minify our own (or custom for users) js and css files (most of the bigest external ones are already compressed) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-4792?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jacques Le Roux updated OFBIZ-4792: ----------------------------------- Description: The idea is to create an ant task which uses [YUICompressor|http://developer.yahoo.com/yui/compressor/] to dynamically minify our own (or custom for users) js and css files (most of the bigest external ones are already compressed) was: The idea is to create an ant task using [yui-compressor-ant-task|http://code.google.com/p/yui-compressor-ant-task/] to dynamically minify our own (or custom for users) js and css files (most of the bigest external ones are already compressed) Changes description to refer to http://developer.yahoo.com/yui/compressor/ directly rather > Add a yui-compressor-ant-task > ----------------------------- > > Key: OFBIZ-4792 > URL: https://issues.apache.org/jira/browse/OFBIZ-4792 > Project: OFBiz > Issue Type: New Feature > Components: framework > Affects Versions: SVN trunk > Environment: Windows/Linux > Reporter: Mandeep Sidhu > Priority: Trivial > Labels: build, compression, css, features, javascript > Fix For: SVN trunk > > > The idea is to create an ant task which uses [YUICompressor|http://developer.yahoo.com/yui/compressor/] to dynamically minify our own (or custom for users) js and css files (most of the bigest external ones are already compressed) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-4792?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jacques Le Roux reassigned OFBIZ-4792: -------------------------------------- Assignee: Jacques Le Roux > Add a yui-compressor-ant-task > ----------------------------- > > Key: OFBIZ-4792 > URL: https://issues.apache.org/jira/browse/OFBIZ-4792 > Project: OFBiz > Issue Type: New Feature > Components: framework > Affects Versions: SVN trunk > Environment: Windows/Linux > Reporter: Mandeep Sidhu > Assignee: Jacques Le Roux > Priority: Trivial > Labels: build, compression, css, features, javascript > Fix For: SVN trunk > > > The idea is to create an ant task which uses [YUICompressor|http://developer.yahoo.com/yui/compressor/] to dynamically minify our own (or custom for users) js and css files (most of the bigest external ones are already compressed) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-4792?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13249530#comment-13249530 ] Jacques Le Roux commented on OFBIZ-4792: ---------------------------------------- Commited initial work at revision: 1310983 > Add a yui-compressor-ant-task > ----------------------------- > > Key: OFBIZ-4792 > URL: https://issues.apache.org/jira/browse/OFBIZ-4792 > Project: OFBiz > Issue Type: New Feature > Components: framework > Affects Versions: SVN trunk > Environment: Windows/Linux > Reporter: Mandeep Sidhu > Assignee: Jacques Le Roux > Priority: Trivial > Labels: build, compression, css, features, javascript > Fix For: SVN trunk > > > The idea is to create an ant task which uses [YUICompressor|http://developer.yahoo.com/yui/compressor/] to dynamically minify our own (or custom for users) js and css files (most of the bigest external ones are already compressed) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-4792?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13249532#comment-13249532 ] Mandeep Sidhu commented on OFBIZ-4792: -------------------------------------- I analyzed the URL being accessed by my application, I am trying to consume a version of jquery from google's CDN. URL: http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js the size I am getting back is around 72KB, which is not gzipped, although Ofbiz is sending gzip as part of content-encoding. Here's what OFbiz is requesting Vary Accept-Encoding Content-Encoding gzip Content-Type text/javascript; charset=UTF-8 Last-Modified Mon, 02 Apr 2012 18:24:28 GMT Date Wed, 04 Apr 2012 16:56:11 GMT Expires Thu, 04 Apr 2013 16:56:11 GMT X-Content-Type-Options nosniff Server GFE/2.0 Content-Length 24605 X-XSS-Protection 1; mode=block Cache-Control public, max-age=31536000 Age 328756 One thing to note here is that it is not sending the user-agent header, and surprisingly google's CDN doesn't understand this and expects an established user-agent header, I used some tool to hit the same url and sent user-agent explicitly, surprisingly the received file size was 25Kb. do you've any idea as to why OFBIZ(tomcat server ) is omitting the user-agent header. > Add a yui-compressor-ant-task > ----------------------------- > > Key: OFBIZ-4792 > URL: https://issues.apache.org/jira/browse/OFBIZ-4792 > Project: OFBiz > Issue Type: New Feature > Components: framework > Affects Versions: SVN trunk > Environment: Windows/Linux > Reporter: Mandeep Sidhu > Assignee: Jacques Le Roux > Priority: Trivial > Labels: build, compression, css, features, javascript > Fix For: SVN trunk > > > The idea is to create an ant task which uses [YUICompressor|http://developer.yahoo.com/yui/compressor/] to dynamically minify our own (or custom for users) js and css files (most of the bigest external ones are already compressed) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-4792?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13249534#comment-13249534 ] Mandeep Sidhu commented on OFBIZ-4792: -------------------------------------- my bad, I am just being ignorant here, I was looking at the response header, my bad, it's working perfectly fine. apologies :) > Add a yui-compressor-ant-task > ----------------------------- > > Key: OFBIZ-4792 > URL: https://issues.apache.org/jira/browse/OFBIZ-4792 > Project: OFBiz > Issue Type: New Feature > Components: framework > Affects Versions: SVN trunk > Environment: Windows/Linux > Reporter: Mandeep Sidhu > Assignee: Jacques Le Roux > Priority: Trivial > Labels: build, compression, css, features, javascript > Fix For: SVN trunk > > > The idea is to create an ant task which uses [YUICompressor|http://developer.yahoo.com/yui/compressor/] to dynamically minify our own (or custom for users) js and css files (most of the bigest external ones are already compressed) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-4792?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mandeep Sidhu updated OFBIZ-4792: --------------------------------- Comment: was deleted (was: I analyzed the URL being accessed by my application, I am trying to consume a version of jquery from google's CDN. URL: http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js the size I am getting back is around 72KB, which is not gzipped, although Ofbiz is sending gzip as part of content-encoding. Here's what OFbiz is requesting Vary Accept-Encoding Content-Encoding gzip Content-Type text/javascript; charset=UTF-8 Last-Modified Mon, 02 Apr 2012 18:24:28 GMT Date Wed, 04 Apr 2012 16:56:11 GMT Expires Thu, 04 Apr 2013 16:56:11 GMT X-Content-Type-Options nosniff Server GFE/2.0 Content-Length 24605 X-XSS-Protection 1; mode=block Cache-Control public, max-age=31536000 Age 328756 One thing to note here is that it is not sending the user-agent header, and surprisingly google's CDN doesn't understand this and expects an established user-agent header, I used some tool to hit the same url and sent user-agent explicitly, surprisingly the received file size was 25Kb. do you've any idea as to why OFBIZ(tomcat server ) is omitting the user-agent header.) > Add a yui-compressor-ant-task > ----------------------------- > > Key: OFBIZ-4792 > URL: https://issues.apache.org/jira/browse/OFBIZ-4792 > Project: OFBiz > Issue Type: New Feature > Components: framework > Affects Versions: SVN trunk > Environment: Windows/Linux > Reporter: Mandeep Sidhu > Assignee: Jacques Le Roux > Priority: Trivial > Labels: build, compression, css, features, javascript > Fix For: SVN trunk > > > The idea is to create an ant task which uses [YUICompressor|http://developer.yahoo.com/yui/compressor/] to dynamically minify our own (or custom for users) js and css files (most of the bigest external ones are already compressed) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-4792?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jacques Le Roux closed OFBIZ-4792. ---------------------------------- Resolution: Fixed I think it's enough OOTB. Now users will have to care in production... > Add a yui-compressor-ant-task > ----------------------------- > > Key: OFBIZ-4792 > URL: https://issues.apache.org/jira/browse/OFBIZ-4792 > Project: OFBiz > Issue Type: New Feature > Components: framework > Affects Versions: SVN trunk > Environment: Windows/Linux > Reporter: Mandeep Sidhu > Assignee: Jacques Le Roux > Priority: Trivial > Labels: build, compression, css, features, javascript > Fix For: SVN trunk > > > The idea is to create an ant task which uses [YUICompressor|http://developer.yahoo.com/yui/compressor/] to dynamically minify our own (or custom for users) js and css files (most of the bigest external ones are already compressed) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-4792?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jacques Le Roux reopened OFBIZ-4792: ------------------------------------ I reopen it for 2 reasons: * I missed to put in LICENSE and NOTICE * It's an issue for Birt, see OFBIZ-5070 > Add a yui-compressor-ant-task > ----------------------------- > > Key: OFBIZ-4792 > URL: https://issues.apache.org/jira/browse/OFBIZ-4792 > Project: OFBiz > Issue Type: New Feature > Components: framework > Affects Versions: SVN trunk > Environment: Windows/Linux > Reporter: Mandeep Sidhu > Assignee: Jacques Le Roux > Priority: Trivial > Labels: build, compression, css, features, javascript > Fix For: SVN trunk > > > The idea is to create an ant task which uses [YUICompressor|http://developer.yahoo.com/yui/compressor/] to dynamically minify our own (or custom for users) js and css files (most of the bigest external ones are already compressed) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-4792?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jacques Le Roux resolved OFBIZ-4792. ------------------------------------ Resolution: Fixed Reverted at revision: 1416358 > Add a yui-compressor-ant-task > ----------------------------- > > Key: OFBIZ-4792 > URL: https://issues.apache.org/jira/browse/OFBIZ-4792 > Project: OFBiz > Issue Type: New Feature > Components: framework > Affects Versions: SVN trunk > Environment: Windows/Linux > Reporter: Mandeep Sidhu > Assignee: Jacques Le Roux > Priority: Trivial > Labels: build, compression, css, features, javascript > Fix For: SVN trunk > > > The idea is to create an ant task which uses [YUICompressor|http://developer.yahoo.com/yui/compressor/] to dynamically minify our own (or custom for users) js and css files (most of the bigest external ones are already compressed) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-4792?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jacques Le Roux closed OFBIZ-4792. ---------------------------------- > Add a yui-compressor-ant-task > ----------------------------- > > Key: OFBIZ-4792 > URL: https://issues.apache.org/jira/browse/OFBIZ-4792 > Project: OFBiz > Issue Type: New Feature > Components: framework > Affects Versions: SVN trunk > Environment: Windows/Linux > Reporter: Mandeep Sidhu > Assignee: Jacques Le Roux > Priority: Trivial > Labels: build, compression, css, features, javascript > Fix For: SVN trunk > > > The idea is to create an ant task which uses [YUICompressor|http://developer.yahoo.com/yui/compressor/] to dynamically minify our own (or custom for users) js and css files (most of the bigest external ones are already compressed) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira |
| Free forum by Nabble | Edit this page |
