Worked on the XML export feature.
This commit is contained in:
@@ -8,6 +8,8 @@ $Source$
|
||||
2002-05-05 Alexander M. Turek <rabus@users.sourceforge.net>
|
||||
* db_details_links.php3, tbl_properties_links.php3, lang/*.inc.php3:
|
||||
Use "SQL" instead of "home" as link name.
|
||||
* tbl_properties_export.php3: Added XML export option (todo: limit feature).
|
||||
* tbl_dump.php3: Beautified XML output.
|
||||
|
||||
2002-05-04 Lo<4C>c Chapeaux <lolo@phpheaven.net>
|
||||
* user_details.php3, line 984: do not use "mysql_result" if the query
|
||||
|
@@ -307,7 +307,7 @@ else {
|
||||
}
|
||||
if ((isset($tmp_select) && strpos(' ' . $tmp_select, '|' . $table . '|'))
|
||||
|| (!isset($tmp_select) && !empty($table))) {
|
||||
$dump_buffer .= PMA_getTableXML($db, $table, $crlf, $err_url) . $crlf;
|
||||
$dump_buffer .= PMA_getTableXML($db, $table, $crlf, $err_url);
|
||||
}
|
||||
$i++;
|
||||
}
|
||||
|
@@ -35,7 +35,9 @@ require('./tbl_properties_table_info.php3');
|
||||
<?php echo $strFieldsEscapedBy; ?>
|
||||
<input type="text" name="escaped" size="2" value="\" class="textfield" /> <br />
|
||||
<?php echo $strLinesTerminatedBy; ?>
|
||||
<input type="text" name="add_character" size="2" value="<?php echo ((PMA_whichCrlf() == "\n") ? '\n' : '\r\n'); ?>" class="textfield" />
|
||||
<input type="text" name="add_character" size="2" value="<?php echo ((PMA_whichCrlf() == "\n") ? '\n' : '\r\n'); ?>" class="textfield" /> <br/>
|
||||
<input type="radio" name="what" value="xml" id="radio_dump_xml" />
|
||||
<label for="radio_dump_xml"><?php echo $strExportToXML; ?></label>
|
||||
</td>
|
||||
<td valign="middle">
|
||||
<input type="checkbox" name="drop" value="1" id="checkbox_dump_drop" />
|
||||
|
Reference in New Issue
Block a user