~ubuntu-branches/ubuntu/utopic/libxml-sax-perl/utopic

« back to all changes in this revision

Viewing changes to SAX/Intro.pod

  • Committer: Bazaar Package Importer
  • Author(s): Jay Bonci
  • Date: 2004-10-27 13:02:32 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20041027130232-lx6l8rv5dib59205
Tags: 0.12-5
Adds debian/watch file so uscan will work

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
  use XML::SAX;
62
62
  use MySAXHandler;
63
63
  
64
 
  my $parser = XML::SAX::ParserFactory->new(
 
64
  my $parser = XML::SAX::ParserFactory->parser(
65
65
        Handler => MySAXHandler->new
66
66
  );
67
67
  
249
249
about how many times it may call characters for a stretch of text in an
250
250
XML document - it may call once, or it may call once for every
251
251
character in the text. In order to work around this it is often
252
 
important for the SAX developer to use s bundling technique, where text
 
252
important for the SAX developer to use a bundling technique, where text
253
253
is gathered up and processed in one of the other callbacks. This is not
254
254
always necessary, but it is a worthwhile technique to learn, which we
255
255
will cover in XML::SAX::Advanced (when I get around to writing it).
402
402
 
403
403
Matt Sergeant, matt@sergeant.org
404
404
 
405
 
$Id: Intro.pod,v 1.2 2002/02/10 15:35:08 matt Exp $
 
405
$Id: Intro.pod,v 1.3 2002/04/30 07:16:00 matt Exp $
406
406
 
407
407
=cut