From 566d6da5c66a90781f243f5cba23275ff44d7141 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sun, 11 May 2003 10:07:20 +0000 Subject: [PATCH] 2.5.0 --- ChangeLog | 3 ++ Documentation.html | 4 +-- Documentation.txt | 57 ++++++++++++++++++++++++---------- libraries/defines_php.lib.php3 | 2 +- translators.html | 4 +-- 5 files changed, 48 insertions(+), 22 deletions(-) diff --git a/ChangeLog b/ChangeLog index b526b3814e1c..a7ed52918d32 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - Changelog $Id$ $Source$ +2003-05-11 Marc Delisle + ### 2.5.0 released + 2003-05-10 Marc Delisle * libraries/display_tbl.lib.php3: bug 735439: if too many page numbers, show just the pages near the current page diff --git a/Documentation.html b/Documentation.html index 202f58e1def2..ac68d65ce3e5 100755 --- a/Documentation.html +++ b/Documentation.html @@ -8,7 +8,7 @@ - phpMyAdmin 2.5.0-rc3 - Documentation + phpMyAdmin 2.5.0 - Documentation @@ -31,7 +31,7 @@
-

phpMyAdmin 2.5.0-rc3 Documentation

+

phpMyAdmin 2.5.0 Documentation

diff --git a/Documentation.txt b/Documentation.txt index 86b999856917..83f558ae431c 100644 --- a/Documentation.txt +++ b/Documentation.txt @@ -6,7 +6,7 @@ Transformations - FAQ - Developers - Credits - Translators ______________________________________________________________________ - phpMyAdmin 2.5.0-rc2 Documentation + phpMyAdmin 2.5.0 Documentation * SourceForge phpMyAdmin project page [ http://www.phpmyadmin.net/ ] @@ -14,8 +14,8 @@ + Version history: ChangeLog + General notes: README + License: LICENSE - * Documentation version: $Id: Documentation.html,v 1.433 2003/04/18 - 18:44:46 nijel Exp $ + * Documentation version: $Id: Documentation.html,v 1.438 2003/05/11 + 10:06:17 lem9 Exp $ Requirements @@ -299,7 +299,11 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://' $cfg['Servers'][$i]['port'] string The port-number of your $i-th MySQL-server. Default is 3306 - (leave blank). + (leave blank). If you use "localhost" as the hostname, MySQL + ignores this port number and connects with the socket, so if + you want to connect to a port different from the default port, + use "127.0.0.1" or the real hostname in + $cfg['Servers'][$i]['host']. $cfg['Servers'][$i]['socket'] string The path to the socket to use. Leave blank for default. @@ -702,7 +706,18 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://' $cfg['LeftFrameLight'] boolean Defines whether to use select-based menu and display only the - current tables in the left frame (smaller page). + current tables in the left frame (smaller page). Only in + Non-Lightmode you can use the feature to display nested folders + using $cfg['LeftFrameTableSeparator'] + + $cfg['LeftFrameTableSeparator'] string + Defines a string to be used to nest table spaces. Defaults to + '__'. This means if you have tables like 'first__second__third' + this will be shown as a three-level hierarchie like: first > + second > third. If set to FALSE or empty, the feature is + disabled. NOTE: You shall not use this Separator in a table + name at the beginning or end of a table name, or multiple times + after another without any other characters in between. $cfg['ShowTooltip'] boolean Defines whether to display table comment as tool-tip in left @@ -1072,7 +1087,7 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://' + punct Applies to all punctuation sub-classes + punct_bracket_open_round Opening brackets"(" + punct_bracket_close_round Closing brackets ")" - + punct_listsep List item seperator "," + + punct_listsep List item Separator "," + punct_qualifier Table/Column Qualifier "." + punct_queryend End of query marker ";" + alpha Applies to all alphabetic classes @@ -1609,6 +1624,8 @@ FAQ - Frequently Asked Questions phpMyAdmin, you need to complete the socket information in the config.inc.php3. For example: $cfg['Servers'][$i]['socket'] = '/tmp/mysql.sock'; + Please also make sure that the permissions of this file allow to + be readable by your webserver (i.e. '0755'). Have also a look at the corresponding section of the MySQL documentation. @@ -1688,6 +1705,14 @@ FAQ - Frequently Asked Questions or #--------------------------------------------------------- + [3.3] When using nested folders ($cfg['LeftFrameTableSeparator']) there are + some multiple hierarchies displayed in a wrong manner?! + + Please note that you should not use the seperating string multiple + times without any characters between them, or at the beginning/end of + your table name. If you have to, think about using another + TableSeparator or disabling that feature + [4. ISPs, multi-user installations ] [4.1] I'm an ISP. Can I setup one central copy of phpMyAdmin or do I need @@ -2008,17 +2033,15 @@ FAQ - Frequently Asked Questions No, it's MySQL that is doing silent column type changing. - [6.10] My database has an underscore in it's name, and when I grant - privileges to a user for this database, a backslash is added before the - underscore. - - This is normal and means that the grant is done only for this - database. If there was no backslash, this would be a wildcard grant, - and the underscore would mean "any character". So, if the database - name is "john_db", the user would get rights to john1db, john2db... - instead of just john_db. - If you really want to grant using a wildcard, there is a dialog box " - Database (wildcards allowed)" for this. + [6.10] When creating a privilege, what happens with underscores in the + database name? + + If you do not put a backslash before the underscore, this is a + wildcard grant, and the underscore means "any character". So, if the + database name is "john_db", the user would get rights to john1db, + john2db... + If you put a backslash before the underscore, it means that the + database name will have a real underscore. [6.11] What is the curious symbol ø in the statistics pages? diff --git a/libraries/defines_php.lib.php3 b/libraries/defines_php.lib.php3 index cd5d20de9ec5..73ebb69a78c2 100644 --- a/libraries/defines_php.lib.php3 +++ b/libraries/defines_php.lib.php3 @@ -16,7 +16,7 @@ */ // phpMyAdmin release if (!defined('PMA_VERSION')) { - define('PMA_VERSION', '2.5.0-rc3'); + define('PMA_VERSION', '2.5.0'); } // php version diff --git a/translators.html b/translators.html index 262e0a05ec7c..43b64f591c17 100644 --- a/translators.html +++ b/translators.html @@ -5,7 +5,7 @@ - phpMyAdmin 2.5.0-rc3 - Official translators + phpMyAdmin 2.5.0 - Official translators