postgis/doc
2009-12-18 17:43:41 +00:00
..
html Replace unicode codes with images. IE 6 and 7 not happy. PDF not happy with unicode happy face symbol -- Regina not happy :( 2009-12-03 14:23:06 +00:00
man sanitized usage info output on loader/dumper 2006-10-14 14:22:10 +00:00
rfc Adding an rfc for changing the validation approach when parsing WKT. 2009-02-03 04:36:09 +00:00
xsl change to use refname instead of refid for link in what's new -- so operators show the operator symbol instead of underlying function name 2009-12-04 12:32:31 +00:00
doxygen.cfg.in enable alphabetical index 2009-05-03 03:33:09 +00:00
faq.xml Find a home for Paul's examples and Advanced FAQ and back reference from main FAQ section 2009-12-18 17:43:41 +00:00
geography.txt Merge Paul's geodetic (geography) branch into trunk, as per discussions on postgis-devel. Most of the merge was automatic (albeit quite slow), with a few manual touch-ups where the merge algorithm couldn't handle this automatically. "make check" runs and passes, so I hope I haven't managed to break too much ;) 2009-09-14 10:54:33 +00:00
installation.xml More encouragement to use GEOS 3.2 :) 2009-11-16 05:55:40 +00:00
introduction.xml slight attribution update 2009-10-28 12:13:56 +00:00
Makefile.in added missing dependency of postgis_aggs_mm for the comments 2009-11-20 18:05:50 +00:00
performance_tips.xml Commit jlivni documentation addition and update with minor comment for PostgreSQL 8.4 users and notice about obsolete settings. Also put in hyperlinks back to the current interactive version of PostgreSQL manual for each part. 2009-08-28 11:34:17 +00:00
postgis.xml New postgresql type section per #300. Still need to modify postgis_comments.sql.xsl accordingly 2009-11-23 14:27:14 +00:00
README revise readme to include link to instructions for garden test 2009-10-08 11:43:32 +00:00
reference.xml try to force paragraph at top using sectinfo abstract. Make note about deprecation more threatening. 2009-11-28 07:13:35 +00:00
reference_accessor.xml Split reference.xml on several sub files (upon sect1). Use entity to avoid redundant compliant/support text (SFS, SQL/MM, Z/M dimensions, Curve support) 2009-11-15 20:39:17 +00:00
reference_constructor.xml add also availability note to GmlToSQL() 2009-11-24 10:28:46 +00:00
reference_editor.xml grammar correction 2009-11-21 03:31:51 +00:00
reference_exception.xml Split reference.xml on several sub files (upon sect1). Use entity to avoid redundant compliant/support text (SFS, SQL/MM, Z/M dimensions, Curve support) 2009-11-15 20:39:17 +00:00
reference_lrs.xml Split reference.xml on several sub files (upon sect1). Use entity to avoid redundant compliant/support text (SFS, SQL/MM, Z/M dimensions, Curve support) 2009-11-15 20:39:17 +00:00
reference_management.xml add availability information for postgis_libxml_version() 2009-11-24 10:20:35 +00:00
reference_measure.xml Add missing ST_CoveredBy proto for geography 2009-11-28 22:36:52 +00:00
reference_misc.xml Correct the output type of ST_Extent and flag this as a change in behavior in PostGIS 1.4 2009-12-09 05:08:52 +00:00
reference_old.xml renamed reference.xml to reference_old.xml 2009-03-20 05:32:45 +00:00
reference_operator.xml Flag more as working with curves. I think all do except same operator but need to verify. 2009-12-02 22:05:00 +00:00
reference_output.xml fill in missing curve support flags for outputs 2009-12-03 08:58:12 +00:00
reference_processing.xml availability note not specified right for ST_DumpPoints 2009-11-30 14:24:57 +00:00
reference_transaction.xml Split reference.xml on several sub files (upon sect1). Use entity to avoid redundant compliant/support text (SFS, SQL/MM, Z/M dimensions, Curve support) 2009-11-15 20:39:17 +00:00
reference_type.xml try to force paragraph at top using sectinfo abstract. Make note about deprecation more threatening. 2009-11-28 07:13:35 +00:00
release_notes.xml libxml preferable 2009-11-13 15:28:26 +00:00
reporting.xml correct links to postgis bug tracker and subversion repository. Also amend the release_notes section to reflect newer version changes 2009-10-28 10:58:33 +00:00
template.xml revise template to use new entities 2009-11-30 14:30:02 +00:00
using_postgis_app.xml Fix mistakes in geography faq item. 2009-12-07 15:56:34 +00:00
using_postgis_dataman.xml Find a home for Paul's examples and Advanced FAQ and back reference from main FAQ section 2009-12-18 17:43:41 +00:00
xmlformat.conf performed an overhaul of the installation guide ... hopefully it's easier to follow. 2009-05-27 17:14:08 +00:00
ZMSgeoms.txt initial revision 2004-12-30 10:18:14 +00:00

====================================================
Overview
====================================================

Postgis documentation is written in docbook xml.  The input file is postgis.xml, 
which in turn includes all the individual chapter xml files.  From that file we 
can convert to chunked html, single-file html and pdf.

Make targets are:

  make                      # defaults to creating  
                            #   - the images used in the generated documentation
                            #   - the documentation as a single html file
                            #   - a sql script used to apply COMMENTS for every postgis function
  
  make html/postgis.html    # generates a single-file html file called html/postgis.html
  make chunked-html         # generates a separate html file for every chapter or section break
  make pdf                  # generates a single pdf file with the postgis version as a filename
  make images               # generates all the images used in the html and pdf targets
  make comments             # generates a sql script that add COMMENTs for every function (derived from the documentation)
  make doxygen              # generates the developer's documentation using Doxygen
  
  make install              # copies PostGIS' utility (ie. shp2pgsql) man pages to the PostgreSQL's doc directory
  make uninstall            # removes PostGIS' utility man pages
  make comments-install     # copies the postgis-comments.sql script to the PostgreSQL's contrib directory
  make comments-uninstall   # removes the postgis-comments.sql script from the contrib directory
  
  make clean                # removes any generated files (except images and html files)
  make maintainer-clean     # clears out the generated images and html files


====================================================
Requirements
====================================================

To generate the html files:
  xsltproc                  (http://xmlsoft.org/XSLT/xsltproc2.html)
  DocBook XSL scripts

To generate the images:
  ImageMagick               (http://www.imagemagick.org/script/index.php)

To generate a pdf:
  dblatex                   (http://dblatex.sourceforge.net)

To generate the developer's documentation:
  doxygen                   (http://www.stack.nl/~dimitri/doxygen)


====================================================
How To
====================================================

To generate images used in the documentation, follow these instructions on the PostGIS wiki:
	http://trac.osgeo.org/postgis/wiki/DevWikiDocNewFeature
	
To run garden tests against functions, follow these instructions on the PostGIS dev wiki:
	http://trac.osgeo.org/postgis/wiki/DevWikiGardenTest