XHTML 1.0 trans. compliance
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
----------------------
|
||||
----------------------
|
||||
phpMyAdmin - Changelog
|
||||
----------------------
|
||||
|
||||
@@ -23,6 +23,8 @@ $Source$
|
||||
fixed display table statistics for information_schema
|
||||
* db_details_links.php, header.inc.php:
|
||||
moved database comment into header (serverinfo) after database name
|
||||
* header.inc.php, main.php, libraries/header_meta_style.inc.php:
|
||||
XHTML 1.0 trans. compliance
|
||||
|
||||
2005-10-09 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* tbl_properties_links.php: invalid js confirmation and operation feedback
|
||||
|
@@ -146,7 +146,7 @@ if (empty($GLOBALS['is_header_sent'])) {
|
||||
}
|
||||
?>
|
||||
<body bgcolor="<?php echo $GLOBALS['cfg']['RightBgColor'] . '"' . $bkg_img; ?>>
|
||||
<div id="TooltipContainer" name="TooltipContainer" onmouseover="holdTooltip();" onmouseout="swapTooltip('default');"></div>
|
||||
<div id="TooltipContainer" onmouseover="holdTooltip();" onmouseout="swapTooltip('default');"></div>
|
||||
<?php
|
||||
include('./config.header.inc.php');
|
||||
|
||||
|
@@ -152,7 +152,7 @@ h1 {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo
|
||||
// is not responding. Work has to be done to merge all code that
|
||||
// starts the page (DOCTYPE and this div) to one place
|
||||
?>
|
||||
<div id="TooltipContainer" name="TooltipContainer" onmouseover="holdTooltip();" onmouseout="swapTooltip('default');"></div>
|
||||
<div id="TooltipContainer" onmouseover="holdTooltip();" onmouseout="swapTooltip('default');"></div>
|
||||
<?php
|
||||
|
||||
// if we display the "Server not responding" error, do not confuse users
|
||||
|
@@ -62,10 +62,7 @@ if (!empty($GLOBALS['cfg']['PmaAbsoluteUri'])) {
|
||||
}
|
||||
} // end if... else if...
|
||||
} // end if
|
||||
document.writeln('<link rel="stylesheet" type="text/css" href="<?php echo defined('PMA_PATH_TO_BASEDIR') ? PMA_PATH_TO_BASEDIR : './'; ?>css/phpmyadmin.css.php?<?php echo PMA_generate_common_url(); ?>&js_frame=<?php echo isset($print_view) ? 'print' : 'right'; ?>&js_isDOM=' + isDOM + '" />');
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<link rel="stylesheet" type="text/css" href="<?php echo defined('PMA_PATH_TO_BASEDIR') ? PMA_PATH_TO_BASEDIR : './'; ?>css/phpmyadmin.css.php?<?php echo PMA_generate_common_url(); ?>&js_frame=<?php echo isset($print_view) ? 'print' : 'right'; ?>" />
|
||||
</noscript>
|
||||
<link rel="stylesheet" type="text/css" href="<?php echo defined('PMA_PATH_TO_BASEDIR') ? PMA_PATH_TO_BASEDIR : './'; ?>css/phpmyadmin.css.php?<?php echo PMA_generate_common_url(); ?>&js_frame=<?php echo isset($print_view) ? 'print' : 'right'; ?>&js_isDOM=1" />
|
||||
<link rel="stylesheet" type="text/css" href="<?php echo defined('PMA_PATH_TO_BASEDIR') ? PMA_PATH_TO_BASEDIR : './'; ?>css/print.css?<?php echo PMA_generate_common_url(); ?>" media="print" />
|
||||
|
12
main.php
12
main.php
@@ -26,11 +26,13 @@ $item_img = $GLOBALS['pmaThemeImage'] . 'item_ltr.png';
|
||||
// Defines for MainPageIconic
|
||||
$str_iconic_list = '';
|
||||
$str_iconic_colspan = '';
|
||||
$str_normal_list = '<td valign="top" align="right" width="16"><img src="'.$item_img.'" border="0" hspace="2" vspace="5" /></td>';
|
||||
$str_normal_list = '<td valign="top" align="right" width="16">'
|
||||
.'<img src="'.$item_img.'" border="0" hspace="2" vspace="5" alt="*" /></td>';
|
||||
if ($cfg['MainPageIconic']) {
|
||||
$str_iconic_list .= "<td width=\"16\" valign=\"top\" align=\"center\" nowrap=\"nowrap\">%1\$s"
|
||||
. "<img src=\"" . $pmaThemeImage . "%2\$s\" border=\"0\" width=\"16\" height=\"16\" hspace=\"2\" alt=\"%3\$s\" />"
|
||||
. "%4\$s</td>";
|
||||
$str_iconic_list .= '<td width="16" valign="top" align="center" nowrap="nowrap">%1$s'
|
||||
.'<img src="' . $pmaThemeImage . '%2$s" border="0"'
|
||||
.' width="16" height="16" hspace="2" alt="%3$s" />'
|
||||
.'%4$s</td>';
|
||||
$str_iconic_colspan .= ' colspan="2"';
|
||||
} else {
|
||||
$str_iconic_list = '';
|
||||
@@ -580,7 +582,7 @@ echo "\n";
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
echo '<td><img src="' .$GLOBALS['pmaThemeImage'] . 'spacer.png' . '" width="1" height="1" border="0" /></td>';
|
||||
echo '<td><img src="' .$GLOBALS['pmaThemeImage'] . 'spacer.png' . '" width="1" height="1" border="0" alt="" /></td>';
|
||||
?>
|
||||
<td nowrap="nowrap">
|
||||
[<a href="changelog.php" target="_blank">ChangeLog</a>]
|
||||
|
Reference in New Issue
Block a user