Sophie

Sophie

distrib > Mandriva > 8.2 > i586 > media > contrib > by-pkgid > b64678a1ba91dfb11d4eaad143035d08 > files > 14

perl-XML-Stream-1.14-1mdk.i586.rpm

1.14
====
  - Fixed slow execution due to a sleep where there shouldn't be
    a sleep.
  - Added OpenFile() way to parse a stream.  It takes the same kind of
    arguments that open() takes, so you can parse the stream output from
    a command or a file and pretend that it's a stream.  It will ignore
    the outer most tag and pretend that it's a <stream:stream/> tag.
  - Fixed documentation to reflect the SID.
  - Get "value array" with attrib fetches the same attrib from the
    macthing nodes.

1.13
====
  - Fixed bug in Parser with entities getting split by reads and
    not interpreted properly.
  - Moved IO::Select requirement to 1.13 per a bug report from
    datawrangler.
  - Added XML2Config function to handle parsing config.xml files.
  - Fixed bug in the Parser parse and parsefile functions.

1.12
====
  - Fixed SSL bug.
  - Added support for the new HTTP::ProxyAutoConfig from Netscape.
  - Fixed logic for proxy servers.  (This is gonna break for someone...
    I can just feel it.)
  - Added SSL support in for both tcpip and http connections.
  - Removed support for native Unicode under perl 5.6.  It was causing a
    big memory leak that the Unicode::String module does not incur.
    This means that the Unicode::String module is now a requirement for
    XML::Stream.
  - Added in support for connecting via HTTP.  This takes a special server
    that can keep the connection alive as the HTTP connection is setup only
    once and is kept opne while you send and receive.  This allows you to
    connect through proxy servers.
  - More tweaks for memory usage and speed ups.
  - Added in a new XML sotrage format to try and save space.  It's
    a hash representation of the entire XML document.  XML::Parser::Tree
    uses arrays of arrays and arrays of hashes which can consume memory
    in very short order.  It was a good starting point, but it's time to
    move on.  Se the INFO doc for more info on the new format.  (Not
    done yet.)
  - Added GetXMLData, SetXMLData, BuildXML, and EscapeXML which was
    originally written for the Net::Jabber modules but realized that
    they made more sense in here. =P

1.11
====
  - Added in a module for DTD parsing.  This will hopefully lead to
    verification of XML Streams based off of DTD.
  - Fixed bug in the Process function caused by the new way of handling
    multiple connections with detecting a broken connection.
  - Added code to handle listening for incoming connections on a port
    for a namespace.  THIS IS STILL UNDER DEVELOPMENT!
  - Added XML::Stream::Parser to replace XML::Parser.
  - Fixed bug in the timeout code.

1.10
====
  - Added SetCallBacks function to repleace OnNode and provide other
    hooks for more functions.
  - Fixed initial connect function and error handling.

1.09
====
  - Updated Connect to handle changing the values of the to and from
    attributes directly from the function call.  (Useful for proxying.)

1.08
====
  - Added boiler plate comments for the LGPL.
  - Added code to Send to check if the connection was lost.  This
    fixes a Broken Pipe error that I was seeing when the program tried
    to write to a socket that was closed.

1.07
====
  - Added code to handle not only connecting over TCP/IP but over
    STDIN/STDOUT (for the new Jabber server).
  - Added code to handle keeping the connection alive over connections
    that drop the connection after a period of inactivity.

1.06
====
  - Fixed bug where Process(0) would still sleep for a short time and
    cause those fast loops to take longer than they should.
  - Added Unicode support.  When you build the tree, make sure that
    it's latin 1 you are speaking.  It's then up to the sender to ensure
    that the outgoing data is utf8.
  - Added timestamp support to debug.
  - STREAMERROR is now local to an object instantiaion instead of the 
    namespace.  This helps when you get an error and then grab a new
    object and want to connect again.

1.05
====
  - Fixed sport where Stream would die if it could not resolve your full
    hostname.  Now it just reverts back to the result of hostname() if
    it can' look up the full name.
  - Initialized some variables to get rid of warnings with perl -w.

1.04
====
  - Changed version scheme to allow Perl to check for it.

1.0c
====
  - I think I got the bug in ParseStream that removes the parse coming in
    while a parse is already in progress.
  - Fixed major bug in Process.  If you got a tag in the middle of the tag
    it would cause an XML error.
  - Also, if another parse came in during another parse, the second parse
    tree would get built under the current parse tree and everything would
    grind to a halt.

1.0b
====
  - Improved error handling by creating GetErrorCode and SetErrorCode.
    These functions allow the caller to get some information about why
    Process or Connect returned undef.
  - Added error checking if a <stream:error> is sent.  This will call
    SetErrorCode and return undef.

1.0a
====
  - Version bump.
  - Changed method of handling timeouts in the Connect and Process block.
    The timeout from the Connect is no longer remembered in the Process
    and used.  This method has improved the speed of the module greatly.
  - Fixed bug where the Process was not properly handling a connection 
    breakdown.  It now returns undef, or "", when the server dies or the
    connection is dropped.

0.1b
====
  - Added XML::Stream::Namespace to make writting Perl modules for other
    namepsaces possible.  (This is highly alpha...)
  - Added Disconnect function to send closing tag and shut the stream down.
  - Added documentation list of methods in Stream.pm.

0.1a
====
  - First version.
  - Supports connecting to a server, opening a stream, and receiving from that
    stream.