This commit is contained in:
Alexander M. Turek
2003-02-27 23:07:43 +00:00
parent 916133f63b
commit 529e28b153
3 changed files with 101 additions and 100 deletions

View File

@@ -5,17 +5,19 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2003-02-17 Michal Cihar <nijel@users.sourceforge.net> 2003-02-27 Michal Cihar <nijel@users.sourceforge.net>
* lang/czech: Updated. * lang/czech: Updated.
* lang/english: Resorted. * lang/english: Resorted.
2003-02-25 Alexander M. Turek <rabus@users.sourceforge.net> 2003-02-27 Alexander M. Turek <rabus@users.sourceforge.net>
* libraries/common.lib.php3, libraries/config_import.lib.php3: * libraries/common.lib.php3, libraries/config_import.lib.php3:
- Backwards compatibility; - Backwards compatibility;
- Removed some unnecessary code; - Removed some unnecessary code;
- Added a small HOWTO. - Added a small HOWTO.
* config.inc.php3: The tab settings don't fit into the 'left frame' part. * config.inc.php3: The tab settings don't fit into the 'left frame' part.
* lang/german-*.inc.php3: Grammar. * lang/german-*.inc.php3: Grammar.
* Documentation.html: Fixed some dead links.
* scripts/create_tables.sql: Adjusted table comments.
2003-02-27 Garvin Hicking <me@supergarv.de> 2003-02-27 Garvin Hicking <me@supergarv.de>
* libraries/common.lib.php3, tbl_properties_links.php3, db_details_links.php3, * libraries/common.lib.php3, tbl_properties_links.php3, db_details_links.php3,

View File

@@ -778,7 +778,7 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
in a table dump. Please see the relevant configuration directives later on. in a table dump. Please see the relevant configuration directives later on.
<br /><br /> <br /><br />
Also new in release 2.5.0 is a mime-transformation system which is also based on Also new in release 2.5.0 is a mime-transformation system which is also based on
the following table structure. See <a href="transformations">Transformations</a> the following table structure. See <a href="#transformations">Transformations</a>
for further information. To use the mime-transformation system, your column_info for further information. To use the mime-transformation system, your column_info
table has to have the three new fields 'mimetype', 'transformation', 'transformation_options'. table has to have the three new fields 'mimetype', 'transformation', 'transformation_options'.
<br /><br /> <br /><br />
@@ -1499,7 +1499,7 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
<dt><b>$cfg['BrowseMIME'] </b>boolean</dt> <dt><b>$cfg['BrowseMIME'] </b>boolean</dt>
<dd> <dd>
Enable <a href="transformations">MIME-transformations</a>. Enable <a href="#transformations">MIME-transformations</a>.
<br /><br /> <br /><br />
</dd> </dd>

View File

@@ -73,10 +73,9 @@ CREATE TABLE `PMA_column_info` (
mimetype varchar(255) NOT NULL default '', mimetype varchar(255) NOT NULL default '',
transformation varchar(255) NOT NULL default '', transformation varchar(255) NOT NULL default '',
transformation_options varchar(255) NOT NULL default '', transformation_options varchar(255) NOT NULL default '',
PRIMARY KEY (id), PRIMARY KEY (id),
UNIQUE KEY db_name (db_name, table_name, column_name) UNIQUE KEY db_name (db_name, table_name, column_name)
) TYPE=MyISAM COMMENT='Comments for Columns'; ) TYPE=MyISAM COMMENT='Column Information for phpMyAdmin';
CREATE TABLE `PMA_history` ( CREATE TABLE `PMA_history` (
`id` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, `id` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,