All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uk.ac.cam.caret.sakai.rwiki.utils.DigestHtml Maven / Gradle / Ivy

The newest version!
/**********************************************************************************
 * $URL$
 * $Id$
 ***********************************************************************************
 *
 * Copyright (c) 2003, 2004, 2005, 2006 The Sakai Foundation.
 *
 * Licensed under the Educational Community License, Version 1.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.opensource.org/licenses/ecl1.php
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 **********************************************************************************/

package uk.ac.cam.caret.sakai.rwiki.utils;

import java.io.StringReader;

import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;

import org.xml.sax.InputSource;
import org.xml.sax.XMLReader;


/**
 * Digests XHTML into a string representation
 * 
 * @author ieb
 */
public class DigestHtml
{
	private static SAXParserFactory saxParserFactory = SAXParserFactory.newInstance();
	static {
		saxParserFactory.setNamespaceAware(true);
	}

	public static String digest(String todigest)
	{
		Digester d = new Digester();
		try
		{
			SAXParser parser = saxParserFactory.newSAXParser();
			XMLReader reader = parser.getXMLReader();
			reader.setContentHandler(d);
			reader.parse(new InputSource(new StringReader("" //$NON-NLS-1$
					+ todigest + ""))); //$NON-NLS-1$
			return d.toString();
		}
		catch (Exception ex)
		{
			return d.toString() + Messages.getString("DigestHtml.3") + ex.getMessage(); //$NON-NLS-1$
		}
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy