- bug# 1348089 SQL and actions bellow should be same width
- removed nowrap, vertical srcolling is really annoying
This commit is contained in:
@@ -9,9 +9,12 @@ $Source$
|
|||||||
* db_details_structure.php: Read InnoDB exact count before rendering icons
|
* db_details_structure.php: Read InnoDB exact count before rendering icons
|
||||||
for truncating (bug #1337744).
|
for truncating (bug #1337744).
|
||||||
|
|
||||||
2005-11-03 Sebastian Mendel <cybot_tm@users.sourceforge.net>
|
2005-11-04 Sebastian Mendel <cybot_tm@users.sourceforge.net>
|
||||||
* db_details_structure.php:
|
* db_details_structure.php:
|
||||||
fixed display of stats for InnoDB and information_schema
|
fixed display of stats for InnoDB and information_schema
|
||||||
|
* main.php:
|
||||||
|
- bug# 1348089 SQL and actions bellow should be same width
|
||||||
|
- removed nowrap, vertical srcolling is really annoying
|
||||||
|
|
||||||
2005-11-03 Marc Delisle <lem9@users.sourceforge.net>
|
2005-11-03 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* tbl_change.php, tbl_replace.php, tbl_replace_fields.php:
|
* tbl_change.php, tbl_replace.php, tbl_replace_fields.php:
|
||||||
|
53
main.php
53
main.php
@@ -10,7 +10,6 @@ define('PMA_DISPLAY_HEADING', 0);
|
|||||||
/**
|
/**
|
||||||
* Gets some core libraries and displays a top message if required
|
* Gets some core libraries and displays a top message if required
|
||||||
*/
|
*/
|
||||||
require_once('./libraries/grab_globals.lib.php');
|
|
||||||
require_once('./libraries/common.lib.php');
|
require_once('./libraries/common.lib.php');
|
||||||
setcookie('pma_lang', $lang, time() + 60*60*24*30, $cookie_path, '', $is_https);
|
setcookie('pma_lang', $lang, time() + 60*60*24*30, $cookie_path, '', $is_https);
|
||||||
if (isset($convcharset)) {
|
if (isset($convcharset)) {
|
||||||
@@ -94,13 +93,15 @@ if ( $server > 0 ) {
|
|||||||
|
|
||||||
echo ' <p><strong>' . $full_string . '</strong></p>' . "\n";
|
echo ' <p><strong>' . $full_string . '</strong></p>' . "\n";
|
||||||
} // end if $server > 0
|
} // end if $server > 0
|
||||||
|
?>
|
||||||
|
<hr class="clearfloat" />
|
||||||
|
|
||||||
|
<?php
|
||||||
// Any message to display?
|
// Any message to display?
|
||||||
|
|
||||||
if (isset($message)) {
|
if ( ! empty( $message ) ) {
|
||||||
PMA_showMessage($message);
|
PMA_showMessage($message);
|
||||||
unset($message);
|
unset( $message );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -121,10 +122,7 @@ if (($server > 0) && isset($mode) && ($mode == 'reload')) {
|
|||||||
unset($sql_query);
|
unset($sql_query);
|
||||||
unset($message);
|
unset($message);
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
<hr class="clearfloat" />
|
|
||||||
|
|
||||||
<?php
|
|
||||||
/**
|
/**
|
||||||
* Displays the MySQL servers choice form
|
* Displays the MySQL servers choice form
|
||||||
*/
|
*/
|
||||||
@@ -165,14 +163,12 @@ if ($server > 0) {
|
|||||||
|| $cfg['Server']['auth_type'] != 'config') {
|
|| $cfg['Server']['auth_type'] != 'config') {
|
||||||
?>
|
?>
|
||||||
<table cellpadding="3" cellspacing="0">
|
<table cellpadding="3" cellspacing="0">
|
||||||
<tr><th class="tblHeaders" colspan="2" xml:lang="en" dir="ltr">
|
<tr><th class="tblHeaders" colspan="2" xml:lang="en" dir="ltr">MySQL</th></tr>
|
||||||
MySQL</th>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
<tr>
|
||||||
<?php
|
<?php
|
||||||
echo $str_iconic_list != '' ? sprintf($str_iconic_list,'','b_newdb.png',$strCreateNewDatabase,'') : $str_normal_list;
|
echo $str_iconic_list != '' ? sprintf($str_iconic_list,'','b_newdb.png',$strCreateNewDatabase,'') : $str_normal_list;
|
||||||
?>
|
?>
|
||||||
<td valign="top" nowrap="nowrap">
|
<td valign="top">
|
||||||
<?php require('./libraries/display_create_database.lib.php'); ?>
|
<?php require('./libraries/display_create_database.lib.php'); ?>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@@ -322,7 +318,8 @@ if ($server > 0) {
|
|||||||
<?php
|
<?php
|
||||||
echo ($str_iconic_list != '' ? sprintf($str_iconic_list,'<a href="index.php?'.$common_url_query.'&old_usr='.urlencode($PHP_AUTH_USER).'">','s_loggoff.png',$strLogout,'</a>') : $str_normal_list);
|
echo ($str_iconic_list != '' ? sprintf($str_iconic_list,'<a href="index.php?'.$common_url_query.'&old_usr='.urlencode($PHP_AUTH_USER).'">','s_loggoff.png',$strLogout,'</a>') : $str_normal_list);
|
||||||
?>
|
?>
|
||||||
<td><a href="index.php?<?php echo $common_url_query; ?>&old_usr=<?php echo urlencode($PHP_AUTH_USER); ?>" target="_parent">
|
<td><a href="index.php?<?php echo $common_url_query; ?>&old_usr=<?php echo urlencode($PHP_AUTH_USER); ?>"
|
||||||
|
target="_parent">
|
||||||
<b><?php echo $strLogout; ?></b></a>
|
<b><?php echo $strLogout; ?></b></a>
|
||||||
<?php echo $http_logout; ?>
|
<?php echo $http_logout; ?>
|
||||||
</td>
|
</td>
|
||||||
@@ -347,8 +344,7 @@ if (empty($cfg['Lang'])) {
|
|||||||
<tr><?php
|
<tr><?php
|
||||||
echo ($str_iconic_list !='' ? sprintf($str_iconic_list,'<a href="./translators.html" target="documentation">','s_lang.png','Language','</a>') : $str_normal_list);
|
echo ($str_iconic_list !='' ? sprintf($str_iconic_list,'<a href="./translators.html" target="documentation">','s_lang.png','Language','</a>') : $str_normal_list);
|
||||||
?>
|
?>
|
||||||
<td nowrap="nowrap">
|
<td><form method="post" action="index.php" target="_parent">
|
||||||
<form method="post" action="index.php" target="_parent">
|
|
||||||
<bdo xml:lang="en" dir="ltr">
|
<bdo xml:lang="en" dir="ltr">
|
||||||
<input type="hidden" name="convcharset" value="<?php echo $convcharset; ?>" />
|
<input type="hidden" name="convcharset" value="<?php echo $convcharset; ?>" />
|
||||||
<input type="hidden" name="server" value="<?php echo $server; ?>" />
|
<input type="hidden" name="server" value="<?php echo $server; ?>" />
|
||||||
@@ -397,12 +393,12 @@ if ( isset($cfg['AllowAnywhereRecoding']) && $cfg['AllowAnywhereRecoding']
|
|||||||
<tr><?php
|
<tr><?php
|
||||||
echo $str_iconic_list != '' ? sprintf($str_iconic_list,'','s_asci.png',$strMySQLCharset,'') : $str_normal_list;
|
echo $str_iconic_list != '' ? sprintf($str_iconic_list,'','s_asci.png',$strMySQLCharset,'') : $str_normal_list;
|
||||||
?>
|
?>
|
||||||
<td>
|
<td><form method="post" action="index.php" target="_parent">
|
||||||
<form method="post" action="index.php" target="_parent">
|
|
||||||
<input type="hidden" name="server" value="<?php echo $server; ?>" />
|
<input type="hidden" name="server" value="<?php echo $server; ?>" />
|
||||||
<input type="hidden" name="lang" value="<?php echo $lang; ?>" />
|
<input type="hidden" name="lang" value="<?php echo $lang; ?>" />
|
||||||
<?php echo $strMySQLCharset;?>:
|
<?php echo $strMySQLCharset;?>:
|
||||||
<select name="convcharset" xml:lang="en" dir="ltr" onchange="this.form.submit();">
|
<select name="convcharset" xml:lang="en" dir="ltr"
|
||||||
|
onchange="this.form.submit();">
|
||||||
<?php
|
<?php
|
||||||
foreach ($cfg['AvailableCharsets'] AS $id => $tmpcharset) {
|
foreach ($cfg['AvailableCharsets'] AS $id => $tmpcharset) {
|
||||||
if ($convcharset == $tmpcharset) {
|
if ($convcharset == $tmpcharset) {
|
||||||
@@ -490,8 +486,8 @@ if (isset($available_themes_choices) && $available_themes_choices > 1) {
|
|||||||
<tr><?php
|
<tr><?php
|
||||||
echo ($str_iconic_list != '' ? sprintf($str_iconic_list,'<a href="Documentation.html" target="documentation">','b_docs.png',$strPmaDocumentation,'</a>') : $str_normal_list);
|
echo ($str_iconic_list != '' ? sprintf($str_iconic_list,'<a href="Documentation.html" target="documentation">','b_docs.png',$strPmaDocumentation,'</a>') : $str_normal_list);
|
||||||
?>
|
?>
|
||||||
<td nowrap="nowrap">
|
<td><a href="Documentation.html" target="documentation">
|
||||||
<a href="Documentation.html" target="documentation"><b><?php echo $strPmaDocumentation; ?></b></a>
|
<b><?php echo $strPmaDocumentation; ?></b></a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
@@ -501,8 +497,8 @@ if ($is_superuser || $cfg['ShowPhpInfo']) {
|
|||||||
<tr><?php
|
<tr><?php
|
||||||
echo ($str_iconic_list != '' ? sprintf($str_iconic_list,'<a href="phpinfo.php?' . PMA_generate_common_url() . '" target="_blank">','php_sym.png',$strShowPHPInfo,'</a>') : $str_normal_list);
|
echo ($str_iconic_list != '' ? sprintf($str_iconic_list,'<a href="phpinfo.php?' . PMA_generate_common_url() . '" target="_blank">','php_sym.png',$strShowPHPInfo,'</a>') : $str_normal_list);
|
||||||
?>
|
?>
|
||||||
<td nowrap="nowrap">
|
<td><a href="phpinfo.php?<?php echo PMA_generate_common_url(); ?>"
|
||||||
<a href="phpinfo.php?<?php echo PMA_generate_common_url(); ?>" target="_blank"><?php echo $strShowPHPInfo; ?></a>
|
target="_blank"><?php echo $strShowPHPInfo; ?></a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php
|
<?php
|
||||||
@@ -512,16 +508,17 @@ if ($is_superuser || $cfg['ShowPhpInfo']) {
|
|||||||
<?php
|
<?php
|
||||||
echo ($str_iconic_list != '' ? sprintf($str_iconic_list,'<a href="http://www.phpMyAdmin.net/" target="_blank">','b_home.png',$strHomepageOfficial,'</a>') : $str_normal_list);
|
echo ($str_iconic_list != '' ? sprintf($str_iconic_list,'<a href="http://www.phpMyAdmin.net/" target="_blank">','b_home.png',$strHomepageOfficial,'</a>') : $str_normal_list);
|
||||||
?>
|
?>
|
||||||
<td nowrap="nowrap">
|
<td><a href="http://www.phpMyAdmin.net/" target="_blank">
|
||||||
<a href="http://www.phpMyAdmin.net/" target="_blank"><?php echo $strHomepageOfficial; ?></a>
|
<?php echo $strHomepageOfficial; ?></a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr><td></td>
|
<tr><td></td>
|
||||||
<td nowrap="nowrap">
|
<td><bdo xml:lang="en" dir="ltr">
|
||||||
<bdo xml:lang="en" dir="ltr">
|
|
||||||
[<a href="changelog.php" target="_blank">ChangeLog</a>]
|
[<a href="changelog.php" target="_blank">ChangeLog</a>]
|
||||||
[<a href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/phpmyadmin/phpMyAdmin/" target="_blank">CVS</a>]
|
[<a href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/phpmyadmin/phpMyAdmin/"
|
||||||
[<a href="http://sourceforge.net/mail/?group_id=23067" target="_blank">Lists</a>]
|
target="_blank">CVS</a>]
|
||||||
|
[<a href="http://sourceforge.net/mail/?group_id=23067"
|
||||||
|
target="_blank">Lists</a>]
|
||||||
</bdo>
|
</bdo>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
Reference in New Issue
Block a user