home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / php / PEAR / HTML / Page2 / Namespaces.php < prev   
Encoding:
PHP Script  |  2008-07-02  |  1.8 KB  |  37 lines

  1. <?php
  2. /* vim: set expandtab tabstop=4 shiftwidth=4: */
  3. // +----------------------------------------------------------------------+
  4. // | HTML_Page2                                                           |
  5. // +----------------------------------------------------------------------+
  6. // | Copyright (c) 1997 - 2004 The PHP Group                              |
  7. // +----------------------------------------------------------------------+
  8. // | This source file is subject to version 3.0 of the PHP license,       |
  9. // | that is bundled with this package in the file LICENSE, and is        |
  10. // | available at through the world-wide-web at                           |
  11. // | http://www.php.net/license/3_0.txt.                                  |
  12. // | If you did not receive a copy of the PHP license and are unable to   |
  13. // | obtain it through the world-wide-web, please send a note to          |
  14. // | license@php.net so we can mail you a copy immediately.               |
  15. // +----------------------------------------------------------------------+
  16. // | Author:  Klaus Guenther <klaus@capitalfocus.org>                     |
  17. // +----------------------------------------------------------------------+
  18. //
  19. // $Id: Namespaces.php,v 1.2 2004/04/14 21:26:23 thesaur Exp $
  20.  
  21. /**
  22.  * This file contains an array of namespace declarations.
  23.  * These declarations have been taken directly from the w3c website:
  24.  * http://www.w3c.org/
  25.  * 
  26.  * @package HTML_Page2
  27.  * @author  Klaus Guenther <klaus@capitalfocus.org>
  28.  */
  29.  
  30. // Array of namespace declarations:
  31. $namespace['xhtml']['1.0'][] = 'http://www.w3.org/1999/xhtml';
  32. $namespace['xhtml']['basic']['1.0'][] = 'http://www.w3.org/1999/xhtml';
  33. $namespace['xhtml']['print']['1.0'][] = 'http://www.w3.org/1999/xhtml';
  34. $namespace['xhtml']['1.1'][] = 'http://www.w3.org/1999/xhtml';
  35. $namespace['xhtml']['2.0'][] = 'http://www.w3.org/2002/06/xhtml2';
  36.  
  37. ?>