lynx --nolist --dump Documentation.html > Documentation.txt
This commit is contained in:
@@ -7,8 +7,8 @@
|
||||
+ Version history: ChangeLog
|
||||
+ General notes: README
|
||||
+ License: LICENSE
|
||||
* Documentation version: $Id: Documentation.html,v 1.268 2002/06/25
|
||||
12:49:39 lem9 Exp $
|
||||
* Documentation version: $Id: Documentation.html,v 1.272 2002/06/29
|
||||
08:13:01 swix Exp $
|
||||
______________________________________________________________________
|
||||
|
||||
Top - Requirements - Introduction - Installation -
|
||||
@@ -643,6 +643,16 @@ CRIPT_NAME'], '/')+1);
|
||||
Defines whether to allow the use of zip/gzip/bzip compression
|
||||
when creating a dump file or not.
|
||||
|
||||
$cfg['DefaultTabDatabase'] string
|
||||
Defines the Tab displayed by default on database view. Possible
|
||||
values: 'db_details_structure.php3', 'db_details.php3', or
|
||||
'db_search.php3'.
|
||||
|
||||
$cfg['DefaultTabTable'] string
|
||||
Defines the Tab displayed by default on table view. Possible
|
||||
values: 'tbl_properties_structure.php3', 'tbl_properties.php3',
|
||||
'tbl_select.php3', 'tbl_change.php3'.
|
||||
|
||||
$cfg['ManualBaseShort'] string
|
||||
If set to an URL which points to the MySQL documentation (on
|
||||
short pages), appropriate help links are generated.
|
||||
@@ -1197,9 +1207,10 @@ FAQ - Frequently Asked Questions
|
||||
this document.
|
||||
|
||||
How can I use the relation table in Query-by-example?
|
||||
Here is an example with the tables persons, towns and countries. If
|
||||
you don't have a PMA_relation table, create it as explained in the
|
||||
configuration section. Then create the example tables:
|
||||
Here is an example with the tables persons, towns and countries, all
|
||||
located in the database mydb. If you don't have a PMA_relation table,
|
||||
create it as explained in the configuration section. Then create the
|
||||
example tables:
|
||||
CREATE TABLE countries (
|
||||
country_code char(1) NOT NULL default '',
|
||||
description varchar(10) NOT NULL default '',
|
||||
@@ -1222,10 +1233,10 @@ FAQ - Frequently Asked Questions
|
||||
) TYPE=MyISAM;
|
||||
INSERT INTO towns VALUES ('S', 'Sherbrooke');
|
||||
INSERT INTO towns VALUES ('M', 'Montr<74>al');
|
||||
INSERT INTO `PMA_relation` VALUES ('persons', 'town_code',
|
||||
'towns', 'town_code', 1);
|
||||
INSERT INTO `PMA_relation` VALUES ('persons', 'country_code',
|
||||
'countries', 'country_code', 1);
|
||||
INSERT INTO `PMA_relation` VALUES ('mydb','persons', 'town_code',
|
||||
'mydb', 'towns', 'town_code');
|
||||
INSERT INTO `PMA_relation` VALUES ('mydb', 'persons',
|
||||
'country_code', 'mydb', 'countries', 'country_code');
|
||||
Then test like this:
|
||||
* Click on your db name in the left frame
|
||||
* Choose "Query by example"
|
||||
@@ -1298,6 +1309,9 @@ FAQ - Frequently Asked Questions
|
||||
+ $cfg['colorColType']
|
||||
+ $cfg['colorAdd']
|
||||
|
||||
phpMyAdmin is changing the type of one of my columns!
|
||||
No, it's MySQL that is doing silent column type changing.
|
||||
|
||||
[phpMyAdmin project]
|
||||
|
||||
I have found a bug. How do I inform developers?
|
||||
|
@@ -42,8 +42,8 @@ Please ensure you have:
|
||||
- in Documentation.html the 2 lines
|
||||
" <h1>phpMyAdmin $1 Documentation</h1> "
|
||||
- in translators.html
|
||||
2. built the new "Documentation.txt" version using the Lynx "print" command
|
||||
on the "Documentation.html" file.
|
||||
2. built the new "Documentation.txt" version using:
|
||||
lynx --nolist --dump Documentation.html > Documentation.txt
|
||||
|
||||
Continue (y/n)?
|
||||
END
|
||||
|
Reference in New Issue
Block a user