| 1 |
lars |
1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
|
2 |
<?php
|
|
|
3 |
/**
|
|
|
4 |
* phpDocumentor :: docBuilder Web Interface
|
|
|
5 |
*
|
|
|
6 |
* Advanced Web Interface to phpDocumentor
|
|
|
7 |
*
|
|
|
8 |
* PHP versions 4 and 5
|
|
|
9 |
*
|
|
|
10 |
* Copyright (c) 2003-2006 Andrew Eddie, Greg Beaver
|
|
|
11 |
*
|
|
|
12 |
* LICENSE:
|
|
|
13 |
*
|
|
|
14 |
* This library is free software; you can redistribute it
|
|
|
15 |
* and/or modify it under the terms of the GNU Lesser General
|
|
|
16 |
* Public License as published by the Free Software Foundation;
|
|
|
17 |
* either version 2.1 of the License, or (at your option) any
|
|
|
18 |
* later version.
|
|
|
19 |
*
|
|
|
20 |
* This library is distributed in the hope that it will be useful,
|
|
|
21 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
22 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
23 |
* Lesser General Public License for more details.
|
|
|
24 |
*
|
|
|
25 |
* You should have received a copy of the GNU Lesser General Public
|
|
|
26 |
* License along with this library; if not, write to the Free Software
|
|
|
27 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
28 |
*
|
|
|
29 |
* @package phpDocumentor
|
|
|
30 |
* @author Andrew Eddie
|
|
|
31 |
* @author Greg Beaver <cellog@php.net>
|
|
|
32 |
* @copyright 2003-2006 Andrew Eddie, Greg Beaver
|
|
|
33 |
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
|
|
34 |
* @version CVS: $Id: top.php 212211 2006-04-30 22:18:14Z cellog $
|
|
|
35 |
* @filesource
|
|
|
36 |
* @see phpdoc.php
|
|
|
37 |
*/
|
|
|
38 |
if ('/usr/share/php/data' != '@'.'DATA-DIR@')
|
|
|
39 |
{
|
|
|
40 |
include_once( "PhpDocumentor/phpDocumentor/common.inc.php");
|
|
|
41 |
} else {
|
|
|
42 |
$path = dirname(dirname(__FILE__));
|
|
|
43 |
include_once( "$path/phpDocumentor/common.inc.php");
|
|
|
44 |
}
|
|
|
45 |
//
|
|
|
46 |
// +------------------------------------------------------------------------+
|
|
|
47 |
// | phpDocumentor :: docBuilder Web Interface |
|
|
|
48 |
// +------------------------------------------------------------------------+
|
|
|
49 |
// | Copyright (c) 2003 Andrew Eddie, Greg Beaver |
|
|
|
50 |
// +------------------------------------------------------------------------+
|
|
|
51 |
// | This source file is subject to version 3.00 of the PHP License, |
|
|
|
52 |
// | that is available at http://www.php.net/license/3_0.txt. |
|
|
|
53 |
// | If you did not receive a copy of the PHP license and are unable to |
|
|
|
54 |
// | obtain it through the world-wide-web, please send a note to |
|
|
|
55 |
// | license@php.net so we can mail you a copy immediately. |
|
|
|
56 |
// +------------------------------------------------------------------------+
|
|
|
57 |
//
|
|
|
58 |
?>
|
|
|
59 |
<html>
|
|
|
60 |
<head>
|
|
|
61 |
<title>
|
|
|
62 |
Form to submit to phpDocumentor v<?php print PHPDOCUMENTOR_VER; ?>
|
|
|
63 |
</title>
|
|
|
64 |
<style type="text/css">
|
|
|
65 |
body, td, th {
|
|
|
66 |
font-family: verdana,sans-serif;
|
|
|
67 |
font-size: 10pt;
|
|
|
68 |
}
|
|
|
69 |
.title {
|
|
|
70 |
font-size: 12pt;
|
|
|
71 |
}
|
|
|
72 |
</style>
|
|
|
73 |
</head>
|
|
|
74 |
|
|
|
75 |
<body bgcolor="#0099cc" topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">
|
|
|
76 |
|
|
|
77 |
<table width="100%" cellspacing="0" cellpadding="0">
|
|
|
78 |
<tr>
|
|
|
79 |
<td bgcolor="#0099cc" height="35" width="100" nowrap="nowrap">
|
|
|
80 |
<img src="../poweredbyphpdoc.gif" alt="" width="88" height="31" border="0" alt="" />
|
|
|
81 |
</td>
|
|
|
82 |
<td bgcolor="#0099cc" width="100%">
|
|
|
83 |
<span class="title"><strong>docBuilder</strong> :: phpDocumentor v<?php print PHPDOCUMENTOR_VER; ?> Web Interface</span>
|
|
|
84 |
</td>
|
|
|
85 |
</tr>
|
|
|
86 |
</table>
|
|
|
87 |
|
|
|
88 |
</body>
|
|
|
89 |
</html>
|