1 |
6daefa8c
|
Petr Lukašík
|
<?php
|
2 |
|
|
|
3 |
|
|
/**
|
4 |
|
|
* Help links for PostgreSQL 7.1 documentation
|
5 |
|
|
*
|
6 |
|
|
* $Id: PostgresDoc71.php,v 1.4 2005/02/16 10:27:44 jollytoad Exp $
|
7 |
|
|
*/
|
8 |
|
|
|
9 |
|
|
include('./help/PostgresDoc70.php');
|
10 |
|
|
|
11 |
|
|
# TODO: Check and fix links for 7.1
|
12 |
|
|
|
13 |
|
|
$this->help_base = sprintf($GLOBALS['conf']['help_base'], '7.1');
|
14 |
|
|
|
15 |
|
|
$this->help_page['pg.admin.analyze'] = 'sql-vacuum.html';
|
16 |
|
|
$this->help_page['pg.admin.vacuum'] = 'sql-vacuum.html';
|
17 |
|
|
|
18 |
|
|
$this->help_page['pg.aggregate'] = array('xaggr.html', 'query-agg.html', 'functions-aggregate.html', 'sql-expressions.html#SYNTAX-AGGREGATES');
|
19 |
|
|
$this->help_page['pg.aggregate.create'] = 'sql-createaggregate.html';
|
20 |
|
|
$this->help_page['pg.aggregate.drop'] = 'sql-dropaggregate.html';
|
21 |
|
|
|
22 |
|
|
$this->help_page['pg.database'] = 'managing-databases.html';
|
23 |
|
|
$this->help_page['pg.database.create'] = array('sql-createdatabase.html', 'managing-databases.html#MANAGE-AG-CREATEDB');
|
24 |
|
|
$this->help_page['pg.database.drop'] = array('sql-dropdatabase.html', 'manage-ag-dropdb.html');
|
25 |
|
|
|
26 |
|
|
$this->help_page['pg.server'] = 'admin.html';
|
27 |
|
|
|
28 |
|
|
$this->help_page['pg.user'] = 'user-manag.html';
|
29 |
|
|
|
30 |
|
|
?>
|