blob: 57afb912fbfe511b408f51cf0243c62e1beb4f21 (
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
34
35
36
37
38
39
40
41
42
43
44
|
{strip}
<h1>Upgrade Clyde</h1>
<br />
{form}
{legend legend="Upgrade from Beta 1 to Beta 2"}
<input type="hidden" name="step" value="{$next_step}" />
<p class="row">To upgrade CLYDE Beta 1 to CLYDE Beta 2, you need to upgrade your languages package.<br />We know we said we wouldn't make any rash schema changes, but we thought that since languages weren't working anyway, nobody could possibly loose data. We hope that this does not cause too great of a problem and we appologise for messing with the schema.<p>
{foreach from=$schema key=package item=item}
{if $item.tables || $item.defaults}
{if $package eq 'languages'}
<div class="row">
<div class="formlabel">
<label for="{$package}">{biticon ipackage=$package iname="pkg_$package" iexplain=`$item.name`}</label>
</div>
{forminput}
<label><input type="checkbox" name="PACKAGE[]" value="{$package}" id="{$package}" checked="checked" /> {$item.name}</label>
{formhelp note=`$item.info`}
{formhelp note="<strong>Location</strong>: `$item.url`"}
{formhelp package=$package}
{/forminput}
</div>
{/if}
{/if}
{/foreach}
{/legend}
<div class="row submit">
Please press this button only once<br />
Depending on the number of packages and the hardware,<br />
this process might take up to a few minutes.<br /><br />
<input type="hidden" name="resetdb" value="{$resetdb}" />
<input type="submit" name="fSubmitDbCreate" value="Install Packages" />
</div>
<div class="row">
{forminput}
<label><input type="checkbox" name="debug" id="debug" value="true" /> Debug mode</label>
{formhelp note="Display SQL statements."}
{/forminput}
</div>
{/form}
{/strip}
|