Show database only in advanced

This commit is contained in:
Marvin Thomas Rabe 2011-10-03 13:32:16 +02:00
parent a2bcbec791
commit 481a37fcf3
4 changed files with 12 additions and 11 deletions

View File

@ -67,7 +67,6 @@ input[type="submit"].highlight{ background:#ffc100; border:1px solid #db0; text-
#body-login p.info a { font-weight:bold; color:#777; } #body-login p.info a { font-weight:bold; color:#777; }
#login { min-height:30em; margin:2em auto 0; border-bottom:1px solid #f8f8f8; background:#eee; } #login { min-height:30em; margin:2em auto 0; border-bottom:1px solid #f8f8f8; background:#eee; }
#login a#showAdvanced { color: #555; }
#login form { width:22em; margin:2em auto 2em; padding:0; } #login form { width:22em; margin:2em auto 2em; padding:0; }
#login form fieldset { background:0; border:0; margin-bottom:2em; padding:0; } #login form fieldset { background:0; border:0; margin-bottom:2em; padding:0; }
#login form fieldset legend { font-weight:bold; } #login form fieldset legend { font-weight:bold; }

View File

@ -1,6 +1,7 @@
$(document).ready(function() { $(document).ready(function() {
$('#selectDbType').buttonset(); $('#selectDbType').buttonset();
$('#datadirContent').hide(250); $('#datadirContent').hide(250);
$('#databaseField').hide(250);
if($('#hasSQLite').val()=='true'){ if($('#hasSQLite').val()=='true'){
$('#use_other_db').hide(); $('#use_other_db').hide();
$('#dbhost').hide(); $('#dbhost').hide();
@ -29,6 +30,7 @@ $(document).ready(function() {
$('#showAdvanced').click(function() { $('#showAdvanced').click(function() {
$('#datadirContent').slideToggle(250); $('#datadirContent').slideToggle(250);
$('#databaseField').slideToggle(250);
}); });
$("form").submit(function(){ $("form").submit(function(){
// Save form parameters // Save form parameters

View File

@ -22,6 +22,13 @@
<input type="password" name="adminpass" id="adminpass" value="<?php print OC_Helper::init_var('adminpass'); ?>" placeholder="<?php echo $l->t( 'Password' ); ?>" required /> <input type="password" name="adminpass" id="adminpass" value="<?php print OC_Helper::init_var('adminpass'); ?>" placeholder="<?php echo $l->t( 'Password' ); ?>" required />
</fieldset> </fieldset>
<fieldset id="datadirField">
<legend><a id="showAdvanced"><?php echo $l->t( 'Advanced' ); ?> ▾</a></legend>
<div id="datadirContent">
<input type="text" name="directory" id="directory" value="<?php print OC_Helper::init_var('directory', $_['directory']); ?>" placeholder="<?php echo $l->t( 'Data folder' ); ?>" />
</div>
</fieldset>
<fieldset id='databaseField'> <fieldset id='databaseField'>
<?php if($_['hasMySQL'] or $_['hasPostgreSQL']) $hasOtherDB = true; //other than SQLite ?> <?php if($_['hasMySQL'] or $_['hasPostgreSQL']) $hasOtherDB = true; //other than SQLite ?>
<legend><?php echo $l->t( 'Configure the database' ); ?></legend> <legend><?php echo $l->t( 'Configure the database' ); ?></legend>
@ -66,15 +73,8 @@
<input type="text" name="dbname" id="dbname" value="<?php print OC_Helper::init_var('dbname'); ?>" placeholder="<?php echo $l->t( 'Database name' ); ?>" autocomplete="off" /> <input type="text" name="dbname" id="dbname" value="<?php print OC_Helper::init_var('dbname'); ?>" placeholder="<?php echo $l->t( 'Database name' ); ?>" autocomplete="off" />
</div> </div>
<?php endif; ?> <?php endif; ?>
</fieldset>
<fieldset id="datadirField">
<legend><a id="showAdvanced"><?php echo $l->t( 'Advanced' ); ?> ▾</a></legend>
<div id="datadirContent">
<input type="text" name="dbhost" id="dbhost" value="<?php print OC_Helper::init_var('dbhost', 'localhost'); ?>" placeholder="<?php echo $l->t( 'Database host' ); ?>" /> <input type="text" name="dbhost" id="dbhost" value="<?php print OC_Helper::init_var('dbhost', 'localhost'); ?>" placeholder="<?php echo $l->t( 'Database host' ); ?>" />
<input type="text" name="directory" id="directory" value="<?php print OC_Helper::init_var('directory', $_['directory']); ?>" placeholder="<?php echo $l->t( 'Data folder' ); ?>" />
</div>
</fieldset> </fieldset>
<div class="buttons"><input type="submit" value="<?php echo $l->t( 'Finish setup' ); ?>" /></div> <div class="buttons"><input type="submit" value="<?php echo $l->t( 'Finish setup' ); ?>" /></div>

View File

@ -28,7 +28,7 @@ require_once('lib/base.php');
// Setup required : // Setup required :
$not_installed = !OC_Config::getValue('installed', false); $not_installed = !OC_Config::getValue('installed', false);
$install_called = (isset($_POST['install']) AND $_POST['install']=='true'); $install_called = (isset($_POST['install']) AND $_POST['install']=='true');
if($not_installed) { if($not_installed OR true) {
OC_Util::addScript('setup'); OC_Util::addScript('setup');
require_once('setup.php'); require_once('setup.php');
exit(); exit();