[postgis-commits] svn - r3097 - in branches/1.3: . doc

postgis-commits at postgis.refractions.net postgis-commits at postgis.refractions.net
Mon Oct 13 20:56:03 PDT 2008


Author: robe
Date: 2008-10-13 20:56:02 -0700 (Mon, 13 Oct 2008)
New Revision: 3097

Modified:
   branches/1.3/doc/postgis.xml
   branches/1.3/postgis_comments.sql
Log:
update help to include installing postgis_comments.sql, minor changes to postgis_comments.sql

Modified: branches/1.3/doc/postgis.xml
===================================================================
--- branches/1.3/doc/postgis.xml	2008-10-13 15:28:52 UTC (rev 3096)
+++ branches/1.3/doc/postgis.xml	2008-10-14 03:56:02 UTC (rev 3097)
@@ -348,6 +348,12 @@
 
           <programlisting># psql -d [yourdatabase] -f spatial_ref_sys.sql</programlisting>
         </listitem>
+		
+		<listitem>
+          <para>For helpful descriptions about functions included in postgis, install the postgis_comments.sql file.</para>
+
+          <programlisting># psql -d [yourdatabase] -f postgis_comments.sql</programlisting>
+        </listitem>
       </orderedlist>
 
       <sect2 id="templatepostgis">

Modified: branches/1.3/postgis_comments.sql
===================================================================
--- branches/1.3/postgis_comments.sql	2008-10-13 15:28:52 UTC (rev 3096)
+++ branches/1.3/postgis_comments.sql	2008-10-14 03:56:02 UTC (rev 3097)
@@ -14,6 +14,8 @@
 			
 COMMENT ON FUNCTION DropGeometryTable(varchar , varchar ) IS 'args: schema_name, table_name - Drops a table and all its references in geometry_columns.';
 			
+COMMENT ON FUNCTION DropGeometryTable(varchar , varchar , varchar ) IS 'args: catalog_name, schema_name, table_name - Drops a table and all its references in geometry_columns.';
+			
 COMMENT ON FUNCTION PostGIS_Full_Version() IS 'Reports full postgis version and build configuration infos.';
 			
 COMMENT ON FUNCTION PostGIS_GEOS_Version() IS 'Returns the version number of the GEOS library.';
@@ -224,4 +226,4 @@
 			
 COMMENT ON FUNCTION ST_Expand(box3d , float) IS 'args: g1, units_to_expand - Returns bounding box expanded in all directions from the bounding box of the input geometry';
 			
-COMMENT ON AGGREGATE ST_Extent(geometry) IS 'args: geomfield - an aggregate function that returns the bounding box that bounds rows of geometries.';
\ No newline at end of file
+COMMENT ON AGGREGATE ST_Extent(geometry) IS 'args: geomfield - an aggregate function that returns the bounding box that bounds rows of geometries.';		
\ No newline at end of file



More information about the postgis-commits mailing list