Initial commit
This commit is contained in:
@@ -0,0 +1,160 @@
|
||||
<?php
|
||||
|
||||
|
||||
/**
|
||||
* Help links for PostgreSQL 7.4 documentation
|
||||
*/
|
||||
|
||||
|
||||
$this->help_base = sprintf($GLOBALS['conf']['help_base'], '7.4');
|
||||
|
||||
# TODO: Check and fix links
|
||||
|
||||
$this->help_page = array(
|
||||
|
||||
'pg.database' => 'managing-databases.html',
|
||||
'pg.database.create' => array('sql-createdatabase.html', 'manage-ag-createdb.html'),
|
||||
'pg.database.alter' => 'sql-alterdatabase.html',
|
||||
'pg.database.drop' => array('sql-dropdatabase.html', 'manage-ag-dropdb.html'),
|
||||
|
||||
'pg.admin.analyze' => 'sql-analyze.html',
|
||||
'pg.admin.vacuum' => 'sql-vacuum.html',
|
||||
|
||||
'pg.cast' => array('sql-expressions.html#SQL-SYNTAX-TYPE-CASTS','sql-createcast.html'),
|
||||
'pg.cast.create' => 'sql-createcast.html',
|
||||
'pg.cast.drop' => 'sql-dropcast.html',
|
||||
|
||||
'pg.column.add' => array('ddl-alter.html#AEN2115', 'sql-altertable.html'),
|
||||
'pg.column.alter' => array('ddl-alter.html','sql-altertable.html'),
|
||||
'pg.column.drop' => array('ddl-alter.html#AEN2124', 'sql-altertable.html'),
|
||||
|
||||
'pg.constraint' => 'ddl-constraints.html',
|
||||
'pg.constraint.add' => 'ddl-alter.html#AEN2131',
|
||||
'pg.constraint.check' => 'ddl-constraints.html#AEN1895',
|
||||
'pg.constraint.drop' => 'ddl-alter.html#AEN2140',
|
||||
'pg.constraint.foreign_key' => 'ddl-constraints.html#DDL-CONSTRAINTS-FK',
|
||||
'pg.constraint.primary_key' => 'ddl-constraints.html#AEN1972',
|
||||
'pg.constraint.unique_key' => 'ddl-constraints.html#AEN1950',
|
||||
|
||||
'pg.conversion' => 'multibyte.html',
|
||||
'pg.conversion.alter' => 'sql-alterconversion.html',
|
||||
'pg.conversion.create' => 'sql-createconversion.html',
|
||||
'pg.conversion.drop' => 'sql-dropconversion.html',
|
||||
|
||||
'pg.domain' => 'extend-type-system.html#AEN28657',
|
||||
'pg.domain.alter' => 'sql-alterdomain.html',
|
||||
'pg.domain.create' => 'sql-createdomain.html',
|
||||
'pg.domain.drop' => 'sql-dropdomain.html',
|
||||
|
||||
'pg.function' => array('xfunc.html', 'functions.html', 'sql-expressions.html#AEN1599'),
|
||||
'pg.function.alter' => 'sql-alterfunction.html',
|
||||
'pg.function.create' => 'sql-createfunction.html',
|
||||
'pg.function.create.c' => array('xfunc-c.html','sql-createfunction.html'),
|
||||
'pg.function.create.internal' => array('xfunc-internal.html','sql-createfunction.html'),
|
||||
'pg.function.create.pl' => array('xfunc-sql.html','xfunc-pl.html','sql-createfunction.html'),
|
||||
'pg.function.drop' => 'sql-dropfunction.html',
|
||||
|
||||
'pg.group' => 'groups.html',
|
||||
'pg.group.alter' => array('sql-altergroup.html','groups.html'),
|
||||
'pg.group.create' => 'sql-creategroup.html',
|
||||
'pg.group.drop' => 'sql-dropgroup.html',
|
||||
|
||||
'pg.index' => 'indexes.html',
|
||||
'pg.index.cluster' => 'sql-cluster.html',
|
||||
'pg.index.drop' => 'sql-dropindex.html',
|
||||
'pg.index.create' => 'sql-createindex.html',
|
||||
'pg.index.reindex' => 'sql-reindex.html',
|
||||
|
||||
'pg.language' => 'xplang.html',
|
||||
'pg.language.alter' => 'sql-alterlanguage.html',
|
||||
'pg.language.create' => 'sql-createlanguage.html',
|
||||
'pg.language.drop' => 'sql-droplanguage.html',
|
||||
|
||||
'pg.opclass' => 'indexes-opclass.html',
|
||||
'pg.opclass.alter' => 'sql-alteropclass.html',
|
||||
'pg.opclass.create' => 'sql-createopclass.html',
|
||||
'pg.opclass.drop' => 'sql-dropopclass.html',
|
||||
|
||||
'pg.operator' => array('xoper.html', 'functions.html', 'sql-expressions.html#AEN1570'),
|
||||
'pg.operator.alter' => 'sql-alteroperator.html',
|
||||
'pg.operator.create' => 'sql-createoperator.html',
|
||||
'pg.operator.drop' => 'sql-dropoperator.html',
|
||||
|
||||
'pg.pl' => 'xplang.html',
|
||||
'pg.pl.plperl' => 'plperl.html',
|
||||
'pg.pl.plpgsql' => 'plpgsql.html',
|
||||
'pg.pl.plpython' => 'plpython.html',
|
||||
'pg.pl.pltcl' => 'pltcl.html',
|
||||
|
||||
'pg.privilege' => array('privileges.html','ddl-priv.html'),
|
||||
'pg.privilege.grant' => 'sql-grant.html',
|
||||
'pg.privilege.revoke' => 'sql-revoke.html',
|
||||
|
||||
'pg.process' => 'monitoring.html',
|
||||
|
||||
'pg.rule' => 'rules.html',
|
||||
'pg.rule.create' => 'sql-createrule.html',
|
||||
'pg.rule.drop' => 'sql-droprule.html',
|
||||
|
||||
'pg.schema' => 'ddl-schemas.html',
|
||||
'pg.schema.alter' => 'sql-alterschema.html',
|
||||
'pg.schema.create' => array( 'sql-createschema.html','ddl-schemas.html#DDL-SCHEMAS-CREATE'),
|
||||
'pg.schema.drop' => 'sql-dropschema.html',
|
||||
'pg.schema.search_path' => 'ddl-schemas.html#DDL-SCHEMAS-PATH',
|
||||
|
||||
'pg.sequence' => 'functions-sequence.html',
|
||||
'pg.sequence.alter' => 'sql-altersequence.html',
|
||||
'pg.sequence.create' => 'sql-createsequence.html',
|
||||
'pg.sequence.drop' => 'sql-dropsequence.html',
|
||||
|
||||
'pg.sql' => array('sql.html','sql-commands.html'),
|
||||
'pg.sql.insert' => 'sql-insert.html',
|
||||
'pg.sql.select' => 'sql-select.html',
|
||||
'pg.sql.update' => 'sql-update.html',
|
||||
|
||||
'pg.table' => 'ddl.html#DDL-BASICS',
|
||||
'pg.table.alter' => 'sql-altertable.html',
|
||||
'pg.table.create' => 'sql-createtable.html',
|
||||
'pg.table.drop' => 'sql-droptable.html',
|
||||
'pg.table.empty' => 'sql-truncate.html',
|
||||
|
||||
'pg.tablespace' => 'manage-ag-tablespaces.html',
|
||||
'pg.tablespace.alter' => 'sql-altertablespace.html',
|
||||
'pg.tablespace.create' => 'sql-createtablespace.html',
|
||||
'pg.tablespace.drop' => 'sql-droptablespace.html',
|
||||
|
||||
'pg.trigger' => 'triggers.html',
|
||||
'pg.trigger.alter' => 'sql-altertrigger.html',
|
||||
'pg.trigger.create' => 'sql-createtrigger.html',
|
||||
'pg.trigger.drop' => 'sql-droptrigger.html',
|
||||
|
||||
'pg.type' => array('xtypes.html','datatype.html','extend-type-system.html'),
|
||||
'pg.type.alter' => 'sql-altertype.html',
|
||||
'pg.type.create' => 'sql-createtype.html',
|
||||
'pg.type.drop' => 'sql-droptype.html',
|
||||
|
||||
'pg.user.alter' => array('sql-alteruser.html','user-attributes.html'),
|
||||
'pg.user.create' => array('sql-createuser.html','user-manag.html#DATABASE-USERS'),
|
||||
'pg.user.drop' => array('sql-dropuser.html','user-manag.html#DATABASE-USERS'),
|
||||
|
||||
'pg.variable' => 'runtime-config.html',
|
||||
|
||||
'pg.view' => 'tutorial-views.html',
|
||||
'pg.view.alter' => array('sql-createview.html','sql-altertable.html'),
|
||||
'pg.view.create' => 'sql-createview.html',
|
||||
'pg.view.drop' => 'sql-dropview.html',
|
||||
|
||||
'pg.aggregate' => array('xaggr.html', 'tutorial-agg.html', 'functions-aggregate.html', 'sql-expressions.html#SYNTAX-AGGREGATES'),
|
||||
'pg.aggregate.create' => 'sql-createaggregate.html',
|
||||
'pg.aggregate.drop' => 'sql-dropaggregate.html',
|
||||
'pg.aggregate.alter' => 'sql-alteraggregate.html',
|
||||
|
||||
'pg.server' => 'admin.html',
|
||||
|
||||
'pg.user' => 'user-manag.html',
|
||||
|
||||
'pg.locks' => 'view-pg-locks.html'
|
||||
);
|
||||
|
||||
|
||||
?>
|
||||
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Help links for PostgreSQL 8.0 documentation
|
||||
*
|
||||
* $Id: PostgresDoc80.php,v 1.5 2005/02/16 10:27:44 jollytoad Exp $
|
||||
*/
|
||||
|
||||
include('./help/PostgresDoc74.php');
|
||||
|
||||
$this->help_base = sprintf($GLOBALS['conf']['help_base'], '8.0');
|
||||
|
||||
$this->help_page['pg.column.add'][0] = 'ddl-alter.html#AEN2217';
|
||||
$this->help_page['pg.column.drop'][0] = 'ddl-alter.html#AEN2226';
|
||||
|
||||
$this->help_page['pg.constraint.add'] = 'ddl-alter.html#AEN2217';
|
||||
$this->help_page['pg.constraint.check'] = 'ddl-constraints.html#AEN1978';
|
||||
$this->help_page['pg.constraint.drop'] = 'ddl-alter.html#AEN2226';
|
||||
$this->help_page['pg.constraint.primary_key'] = 'ddl-constraints.html#AEN2055';
|
||||
$this->help_page['pg.constraint.unique_key'] = 'ddl-constraints.html#AEN2033';
|
||||
|
||||
$this->help_page['pg.domain'] = 'extend-type-system.html#AEN27940';
|
||||
|
||||
$this->help_page['pg.function'][2] = 'sql-expressions.html#AEN1652';
|
||||
|
||||
$this->help_page['pg.operator'][2] = 'sql-expressions.html#AEN1623';
|
||||
|
||||
?>
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Help links for PostgreSQL 8.1 documentation
|
||||
*
|
||||
* $Id: PostgresDoc81.php,v 1.3 2006/12/28 04:26:55 xzilla Exp $
|
||||
*/
|
||||
|
||||
include('./help/PostgresDoc80.php');
|
||||
|
||||
$this->help_base = sprintf($GLOBALS['conf']['help_base'], '8.1');
|
||||
|
||||
$this->help_page['pg.role'] = 'user-manag.html';
|
||||
$this->help_page['pg.role.create'] = array('sql-createrole.html','user-manag.html#DATABASE-ROLES');
|
||||
$this->help_page['pg.role.alter'] = array('sql-alterrole.html','role-attributes.html');
|
||||
$this->help_page['pg.role.drop'] = array('sql-droprole.html','user-manag.html#DATABASE-ROLES');
|
||||
|
||||
?>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Help links for PostgreSQL 8.2 documentation
|
||||
*
|
||||
* $Id: PostgresDoc82.php,v 1.3 2007/11/30 15:27:26 soranzo Exp $
|
||||
*/
|
||||
|
||||
include('./help/PostgresDoc81.php');
|
||||
|
||||
$this->help_base = sprintf($GLOBALS['conf']['help_base'], '8.2');
|
||||
|
||||
?>
|
||||
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Help links for PostgreSQL 8.3 documentation
|
||||
*
|
||||
* $Id: PostgresDoc83.php,v 1.3 2008/03/17 21:35:48 ioguix Exp $
|
||||
*/
|
||||
|
||||
include('./help/PostgresDoc82.php');
|
||||
|
||||
$this->help_base = sprintf($GLOBALS['conf']['help_base'], '8.3');
|
||||
|
||||
$this->help_page['pg.fts'] = 'textsearch.html';
|
||||
|
||||
$this->help_page['pg.ftscfg'] = 'textsearch-intro.html#TEXTSEARCH-INTRO-CONFIGURATIONS';
|
||||
$this->help_page['pg.ftscfg.example'] = 'textsearch-configuration.html';
|
||||
$this->help_page['pg.ftscfg.drop'] = 'sql-droptsconfig.html';
|
||||
$this->help_page['pg.ftscfg.create'] = 'sql-createtsconfig.html';
|
||||
$this->help_page['pg.ftscfg.alter'] = 'sql-altertsconfig.html';
|
||||
|
||||
$this->help_page['pg.ftsdict'] = 'textsearch-dictionaries.html';
|
||||
$this->help_page['pg.ftsdict.drop'] = 'sql-droptsdictionary.html';
|
||||
$this->help_page['pg.ftsdict.create'] = array('sql-createtsdictionary.html', 'sql-createtstemplate.html');
|
||||
$this->help_page['pg.ftsdict.alter'] = 'sql-altertsdictionary.html';
|
||||
|
||||
$this->help_page['pg.ftsparser'] = 'textsearch-parsers.html';
|
||||
?>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Help links for PostgreSQL 8.4 documentation
|
||||
*
|
||||
* $Id: PostgresDoc84.php,v 1.3 2008/11/18 21:35:48 ioguix Exp $
|
||||
*/
|
||||
|
||||
include('./help/PostgresDoc83.php');
|
||||
|
||||
$this->help_base = sprintf($GLOBALS['conf']['help_base'], '8.4');
|
||||
|
||||
?>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Help links for PostgreSQL 9.0 documentation
|
||||
*
|
||||
* $Id: PostgresDoc84.php,v 1.3 2008/11/18 21:35:48 ioguix Exp $
|
||||
*/
|
||||
|
||||
include('./help/PostgresDoc84.php');
|
||||
|
||||
$this->help_base = sprintf($GLOBALS['conf']['help_base'], '9.0');
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user