aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/style/install_convert.html
blob: 0e3da86ae5feaecf48b955af2eec1c765ed451c6 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!-- INCLUDE install_header.html -->

<form id="install_convert" method="post" action="{U_ACTION}">

<h2>{TITLE}</h2>
<p>{BODY}</p>

<!-- IF S_LIST -->
	<table cellspacing="1">
		<caption>{L_AVAILABLE_CONVERTORS}</caption>
		<col class="col1" /><col class="col2" /><col class="col1" /><col class="col2" />
	<thead>
	<tr>
		<th>{L_SOFTWARE}</th>
		<th>{L_VERSION}</th>
		<th>{L_AUTHOR}</th>
		<th>{L_OPTIONS}</th>
	</tr>
	</thead>
	<tbody>
	<!-- IF .convertors -->
		<!-- BEGIN convertors -->
		<tr>
			<td>{convertors.SOFTWARE}</td>
			<td>{convertors.VERSION}</td>
			<td>{convertors.AUTHOR}</td>
			<td><a href="{convertors.U_CONVERT}">{L_CONVERT}</a></td>
		</tr>
		<!-- END convertors -->
	<!-- ELSE -->
		<tr>
			<td>{L_NO_CONVERTORS}</td>
			<td>-</td>
			<td>-</td>
			<td>-</td>
		</tr>
	<!-- ENDIF -->
	</tbody>
	</table>
<!-- ENDIF -->

<!-- IF .checks -->
	<fieldset>

	<!-- BEGIN checks -->
		<!-- IF checks.S_LEGEND -->
			<!-- IF not checks.S_FIRST_ROW -->
			</fieldset>

			<fieldset>
			<!-- ENDIF -->
				<legend>{checks.LEGEND}</legend>
				<!-- IF checks.LEGEND_EXPLAIN --><p>{checks.LEGEND_EXPLAIN}</p><!-- ENDIF -->
		<!-- ELSE -->

			<dl>
				<dt>{checks.TITLE}:</label><!-- IF checks.S_EXPLAIN --><br /><span class="explain">{checks.TITLE_EXPLAIN}</span><!-- ENDIF --></dt>
				<dd>{checks.RESULT}</dd>
			</dl>
		<!-- ENDIF -->
	<!-- END checks -->

	</fieldset>
<!-- ENDIF -->

<!-- IF .options -->
	<fieldset>

	<!-- BEGIN options -->
		<!-- IF options.S_LEGEND -->
			<!-- IF not options.S_FIRST_ROW -->
				</fieldset>
		
				<fieldset>
			<!-- ENDIF -->
				<legend>{options.LEGEND}</legend>
		<!-- ELSE -->

			<dl>
				<dt><label for="{options.KEY}">{options.TITLE}:</label><!-- IF options.S_EXPLAIN --><br /><span class="explain">{options.TITLE_EXPLAIN}</span><!-- ENDIF --></dt>
				<dd>{options.CONTENT}</dd>
			</dl>

		<!-- ENDIF -->
	<!-- END options -->

	</fieldset>
<!-- ENDIF -->

<!-- IF L_SUBMIT -->
	<fieldset class="submit-buttons">
		<!-- IF L_MESSAGE --><p>{L_MESSAGE}</p><!-- ENDIF -->
		{S_HIDDEN}
		<!-- IF L_SUBMIT --><input class="button1" type="submit" id="submit" name="submit" value="{L_SUBMIT}" /><!-- ENDIF -->
	</fieldset>
<!-- ENDIF -->

</form>

<!-- INCLUDE install_footer.html -->