Author: amassari
Date: Wed Aug 10 05:36:39 2005
New Revision: 231220

URL: http://svn.apache.org/viewcvs?rev=231220&view=rev
Log:
Documentation for Base64::decode now state how whitespace is treated (jira# 974)

Modified:
    xerces/c/trunk/src/xercesc/util/Base64.hpp

Modified: xerces/c/trunk/src/xercesc/util/Base64.hpp
URL: 
http://svn.apache.org/viewcvs/xerces/c/trunk/src/xercesc/util/Base64.hpp?rev=231220&r1=231219&r2=231220&view=diff
==============================================================================
--- xerces/c/trunk/src/xercesc/util/Base64.hpp (original)
+++ xerces/c/trunk/src/xercesc/util/Base64.hpp Wed Aug 10 05:36:39 2005
@@ -84,7 +84,11 @@
      * @param inputData Base64 data in XMLByte stream.
      * @param decodedLength Length of decoded XMLByte stream.
      * @param memMgr client provided memory manager
-     * @param conform conformance specified
+     * @param conform conformance specified: if the input data conforms to the
+     *                RFC 2045 it is allowed to have any number of whitespace
+     *                characters inside; if it conforms to the XMLSchema specs,
+     *                it is allowed to have at most one whitespace character
+     *                between the quartets
      * @return Decoded binary data in XMLByte stream,
      *      or NULL if input data can not be decoded.
      * @see   XMLString::release(XMLByte**)
@@ -109,7 +113,11 @@
      * @param inputData Base64 data in XMLCh stream.
      * @param decodedLength Length of decoded XMLCh stream
      * @param memMgr client provided memory manager
-     * @param conform conformance specified
+     * @param conform conformance specified: if the input data conforms to the
+     *                RFC 2045 it is allowed to have any number of whitespace
+     *                characters inside; if it conforms to the XMLSchema specs,
+     *                it is allowed to have at most one whitespace character
+     *                between the quartets
      * @return Decoded binary data in XMLCh stream,
      *      or NULL if input data can not be decoded.
      * @see   XMLString::release(XMLCh**)
@@ -136,7 +144,11 @@
      * @param inputData Base64 data in XMLCh stream.
      * @param decodedLength Length of decoded XMLByte stream.
      * @param memMgr client provided memory manager
-     * @param conform conformance specified
+     * @param conform conformance specified: if the input data conforms to the
+     *                RFC 2045 it is allowed to have any number of whitespace
+     *                characters inside; if it conforms to the XMLSchema specs,
+     *                it is allowed to have at most one whitespace character
+     *                between the quartets
      * @return Decoded binary data in XMLByte stream,
      *      or NULL if input data can not be decoded.
      * @see   XMLString::release(XMLByte**)



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to