Author: jleroux
Date: Mon Dec 1 09:16:40 2014
New Revision: 1642656
URL:
http://svn.apache.org/r1642656Log:
Thanks for Chatree's reminder in OFBIZ-5876, closes OFBIZ-4849 and OFBIZ-5070 for R12.04 where the yuicompressor-2.4.6.jar was still present
Removed:
ofbiz/branches/release12.04/framework/base/lib/yuicompressor-2.4.6.jar
Modified:
ofbiz/branches/release12.04/build.xml
ofbiz/branches/release12.04/macros.xml
Modified: ofbiz/branches/release12.04/build.xml
URL:
http://svn.apache.org/viewvc/ofbiz/branches/release12.04/build.xml?rev=1642656&r1=1642655&r2=1642656&view=diff==============================================================================
--- ofbiz/branches/release12.04/build.xml (original)
+++ ofbiz/branches/release12.04/build.xml Mon Dec 1 09:16:40 2014
@@ -1223,15 +1223,6 @@ under the License.
</target>
<!-- ================================================================== -->
- <!-- Minify js and css files target. -->
- <!-- ================================================================== -->
-
- <target name="minifyJsCss" description="Creates a minified version of JS/CSS files">
- <!-- Needs more work (more files, use of them) just used as an example -->
- <!--yuicompressor inFile="themes/tomahawk/webapp/tomahawk/css/style.css" outFile="themes/tomahawk/webapp/tomahawk/css/style-min.css"/-->
- </target>
-
- <!-- ================================================================== -->
<!-- Old tasks. -->
<!-- ================================================================== -->
<target name="run">
Modified: ofbiz/branches/release12.04/macros.xml
URL:
http://svn.apache.org/viewvc/ofbiz/branches/release12.04/macros.xml?rev=1642656&r1=1642655&r2=1642656&view=diff==============================================================================
--- ofbiz/branches/release12.04/macros.xml (original)
+++ ofbiz/branches/release12.04/macros.xml Mon Dec 1 09:16:40 2014
@@ -260,18 +260,4 @@ under the License.
</if>
</sequential>
</macrodef>
-
- <macrodef name="yuicompressor" description="Runs the YUI JS/CSS compressor on the specified inFile and saves the output to outFile">
- <attribute name="inFile"/>
- <attribute name="outFile"/>
- <sequential>
- <echo message="Minify @{inFile}"/>
- <java jar="${ofbiz.home.dir}/framework/base/lib/yuicompressor-2.4.6.jar" fork="true">
- <arg value="-o"/>
- <arg value="@{outFile}"/>
- <arg value="@{inFile}"/>
- </java>
- </sequential>
- </macrodef>
-
</project>