RFE #7000385: Export AUTO_INCREMENT field.

Display Create/Update/Check_time in PDF-Pages, printview, DB/Table structure
and table dumps, if information is available (gathered by 'SHOW TABLE
STATUS' for MySQL 3.23.XX).
This commit is contained in:
Garvin Hicking
2003-03-13 16:46:54 +00:00
parent 7eaa1d3c64
commit 14a427263b
100 changed files with 502 additions and 18 deletions

View File

@@ -6,6 +6,11 @@ $Id$
$Source$ $Source$
2003-03-13 Garvin Hicking <me@supergarv.de> 2003-03-13 Garvin Hicking <me@supergarv.de>
* libraries/build_dump.lib.php3, db_details_structure.php3, db_printview.php3,
pdf_schema.php3, tbl_dump.php3, tbl_printview.php3, tbl_properties_structure.php3,
lang/*: RFE #7000385: Export AUTO_INCREMENT field.
Display Create/Update/Check_time in PDF-Pages, printview, DB/Table structure and table
dumps, if information is available (gathered by 'SHOW TABLE STATUS' for MySQL 3.23.XX).
* config.inc.php3 - Altered comments for PMA_* tables for easier integration and more * config.inc.php3 - Altered comments for PMA_* tables for easier integration and more
clarity. Make it easier to enable defaults (RFE #695265) clarity. Make it easier to enable defaults (RFE #695265)
2003-03-12 Garvin Hicking <me@supergarv.de> 2003-03-12 Garvin Hicking <me@supergarv.de>

View File

@@ -63,6 +63,18 @@ else if (PMA_MYSQL_INT_VERSION >= 32303) {
while ($tmp = PMA_mysql_fetch_array($result)) { while ($tmp = PMA_mysql_fetch_array($result)) {
$tooltip_truename[$tmp['Name']] = ($cfg['ShowTooltipAliasTB'] ? (!empty($tmp['Comment']) ? $tmp['Comment'] . ' ' : $tmp['Name']) : $tmp['Name']); $tooltip_truename[$tmp['Name']] = ($cfg['ShowTooltipAliasTB'] ? (!empty($tmp['Comment']) ? $tmp['Comment'] . ' ' : $tmp['Name']) : $tmp['Name']);
$tooltip_aliasname[$tmp['Name']] = ($cfg['ShowTooltipAliasTB'] ? $tmp['Name'] : (!empty($tmp['Comment']) ? $tmp['Comment'] . ' ' : '')); $tooltip_aliasname[$tmp['Name']] = ($cfg['ShowTooltipAliasTB'] ? $tmp['Name'] : (!empty($tmp['Comment']) ? $tmp['Comment'] . ' ' : ''));
if (isset($tmp['Create_time']) && !empty($tmp['Create_time'])) {
$tooltip_aliasname[$tmp['Name']] .= ', ' . $strStatCreateTime . ': ' . PMA_localisedDate(strtotime($tmp['Create_time']));
}
if (isset($tmp['Update_time']) && !empty($tmp['Update_time'])) {
$tooltip_aliasname[$tmp['Name']] .= ', ' . $strStatUpdateTime . ': ' . PMA_localisedDate(strtotime($tmp['Update_time']));
}
if (isset($tmp['Check_time']) && !empty($tmp['Check_time'])) {
$tooltip_aliasname[$tmp['Name']] .= ', ' . $strStatCheckTime . ': ' . PMA_localisedDate(strtotime($tmp['Check_time']));
}
} // end while } // end while
} // end if } // end if

View File

@@ -207,6 +207,52 @@ else if (PMA_MYSQL_INT_VERSION >= 32303) {
?> ?>
<td bgcolor="<?php echo $bgcolor; ?>"> <td bgcolor="<?php echo $bgcolor; ?>">
<?php echo $sts_data['Comment']; ?> <?php echo $sts_data['Comment']; ?>
<?php
if (!empty($sts_data['Comment'])) {
$needs_break = '<br />';
} else {
$needs_break = '';
}
if ((isset($sts_data['Create_time']) && !empty($sts_data['Create_time']))
|| (isset($sts_data['Update_time']) && !empty($sts_data['Update_time']))
|| (isset($sts_data['Check_time']) && !empty($sts_data['Check_time']))) {
echo $needs_break;
?>
<table border="0" cellpadding="1" cellspacing="1" width="100%">
<?php
if (isset($sts_data['Create_time']) && !empty($sts_data['Create_time'])) {
?>
<tr>
<td style="font-size: <?php echo $font_smaller; ?>" align="right"><?php echo $strStatCreateTime . ': '; ?></td>
<td style="font-size: <?php echo $font_smaller; ?>" align="right"><?php echo PMA_localisedDate(strtotime($sts_data['Create_time'])); ?></td>
</tr>
<?php
}
if (isset($sts_data['Update_time']) && !empty($sts_data['Update_time'])) {
?>
<tr>
<td style="font-size: <?php echo $font_smaller; ?>" align="right"><?php echo $strStatUpdateTime . ': '; ?></td>
<td style="font-size: <?php echo $font_smaller; ?>" align="right"><?php echo PMA_localisedDate(strtotime($sts_data['Update_time'])); ?></td>
</tr>
<?php
}
if (isset($sts_data['Check_time']) && !empty($sts_data['Check_time'])) {
?>
<tr>
<td style="font-size: <?php echo $font_smaller; ?>" align="right"><?php echo $strStatCheckTime . ': '; ?></td>
<td style="font-size: <?php echo $font_smaller; ?>" align="right"><?php echo PMA_localisedDate(strtotime($sts_data['Check_time'])); ?></td>
</tr>
<?php
}
?>
</table>
<?php
}
?>
</td> </td>
</tr> </tr>
<?php <?php

View File

@@ -618,4 +618,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -619,4 +619,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -611,4 +611,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -612,4 +612,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -633,4 +633,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -632,4 +632,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -632,4 +632,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -633,4 +633,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -631,4 +631,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -632,4 +632,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -631,4 +631,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -604,4 +604,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -605,4 +605,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -631,4 +631,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -630,4 +630,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -630,4 +630,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -629,4 +629,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -631,4 +631,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -632,4 +632,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -631,4 +631,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -611,4 +611,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -612,4 +612,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -611,4 +611,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -626,4 +626,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -627,4 +627,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -608,4 +608,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -609,4 +609,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -604,4 +604,7 @@ $strSQLOptions = 'SQL options';
$strXML = 'XML'; $strXML = 'XML';
$strCSVOptions = 'CSV options'; $strCSVOptions = 'CSV options';
$strNoOptions = 'This format has no options'; $strNoOptions = 'This format has no options';
$strStatCreateTime = 'Creation';
$strStatUpdateTime = 'Last update';
$strStatCheckTime = 'Last check';
?> ?>

View File

@@ -605,4 +605,7 @@ $strSQLOptions = 'SQL options';
$strXML = 'XML'; $strXML = 'XML';
$strCSVOptions = 'CSV options'; $strCSVOptions = 'CSV options';
$strNoOptions = 'This format has no options'; $strNoOptions = 'This format has no options';
$strStatCreateTime = 'Creation';
$strStatUpdateTime = 'Last update';
$strStatCheckTime = 'Last check';
?> ?>

View File

@@ -607,4 +607,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -608,4 +608,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -607,4 +607,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -606,4 +606,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -628,4 +628,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -629,4 +629,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -605,4 +605,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -606,4 +606,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -608,4 +608,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -609,4 +609,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -631,4 +631,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -613,4 +613,7 @@ $strSQLOptions = 'SQL-Optionen';
$strXML = 'XML'; $strXML = 'XML';
$strCSVOptions = 'CSV-Optionen'; $strCSVOptions = 'CSV-Optionen';
$strNoOptions = 'F<>r dieses Format sind keine Optionen vorhanden'; $strNoOptions = 'F<>r dieses Format sind keine Optionen vorhanden';
$strStatCreateTime = 'Erzeugt am';
$strStatUpdateTime = 'Aktualisiert am';
$strStatCheckTime = 'Letzter Check am';
?> ?>

View File

@@ -610,8 +610,11 @@ $strTransformation_image_jpeg__link = 'Displays a link to this image (direct blo
$updComTab = 'Please see Documentation on how to update your Column_comments Table'; //to translate $updComTab = 'Please see Documentation on how to update your Column_comments Table'; //to translate
$strTransformation_image_jpeg__inline = 'Displays a clickable thumbnail; options: width,height in pixels (keeps the original ratio)'; //to translate $strTransformation_image_jpeg__inline = 'Displays a clickable thumbnail; options: width,height in pixels (keeps the original ratio)'; //to translate
$strTransformation_image_png__inline = 'See image/jpeg: inline'; //to translate $strTransformation_image_png__inline = 'See image/jpeg: inline'; //to translate
$strSQLOptions = 'SQL options';//to translate $strSQLOptions = 'SQL-Optionen';
$strXML = 'XML';//to translate $strXML = 'XML';
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV-Optionen';
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'Für dieses Format sind keine Optionen vorhanden';
$strStatCreateTime = 'Erzeugt am';
$strStatUpdateTime = 'Aktualisiert am';
$strStatCheckTime = 'Letzter Check am';
?> ?>

View File

@@ -630,4 +630,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -631,4 +631,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -628,4 +628,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -642,4 +642,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -616,4 +616,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -617,4 +617,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -604,4 +604,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -605,4 +605,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -609,4 +609,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -610,4 +610,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -616,4 +616,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -616,4 +616,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -617,4 +617,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -630,4 +630,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -632,4 +632,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -631,4 +631,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -605,4 +605,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -604,4 +604,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -627,4 +627,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -628,4 +628,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -606,4 +606,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -607,4 +607,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -604,4 +604,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -605,4 +605,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -627,4 +627,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -628,4 +628,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -605,4 +605,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -606,4 +606,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -614,4 +614,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -612,4 +612,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -613,4 +613,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -612,4 +612,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -634,4 +634,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -633,4 +633,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -605,4 +605,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -606,4 +606,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -605,4 +605,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -607,4 +607,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -608,4 +608,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -607,4 +607,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -608,4 +608,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -609,4 +609,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -604,4 +604,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -605,4 +605,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -618,4 +618,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -619,4 +619,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -629,4 +629,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -630,4 +630,7 @@ $strSQLOptions = 'SQL options';//to translate
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strCSVOptions = 'CSV options';//to translate $strCSVOptions = 'CSV options';//to translate
$strNoOptions = 'This format has no options';//to translate $strNoOptions = 'This format has no options';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -619,4 +619,7 @@ $strWritingRelationNotPossible = 'Writing of relation not possible'; //to trans
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -618,4 +618,7 @@ $strWritingRelationNotPossible = 'Writing of relation not possible'; //to trans
$strXML = 'XML';//to translate $strXML = 'XML';//to translate
$strStatCreateTime = 'Creation';//to translate
$strStatUpdateTime = 'Last update';//to translate
$strStatCheckTime = 'Last check';//to translate
?> ?>

View File

@@ -53,6 +53,37 @@ if (!defined('PMA_BUILD_DUMP_LIB_INCLUDED')){
global $use_backquotes; global $use_backquotes;
$schema_create = ''; $schema_create = '';
$auto_increment = '';
$new_crlf = $crlf;
if (PMA_MYSQL_INT_VERSION >= 32321) {
$result = PMA_mysql_query('SHOW TABLE STATUS FROM ' . PMA_backquote($db) . ' LIKE \'' . PMA_sqlAddslashes($table) . '\'');
if ($result != FALSE && mysql_num_rows($result) > 0) {
$tmpres = PMA_mysql_fetch_array($result);
if (!empty($tmpres['Auto_increment'])) {
$auto_increment .= ' AUTO_INCREMENT=' . $tmpres['Auto_increment'] . ' ';
}
if (isset($tmpres['Create_time']) && !empty($tmpres['Create_time'])) {
$schema_create .= '# ' . $GLOBALS['strStatCreateTime'] . ': ' . PMA_localisedDate(strtotime($tmpres['Create_time'])) . $crlf;
$new_crlf = '#' . $crlf . $crlf;
}
if (isset($tmpres['Update_time']) && !empty($tmpres['Update_time'])) {
$schema_create .= '# ' . $GLOBALS['strStatUpdateTime'] . ': ' . PMA_localisedDate(strtotime($tmpres['Update_time'])) . $crlf;
$new_crlf = '#' . $crlf . $crlf;
}
if (isset($tmpres['Check_time']) && !empty($tmpres['Check_time'])) {
$schema_create .= '# ' . $GLOBALS['strStatCheckTime'] . ': ' . PMA_localisedDate(strtotime($tmpres['Check_time'])) . $crlf;
$new_crlf = '#' . $crlf . $crlf;
}
}
mysql_free_result($result);
}
$schema_create .= $new_crlf;
if (!empty($drop)) { if (!empty($drop)) {
$schema_create .= 'DROP TABLE IF EXISTS ' . PMA_backquote(PMA_htmlFormat($table), $use_backquotes) . ';' . $crlf; $schema_create .= 'DROP TABLE IF EXISTS ' . PMA_backquote(PMA_htmlFormat($table), $use_backquotes) . ';' . $crlf;
} }
@@ -98,18 +129,21 @@ if (!defined('PMA_BUILD_DUMP_LIB_INCLUDED')){
. (($use_backquotes) ? PMA_backquote($tmpres[0]) : $tmpres[0]) . (($use_backquotes) ? PMA_backquote($tmpres[0]) : $tmpres[0])
. substr($tmpres[1], $pos); . substr($tmpres[1], $pos);
$schema_create .= str_replace("\n", $crlf, PMA_htmlFormat($tmpres[1])); $schema_create .= str_replace("\n", $crlf, PMA_htmlFormat($tmpres[1]));
// garvin: Because replacing within a direct mysql result is a bit dangerous, just insert comments after that.
if ($comments && is_array($comments_map) && count($comments_map) > 0) {
$schema_create .= $crlf . $crlf . '/* COMMENTS FOR TABLE ' . PMA_backquote($table, $use_backquotes) . ':' . $crlf;
@reset($comments_map);
while(list($comment_field, $comment) = each($comments_map)) {
$schema_create .= ' ' . PMA_backquote($comment_field, $use_backquotes) . $crlf . ' ' . PMA_backquote($comment, $use_backquotes) . $crlf;
// omitting html_format is intentional. No use for htmlchars in the dump.
}
$schema_create .= '*/';
}
} }
$schema_create .= $auto_increment;
// garvin: Because replacing within a direct mysql result is a bit dangerous, just insert comments after that.
if ($comments && is_array($comments_map) && count($comments_map) > 0) {
$schema_create .= $crlf . $crlf . '/* COMMENTS FOR TABLE ' . PMA_backquote($table, $use_backquotes) . ':' . $crlf;
@reset($comments_map);
while(list($comment_field, $comment) = each($comments_map)) {
$schema_create .= ' ' . PMA_backquote($comment_field, $use_backquotes) . $crlf . ' ' . PMA_backquote($comment, $use_backquotes) . $crlf;
// omitting html_format is intentional. No use for htmlchars in the dump.
}
$schema_create .= '*/';
}
mysql_free_result($result); mysql_free_result($result);
return $schema_create; return $schema_create;
} // end if MySQL >= 3.23.21 } // end if MySQL >= 3.23.21

View File

@@ -1269,12 +1269,18 @@ function PMA_RT_DOC($alltables ){
$showtable = PMA_mysql_fetch_array($result); $showtable = PMA_mysql_fetch_array($result);
$num_rows = (isset($showtable['Rows']) ? $showtable['Rows'] : 0); $num_rows = (isset($showtable['Rows']) ? $showtable['Rows'] : 0);
$show_comment = (isset($showtable['Comment']) ? $showtable['Comment'] : ''); $show_comment = (isset($showtable['Comment']) ? $showtable['Comment'] : '');
$create_time = (isset($showtable['Create_time']) ? PMA_localisedDate(strtotime($showtable['Comment'])) : '');
$update_time = (isset($showtable['Update_time']) ? PMA_localisedDate(strtotime($showtable['Comment'])) : '');
$check_time = (isset($showtable['Check_time']) ? PMA_localisedDate(strtotime($showtable['Comment'])) : '');
} else { } else {
$local_query = 'SELECT COUNT(*) AS count FROM ' . PMA_backquote($table); $local_query = 'SELECT COUNT(*) AS count FROM ' . PMA_backquote($table);
$result = PMA_mysql_query($local_query) or PMA_mysqlDie('', $local_query, '', $err_url); $result = PMA_mysql_query($local_query) or PMA_mysqlDie('', $local_query, '', $err_url);
$showtable = array(); $showtable = array();
$num_rows = PMA_mysql_result($result, 0, 'count'); $num_rows = PMA_mysql_result($result, 0, 'count');
$show_comment = ''; $show_comment = '';
$create_time = '';
$update_time = '';
$check_time = '';
} // end display comments } // end display comments
if ($result) { if ($result) {
mysql_free_result($result); mysql_free_result($result);
@@ -1353,11 +1359,32 @@ function PMA_RT_DOC($alltables ){
* Displays the comments of the table if MySQL >= 3.23 * Displays the comments of the table if MySQL >= 3.23
*/ */
$break = false;
if (!empty($show_comment)) { if (!empty($show_comment)) {
$pdf->Cell(0,8,$GLOBALS['strTableComments'] . ' : ' . $show_comment,0,1); $pdf->Cell(0,3,$GLOBALS['strTableComments'] . ' : ' . $show_comment,0,1);
$break = true;
}
if (!empty($create_time)) {
$pdf->Cell(0,3,$GLOBALS['strStatCreateTime'] . ': ' . $create_time,0,1);
$break = true;
}
if (!empty($update_time)) {
$pdf->Cell(0,3,$GLOBALS['strStatUpdateTime'] . ': ' . $update_time,0,1);
$break = true;
}
if (!empty($check_time)) {
$pdf->Cell(0,3,$GLOBALS['strStatCheckTime'] . ': ' . $check_time,0,1);
$break = true;
}
if ($break == true) {
$pdf->Cell(0,3,'',0,1);
$pdf->Ln(); $pdf->Ln();
} }
$i = 0; $i = 0;
$pdf->SetFont('', 'B'); $pdf->SetFont('', 'B');
if (isset($orientation) && $orientation == 'L') { if (isset($orientation) && $orientation == 'L') {

View File

@@ -218,7 +218,7 @@ else {
$dump_buffer .= '# --------------------------------------------------------' . $crlf $dump_buffer .= '# --------------------------------------------------------' . $crlf
. $crlf . '#' . $crlf . $crlf . '#' . $crlf
. '# ' . $strTableStructure . ' ' . $formatted_table_name . $crlf . '# ' . $strTableStructure . ' ' . $formatted_table_name . $crlf
. '#' . $crlf . $crlf . '#' . $crlf
. PMA_getTableDef($db, $table, $crlf, $err_url, $use_comments_work) . ';' . $crlf; . PMA_getTableDef($db, $table, $crlf, $err_url, $use_comments_work) . ';' . $crlf;
} }

View File

@@ -551,6 +551,48 @@ while (list($key, $table) = each($the_tables)) {
<?php <?php
} }
echo "\n"; echo "\n";
if (isset($showtable['Create_time'])) {
$bgcolor = ((++$i%2) ? $cfg['BgcolorTwo'] : $cfg['BgcolorOne']);
echo "\n";
?>
<tr>
<td class="print"><?php echo $strStatCreateTime; ?></td>
<td align="right" class="print" nowrap="nowrap">
<?php echo PMA_localisedDate(strtotime($showtable['Create_time'])) . "\n"; ?>
</td>
</tr>
<?php
}
echo "\n";
if (isset($showtable['Update_time'])) {
$bgcolor = ((++$i%2) ? $cfg['BgcolorTwo'] : $cfg['BgcolorOne']);
echo "\n";
?>
<tr>
<td class="print"><?php echo $strStatUpdateTime; ?></td>
<td align="right" class="print" nowrap="nowrap">
<?php echo PMA_localisedDate(strtotime($showtable['Update_time'])) . "\n"; ?>
</td>
</tr>
<?php
}
echo "\n";
if (isset($showtable['Check_time'])) {
$bgcolor = ((++$i%2) ? $cfg['BgcolorTwo'] : $cfg['BgcolorOne']);
echo "\n";
?>
<tr>
<td class="print"><?php echo $strStatCheckTime; ?></td>
<td align="right" class="print" nowrap="nowrap">
<?php echo PMA_localisedDate(strtotime($showtable['Check_time'])) . "\n"; ?>
</td>
</tr>
<?php
}
echo "\n";
?> ?>
</table> </table>
</td> </td>

View File

@@ -515,6 +515,48 @@ if ($cfg['ShowStats']) {
<?php <?php
} }
echo "\n"; echo "\n";
if (isset($showtable['Create_time'])) {
$bgcolor = ((++$i%2) ? $cfg['BgcolorTwo'] : $cfg['BgcolorOne']);
echo "\n";
?>
<tr>
<td bgcolor="<?php echo $bgcolor; ?>"><?php echo $strStatCreateTime; ?></td>
<td style="font-size: <?php echo $font_smaller; ?>" align="right" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap">
<?php echo PMA_localisedDate(strtotime($showtable['Create_time'])) . "\n"; ?>
</td>
</tr>
<?php
}
echo "\n";
if (isset($showtable['Update_time'])) {
$bgcolor = ((++$i%2) ? $cfg['BgcolorTwo'] : $cfg['BgcolorOne']);
echo "\n";
?>
<tr>
<td bgcolor="<?php echo $bgcolor; ?>"><?php echo $strStatUpdateTime; ?></td>
<td style="font-size: <?php echo $font_smaller; ?>" align="right" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap">
<?php echo PMA_localisedDate(strtotime($showtable['Update_time'])) . "\n"; ?>
</td>
</tr>
<?php
}
echo "\n";
if (isset($showtable['Check_time'])) {
$bgcolor = ((++$i%2) ? $cfg['BgcolorTwo'] : $cfg['BgcolorOne']);
echo "\n";
?>
<tr>
<td bgcolor="<?php echo $bgcolor; ?>"><?php echo $strStatCheckTime; ?></td>
<td style="font-size: <?php echo $font_smaller; ?>" align="right" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap">
<?php echo PMA_localisedDate(strtotime($showtable['Check_time'])) . "\n"; ?>
</td>
</tr>
<?php
}
echo "\n";
?> ?>
</table> </table>
</td> </td>