You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@locus.apache.org on 2000/05/11 21:08:36 UTC

cvs commit: xml-xalan/c/src/XSLT StylesheetRoot.cpp StylesheetRoot.hpp

dbertoni    00/05/11 12:08:36

  Modified:    c/src/XSLT StylesheetRoot.cpp StylesheetRoot.hpp
  Log:
  Fixed incorrect initialization of output version data member, and fixed comments to reflect the correct return result of output-related functions.
  
  Revision  Changes    Path
  1.13      +1 -1      xml-xalan/c/src/XSLT/StylesheetRoot.cpp
  
  Index: StylesheetRoot.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/StylesheetRoot.cpp,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- StylesheetRoot.cpp	2000/05/05 15:14:26	1.12
  +++ StylesheetRoot.cpp	2000/05/11 19:08:35	1.13
  @@ -126,7 +126,7 @@
   	m_importStack(),
   	m_resultNameSpaceURL(),
   	m_outputmethod(Formatter::OUTPUT_METH_XML),
  -	m_version(baseIdentifier),
  +	m_version(),
   	m_indentResult(false),
   	m_encoding(),
   	m_mediatype(),
  
  
  
  1.8       +17 -10    xml-xalan/c/src/XSLT/StylesheetRoot.hpp
  
  Index: StylesheetRoot.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/StylesheetRoot.hpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- StylesheetRoot.hpp	2000/04/11 15:09:30	1.7
  +++ StylesheetRoot.hpp	2000/05/11 19:08:35	1.8
  @@ -133,15 +133,17 @@
   	getOutputMethod() const;
   
   	/**
  -	 * Get the version string that was specified in the stylesheet.
  +	 * Get the output version string that was specified in the
  +	 * xsl:output element
   	 *
  -	 * @return version string
  +	 * @return output version string
   	 */
   	XalanDOMString
   	getOutputVersion() const;
   
   	/**
  -	 * Determine if output indenting was specified in the stylesheet.
  +	 * Determine if output indenting was specified in the
  +	 * xsl:output element
   	 *
   	 * @return true to indent
   	 */
  @@ -149,7 +151,8 @@
   	getOutputIndent() const;
   
   	/**
  -	 * Get the output encoding string that was specified in the stylesheet.
  +	 * Get the output encoding string that was specified in the
  +	 * xsl:output element
   	 *
   	 * @return encoding string
   	 */
  @@ -157,7 +160,8 @@
   	getOutputEncoding() const;
   
   	/**
  -	 * Get the java output encoding string that was specified in the stylesheet.
  +	 * Get the java output encoding string that was specified in the
  +	 * xsl:output element
   	 *
   	 * @return encoding string
   	 */
  @@ -165,7 +169,8 @@
   	getJavaOutputEncoding() const;
   
   	/**
  -	 * Get the doctype-system-id string that was specified in the stylesheet.
  +	 * Get the doctype-system-id string that was specified in the 
  +	 * xsl:output element
   	 *
   	 * @return document type string
   	 */
  @@ -173,7 +178,8 @@
   	getOutputDoctypeSystem() const;
   
   	/**
  -	 * Get the media-type string that was specified in the stylesheet.
  +	 * Get the media-type string that was specified in the 
  +	 * xsl:output element
   	 *
   	 * @return media type string
   	 */
  @@ -181,7 +187,8 @@
   	getOutputMediaType() const;
   	
   	/**
  -	 * Get the doctype-public-id string that was specified in the stylesheet.
  +	 * Get the doctype-public-id string that was specified in the 
  +	 * xsl:output element
   	 *
   	 * @return document type public id string
   	 */
  @@ -200,8 +207,8 @@
   	}
   
   	/**
  -	 * Get the standalone string that was specified in the stylesheet, either
  -	 * "yes" or "no."
  +	 * Get the standalone string that was specified in the 
  +	 * xsl:output element.(either "yes" or "no")
   	 *
   	 * @return standalone string
   	 */