2007-05-10 21:31:10 +04:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* This file is part of Web Instant Messenger project.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2005-2007 Internet Services Ltd.
|
|
|
|
* All rights reserved. This program and the accompanying materials
|
|
|
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
|
|
* which accompanies this distribution, and is available at
|
|
|
|
* http://www.eclipse.org/legal/epl-v10.html
|
|
|
|
*
|
|
|
|
* Contributors:
|
|
|
|
* Evgeny Gryaznov - initial API and implementation
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<link rel="stylesheet" type="text/css" media="all" href="/webim/styles.css" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<link rel="shortcut icon" href="/webim/images/favicon.ico" type="image/x-icon"/>
|
|
|
|
<title>
|
|
|
|
<?php echo getstring("app.title") ?> - <?php echo getstring("install.title") ?>
|
|
|
|
</title>
|
|
|
|
|
|
|
|
<meta http-equiv="keywords" content="<?php echo getstring("page.main_layout.meta_keyword") ?>">
|
|
|
|
<meta http-equiv="description" content="<?php echo getstring("page.main_layout.meta_description") ?>">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body bgcolor="#FFFFFF" text="#000000" link="#2971C1" vlink="#2971C1" alink="#2971C1">
|
|
|
|
|
|
|
|
<table width="100%" cellpadding="2" cellspacing="0" border="0">
|
|
|
|
<tr>
|
|
|
|
<td valign="top" class="text">
|
|
|
|
|
|
|
|
<h1><?php echo getstring("install.title") ?></h1>
|
|
|
|
|
|
|
|
|
|
|
|
<?php echo getstring("install.message") ?>
|
|
|
|
<br/>
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
<a href="install.php"><?php echo getstring("install.create_db_link") ?></a>
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
<br/>
|
|
|
|
|
2007-05-15 10:38:08 +04:00
|
|
|
<a href="/webim/epl-v10.html" target="_blank"><?php echo getstring("install.license") ?></a>
|
2007-05-10 21:31:10 +04:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|