Make various links point to specific places instead of entire parts
authorTom Lane
Sun, 10 Aug 2003 01:20:34 +0000 (01:20 +0000)
committerTom Lane
Sun, 10 Aug 2003 01:20:34 +0000 (01:20 +0000)
(doubtless these are hangovers from the old separate-books days).

doc/src/sgml/ddl.sgml
doc/src/sgml/dml.sgml
doc/src/sgml/func.sgml
doc/src/sgml/runtime.sgml
doc/src/sgml/sql.sgml
doc/src/sgml/start.sgml
doc/src/sgml/trigger.sgml
doc/src/sgml/user-manag.sgml
doc/src/sgml/xfunc.sgml
doc/src/sgml/xtypes.sgml

index 67de4b8e546477cb9f1dff0d8d591289f0c2d361..4109cbafa62243a2f110479c471d3ecd419d88d8 100644 (file)
@@ -1,4 +1,4 @@
-
+
 
 
  Data Definition
@@ -818,8 +818,8 @@ CREATE TABLE order_items (
     columns that are either a primary key or form a unique constraint.
     If the foreign key references a unique constraint, there are some
     additional possibilities regarding how null values are matched.
-    These are explained in the CREATE TABLE entry
-    in e">.
+    These are explained in the reference documentation for
+    e">.
    
   
  
index 655af76fe5bb19014276e7c57683badd8e716703..6476fcf14ab52066a6bb4835ef190fd9afec29f2 100644 (file)
@@ -1,4 +1,4 @@
-
+
 
 
  Data Manipulation
@@ -88,9 +88,9 @@ INSERT INTO products DEFAULT VALUES;
   
    
     To do bulk loads, that is, inserting a lot of data,
-    take a look at the <command>COPY command (see
-    ).  It is not as flexible as the
-    INSERT command, but more efficient.
+    take a look at the <xref linkend="sql-copy"
+    endterm="sql-copy-title"> command.  It is not as flexible as the
+    INSERT command, but is more efficient.
    
   
  
index d9cb8bb018e17d463578f04cd03735a21bb78562..6729dc677e8b09633fc6928153c9e68de556d60d 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -7268,7 +7268,7 @@ SELECT pg_type_is_visible('myschema.widget'::regtype);
    linkend="functions-aggregate-table"> shows the built-in aggregate
    functions.  The special syntax considerations for aggregate
    functions are explained in .
-   Consult  for additional introductory
+   Consult -agg"> for additional introductory
    information.
   
 
index a44ccfde88a9135131e7aef6d44eb28705227e61..6adfd85df0f9d05536636285e15c385728edfbe7 100644 (file)
@@ -1,5 +1,5 @@
 
 
 
@@ -2425,7 +2425,7 @@ dynamic_library_path = '/usr/local/lib/postgresql:/home/my_project/lib:$libdir'
         behavior you can set this variable to off, but in the long run
         you are encouraged to change your applications to use the
         ONLY key word to exclude subtables. See
-        sql"> for more information about inheritance.
+        ddl-inherit"> for more information about inheritance.
        
       
      
index 89de66680289b0bff927156959d9833eec7052ee..1cb68004be96c2d8f9d80c8cd6847c7209a1de05 100644 (file)
@@ -1,8 +1,8 @@
 
 
-intro">
   SQL
 
   
index d10ad5b3c5e9b27b9c8194c37a6c23920db94d87..2aafe7813e421890f25274054e861c15bd241968 100644 (file)
@@ -1,5 +1,5 @@
 
 
  
@@ -397,7 +397,7 @@ mydb=#
     command shell. (For more internal commands, type
     \? at the psql prompt.)  The
     full capabilities of psql are documented in
-    reference">.  If PostgreSQL is
+    app-psql">.  If PostgreSQL is
     installed correctly you can also type man psql
     at the operating system shell prompt to see the documentation.  In
     this tutorial we will not use these features explicitly, but you
index 37870c42f934be903cc272c13cf19d47a093123a..d9ee33a2963d7b235900038a66a4a90646fc0f49 100644 (file)
@@ -1,5 +1,5 @@
 
 
  
@@ -40,7 +40,8 @@ $Header: /cvsroot/pgsql/doc/src/sgml/trigger.sgml,v 1.28 2003/04/11 18:41:20 pet
    
 
    
-    The syntax for creating triggers is described in .
+    The syntax for creating triggers is described in
+    .
    
 
    
index 5f8f13a86d983cb4bc3546bc9415b06c82619ecb..660d1ccd75de7d7afcdc43ed92d9d36f7e2b51d3 100644 (file)
@@ -1,5 +1,5 @@
 
 
 
@@ -203,8 +203,9 @@ ALTER GROUP name DROP USER uname1
    CREATE, TEMPORARY, EXECUTE,
    USAGE, and ALL PRIVILEGES. For more
    information on the different types of privileges support by
-   PostgreSQL, refer to the
-   GRANT page in . The right to modify or
+   PostgreSQL, see the
+    reference page.
+   The right to modify or
    destroy an object is always the privilege of the owner only. To
    assign privileges, the GRANT command is
    used. So, if joe is an existing user, and
index 25997718deb5802c653a5cdf68a7e36947b5d5ff..0193691a08ed2517a03eeb0363a68f709a33a2f3 100644 (file)
@@ -1,5 +1,5 @@
 
 
  
@@ -2185,7 +2185,7 @@ CREATE FUNCTION test(smallint, double precision) RETURNS ...
 
     it is not immediately clear which function would be called with
     some trivial input like test(1, 1.5).  The
-    currently implemented resolution rules are described in the
+    currently implemented resolution rules are described in
     , but it is unwise to design a system that subtly
     relies on this behavior.
    
index 35112c1c5e267fa1d40078d1427aefffaca5e903..74ced8cd83e3fb340eff004a10db2b193efe65e6 100644 (file)
@@ -1,5 +1,5 @@
 
 
  
@@ -168,8 +168,8 @@ CREATE TYPE complex (
  
 
  
-  For further details see the description of the CREATE
-  TYPE command in .
+  For further details see the description of the
+   command.