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...@apache.org on 2001/06/21 17:40:46 UTC

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

dbertoni    01/06/21 08:40:46

  Modified:    c/src/XSLT StylesheetRoot.hpp
  Log:
  Cleanup...
  
  Revision  Changes    Path
  1.14      +14 -25    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.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- StylesheetRoot.hpp	2001/05/02 15:56:01	1.13
  +++ StylesheetRoot.hpp	2001/06/21 15:40:44	1.14
  @@ -314,32 +314,32 @@
   	 * The version tells the version of XML to be used for outputting the result tree,
   	 * as specified in xsl:output.
   	 */
  -	XalanDOMString m_version;
  +	XalanDOMString	m_version;
   
   	/**
   	 * indent-result is by default no, which means an XSL processor must not
   	 * change the whitespace on output.
   	 */
  -	bool m_indentResult;
  +	bool			m_indentResult;
   
   	/**
   	 * The encoding attribute specifies the preferred encoding to use 
   	 * for outputting the result tree. 
   	 */
  -	XalanDOMString m_encoding;
  +	XalanDOMString	m_encoding;
   
   	/**
   	 * The media-type attribute is applicable for the xml output method. 
   	 * The default value for the media-type attribute is text/xml.
   	 */
  -	XalanDOMString m_mediatype;
  +	XalanDOMString	m_mediatype;
   
   	/**
   	 * If the doctype-system-id attribute is specified, the xml output method should 
   	 * output a document type declaration immediately before the first element. 
   	 * The name following <!DOCTYPE should be the name of the first element. 
   	 */
  -	XalanDOMString m_doctypeSystem;
  +	XalanDOMString	m_doctypeSystem;
   
   	/**
   	 * If doctype-public-id attribute is also specified, then the xml output 
  @@ -349,17 +349,17 @@
   	 * doctype-public-id attribute should be ignored unless the doctype-system-id 
   	 * attribute is specified.
   	 */
  -	XalanDOMString m_doctypePublic;
  +	XalanDOMString	m_doctypePublic;
   
   	/**
   	 * Tells whether or not to output an XML declaration.
   	 */
  -	bool m_omitxmlDecl;
  +	bool			m_omitxmlDecl;
   
   	/**
   	 * Tells what the xmldecl should specify for the standalone value.
        */
  -	XalanDOMString m_standalone;
  +	XalanDOMString	m_standalone;
   
   	/**
   	 * Retrieve the stack of imported stylesheets.
  @@ -459,40 +459,29 @@
   	QNameVectorType		m_cdataSectionElems;
   
   	/**
  -	 * A stack of who's importing who is needed in order to support 
  -	 * "It is an error if a stylesheet directly or indirectly imports 
  -	 * itself. Apart from this, the case where a stylesheet with a 
  -	 * particular URI is imported in multiple places is not treated 
  -	 * specially."
  +	 * A stack of who's importing whom is needed in order to detect 
  +	 * a recursive include or import, which is an error.
   	 */
  -	URLStackType m_importStack;
  +	URLStackType	m_importStack;
   
   
   	/**
   	 * The default template to use for text nodes if we don't find 
   	 * anything else.  This is initialized in initDefaultRule().
  -	 * @serial
   	 */
  -	ElemTemplate* m_defaultTextRule;
  +	ElemTemplate*	m_defaultTextRule;
   
   	/**
   	 * The default template to use if we don't find anything
   	 * else.  This is initialized in initDefaultRule().
  -	 * @serial
   	 */
  -	ElemTemplate* m_defaultRule;
  +	ElemTemplate*	m_defaultRule;
   
   	/**
   	 * The default template to use for the root if we don't find 
   	 * anything else.  This is initialized in initDefaultRule().
  -	 * We kind of need this because the defaultRule isn't good 
  -	 * enough because it doesn't supply a document context.
  -	 * For now, I default the root document element to "HTML".
  -	 * Don't know if this is really a good idea or not.
  -	 * I suspect it is not.
  -	 * @serial
   	 */
  -	ElemTemplate* m_defaultRootRule;
  +	ElemTemplate*	m_defaultRootRule;
   
   };
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org