blob: 176d22866ab20dae99e9965014c9f04880fc34d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<?php
/**
* Advanced Web Interface to phpDocumentor
*
* PHP versions 4 and 5
*
* @category ToolsAndUtilities
* @package phpDocumentor
* @author Juan Pablo Morales <ju-moral@uniandes.edu.co>
* @author Joshua Eichorn <jeichorn@phpdoc.org>
* @author Gregory Beaver <cellog@php.net>
* @author Chuck Burgess <ashnazg@php.net>
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link http://pear.php.net/package/PhpDocumentor
* @see phpdoc.php
* @filesource
* @todo CS cleanup - change package to PhpDocumentor
* @deprecated redirects automatically to docbuilder
* (see {@link docbuilder/index.html})
*/
?>
<html>
<head>
<title>PhpDocumentor (deprecated web interface)</title>
<META HTTP-EQUIV="Refresh" CONTENT="5; URL=docbuilder/"/>
</head>
<body>
This PhpDocumentor web interface is deprecated...
you will be redirected to the DocBuilder interface.
</body>
</html>
|