Skip to content

Commit

Permalink
Some cleanups just to make these pages look acceptable
Browse files Browse the repository at this point in the history
  • Loading branch information
moodler committed Feb 9, 2005
1 parent 2d47c85 commit f0fd343
Show file tree
Hide file tree
Showing 9 changed files with 113 additions and 95 deletions.
21 changes: 11 additions & 10 deletions auth/db/config.html
Expand Up @@ -27,7 +27,7 @@
$config->auth_dbpasstype = "plaintext";
}
?>
<tr valign="top" bgcolor="<?php echo $THEME->cellheading2 ?>">
<tr valign="top" class="required">
<td align="right">auth_dbhost:</td>
<td>
<input name="auth_dbhost" type="text" size="30" value="<?php echo $config->auth_dbhost?>" />
Expand All @@ -38,7 +38,7 @@
</td>
</tr>

<tr valign="top" bgcolor="<?php echo $THEME->cellheading2 ?>">
<tr valign="top" class="required">
<td align="right">auth_dbtype:</td>
<td>
<?php $dbtypes = array("access","ado_access", "ado", "ado_mssql", "borland_ibase", "csv", "db2", "fbsql", "firebird", "ibase", "informix72", "informix", "mssql", "mysql", "mysqlt", "oci805", "oci8", "oci8po", "odbc", "odbc_mssql", "odbc_oracle", "oracle", "postgres64", "postgres7", "postgres", "proxy", "sqlanywhere", "sybase", "vfp");
Expand All @@ -54,7 +54,7 @@
</td>
</tr>

<tr valign="top" bgcolor="<?php echo $THEME->cellheading2 ?>">
<tr valign="top" class="required">
<td align="right">auth_dbname:</td>
<td>
<input name="auth_dbname" type="text" size="30" value="<?php echo $config->auth_dbname?>" />
Expand All @@ -65,7 +65,7 @@
</td>
</tr>

<tr valign="top" bgcolor="<?php echo $THEME->cellheading2 ?>">
<tr valign="top" class="required">
<td align="right">auth_dbuser:</td>
<td>
<input name="auth_dbuser" type="text" size="30" value="<?php echo $config->auth_dbuser?>" />
Expand All @@ -76,7 +76,7 @@
</td>
</tr>

<tr valign="top" bgcolor="<?php echo $THEME->cellheading2 ?>">
<tr valign="top" class="required">
<td align="right">auth_dbpass:</td>
<td>
<input name="auth_dbpass" type="text" size="30" value="<?php echo $config->auth_dbpass?>" />
Expand All @@ -87,7 +87,7 @@
</td>
</tr>

<tr valign="top" bgcolor="<?php echo $THEME->cellheading2 ?>">
<tr valign="top" class="required">
<td align="right">auth_dbtable:</td>
<td>
<input name="auth_dbtable" type="text" size="30" value="<?php echo $config->auth_dbtable?>" />
Expand All @@ -98,7 +98,7 @@
</td>
</tr>

<tr valign="top" bgcolor="<?php echo $THEME->cellheading2 ?>">
<tr valign="top" class="required">
<td align="right">auth_dbfielduser:</td>
<td>
<input name="auth_dbfielduser" type="text" size="30" value="<?php echo $config->auth_dbfielduser?>" />
Expand All @@ -109,7 +109,7 @@
</td>
</tr>

<tr valign="top" bgcolor="<?php echo $THEME->cellheading2 ?>">
<tr valign="top" class="required">
<td align="right">auth_dbfieldpass:</td>
<td>
<input name="auth_dbfieldpass" type="text" size="30" value="<?php echo $config->auth_dbfieldpass?>" />
Expand All @@ -120,10 +120,11 @@
</td>
</tr>

<tr valign="top" bgcolor="<?php echo $THEME->cellheading2 ?>">
<tr valign="top" class="required">
<td align="right">auth_dbpasstype:</td>
<td>
<?php $passtype["plaintext"] = get_string("plaintext", "auth");
<?php
$passtype["plaintext"] = get_string("plaintext", "auth");
$passtype["md5"] = get_string("md5", "auth");
choose_from_menu($passtype, "auth_dbpasstype", $config->auth_dbpasstype, "");
?>
Expand Down
1 change: 1 addition & 0 deletions auth/email/config.html
@@ -1 +1,2 @@
<!-- No config needed -->
<div align="center"><?php print_string('none'); ?></div>
10 changes: 5 additions & 5 deletions auth/fc/config.html
Expand Up @@ -34,7 +34,7 @@



<tr valign="top" bgcolor="<?php echo $THEME->cellheading2 ?>">
<tr valign="top" class="required">

<td align="right">auth_fchost:</td>

Expand All @@ -56,7 +56,7 @@



<tr valign="top" bgcolor="<?php echo $THEME->cellheading2 ?>">
<tr valign="top" class="required">

<td align="right">auth_fcfppport:</td>

Expand All @@ -78,7 +78,7 @@



<tr valign="top" bgcolor="<?php echo $THEME->cellheading2 ?>">
<tr valign="top" class="required">

<td align="right">auth_fcuserid:</td>

Expand All @@ -100,7 +100,7 @@



<tr valign="top" bgcolor="<?php echo $THEME->cellheading2 ?>">
<tr valign="top" class="required">

<td align="right">auth_fcpasswd:</td>

Expand All @@ -122,7 +122,7 @@



<tr valign="top" bgcolor="<?php echo $THEME->cellheading2 ?>">
<tr valign="top" class="required">

<td align="right">auth_fccreators:</td>

Expand Down
6 changes: 3 additions & 3 deletions auth/imap/config.html
Expand Up @@ -9,7 +9,7 @@
$config->auth_imapport = "143";
}
?>
<tr valign="top" bgcolor="<?php echo $THEME->cellheading2 ?>">
<tr valign="top" class="required">
<td align="right">auth_imaphost:</td>
<td>
<input name="auth_imaphost" type="text" size="30" value="<?php echo $config->auth_imaphost?>" />
Expand All @@ -21,7 +21,7 @@
</td>
</tr>

<tr valign="top" bgcolor="<?php echo $THEME->cellheading2 ?>">
<tr valign="top" class="required">
<td align="right">auth_imaptype:</td>
<td>
<?php $imaptypes = array("imap","imapssl", "imapcert", "imaptls");
Expand All @@ -36,7 +36,7 @@
</td>
</tr>

<tr valign="top" bgcolor="<?php echo $THEME->cellheading2 ?>">
<tr valign="top" class="required">
<td align="right">auth_imapport:</td>
<td>
<input name="auth_imapport" type="text" size="6" value="<?php echo $config->auth_imapport?>" />
Expand Down

0 comments on commit f0fd343

Please sign in to comment.