Update of /cvsroot/phpxd/phpXD/include
In directory usw-pr-cvs1:/tmp/cvs-serv30285/include
Added Files:
dtd.php
Log Message:
Added initial support for DTDs.
--- NEW FILE: dtd.php ---
<?php
// phpXD - a XML DOM Implementation
//
// This Software and all associated files are released unter the
// GNU Public License (GPL), see LICENSE for details.
//
// $Id: dtd.php,v 1.1 2002/02/06 22:58:43 thomi Exp $
require($path."include/dtd/DTDAttList.php");
require($path."include/dtd/DTDAttribute.php");
require($path."include/dtd/DTDElement.php");
require($path."include/dtd/DTDElementChild.php");
require($path."include/dtd/DTDElementSequence.php");
require($path."include/dtd/DTDElementChoice.php");
?>
|