Sha256: 8e4828969586d5c2406970f95f7af417b7e3d20bd9205e0b0ec2aa547c20732a
Contents?: true
Size: 1.27 KB
Versions: 6
Compression:
Stored size: 1.27 KB
Contents
# xampl-pp : XML pull parser # Copyright (C) 2002-2009 Bob Hutchison # # 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, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # module SAXishHandler def resolve(name) return nil end def startDocument end def endDocument end def startElement(name, namespace, qname, prefix, attributeCount, isEmptyElement, saxParser) end def endElement(name, namespace, qname, prefix) end def entityRef(name, text) end def text(text, isWhitespace) end def cdataSection(text) end def ignoreableWhitespace(text) end def processingInstruction(text) end def doctype(text) end def comment(text) end end
Version data entries
6 entries across 6 versions & 2 rubygems