aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/style/acp_database.html
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-06-06 20:53:46 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-06-06 20:53:46 +0000
commitdd9ad539fdab80badedf801a816b8a0beafbbf5c (patch)
treedb8ae8a184b060d5576604cc0dfa723773daedb8 /phpBB/adm/style/acp_database.html
parent2c8afb820e3842bed2ab6cec4053e71b5c566985 (diff)
downloadforums-dd9ad539fdab80badedf801a816b8a0beafbbf5c.tar
forums-dd9ad539fdab80badedf801a816b8a0beafbbf5c.tar.gz
forums-dd9ad539fdab80badedf801a816b8a0beafbbf5c.tar.bz2
forums-dd9ad539fdab80badedf801a816b8a0beafbbf5c.tar.xz
forums-dd9ad539fdab80badedf801a816b8a0beafbbf5c.zip
ok, this one is rather large... the most important change:
re-introduce append_sid: old style continues to work, not a performance hog as it was in 2.0.x -> structure is different apart from this, code cleanage, bug fixing, etc. git-svn-id: file:///svn/phpbb/trunk@6015 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/style/acp_database.html')
-rw-r--r--phpBB/adm/style/acp_database.html82
1 files changed, 46 insertions, 36 deletions
diff --git a/phpBB/adm/style/acp_database.html b/phpBB/adm/style/acp_database.html
index 980ed4d68e..37b9557d83 100644
--- a/phpBB/adm/style/acp_database.html
+++ b/phpBB/adm/style/acp_database.html
@@ -1,51 +1,57 @@
<!-- INCLUDE overall_header.html -->
<a name="maincontent"></a>
+
<!-- IF MODE eq 'restore' -->
-<h1>{L_ACP_RESTORE}</h1>
+ <h1>{L_ACP_RESTORE}</h1>
-<p>{L_ACP_RESTORE_EXPLAIN}</p>
+ <p>{L_ACP_RESTORE_EXPLAIN}</p>
-<form id="acp_backup" method="post" action="{U_ACTION}">
-<fieldset>
- <legend>{L_RESTORE_OPTIONS}</legend>
+ <form id="acp_backup" method="post" action="{U_ACTION}">
+
+ <fieldset>
+ <legend>{L_RESTORE_OPTIONS}</legend>
<dl>
<dt><label for="user">{L_SELECT_FILE}:</label></dt>
<dd><select id="file" name="file" size="10"><!-- BEGIN files --><option value="{files.FILE}"<!-- IF files.S_LAST_ROW --> selected="selected"<!-- ENDIF -->>{files.NAME}</option><!-- END files --></select></dd>
</dl>
-</fieldset>
-<!-- IF EXISTS -->
-<fieldset class="submit-buttons">
- <input class="button1" type="submit" id="submit" name="submit" value="{L_START_RESTORE}" />&nbsp;
- <input class="button2" type="submit" id="delete" name="delete" value="{L_DELETE_BACKUP}" />&nbsp;
- <input class="button2" type="submit" id="download" name="download" value="{L_DOWNLOAD_BACKUP}" />
-</fieldset>
-<!-- ENDIF -->
-</form>
-<!-- ELSE -->
-<h1>{L_ACP_BACKUP}</h1>
+ </fieldset>
-<p>{L_ACP_BACKUP_EXPLAIN}</p>
+ <!-- IF EXISTS -->
+ <fieldset class="submit-buttons">
+ <input class="button1" type="submit" id="submit" name="submit" value="{L_START_RESTORE}" />&nbsp;
+ <input class="button2" type="submit" id="delete" name="delete" value="{L_DELETE_BACKUP}" />&nbsp;
+ <input class="button2" type="submit" id="download" name="download" value="{L_DOWNLOAD_BACKUP}" />
+ </fieldset>
+ <!-- ENDIF -->
+
+ </form>
+
+<!-- ELSE -->
+ <h1>{L_ACP_BACKUP}</h1>
-<script type="text/javascript">
-<!--
+ <p>{L_ACP_BACKUP_EXPLAIN}</p>
- function selector(bool)
- {
- var table = document.getElementById('table');
+ <script type="text/javascript">
+ <!--
- for (var i = 0; i < table.options.length; i++)
+ function selector(bool)
{
- table.options[i].selected = bool;
+ var table = document.getElementById('table');
+
+ for (var i = 0; i < table.options.length; i++)
+ {
+ table.options[i].selected = bool;
+ }
}
- }
-//-->
-</script>
+ //-->
+ </script>
+
+ <form id="acp_backup" method="post" action="{U_ACTION}">
-<form id="acp_backup" method="post" action="{U_ACTION}">
-<fieldset>
- <legend>{L_BACKUP_OPTIONS}</legend>
+ <fieldset>
+ <legend>{L_BACKUP_OPTIONS}</legend>
<dl>
<dt><label for="user">{L_BACKUP_TYPE}:</label></dt>
<dd><input type="radio" name="type" value="full" id="type" checked="checked" />&nbsp;{L_FULL_BACKUP}&nbsp;&nbsp;<input type="radio" name="type" value="structure" id="type" />&nbsp;{L_STRUCTURE_ONLY}&nbsp;&nbsp;<input type="radio" name="type" value="data" id="type" />&nbsp;{L_DATA_ONLY}</dd>
@@ -68,11 +74,15 @@
<!-- END tables -->
</select><br /><br /><div align="right"><a href="#" onclick="selector(true)">{L_SELECT_ALL}</a><br /><a href="#" onclick="selector(false)">{L_DESELECT_ALL}</a></div></dd>
</dl>
-</fieldset>
-<fieldset class="submit-buttons">
- <input class="button1" type="submit" id="submit" name="submit" value="{L_SUBMIT}" />&nbsp;
- <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
-</fieldset>
-</form>
+ </fieldset>
+
+ <fieldset class="submit-buttons">
+ <input class="button1" type="submit" id="submit" name="submit" value="{L_SUBMIT}" />&nbsp;
+ <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
+ </fieldset>
+
+ </form>
+
<!-- ENDIF -->
+
<!-- INCLUDE overall_footer.html --> \ No newline at end of file