/** * * Copyright (c) 2014, the Railo Company Ltd. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library. If not, see <http://www.gnu.org/licenses/>. * **/ /** * Implements the CFML Function xmlparse */ package lucee.runtime.functions.xml; import lucee.runtime.PageContext; import lucee.runtime.exp.PageException; import lucee.runtime.ext.function.Function; import lucee.runtime.op.Caster; import lucee.runtime.text.xml.XMLCaster; import lucee.runtime.text.xml.XMLUtil; import org.w3c.dom.Node; import org.xml.sax.InputSource; public final class HtmlParse implements Function { public static Node call(PageContext pc , String string) throws PageException { return call(pc,string,false); } public static Node call(PageContext pc , String strHTML, boolean caseSensitive) throws PageException { try { InputSource xml = XMLUtil.toInputSource(pc,strHTML,false); return XMLCaster.toXMLStruct(XMLUtil.parse(xml,null,true),caseSensitive); } catch (Exception e) { throw Caster.toPageException(e); } /*try { return XMLCaster.toXMLStruct(XMLUtil.parse(string,true),caseSensitive);//new XMLNodeStruct(XMLUtil.parse(string),caseSensitive); } catch (Exception e) { throw Caster.toPageException(e); }*/ } }