metallic                Fri Jan 12 15:01:19 2001 EDT

  Added files:                 
    /php4/pear/XML      Render.php 
  Log:
  Adding Render.php, which helps render documents from XML files.
  
  

Index: php4/pear/XML/Render.php
+++ php4/pear/XML/Render.php
<?php

/* vim: set expandtab tabstop=4 shiftwidth=4; */
// +---------------------------------------------------------------------+
// |  PHP version 4.0                                                    |
// +---------------------------------------------------------------------+
// |  Copyright (c) 1997-2001 The PHP Group                              |
// +---------------------------------------------------------------------+
// |  This source file is subject to version 2.0 of the PHP license,     |
// |  that is bundled with this package in the file LICENSE, and is      |
// |  available through the world-wide-web at                            |
// |  http://www.php.net/license/2_02.txt.                               |
// |  If you did not receive a copy of the PHP license and are unable to |
// |  obtain it through the world-wide-web, please send a note to        |
// |  [EMAIL PROTECTED] so we can mail you a copy immediately.             |
// +---------------------------------------------------------------------+
// |  Authors:  Sean Grimes <[EMAIL PROTECTED]>                    |
// +---------------------------------------------------------------------+

/**
* Render class for rendering HTML. This class inherits 
* everything from XML_Parser, taking the variables that
* were parsed and rendering the file appropriatly.
*
* @author Sean Grimes <[EMAIL PROTECTED]>
*/ 

class XML_Render extends XML_Parser {

        function Render_HTML() {

        }

        function _Render_HTML() {

        }

        function Open($file) {

                $fpointer = fopen($file, "w+");
        
        
        
        

}



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to