Return-Path: Mailing-List: contact user-help@ant.apache.org; run by ezmlm Delivered-To: mailing list user@ant.apache.org Received: (qmail 36014 invoked from network); 25 Feb 2003 21:21:48 -0000 Received: from mailao.westgroup.com (HELO morton.int.westgroup.com) (167.68.1.71) by daedalus.apache.org with SMTP; 25 Feb 2003 21:21:48 -0000 Received: from morton.int.westgroup.com (localhost.localdomain [127.0.0.1]) by morton.int.westgroup.com (8.12.5/8.12.5) with ESMTP id h1PLLrKL015715 for ; Tue, 25 Feb 2003 15:21:53 -0600 Received: from eg-msgimc-b10.int.westgroup.com (eg-msgimc-b10.int.westgroup.com [163.231.96.24]) by morton.int.westgroup.com (8.12.5/8.12.5) with ESMTP id h1PLLqMU015707 for ; Tue, 25 Feb 2003 15:21:52 -0600 Received: by eg-msgimc-b10.int.westgroup.com with Internet Mail Service (5.5.2656.59) id ; Tue, 25 Feb 2003 15:21:52 -0600 Message-ID: <73EBE0A5AC2ED51196090003473A814E04597BFD@eg-msgmbx-b08.int.westgroup.com> From: "Lee, Michael.M" To: "'Ant Users List'" Subject: RE: Removing whitespace in the code Date: Tue, 25 Feb 2003 15:21:49 -0600 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2656.59) Content-Type: text/plain; charset="iso-8859-1" X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N but i was able to download the code. here is the code. /*************************************************************************** ** * Copyright (C) The Krysalis project. All rights reserved. * * ------------------------------------------------------------------------- * * This software is published under the terms of the Krysalis Patchy * * Software License version 1.1_01, a copy of which has been included * * at the bottom of this file. * **************************************************************************** */ import com.izforge.izpress.*; import java.io.InputStream; import java.io.FileInputStream; import java.io.BufferedInputStream; import java.io.OutputStream; import java.io.FileOutputStream; import java.io.Writer; import java.io.PrintWriter; import java.io.FileWriter; import java.io.BufferedWriter; import java.io.FileWriter; import java.io.IOException; import java.util.ArrayList; import org.w3c.dom.NodeList; import org.w3c.dom.Node; import org.w3c.dom.Element; import org.w3c.dom.Attr; import org.w3c.dom.Document; import org.w3c.dom.NamedNodeMap; import org.w3c.tidy.Tidy; import org.apache.tools.ant.BuildException; import org.apache.tools.ant.taskdefs.Property; /** * Task to compress html size. * * @author Nicola Ken Barozzi * @created 14 January 2002 */ public class IZPressHtmlCompressTask extends org.apache.tools.ant.Task { private String src; private String dest; private Compressor compressor; private CompressorConfig conf; private String wipeComments = "true"; private String wipeBorders = "true"; private String wipeReturns = "true"; private String wipeSpaces = "true"; PrintWriter pw; /** * Constructor. */ public IZPressHtmlCompressTask() { super(); } /** * Initializes the task. */ public void init() { super.init(); // Setup an instance of IZCompressor. conf = new CompressorConfig(false,false,true,true); } /** * Run the task. * @exception org.apache.tools.ant.BuildException The exception raised during task execution. */ public void execute() throws org.apache.tools.ant.BuildException { try{ FileInputStream in = new FileInputStream(src); FileOutputStream out = new FileOutputStream(dest); compressor = new Compressor(in,out,conf); compressor.compress(); out.flush(); in.close(); out.close(); } catch(IOException ioe) { throw new BuildException(ioe); } } public void setSrc(String src) { this.src = src; } public void setDest(String dest) { this.dest = dest; } public void setWipeComments(String wipeComments) { this.wipeComments = wipeComments; } public void setWipeBorders(String wipeBorders) { this.wipeBorders = wipeBorders; } public void setWipeReturns(String wipeReturns) { this.wipeReturns = wipeReturns; } public void setWipeSpaces(String wipeSpaces) { this.wipeSpaces = wipeSpaces; } } /* The Krysalis Patchy Software License, Version 1.1_01 Copyright (c) 2002 Nicola Ken Barozzi. All rights reserved. This Licence is compatible with the BSD licence as described and approved by http://www.opensource.org/, and is based on the Apache Software Licence Version 1.1. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The end-user documentation included with the redistribution, if any, must include the following acknowledgment: "This product includes software developed for project Krysalis (http://www.krysalis.org/)." Alternately, this acknowledgment may appear in the software itself, if and wherever such third-party acknowledgments normally appear. 4. The names "Krysalis" and "Nicola Ken Barozzi" and "Krysalis Centipede" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact krysalis@nicolaken.org. 5. Products derived from this software may not be called "Krysalis", "Krysalis Centipede", nor may "Krysalis" appear in their name, without prior written permission of Nicola Ken Barozzi. 6. This software may contain voluntary contributions made by many individuals, who decided to donate the code to this project in respect of this licence. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE KRYSALIS PROJECT OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ====================================================================*/ -----Original Message----- From: Alexey Solofnenko [mailto:A.Solofnenko@mdl.com] Sent: Tuesday, February 25, 2003 3:19 PM To: 'Ant Users List' Subject: RE: Removing whitespace in the code 'Attic' in the path means it was deleted. - Alexey. -- { http://trelony.cjb.net/ } Alexey N. Solofnenko Pleasant Hill, CA (GMT-8 usually) -----Original Message----- From: Lee, Michael.M [mailto:Michael.M.Lee@westgroup.com] Sent: Tuesday, February 25, 2003 1:17 PM To: 'Ant Users List' Subject: RE: Removing whitespace in the code I have found this link. http://cvs.apache.org/viewcvs/xml-forrest/tools/centipede/src/java/Attic/IZP ressHtmlCompressTask.java?hideattic=0 I was wondering if anyone has used this before, if so, how can i use this? --------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscribe@ant.apache.org For additional commands, e-mail: user-help@ant.apache.org