diff --git a/ChangeLog b/ChangeLog index 7a033a1f0..ba73af718 100755 --- a/ChangeLog +++ b/ChangeLog @@ -9,6 +9,8 @@ $Source$ * sql.php: bug #899430: left frame problem when lower_case_table_names==2 * libraries/database_interface.lib.php: bug #1009791: now remove non-UTF-8 choices from the drop-down (in main) for MySQL 4.1.x + * Documentation.html: added some missing variables and new FAQ 2.7 + about using and creating themes 2004-09-03 Marc Delisle * main.php, server_privileges.php, libraries/common.lib.php: diff --git a/Documentation.html b/Documentation.html index ca6ab3d68..d838c6042 100755 --- a/Documentation.html +++ b/Documentation.html @@ -1784,7 +1784,7 @@ Defaults to FALSE (drop-down).
$cfg['ThemeManager'] boolean
- Enables user-selectable themes. + Enables user-selectable themes. See FAQ 2.7.

@@ -2753,7 +2753,7 @@ To create a new, empty mimetype please see libraries/transformations/template_ge

[2.6] I get an "Access denied for user: 'root@localhost' (Using password: YES)"-error when trying to access a MySQL-Server on a - host which is port-forwarded for my localhost + host which is port-forwarded for my localhost.

When you are using a port on your localhost, which you redirect via @@ -2767,7 +2767,42 @@ To create a new, empty mimetype please see libraries/transformations/template_ge TCP connection.

- +
+

+ [2.7] Using and creating themes +

+

+ Themes are configured with $cfg['ThemePath'], + $cfg['ThemeManager'] and $cfg['ThemeDefault'].
+
+ Under $cfg['ThemePath'], you should not delete the directory + "original" or its underlying structure, because this is + the system theme used by phpMyAdmin. "original" contains all + images and styles, for backwards compatibility and for all themes that + would not include images or css-files.
+
+ If $cfg['ThemeManager'] is enabled, you can select your + favorite theme on the main page. Your selected theme will be stored + in a cookie.
+
+

+

+ To create a theme: +

+
+

+

+ If you do not want to use your own symbols and buttons, remove the + directory "img" in "your_theme_name". phpMyAdmin will + use the default icons and buttons (from the system-theme "original"). +


[3. Known limitations]