Merging from master
This commit is contained in:
@@ -85,6 +85,15 @@ $Id$
|
|||||||
- patch #2999595, rfe #2998130 [interface] Cleanup navigation frame.
|
- patch #2999595, rfe #2998130 [interface] Cleanup navigation frame.
|
||||||
- patch #3025161 [core] Prevent sending of unnecessary cookies,
|
- patch #3025161 [core] Prevent sending of unnecessary cookies,
|
||||||
thanks to Piotr Przybylski - crackpl
|
thanks to Piotr Przybylski - crackpl
|
||||||
|
- bug [password] Generate password only available if JS is enabled
|
||||||
|
(fixed for Privileges and Change password)
|
||||||
|
- [core] RecodingEngine now accepts none as valid option.
|
||||||
|
+ [core] Dropped AllowAnywhereRecoding configuration variable.
|
||||||
|
- rfe #3016457 [interface] Define tab order in SQL form to allow easier tab
|
||||||
|
navigation.
|
||||||
|
|
||||||
|
3.3.6.0 (not yet released)
|
||||||
|
- bug #3031705 [core] Do not use CONCAT for DECIMAL fields.
|
||||||
|
|
||||||
3.3.5.0 (not yet released)
|
3.3.5.0 (not yet released)
|
||||||
- patch #2932113 [information_schema] Slow export when having lots of
|
- patch #2932113 [information_schema] Slow export when having lots of
|
||||||
|
@@ -1683,27 +1683,6 @@ CREATE DATABASE,ALTER DATABASE,DROP DATABASE</pre>
|
|||||||
expression. For example if you want only Czech and English, you should
|
expression. For example if you want only Czech and English, you should
|
||||||
set filter to <code>'^(cs|en)'</code>.</dd>
|
set filter to <code>'^(cs|en)'</code>.</dd>
|
||||||
|
|
||||||
<dt id="cfg_DefaultCharset">$cfg['DefaultCharset'] string</dt>
|
|
||||||
<dd>Default character set to use for recoding of MySQL queries. This must be
|
|
||||||
enabled and it's described by
|
|
||||||
<a href="#cfg_AllowAnywhereRecoding" class="configrule">$cfg['AllowAnywhereRecoding']</a>
|
|
||||||
option.<br />
|
|
||||||
You can give here any character set which is in
|
|
||||||
<a href="#cfg_AvailableCharsets" class="configrule">$cfg['AvailableCharsets']</a>
|
|
||||||
array and this is just default choice, user can select any of them.</dd>
|
|
||||||
|
|
||||||
<dt id="cfg_AllowAnywhereRecoding">$cfg['AllowAnywhereRecoding'] boolean</dt>
|
|
||||||
<dd>Allow character set recoding of MySQL queries. You need recode or iconv
|
|
||||||
support (compiled in or module) in PHP to allow MySQL queries recoding
|
|
||||||
and used language file must have it enabled (by default only these
|
|
||||||
which are in Unicode, just to avoid losing some characters).<br /><br />
|
|
||||||
|
|
||||||
Setting this to <tt>TRUE</tt> also activates a pull-down menu
|
|
||||||
in the Export and Import pages, to choose the character set when
|
|
||||||
exporting a file. The default value in this menu comes from
|
|
||||||
<tt>$cfg['Export']['charset']</tt> and <tt>$cfg['Import']['charset']</tt>.
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="cfg_RecodingEngine">$cfg['RecodingEngine'] string</dt>
|
<dt id="cfg_RecodingEngine">$cfg['RecodingEngine'] string</dt>
|
||||||
<dd>You can select here which functions will be used for character set
|
<dd>You can select here which functions will be used for character set
|
||||||
conversion. Possible values are:
|
conversion. Possible values are:
|
||||||
@@ -1711,8 +1690,15 @@ CREATE DATABASE,ALTER DATABASE,DROP DATABASE</pre>
|
|||||||
iconv, then recode)</li>
|
iconv, then recode)</li>
|
||||||
<li>iconv - use iconv or libiconv functions</li>
|
<li>iconv - use iconv or libiconv functions</li>
|
||||||
<li>recode - use recode_string function</li>
|
<li>recode - use recode_string function</li>
|
||||||
|
<li>none - disable encoding conversion</li>
|
||||||
</ul>
|
</ul>
|
||||||
Default is auto.</dd>
|
Default is auto.</dd>
|
||||||
|
<dd>
|
||||||
|
Enabled charset conversion activates a pull-down menu
|
||||||
|
in the Export and Import pages, to choose the character set when
|
||||||
|
exporting a file. The default value in this menu comes from
|
||||||
|
<tt>$cfg['Export']['charset']</tt> and <tt>$cfg['Import']['charset']</tt>.
|
||||||
|
</dd>
|
||||||
|
|
||||||
<dt id="cfg_IconvExtraParams">$cfg['IconvExtraParams'] string</dt>
|
<dt id="cfg_IconvExtraParams">$cfg['IconvExtraParams'] string</dt>
|
||||||
<dd>Specify some parameters for iconv used in charset conversion. See
|
<dd>Specify some parameters for iconv used in charset conversion. See
|
||||||
@@ -1867,7 +1853,7 @@ $cfg['TrustedProxies'] =
|
|||||||
editing.</dd>
|
editing.</dd>
|
||||||
|
|
||||||
<dt id="cfg_LimitChars">$cfg['LimitChars'] integer</dt>
|
<dt id="cfg_LimitChars">$cfg['LimitChars'] integer</dt>
|
||||||
<dd>Maximum number of characters showen in any non-numeric column on browse view.
|
<dd>Maximum number of characters shown in any non-numeric field on browse view.
|
||||||
Can be turned off by a toggle button on the browse page.</dd>
|
Can be turned off by a toggle button on the browse page.</dd>
|
||||||
|
|
||||||
<dt><span id="cfg_ModifyDeleteAtLeft">$cfg['ModifyDeleteAtLeft'] </span>boolean
|
<dt><span id="cfg_ModifyDeleteAtLeft">$cfg['ModifyDeleteAtLeft'] </span>boolean
|
||||||
|
@@ -3,7 +3,6 @@
|
|||||||
/**
|
/**
|
||||||
* display selection for relational field values
|
* display selection for relational field values
|
||||||
*
|
*
|
||||||
* @version $Id$
|
|
||||||
* @package phpMyAdmin
|
* @package phpMyAdmin
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@@ -1,7 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
||||||
/**
|
/**
|
||||||
* @version 1.0
|
|
||||||
* @package BLOBStreaming
|
* @package BLOBStreaming
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@@ -1,7 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
||||||
/**
|
/**
|
||||||
* @version 1.0
|
|
||||||
* @package BLOBStreaming
|
* @package BLOBStreaming
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@@ -3,7 +3,6 @@
|
|||||||
/**
|
/**
|
||||||
* dumps a database
|
* dumps a database
|
||||||
*
|
*
|
||||||
* @version $Id$
|
|
||||||
* @uses libraries/db_common.inc.php
|
* @uses libraries/db_common.inc.php
|
||||||
* @uses libraries/db_info.inc.php
|
* @uses libraries/db_info.inc.php
|
||||||
* @uses libraries/display_export.lib.php
|
* @uses libraries/display_export.lib.php
|
||||||
|
@@ -2,7 +2,6 @@
|
|||||||
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @version $Id$
|
|
||||||
* @package phpMyAdmin
|
* @package phpMyAdmin
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user