|
Revision 902, 1.0 KB
(checked in by moo, 12 months ago)
|
|
improve config handling
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | include("./common.php"); |
|---|
| 3 | ?> |
|---|
| 4 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
|---|
| 5 | <html xmlns="http://www.w3.org/1999/xhtml"> |
|---|
| 6 | <head> |
|---|
| 7 | <?php |
|---|
| 8 | echo <<<HEAD |
|---|
| 9 | <meta http-equiv="Content-Type" content="text/html; charset=$config[charset]" /> |
|---|
| 10 | <meta http-equiv="Content-Language" content="$config[lang]" /> |
|---|
| 11 | <script type="text/javascript" src="tablesort.js" charset="$config[charset]"></script> |
|---|
| 12 | HEAD; |
|---|
| 13 | ?> |
|---|
| 14 | |
|---|
| 15 | <link rel="stylesheet" type="text/css" href="xcache.css" /> |
|---|
| 16 | <title><?php echo _T('XCache Administration Help'); ?></title> |
|---|
| 17 | <script> |
|---|
| 18 | function toggle(o) |
|---|
| 19 | { |
|---|
| 20 | o.style.display = o.style.display != 'block' ? 'block' : 'none'; |
|---|
| 21 | } |
|---|
| 22 | </script> |
|---|
| 23 | </head> |
|---|
| 24 | |
|---|
| 25 | <body> |
|---|
| 26 | <h1><?php echo _T('XCache Administration Help'); ?></h1> |
|---|
| 27 | <div id1="help"> |
|---|
| 28 | <?php include(get_language_file("help")); ?> |
|---|
| 29 | </div> |
|---|
| 30 | |
|---|
| 31 | <?php echo _T('See also'); ?>: <a href="http://xcache.lighttpd.net/wiki/PhpIni">setting php.ini for XCache</a> in the <a href="http://xcache.lighttpd.net/">XCache wiki</a> |
|---|
| 32 | </body> |
|---|
| 33 | </html> |
|---|