aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/style/install_convert.html
diff options
context:
space:
mode:
authorGraham Eames <grahamje@users.sourceforge.net>2006-05-28 15:11:19 +0000
committerGraham Eames <grahamje@users.sourceforge.net>2006-05-28 15:11:19 +0000
commit1526ae1fc8c3b750df511fd286fc7d3166e6e9b3 (patch)
treeeef7c488728f35d2e283a8caead39b73aaf90b19 /phpBB/adm/style/install_convert.html
parenta50e901f291274c22208a2891271bb50f2aa4ab1 (diff)
downloadforums-1526ae1fc8c3b750df511fd286fc7d3166e6e9b3.tar
forums-1526ae1fc8c3b750df511fd286fc7d3166e6e9b3.tar.gz
forums-1526ae1fc8c3b750df511fd286fc7d3166e6e9b3.tar.bz2
forums-1526ae1fc8c3b750df511fd286fc7d3166e6e9b3.tar.xz
forums-1526ae1fc8c3b750df511fd286fc7d3166e6e9b3.zip
The template for the convertor/upgrade script so that we've got all the template files in
You'll have to wait for the code that goes with it :) git-svn-id: file:///svn/phpbb/trunk@5976 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/style/install_convert.html')
-rwxr-xr-xphpBB/adm/style/install_convert.html100
1 files changed, 100 insertions, 0 deletions
diff --git a/phpBB/adm/style/install_convert.html b/phpBB/adm/style/install_convert.html
new file mode 100755
index 0000000000..7755cf957e
--- /dev/null
+++ b/phpBB/adm/style/install_convert.html
@@ -0,0 +1,100 @@
+<!-- INCLUDE install_header.html -->
+
+<form id="install_convert" method="post" action="{U_ACTION}">
+
+<h2>{TITLE}</h2>
+{BODY}
+
+<!-- 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 --> \ No newline at end of file