add a warning about SQLite/PostgreSQL: they are currently in "experimental"

state.

git-svn-id: http://piwigo.org/svn/trunk@6128 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
plegall 2010-05-08 20:32:36 +00:00
commit f34bce6847
3 changed files with 34 additions and 2 deletions

View file

@ -20,6 +20,10 @@ $(function() {
if ($option_selected=='sqlite' || $option_selected=='pdo-sqlite') {
$('input[name=dbhost],input[name=dbuser],input[name=dbpasswd]').parent().parent().hide();
}
if ($option_selected=='mysql') {
$('#experimentalDbEngines').hide();
}
$('#dblayer').change(function() {
$db = this;
if ($db.value=='sqlite' || $db.value=='pdo-sqlite') {
@ -27,8 +31,23 @@ $(function() {
} else {
$('input[name=dbhost],input[name=dbuser],input[name=dbpasswd]').parent().parent().show();
}
if ($db.value=='mysql') {
$('#experimentalDbEngines').hide();
}
else {
$('#experimentalDbEngines').show();
}
});
});
$(document).ready(function() {
$("a.externalLink").click(function() {
window.open($(this).attr("href"));
return false;
});
});
</script>
<style type="text/css">
@ -71,9 +90,10 @@ body {
text-transform:none;
}
.table2 {
table.table2 {
width: 100%;
margin-bottom: 1em !important;
border:0;
}
TD {
@ -101,6 +121,8 @@ TD {
background-image:url(admin/themes/default/icon/errors.png);
background-repeat:no-repeat;
}
#experimentalDbEngines TD {border:2px solid #666;background-color:#444; color:#ccc;}
</style>
{/literal}
<title>Piwigo {$RELEASE} - {'Installation'|@translate}</title>
@ -194,6 +216,12 @@ TD {
</td>
{/if}
</tr>
<tr id="experimentalDbEngines">
<td colspan="3">
{'SQLite and PostgreSQL are currently in experimental state.'|@translate}
<a href="http://piwigo.org/forum/viewtopic.php?id=15927" class="externalLink">{'Learn more'|@translate}</a>
</td>
</tr>
<tr>
<td style="width: 30%;">{'Host'|@translate}</td>
<td align=center><input type="text" name="dbhost" value="{$F_DB_HOST}"></td>