style upgrade
This commit is contained in:
@@ -6,7 +6,7 @@ $Id$
|
|||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
2006-04-25 Sebastian Mendel <cybot_tm@users.sourceforge.net>
|
2006-04-25 Sebastian Mendel <cybot_tm@users.sourceforge.net>
|
||||||
* db_details_qbe.php:
|
* db_details_qbe.php, db_printview.php:
|
||||||
style upgrade
|
style upgrade
|
||||||
|
|
||||||
2006-04-24 Michal Čihař <michal@cihar.com>
|
2006-04-24 Michal Čihař <michal@cihar.com>
|
||||||
|
@@ -2,13 +2,13 @@
|
|||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
// vim: expandtab sw=4 ts=4 sts=4:
|
// vim: expandtab sw=4 ts=4 sts=4:
|
||||||
|
|
||||||
require_once('./libraries/common.lib.php');
|
require_once './libraries/common.lib.php';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the variables sent or posted to this script, then displays headers
|
* Gets the variables sent or posted to this script, then displays headers
|
||||||
*/
|
*/
|
||||||
$print_view = TRUE;
|
$print_view = true;
|
||||||
require_once('./libraries/header.inc.php');
|
require_once './libraries/header.inc.php';
|
||||||
|
|
||||||
|
|
||||||
PMA_checkParameters(array('db'));
|
PMA_checkParameters(array('db'));
|
||||||
@@ -21,7 +21,7 @@ $err_url = 'db_details.php?' . PMA_generate_common_url($db);
|
|||||||
/**
|
/**
|
||||||
* Settings for relations stuff
|
* Settings for relations stuff
|
||||||
*/
|
*/
|
||||||
require_once('./libraries/relation.lib.php');
|
require_once './libraries/relation.lib.php';
|
||||||
$cfgRelation = PMA_getRelationsParam();
|
$cfgRelation = PMA_getRelationsParam();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -30,14 +30,14 @@ $cfgRelation = PMA_getRelationsParam();
|
|||||||
*/
|
*/
|
||||||
// staybyte: speedup view on locked tables - 11 June 2001
|
// staybyte: speedup view on locked tables - 11 June 2001
|
||||||
// Special speedup for newer MySQL Versions (in 4.0 format changed)
|
// Special speedup for newer MySQL Versions (in 4.0 format changed)
|
||||||
if ($cfg['SkipLockedTables'] == TRUE) {
|
if ($cfg['SkipLockedTables'] == true) {
|
||||||
$result = PMA_DBI_query('SHOW OPEN TABLES FROM ' . PMA_backquote($db) . ';');
|
$result = PMA_DBI_query('SHOW OPEN TABLES FROM ' . PMA_backquote($db) . ';');
|
||||||
// Blending out tables in use
|
// Blending out tables in use
|
||||||
if ($result != FALSE && PMA_DBI_num_rows($result) > 0) {
|
if ($result != false && PMA_DBI_num_rows($result) > 0) {
|
||||||
while ($tmp = PMA_DBI_fetch_row($result)) {
|
while ($tmp = PMA_DBI_fetch_row($result)) {
|
||||||
// if in use memorize tablename
|
// if in use memorize tablename
|
||||||
if (preg_match('@in_use=[1-9]+@i', $tmp[0])) {
|
if (preg_match('@in_use=[1-9]+@i', $tmp[0])) {
|
||||||
$sot_cache[$tmp[0]] = TRUE;
|
$sot_cache[$tmp[0]] = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
PMA_DBI_free_result($result);
|
PMA_DBI_free_result($result);
|
||||||
@@ -45,7 +45,7 @@ if ($cfg['SkipLockedTables'] == TRUE) {
|
|||||||
|
|
||||||
if (isset($sot_cache)) {
|
if (isset($sot_cache)) {
|
||||||
$result = PMA_DBI_query('SHOW TABLES FROM ' . PMA_backquote($db) . ';', null, PMA_DBI_QUERY_STORE);
|
$result = PMA_DBI_query('SHOW TABLES FROM ' . PMA_backquote($db) . ';', null, PMA_DBI_QUERY_STORE);
|
||||||
if ($result != FALSE && PMA_DBI_num_rows($result) > 0) {
|
if ($result != false && PMA_DBI_num_rows($result) > 0) {
|
||||||
while ($tmp = PMA_DBI_fetch_row($result)) {
|
while ($tmp = PMA_DBI_fetch_row($result)) {
|
||||||
if (!isset($sot_cache[$tmp[0]])) {
|
if (!isset($sot_cache[$tmp[0]])) {
|
||||||
$sts_result = PMA_DBI_query('SHOW TABLE STATUS FROM ' . PMA_backquote($db) . ' LIKE \'' . addslashes($tmp[0]) . '\';');
|
$sts_result = PMA_DBI_query('SHOW TABLE STATUS FROM ' . PMA_backquote($db) . ' LIKE \'' . addslashes($tmp[0]) . '\';');
|
||||||
@@ -57,11 +57,12 @@ if ($cfg['SkipLockedTables'] == TRUE) {
|
|||||||
}
|
}
|
||||||
PMA_DBI_free_result($result);
|
PMA_DBI_free_result($result);
|
||||||
unset($result);
|
unset($result);
|
||||||
$sot_ready = TRUE;
|
$sot_ready = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isset($sot_ready)) {
|
if (!isset($sot_ready)) {
|
||||||
$result = PMA_DBI_query('SHOW TABLE STATUS FROM ' . PMA_backquote($db) . ';');
|
$result = PMA_DBI_query('SHOW TABLE STATUS FROM ' . PMA_backquote($db) . ';');
|
||||||
if (PMA_DBI_num_rows($result) > 0) {
|
if (PMA_DBI_num_rows($result) > 0) {
|
||||||
@@ -72,7 +73,7 @@ if (!isset($sot_ready)) {
|
|||||||
unset($res);
|
unset($res);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$num_tables = (isset($tables) ? count($tables) : 0);
|
$num_tables = isset($tables) ? count($tables) : 0;
|
||||||
|
|
||||||
if ($cfgRelation['commwork']) {
|
if ($cfgRelation['commwork']) {
|
||||||
$comment = PMA_getComments($db);
|
$comment = PMA_getComments($db);
|
||||||
@@ -84,7 +85,7 @@ if ($cfgRelation['commwork']) {
|
|||||||
?>
|
?>
|
||||||
<!-- DB comment -->
|
<!-- DB comment -->
|
||||||
<p><i>
|
<p><i>
|
||||||
<?php echo htmlspecialchars(implode(' ', $comment)) . "\n"; ?>
|
<?php echo htmlspecialchars(implode(' ', $comment)); ?>
|
||||||
</i></p>
|
</i></p>
|
||||||
<?php
|
<?php
|
||||||
} // end if
|
} // end if
|
||||||
@@ -104,6 +105,7 @@ else {
|
|||||||
|
|
||||||
<!-- The tables list -->
|
<!-- The tables list -->
|
||||||
<table border="<?php echo $cfg['Border']; ?>">
|
<table border="<?php echo $cfg['Border']; ?>">
|
||||||
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th> <?php echo $strTable; ?> </th>
|
<th> <?php echo $strTable; ?> </th>
|
||||||
<th><?php echo $strRecords; ?></th>
|
<th><?php echo $strRecords; ?></th>
|
||||||
@@ -112,36 +114,36 @@ else {
|
|||||||
if ($cfg['ShowStats']) {
|
if ($cfg['ShowStats']) {
|
||||||
echo '<th>' . $strSize . '</th>';
|
echo '<th>' . $strSize . '</th>';
|
||||||
}
|
}
|
||||||
echo "\n";
|
|
||||||
?>
|
?>
|
||||||
<th><?php echo $strComments; ?></th>
|
<th><?php echo $strComments; ?></th>
|
||||||
</tr>
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
$i = $sum_entries = $sum_size = 0;
|
$i = $sum_entries = $sum_size = 0;
|
||||||
foreach ($tables AS $keyname => $sts_data) {
|
$odd_row = true;
|
||||||
|
foreach ($tables as $keyname => $sts_data) {
|
||||||
$table = $sts_data['Name'];
|
$table = $sts_data['Name'];
|
||||||
$bgcolor = ($i++ % 2) ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo'];
|
|
||||||
echo "\n";
|
|
||||||
?>
|
?>
|
||||||
<tr>
|
<tr class="<?php echo $odd_row ? 'odd' : 'even'; ?>">
|
||||||
<td bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap">
|
<td nowrap="nowrap">
|
||||||
<b><?php echo htmlspecialchars($table); ?> </b>
|
<b><?php echo htmlspecialchars($table); ?> </b>
|
||||||
</td>
|
</td>
|
||||||
<?php
|
<?php
|
||||||
echo "\n";
|
$mergetable = false;
|
||||||
$mergetable = FALSE;
|
$nonisam = false;
|
||||||
$nonisam = FALSE;
|
|
||||||
if (isset($sts_data['Type'])) {
|
if (isset($sts_data['Type'])) {
|
||||||
if ($sts_data['Type'] == 'MRG_MyISAM') {
|
if ($sts_data['Type'] == 'MRG_MyISAM') {
|
||||||
$mergetable = TRUE;
|
$mergetable = true;
|
||||||
} elseif (!preg_match('@ISAM|HEAP@i', $sts_data['Type'])) {
|
} elseif (!preg_match('@ISAM|HEAP@i', $sts_data['Type'])) {
|
||||||
$nonisam = TRUE;
|
$nonisam = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($sts_data['Rows'])) {
|
if (isset($sts_data['Rows'])) {
|
||||||
if ($mergetable == FALSE) {
|
if ($mergetable == false) {
|
||||||
if ($cfg['ShowStats'] && $nonisam == FALSE) {
|
if ($cfg['ShowStats'] && $nonisam == false) {
|
||||||
$tblsize = $sts_data['Data_length'] + $sts_data['Index_length'];
|
$tblsize = $sts_data['Data_length'] + $sts_data['Index_length'];
|
||||||
$sum_size += $tblsize;
|
$sum_size += $tblsize;
|
||||||
if ($tblsize > 0) {
|
if ($tblsize > 0) {
|
||||||
@@ -156,7 +158,7 @@ else {
|
|||||||
$sum_entries += $sts_data['Rows'];
|
$sum_entries += $sts_data['Rows'];
|
||||||
}
|
}
|
||||||
// MyISAM MERGE Table
|
// MyISAM MERGE Table
|
||||||
elseif ($cfg['ShowStats'] && $mergetable == TRUE) {
|
elseif ($cfg['ShowStats'] && $mergetable == true) {
|
||||||
$formated_size = ' - ';
|
$formated_size = ' - ';
|
||||||
$unit = '';
|
$unit = '';
|
||||||
} elseif ($cfg['ShowStats']) {
|
} elseif ($cfg['ShowStats']) {
|
||||||
@@ -164,39 +166,35 @@ else {
|
|||||||
$unit = '';
|
$unit = '';
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<td align="right" bgcolor="<?php echo $bgcolor; ?>">
|
<td align="right">
|
||||||
<?php
|
<?php
|
||||||
echo "\n" . ' ';
|
if ($mergetable == true) {
|
||||||
if ($mergetable == TRUE) {
|
|
||||||
echo '<i>' . number_format($sts_data['Rows'], 0, $number_decimal_separator, $number_thousands_separator) . '</i>' . "\n";
|
echo '<i>' . number_format($sts_data['Rows'], 0, $number_decimal_separator, $number_thousands_separator) . '</i>' . "\n";
|
||||||
} else {
|
} else {
|
||||||
echo number_format($sts_data['Rows'], 0, $number_decimal_separator, $number_thousands_separator) . "\n";
|
echo number_format($sts_data['Rows'], 0, $number_decimal_separator, $number_thousands_separator) . "\n";
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</td>
|
</td>
|
||||||
<td nowrap="nowrap" bgcolor="<?php echo $bgcolor; ?>">
|
<td nowrap="nowrap">
|
||||||
<?php echo (isset($sts_data['Type']) ? $sts_data['Type'] : ' '); ?>
|
<?php echo (isset($sts_data['Type']) ? $sts_data['Type'] : ' '); ?>
|
||||||
</td>
|
</td>
|
||||||
<?php
|
<?php
|
||||||
if ($cfg['ShowStats']) {
|
if ($cfg['ShowStats']) {
|
||||||
echo "\n";
|
|
||||||
?>
|
?>
|
||||||
<td align="right" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap">
|
<td align="right" nowrap="nowrap">
|
||||||
<?php echo $formated_size . ' ' . $unit . "\n"; ?>
|
<?php echo $formated_size . ' ' . $unit . "\n"; ?>
|
||||||
</td>
|
</td>
|
||||||
<?php
|
<?php
|
||||||
echo "\n";
|
|
||||||
} // end if
|
} // end if
|
||||||
} else {
|
} else {
|
||||||
?>
|
?>
|
||||||
<td colspan="3" align="center" bgcolor="<?php echo $bgcolor; ?>">
|
<td colspan="3" align="center">
|
||||||
<?php echo $strInUse . "\n"; ?>
|
<?php echo $strInUse; ?>
|
||||||
</td>
|
</td>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
echo "\n";
|
|
||||||
?>
|
?>
|
||||||
<td bgcolor="<?php echo $bgcolor; ?>">
|
<td>
|
||||||
<?php echo $sts_data['Comment']; ?>
|
<?php echo $sts_data['Comment']; ?>
|
||||||
<?php
|
<?php
|
||||||
if (!empty($sts_data['Comment'])) {
|
if (!empty($sts_data['Comment'])) {
|
||||||
@@ -252,31 +250,29 @@ else {
|
|||||||
if ($cfg['ShowStats']) {
|
if ($cfg['ShowStats']) {
|
||||||
list($sum_formated, $unit) = PMA_formatByteDown($sum_size, 3, 1);
|
list($sum_formated, $unit) = PMA_formatByteDown($sum_size, 3, 1);
|
||||||
}
|
}
|
||||||
echo "\n";
|
|
||||||
?>
|
?>
|
||||||
<tr>
|
<tr>
|
||||||
<th align="center">
|
<th align="center">
|
||||||
<b><?php echo sprintf($strTables, number_format($num_tables, 0, $number_decimal_separator, $number_thousands_separator)); ?></b>
|
<b><?php echo sprintf($strTables, number_format($num_tables, 0, $number_decimal_separator, $number_thousands_separator)); ?></b>
|
||||||
</th>
|
</th>
|
||||||
<th align="right" nowrap="nowrap">
|
<th align="right" nowrap="nowrap">
|
||||||
<b><?php echo number_format($sum_entries, 0, $number_decimal_separator, $number_thousands_separator); ?></b>
|
<?php echo number_format($sum_entries, 0, $number_decimal_separator, $number_thousands_separator); ?>
|
||||||
</th>
|
</th>
|
||||||
<th align="center">
|
<th align="center">
|
||||||
<b>--</b>
|
--
|
||||||
</th>
|
</th>
|
||||||
<?php
|
<?php
|
||||||
if ($cfg['ShowStats']) {
|
if ($cfg['ShowStats']) {
|
||||||
echo "\n";
|
|
||||||
?>
|
?>
|
||||||
<th align="right" nowrap="nowrap">
|
<th align="right" nowrap="nowrap">
|
||||||
<b><?php echo $sum_formated . ' ' . $unit; ?></b>
|
<?php echo $sum_formated . ' ' . $unit; ?>
|
||||||
</th>
|
</th>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
echo "\n";
|
|
||||||
?>
|
?>
|
||||||
<th> </th>
|
<th> </th>
|
||||||
</tr>
|
</tr>
|
||||||
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
@@ -284,8 +280,8 @@ else {
|
|||||||
/**
|
/**
|
||||||
* Displays the footer
|
* Displays the footer
|
||||||
*/
|
*/
|
||||||
echo "\n";
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<script type="text/javascript" language="javascript">
|
<script type="text/javascript" language="javascript">
|
||||||
//<![CDATA[
|
//<![CDATA[
|
||||||
function printPage()
|
function printPage()
|
||||||
@@ -297,8 +293,11 @@ function printPage()
|
|||||||
}
|
}
|
||||||
//]]>
|
//]]>
|
||||||
</script>
|
</script>
|
||||||
<?php
|
<br /><br />
|
||||||
echo '<br /><br /> <input type="button" class="print_ignore" style="width: 100px; height: 25px" id="print" value="' . $strPrint . '" onclick="printPage()" />' . "\n";
|
|
||||||
|
|
||||||
require_once('./libraries/footer.inc.php');
|
<input type="button" class="print_ignore" style="width: 100px; height: 25px"
|
||||||
|
id="print" value="<?php echo $strPrint; ?>" onclick="printPage()" />
|
||||||
|
|
||||||
|
<?php
|
||||||
|
require_once './libraries/footer.inc.php';
|
||||||
?>
|
?>
|
||||||
|
Reference in New Issue
Block a user