Your message dated Mon, 15 Aug 2005 20:47:05 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#249529: fixed in libxml-libxml-perl 1.58-1
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--------------------------------------
Received: (at submit) by bugs.debian.org; 17 May 2004 22:33:58 +0000
>From [EMAIL PROTECTED] Mon May 17 15:33:58 2004
Return-path: <[EMAIL PROTECTED]>
Received: from vinc17.net1.nerim.net (ay.vinc17.org) [62.4.18.82]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BPqgH-0007hQ-00; Mon, 17 May 2004 15:33:57 -0700
Received: from lefevre by ay.vinc17.org with local (Exim 4.32)
id 1BPqfk-0000kE-7d; Tue, 18 May 2004 00:33:24 +0200
Date: Tue, 18 May 2004 00:33:23 +0200
From: Vincent Lefevre <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: libxml-libxml-perl: Typos in XML::LibXML::Node(3pm) man page
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="J/dobhs11T7y2rNN"
Content-Disposition: inline
X-Reportbug-Version: 2.58
X-Mailer-Info: http://www.vinc17.org/mutt/
User-Agent: Mutt/1.5.6i
Sender: Vincent Lefevre <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-5.5 required=4.0 tests=BAYES_30,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level:
--J/dobhs11T7y2rNN
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Package: libxml-libxml-perl
Version: 1.56-6
Severity: minor
Tags: patch
There are many typos in the XML::LibXML::Node(3pm) man page.
See the attached patch...
-- System Information:
Debian Release: testing/unstable
APT prefers testing
APT policy: (900, 'testing'), (200, 'unstable')
Architecture: powerpc (ppc)
Kernel: Linux 2.4.25-powerpc
Locale: LANG=POSIX, LC_CTYPE=en_US.ISO8859-1
Versions of packages libxml-libxml-perl depends on:
ii libc6 2.3.2.ds1-12 GNU C Library: Shared libraries an
ii libxml-libxml-common-perl 0.13-4 Perl module for common routines &
ii libxml-namespacesupport-per 1.08-3 Perl module for supporting simple
ii libxml-sax-perl 0.12-4 Perl module for using and building
ii libxml2 2.6.9-2 GNOME XML library
ii perl 5.8.3-3 Larry Wall's Practical Extraction
ii perl-base [perlapi-5.8.2] 5.8.3-3 The Pathologically Eclectic Rubbis
ii zlib1g 1:1.2.1-5 compression library - runtime
-- no debconf information
--J/dobhs11T7y2rNN
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="Node.pod.diff"
--- lib/XML/LibXML/Node.pod.old 2003-08-23 02:02:19.000000000 +0200
+++ lib/XML/LibXML/Node.pod 2004-05-18 00:27:43.000000000 +0200
@@ -17,7 +17,7 @@
$oldnode = $node->replaceChild( $newNode, $oldNode )
$node->replaceNode($newNode);
$childnode = $node->appendChild( $childnode );
- $childnode = $node->addChild( $chilnode );
+ $childnode = $node->addChild( $childnode );
$node = $parent->addNewChild( $nsURI, $name );
$node->addSibling($newNode);
$newnode =$node->cloneNode( $deep )
@@ -36,10 +36,10 @@
$result = $node->find( $xpath );
print $node->findvalue( $xpath );
@childnodes = $node->childNodes;
- $xmlstring = $node->toString($format,$docencoding);
- $c14nstring = $node->toString($with_comments, $xpath_expression);
- $str = $doc->serialze($format);
- $c14nstr = $doc->serialize_c14n($comment_flag,$xpath);
+ $xmlstring = $node->toString( $format, $docencoding );
+ $c14nstring = $node->toString( $with_comments, $xpath_expression );
+ $str = $doc->serialze( $format );
+ $c14nstr = $doc->serialize_c14n( $comment_flag, $xpath );
$localname = $node->localname;
$nameprefix = $node->prefix;
$uri = $node->namespaceURI()
@@ -59,8 +59,8 @@
LibXML::Node should never be created standalone, but as an instance of a high
level class such as LibXML::Element or LibXML::Text. The class itself should
provide only common functionality. In XML::LibXML each node is part either of a
-document or a document-fragment. Because of this there is no node without a
-parent. This may causes confusion with "unbound" nodes.
+document or a document-fragment. Because of this, there is no node without a
+parent. This may cause confusion with "unbound" nodes.
=over 4
@@ -68,8 +68,8 @@
$name = $node->nodeName;
-Returns the node's name. This Function is aware about namesaces and returns the
-full name of the current node (prefix:localname)
+Returns the node's name. This Function is aware about namespaces and returns
+the full name of the current node (prefix:localname)
@@ -81,8 +81,8 @@
$node->setNodeName( $newName );
-In very limited situation it is usefull to change a nodes name. In the DOM
-specification this should throw an error. This Function is aware about
+In very limited situations, it is useful to change a node's name. In the DOM
+specification, this should throw an error. This Function is aware about
namespaces.
@@ -108,7 +108,7 @@
$bool = $node->isEqual( $other_node );
-depraced version of isSameNode().
+deprecated version of isSameNode().
NOTE isEqual will change behaviour to follow the DOM specification
@@ -126,7 +126,7 @@
requested through this function.
NOTE: Element Nodes have no content per definition. To get the text value of an
-Element use textContent() instead!
+Element, use textContent() instead!
@@ -139,7 +139,7 @@
$content = $node->textContent;
this function returns the content of all text nodes in the descendants of the
-given node as spacified in DOM.
+given node as specified in DOM.
@@ -151,9 +151,9 @@
$type = $node->nodeType;
-Retrun the node's type. The possible types are described in the libxml2 tree.h
+Return the node's type. The possible types are described in the libxml2 tree.h
documentation. The return value of this function is a numeric value. Therefore
-it differst with the result of perl ref function.
+it differs with the result of perl ref function.
=item B<line_number>
@@ -161,7 +161,7 @@
$lineno = $node->line_number();
This function returns the line number where the tag was found during parsing.
-If a node is added to the document the line number is 0. Problems may occour,
+If a node is added to the document, the line number is 0. Problems may occur,
if a node from one document is passed to another one.
Note: line_number() is special to XML::LibXML and not part of the DOM
@@ -181,9 +181,9 @@
$node->unbindNode()
Unbinds the Node from its siblings and Parent, but not from the Document it
-belongs to. If the node is not inserted into the DOM afterwards it will be lost
-after the programm terminated. From a low level view, the unbound node is
-stripped from the context it is and inserted into a (hidden) document-fragment.
+belongs to. If the node is not inserted into the DOM afterwards, it will be
+lost after the program terminates. From a low level view, the unbound node is
+stripped from the context it is and inserted into a (hidden) document fragment.
@@ -196,7 +196,7 @@
$childnode = $node->removeChild( $childnode )
This will unbind the Child Node from its parent $node. The function returns the
-unbound node. If oldNode is not a child of the given Node the function will
+unbound node. If oldNode is not a child of the given Node, the function will
fail.
@@ -225,7 +225,7 @@
This function is very similar to replaceChild(), but it replaces the node
itself rather than a childnode. This is useful if a node found by any XPath
-function, should be replaced.
+function should be replaced.
@@ -238,7 +238,7 @@
$childnode = $node->appendChild( $childnode );
The function will add the $childnode to the end of $node's children. The
-function should fail, if the new childnode is allready a child of $node. This
+function should fail if the new childnode is already a child of $node. This
function differs from the DOM L2 specification, in the case, if the new node is
not part of the document, the node will be imported first.
@@ -250,16 +250,16 @@
=item B<addChild>
- $childnode = $node->addChild( $chilnode );
+ $childnode = $node->addChild( $childnode );
As an alternative to appendChild() one can use the addChild() function. This
-function is a bit faster, because it avoids all DOM confomity checks. Therefore
-this function is quite usefull if one builds XML documents in memory where the
-order and ownership (ownerDocument) is ashured.
+function is a bit faster, because it avoids all DOM conformity checks.
+Therefore this function is quite useful if one builds XML documents in memory
+where the order and ownership (ownerDocument) is assured.
addChild() uses libxml2's own xmlAddChild() function. Thus it has to be used
with extra care: If a text node is added to a node and the node itself or its
-last childnode is aswell a text node, the node to add will be merged with the
+last childnode is also a text node, the node to add will be merged with the
one already available. The current node will be removed from memory after this
action. Because perl is not aware about this action, the perl instance is still
available. XML::LibXML will catch the loss of a node an avoid to run any
@@ -272,13 +272,13 @@
Also addChild() will not check it the added node belongs to the same document
as the node it will be added to. This could lead to inconsistent documents and
-in more worse cases even to memory violations, if one does not keep track of
+in worse cases even to memory violations, if one does not keep track of
this issue.
-Although this sounds like a lot of trouble, addChild() is usefull if a document
-is build from a stream, such as happens sometimes in SAX handlers or filters.
+Although this sounds like a lot of trouble, addChild() is useful if a document
+is built from a stream, such as happens sometimes in SAX handlers or filters.
-If you are not shure about the source of your nodes, you better stay with
+If you are not sure about the source of your nodes, you better stay with
appendChild(), because this function is more user friendly in the sense of more
error tolerance.
@@ -298,12 +298,12 @@
addNewChild() has two parameters $nsURI and $name, where $nsURI is an
(optional) namespace URI. $name is the fully qualified element name;
-addNewChild() will determine the correct prefix if nessecary.
+addNewChild() will determine the correct prefix if necessary.
The function returns the newly created node.
-This function is very usefull for DOM building, where a created node can be
-directly associated to its parent. NOTE this function is not part of the DOM
+This function is very useful for DOM building, where a created node can be
+directly associated with its parent. NOTE this function is not part of the DOM
specification and its use will limit your code to XML::LibXML.
@@ -329,11 +329,11 @@
$newnode =$node->cloneNode( $deep )
-cloneNode creates a copy of $node. Wether $deep is set to 1 (true) the function
-will copy all childnodes as well. If $deep is 0 only the current node will be
-copied.
+cloneNode creates a copy of $node. Whether $deep is set to 1 (true) the
+function will copy all childnodes as well. If $deep is 0 only the current node
+will be copied.
-cloneNode will not copy any namespace information if it is not run recursivly.
+cloneNode will not copy any namespace information if it is not run recursively.
@@ -357,7 +357,7 @@
$nextnode = $node->nextSibling()
-Returns the next sibling if any .
+Returns the next sibling if any.
@@ -369,7 +369,7 @@
$prevnode = $node->previousSibling()
-Analogous to getNextSibling the function returns the previous sibling if any.
+Analogous to getNextSibling, the function returns the previous sibling if any.
@@ -381,8 +381,8 @@
$boolean = $node->hasChildNodes();
-If the current node has Childnodes this function returns TRUE (1), otherwise it
-returns FALSE (0, not undef).
+If the current node has childnodes, this function returns TRUE (1), otherwise
+it returns FALSE (0, not undef).
@@ -394,7 +394,7 @@
$childnode = $node->firstChild;
-If a node has childnodes this function will return the first node in the
+If a node has childnodes, this function will return the first node in the
childlist.
@@ -407,7 +407,7 @@
$childnode = $node->lastChild;
-If the $node has childnodes this function returns the last child node.
+If the $node has childnodes, this function returns the last child node.
@@ -419,7 +419,7 @@
$documentnode = $node->ownerDocument;
-Through this function it is allways possible to access the document the current
+Through this function, it is always possible to access the document the current
node is bound to.
@@ -433,7 +433,7 @@
$node = $node->getOwner;
This function returns the node the current node is associated with. In the very
-most cases this will be a document node or a document fragment node.
+most cases, this will be a document node or a document fragment node.
@@ -446,11 +446,11 @@
$node->setOwnerDocument( $doc );
This function binds a node to another DOM. This method unbinds the node first,
-if it is allready bound to another document.
+if it is already bound to another document.
-This function is the oposite calling of XML::LibXML::Document's adoptNode()
-function. Because of this it has the same limitations with Entity References as
-adoptNode().
+This function is the opposite calling of XML::LibXML::Document's adoptNode()
+function. Because of this, it has the same limitations with Entity References
+as adoptNode().
@@ -491,7 +491,8 @@
@nodes = $node->findnodes( $xpath_statement );
findnodes performs the xpath statement on the current node and returns the
-result as an array. In scalar context returns a XML::LibXML::NodeList object.
+result as an array. In a scalar context, returns a XML::LibXML::NodeList
+object.
@@ -523,7 +524,7 @@
findvalue is exactly equivalent to:
- $node->find( $xpath )->to_literal;
+ $node->find( $xpath )->to_literal;
That is, it returns the literal value of the results. This enables you to
ensure that you get a string back from your search, allowing certain shortcuts.
@@ -542,8 +543,8 @@
getChildnodes implements a more intuitive interface to the childnodes of the
current node. It enables you to pass all children directly to a map or grep. If
-this function is called in scalar context, a XML::LibXML::NodeList object will
-be returned.
+this function is called in a scalar context, a XML::LibXML::NodeList object
+will be returned.
@@ -553,7 +554,7 @@
=item B<toString>
- $xmlstring = $node->toString($format,$docencoding);
+ $xmlstring = $node->toString( $format, $docencoding );
This is the equivalent to XML::LibXML::Document::toString for a single node.
This means a node and all its childnodes will be dumped into the result string.
@@ -566,13 +567,13 @@
=item B<toStringC14N>
- $c14nstring = $node->toString($with_comments, $xpath_expression);
+ $c14nstring = $node->toString( $with_comments, $xpath_expression );
-The function is similar to toString(). Instead of simply searializing the
+The function is similar to toString(). Instead of simply serializing the
document tree, it transforms it as it is specified in the XML-C14N
Specification. Such transformation is known as canonization.
-If $with_comments is 0 or not defined, the result-document will not contain any
+If $with_comments is 0 or not defined, the result document will not contain any
comments that exist in the original document. To include comments into the
canonized document, $with_comments has to be set to 1.
@@ -583,7 +584,7 @@
resulting document, unless they are part of the nodeset defined by the xpath
expression.
-If $xpath_expression is ommitted or empty, toStringC14N() will include all
+If $xpath_expression is omitted or empty, toStringC14N() will include all
nodes in the given sub-tree.
No serializing flags will be recognized by this function!
@@ -591,7 +592,7 @@
=item B<serialize>
- $str = $doc->serialze($format);
+ $str = $doc->serialize( $format );
Alternative form of toString(). This function name added to be more conform
with libxml2's examples.
@@ -599,7 +600,7 @@
=item B<serialize_c14n>
- $c14nstr = $doc->serialize_c14n($comment_flag,$xpath);
+ $c14nstr = $doc->serialize_c14n( $comment_flag, $xpath );
Alternative form of toStringC14N().
@@ -669,8 +670,8 @@
the same way, it is required to test what kind of node is handled while
accessing the functions result.
-If this function is called in array context the attribute nodes are returned as
-an array. In scalar context the function will return a
+If this function is called in an array context, the attribute nodes are
+returned as an array. In a scalar context, the function will return a
XML::LibXML::NamedNodeMap object.
@@ -698,7 +699,7 @@
Find a namespace prefix by its URI starting at the current node.
NOTE Only the namespace URIs are ment to be unique. The prefix is only document
-related. also document might has more than a single prefix defined for a
+related. Also a document might have more than a single prefix defined for a
namespace.
@@ -711,11 +712,11 @@
$iter = $node->iterator;
-This function is depraced sind XML::LibXML 1.54. It is only a dummyfunction
+This function is deprecated sind XML::LibXML 1.54. It is only a dummyfunction
that will get removed entirely in one of the next versions.
-To make use of iterator functions use XML::LibXML::Iterator Module available on
-CPAN.
+To make use of iterator functions, use XML::LibXML::Iterator Module available
+on CPAN.
@@ -729,7 +730,7 @@
This function normalizes adjacent textnodes. This function is not as strict as
libxml2's xmlTextMerge() function, since it will not free a node that is still
-refered by the perl layer.
+referred by the perl layer.
@@ -743,9 +744,9 @@
If a node has any namespaces defined, this function will return these
namespaces. Note, that this will not return all namespaces that are in scope,
-but only the ones declares explicitly for that node.
+but only the ones declared explicitly for that node.
-Although getNamespaces is available for all nodes, it makes only sense if used
+Although getNamespaces is available for all nodes, it makes sense only if used
with element nodes.
@@ -760,9 +761,9 @@
This function is not specified for any DOM level: It removes all childnodes
from a node in a single step. Other than the libxml2 function itself
-(xmlFreeNodeList), this function will not imediatly remove the nodes from the
+(xmlFreeNodeList), this function will not immediately remove the nodes from the
memory. This safes one from getting memory violations, if there are nodes still
-refered from the Perl level.
+referred from the Perl level.
@@ -770,8 +771,8 @@
=head1 AUTHORS
-Matt Sergeant,
-Christian Glahn,
+Matt Sergeant,
+Christian Glahn,
=head1 VERSION
1.56
--J/dobhs11T7y2rNN--
---------------------------------------
Received: (at 249529-close) by bugs.debian.org; 16 Aug 2005 03:51:18 +0000
>From [EMAIL PROTECTED] Mon Aug 15 20:51:18 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
id 1E4sPp-0001qO-00; Mon, 15 Aug 2005 20:47:05 -0700
From: Andrew Pollock <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#249529: fixed in libxml-libxml-perl 1.58-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Mon, 15 Aug 2005 20:47:05 -0700
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level:
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-CrossAssassin-Score: 2
Source: libxml-libxml-perl
Source-Version: 1.58-1
We believe that the bug you reported is fixed in the latest version of
libxml-libxml-perl, which is due to be installed in the Debian FTP archive:
libxml-libxml-perl_1.58-1.diff.gz
to pool/main/libx/libxml-libxml-perl/libxml-libxml-perl_1.58-1.diff.gz
libxml-libxml-perl_1.58-1.dsc
to pool/main/libx/libxml-libxml-perl/libxml-libxml-perl_1.58-1.dsc
libxml-libxml-perl_1.58-1_i386.deb
to pool/main/libx/libxml-libxml-perl/libxml-libxml-perl_1.58-1_i386.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Andrew Pollock <[EMAIL PROTECTED]> (supplier of updated libxml-libxml-perl
package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Tue, 16 Aug 2005 13:31:13 +1000
Source: libxml-libxml-perl
Binary: libxml-libxml-perl
Architecture: source i386
Version: 1.58-1
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group <[EMAIL PROTECTED]>
Changed-By: Andrew Pollock <[EMAIL PROTECTED]>
Description:
libxml-libxml-perl - Perl module for using the GNOME libxml2 library
Closes: 240334 249529 260832 277469 280410 282439
Changes:
libxml-libxml-perl (1.58-1) unstable; urgency=low
.
* QA Group upload orphaning this package
* debian/libxml-libxml-perl.prerm: remove bashism
* Incorporates previous NMUs (closes: #260832, #240334, #282439, #277469,
#280410)
* debian/control: Build-Depend on dpatch
* debian/rules: Add dpatch support
* Partially applied patch from Vincent Lefevre to correct a lot of typos in
manpage (closes: #249529)
Files:
ab9301ace5fc66dcad366791d3168b2b 778 perl optional
libxml-libxml-perl_1.58-1.dsc
d002c3c21b51ec80468dd326c63e0bf9 171739 perl optional
libxml-libxml-perl_1.58.orig.tar.gz
2b2fdfe19eb6f5266e15d103a63bbbaf 10195 perl optional
libxml-libxml-perl_1.58-1.diff.gz
f5a2668bf13d7b188045c1285d9c7ac2 277072 perl optional
libxml-libxml-perl_1.58-1_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFDAV6ZIblXXKfZFgIRApv8AKCwrJwNwk2yTKDUBcQVj6EPPD1Z7gCcCD39
5E7+cZJxI0k8DP5t5V+8QpM=
=s+cv
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]