git-svn-id: http://xe-core.googlecode.com/svn/trunk@1079 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-04-10 08:49:56 +00:00
parent 2a13d510fb
commit 0e53c321df
12 changed files with 140 additions and 61 deletions

View file

@ -1,12 +1,6 @@
<!--#include("header.html")-->
<table border="1">
<tr>
<td colspan="2">{$lang->introduce_title}</td>
</tr>
</table>
<table border="1">
<table border="1" width="100%">
<tr>
<td colspan="2">{$lang->install_condition_title}</td>
</tr>
@ -34,6 +28,6 @@
<!--@else-->
{$lang->cmd_install_fix_checklist}
[<a href="./">{$lang->cmd_next}</a>]
[<a href="{getUrl('','act',$act)}">{$lang->cmd_next}</a>]
<!--@end-->

View file

@ -24,7 +24,7 @@
<tr>
<td>{$lang->db_password}</td>
<td>
<input type="password" name="db_password" value="1234" />
<input type="password" name="db_password" value="dev" />
</td>
</tr>
<tr>

View file

@ -24,7 +24,7 @@
<tr>
<td>{$lang->db_password}</td>
<td>
<input type="password" name="db_password" value="1234" />
<input type="password" name="db_password" value="dev" />
</td>
</tr>
<tr>

View file

@ -6,20 +6,24 @@
<!--@if($install_enable)-->
<form method="get" action="./">
<input type="hidden" name="module" value="{$module}" />
<input type="hidden" name="act" value="dispInstallForm" />
<table border="1">
<tr>
<td>{$lang->db_type}</td>
<td>
<select name="db_type">
<!--@foreach(DB::getSupportedList() as $_key => $_db_name)-->
<option value="{$_db_name}">{$_db_name}</option>
<!--@end-->
</select>
</td>
<td><input type="submit" value="{$lang->cmd_install_next}" /></td>
</tr>
</table>
<th colspan="2">{$lang->db_type}</th>
</tr>
<!--@foreach(DB::getSupportedList() as $key => $val)-->
<tr>
<td><input type="radio" name="db_type" value="{$val}" id="db_type_{$val}" <!--@if($val=="mysql")-->checked="true"<!--@end-->/><label for="db_type_{$val}">{$val}</label></td>
<td>{$lang->db_desc[$val]}</td>
</tr>
<!--@end-->
<tr>
<td colspan="2"><input type="submit" value="{$lang->cmd_install_next}" /></td>
</tr>
</table>
</form>
<!--@else-->