mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
10 lines
644 B
Text
10 lines
644 B
Text
XML::SAX::Base has a very simple task - to be a base class for PerlSAX drivers
|
|
and filters. It's default behaviour is to pass the input directly to the output
|
|
unchanged. It can be useful to use this module as a base class so you don't have
|
|
to, for example, implement the characters() callback.
|
|
|
|
The main advantages that it provides are easy dispatching of events the right
|
|
way (ie it takes care for you of checking that the handler has implemented that
|
|
method, or has defined an AUTOLOAD), and the guarantee that filters will pass
|
|
along events that they aren't implementing to handlers downstream that might
|
|
nevertheless be interested in them.
|