2.4.0-rc1
This commit is contained in:
@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2003-02-03 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
|
### 2.4.0-rc1 released
|
||||||
|
|
||||||
2003-02-02 Olivier L. M<>ller <om@omnis.ch>
|
2003-02-02 Olivier L. M<>ller <om@omnis.ch>
|
||||||
* tbl_addfield.php3: ignore empty fields on alter table
|
* tbl_addfield.php3: ignore empty fields on alter table
|
||||||
|
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||||
<title>phpMyAdmin 2.4.0-dev - Documentation</title>
|
<title>phpMyAdmin 2.4.0-rc1 - Documentation</title>
|
||||||
<link rel="stylesheet" type="text/css" href="docs.css" />
|
<link rel="stylesheet" type="text/css" href="docs.css" />
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
<hr noshade="noshade" width="100%" />
|
<hr noshade="noshade" width="100%" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h1>phpMyAdmin 2.4.0-dev Documentation</h1>
|
<h1>phpMyAdmin 2.4.0-rc1 Documentation</h1>
|
||||||
|
|
||||||
|
|
||||||
<!-- TOP MENU -->
|
<!-- TOP MENU -->
|
||||||
|
@@ -5,7 +5,7 @@
|
|||||||
Configuration - FAQ - Developers - Credits - Translators
|
Configuration - FAQ - Developers - Credits - Translators
|
||||||
______________________________________________________________________
|
______________________________________________________________________
|
||||||
|
|
||||||
phpMyAdmin 2.4.0-dev Documentation
|
phpMyAdmin 2.4.0-rc1 Documentation
|
||||||
|
|
||||||
* Sourceforge phpMyAdmin project page [ http://www.phpmyadmin.net/
|
* Sourceforge phpMyAdmin project page [ http://www.phpmyadmin.net/
|
||||||
]
|
]
|
||||||
@@ -13,8 +13,8 @@
|
|||||||
+ Version history: ChangeLog
|
+ Version history: ChangeLog
|
||||||
+ General notes: README
|
+ General notes: README
|
||||||
+ License: LICENSE
|
+ License: LICENSE
|
||||||
* Documentation version: $Id: Documentation.html,v 1.381 2003/01/30
|
* Documentation version: $Id: Documentation.html,v 1.389 2003/02/03
|
||||||
13:55:58 nijel Exp $
|
00:32:06 lem9 Exp $
|
||||||
|
|
||||||
Requirements
|
Requirements
|
||||||
|
|
||||||
@@ -913,6 +913,30 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
|
|||||||
account with them, you can put your login details here, and it
|
account with them, you can put your login details here, and it
|
||||||
will be used in place of the anonymous login.
|
will be used in place of the anonymous login.
|
||||||
|
|
||||||
|
$cfg['DBG']['enable'] boolean
|
||||||
|
DEVELOPERS ONLY!
|
||||||
|
Enable the DBG extension for debugging phpMyAdmin. Required for
|
||||||
|
profiling the code.
|
||||||
|
For help in setting up your system to this, see the Developers
|
||||||
|
section.
|
||||||
|
|
||||||
|
$cfg['DBG']['profile']['enable'] boolean
|
||||||
|
DEVELOPERS ONLY!
|
||||||
|
Enable profiling support for phpMyAdmin. This will append a
|
||||||
|
chunk of data to the end of every page displayed in the main
|
||||||
|
window with profiling statistics for that page.
|
||||||
|
You may need need to increase the maximum execution time for
|
||||||
|
this to complete successfully.
|
||||||
|
|
||||||
|
$cfg['DBG']['profile']['threshold'] float (units in milliseconds)
|
||||||
|
DEVELOPERS ONLY!
|
||||||
|
When profiling data is displayed, this variable controls the
|
||||||
|
threshold of display for any profiling data, based on the
|
||||||
|
average time each time has taken. If it is over the threshold
|
||||||
|
it is displayed, otherwise it is not displayed. This takes a
|
||||||
|
value in milliseconds. In most cases you don't need to edit
|
||||||
|
this.
|
||||||
|
|
||||||
$cfg['ColumnTypes'] array
|
$cfg['ColumnTypes'] array
|
||||||
All possible types of a MySQL column. In most cases you don't
|
All possible types of a MySQL column. In most cases you don't
|
||||||
need to edit this.
|
need to edit this.
|
||||||
@@ -1667,7 +1691,7 @@ FAQ - Frequently Asked Questions
|
|||||||
should I proceed
|
should I proceed
|
||||||
|
|
||||||
The following method is preferred for new developers:
|
The following method is preferred for new developers:
|
||||||
* fetch the current CVS tree over anonymous CVS:
|
1. fetch the current CVS tree over anonymous CVS:
|
||||||
cvs
|
cvs
|
||||||
-d:pserver:anonymous@cvs.phpmyadmin.sourceforge.net:/cvsroot/phpmy
|
-d:pserver:anonymous@cvs.phpmyadmin.sourceforge.net:/cvsroot/phpmy
|
||||||
admin login
|
admin login
|
||||||
@@ -1676,8 +1700,8 @@ FAQ - Frequently Asked Questions
|
|||||||
-d:pserver:anonymous@cvs.phpmyadmin.sourceforge.net:/cvsroot/phpmy
|
-d:pserver:anonymous@cvs.phpmyadmin.sourceforge.net:/cvsroot/phpmy
|
||||||
admin checkout phpMyAdmin
|
admin checkout phpMyAdmin
|
||||||
[This will create a new sub-directory named phpMyAdmin]
|
[This will create a new sub-directory named phpMyAdmin]
|
||||||
* add your stuff
|
2. add your stuff
|
||||||
* put the modified files (tar'ed and gzip'ed) inside the patch
|
3. put the modified files (tar'ed and gzip'ed) inside the patch
|
||||||
tracker of the phpMyAdmin SourceForge account.
|
tracker of the phpMyAdmin SourceForge account.
|
||||||
|
|
||||||
Write access to the CVS tree is granted only to experienced developers
|
Write access to the CVS tree is granted only to experienced developers
|
||||||
@@ -1703,8 +1727,8 @@ Developers Information
|
|||||||
please try to keep your code as simple as possible: beginners are
|
please try to keep your code as simple as possible: beginners are
|
||||||
using phpMyAdmin as an example application.
|
using phpMyAdmin as an example application.
|
||||||
As far as possible, we want the scripts to be XHTML1.0 and CSS2
|
As far as possible, we want the scripts to be XHTML1.0 and CSS2
|
||||||
compliant on one hand, they fit PEAR coding standards on the other
|
compliant on one hand, they fit the PEAR coding standards on the
|
||||||
hand. Please pay attention to this.
|
other hand. Please pay attention to this.
|
||||||
* Please try to keep up the file-naming conventions. Table-related
|
* Please try to keep up the file-naming conventions. Table-related
|
||||||
stuff goes to tbl_*.php3, db-related code to db_*.php3,
|
stuff goes to tbl_*.php3, db-related code to db_*.php3,
|
||||||
server-related tools to server_*.php3 and so on.
|
server-related tools to server_*.php3 and so on.
|
||||||
@@ -1713,27 +1737,14 @@ Developers Information
|
|||||||
out.
|
out.
|
||||||
* If you want to be really helpful, write an entry for the
|
* If you want to be really helpful, write an entry for the
|
||||||
ChangeLog.
|
ChangeLog.
|
||||||
|
* The DBG extension (PHP Debugger DBG) is now supported by
|
||||||
IMPORTANT: With 1.4.1, development has switched to CVS. The following
|
phpMyAdmin for developers to better debug and profile their code.
|
||||||
method is preferred for new developers:
|
Please see the $cfg['DBG']* configuration options for more
|
||||||
* fetch the current CVS tree over anonymous CVS:
|
information.
|
||||||
cvs
|
This is in memorium of the Space Shuttle Columbia (STS-107) which
|
||||||
-d:pserver:anonymous@cvs.phpmyadmin.sourceforge.net:/cvsroot/phpmy
|
was lost during its re-entry into Earth's atmosphere and in memory
|
||||||
admin login
|
of the brave men and women who gave their lives for the people of
|
||||||
[Password: simply press the Enter key]
|
Earth.
|
||||||
cvs -z3
|
|
||||||
-d:pserver:anonymous@cvs.phpmyadmin.sourceforge.net:/cvsroot/phpmy
|
|
||||||
admin checkout phpMyAdmin
|
|
||||||
[This will create a new sub-directory named phpMyAdmin]
|
|
||||||
* add your stuff
|
|
||||||
* put the modified files (tar'ed and gzip'ed) inside the patch
|
|
||||||
tracker of the phpMyAdmin SourceForge account
|
|
||||||
(http://sourceforge.net/projects/phpmyadmin/)
|
|
||||||
|
|
||||||
Write access to the CVS tree is granted only to developers who have
|
|
||||||
already contributed something useful to phpMyAdmin. If you're
|
|
||||||
interested in that, please contact us using the phpmyadmin-devel
|
|
||||||
mailing list.
|
|
||||||
|
|
||||||
Credits
|
Credits
|
||||||
|
|
||||||
|
@@ -13,7 +13,7 @@
|
|||||||
*/
|
*/
|
||||||
// phpMyAdmin release
|
// phpMyAdmin release
|
||||||
if (!defined('PMA_VERSION')) {
|
if (!defined('PMA_VERSION')) {
|
||||||
define('PMA_VERSION', '2.4.0-dev');
|
define('PMA_VERSION', '2.4.0-rc1');
|
||||||
}
|
}
|
||||||
|
|
||||||
// php version
|
// php version
|
||||||
|
@@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||||
<title>phpMyAdmin 2.4.0-dev - Official translators</title>
|
<title>phpMyAdmin 2.4.0-rc1 - Official translators</title>
|
||||||
<link rel="stylesheet" type="text/css" href="docs.css" />
|
<link rel="stylesheet" type="text/css" href="docs.css" />
|
||||||
<script lanuage="javascript" type="text/javascript">
|
<script lanuage="javascript" type="text/javascript">
|
||||||
<!--
|
<!--
|
||||||
@@ -42,7 +42,7 @@
|
|||||||
<hr noshade="noshade" width="100%" />
|
<hr noshade="noshade" width="100%" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h1>phpMyAdmin 2.4.0-dev official translators list</h1>
|
<h1>phpMyAdmin 2.4.0-rc1 official translators list</h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Here is the list of the so called "official translators" of
|
Here is the list of the so called "official translators" of
|
||||||
|
Reference in New Issue
Block a user