blob: ec524610f8c4fb0b5fb9467a27f53866c77d1d0e (
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
45
46
47
|
{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="form-group">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="form-group">
<div class="formlabel">
<label for="{$package}">{biticon ipackage=$package iname="pkg_$package" iexplain=$item.name}</label>
</div>
{forminput class="checkbox"}
<input type="checkbox" name="PACKAGE[]" value="{$package}" id="{$package}" checked="checked" /> {$item.name}
{formhelp note=$item.info}
{formhelp note="<strong>Location</strong>: `$item.url`"}
{formhelp package=$package}
{/forminput}
</div>
{/if}
{/if}
{/foreach}
{/legend}
<div class="form-group">
{forminput label="checkbox"}
<input type="checkbox" name="debug" id="debug" value="true" /> Debug mode
{formhelp note="Display SQL statements."}
{/forminput}
</div>
<div class="form-group">
{forminput}
Please press this button only once<br />
{/forminput}
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" class="btn btn-default" name="fSubmitDbCreate" value="Install Packages" />
</div>
{/form}
{/strip}
|