Skip to content
Snippets Groups Projects
  1. May 03, 2012
    • Peter Eisentraut's avatar
      doc: Fix for too many brackets in command synopses on man pages · 1715ff11
      Peter Eisentraut authored
      The default for the choice attribute of the <arg> element is "opt",
      which would normally put the argument inside brackets.  But the DSSSL
      stylesheets contain a hack that treats <arg> directly inside <group>
      specially, so that <group><arg>-x</arg><arg>-y</arg></group> comes out
      as [ -x | -y ] rather than [ [-x] | [-y] ], which it would technically
      be.  But when building man pages, this doesn't work, and so the
      command synopses on the man pages contain lots of extra brackets.
      
      By putting choice="opt" or choice="plain" explicitly on every <arg>
      and <group> element, we avoid any toolchain dependencies like that,
      and it also makes it clearer in the source code what is meant.
      
      In passing, make some small corrections in the documentation about
      which arguments are really optional or not.
      1715ff11
  2. Dec 06, 2011
    • Robert Haas's avatar
      Make command-line tools smarter about finding a DB to connect to. · 68281e00
      Robert Haas authored
      If unable to connect to "postgres", try "template1".  This allows things to
      work more smoothly in the case where the postgres database has been
      dropped.  And just in case that's not good enough, also allow the user to
      specify a maintenance database to be used for the initial connection, to
      cover the case where neither postgres nor template1 is suitable.
      68281e00
  3. Sep 10, 2011
  4. Aug 07, 2011
    • Peter Eisentraut's avatar
      Fix a whitespace issue with the man pages · 6ef24487
      Peter Eisentraut authored
      There is what may actually be a mistake in our markup.  The problem is
      in a situation like
      
      <para>
       <command>FOO</command> is ...
      
      there is strictly speaking a line break before "FOO".  In the HTML
      output, this does not appear to be a problem, but in the man page
      output, this shows up, so you get double blank lines at odd places.
      
      So far, we have attempted to work around this with an XSL hack, but
      that causes other problems, such as creating run-ins in places like
      
      <acronym>SQL</acronym> <command>COPY</command>
      
      So fix the problem properly by removing the extra whitespace.  I only
      fixed the problems that affect the man page output, not all the
      places.
      6ef24487
  5. May 10, 2011
  6. Mar 10, 2011
  7. Nov 23, 2010
  8. Sep 20, 2010
  9. Apr 03, 2010
    • Peter Eisentraut's avatar
      Remove unnecessary xref endterm attributes and title ids · 6dcce398
      Peter Eisentraut authored
      The endterm attribute is mainly useful when the toolchain does not support
      automatic link target text generation for a particular situation.  In  the
      past, this was required by the man page tools for all reference page links,
      but that is no longer the case, and it now actually gets in the way of
      proper automatic link text generation.  The only remaining use cases are
      currently xrefs to refsects.
      6dcce398
  10. Feb 19, 2010
  11. Feb 26, 2009
  12. Nov 10, 2008
  13. Dec 11, 2007
  14. Jun 21, 2007
  15. Jun 04, 2007
    • Peter Eisentraut's avatar
      Remove gratuitous response messages from utility programs. · 9539e64b
      Peter Eisentraut authored
      (Possibly release notes material, lest users be confused.)
      
      The --quiet option is now obsolete and without effect in createdb,
      createuser, dropdb, dropuser; kept for compatibility but marked for
      removal in 8.4.
      
      Progress messages when acting on all databases now go to stdout instead
      of stderr, since they are not in fact errors.
      
      Ordered options in reindexdb reference page alphabetically, like in
      other programs' pages.
      9539e64b
  16. Mar 26, 2007
  17. Feb 20, 2007
  18. Sep 16, 2006
  19. May 29, 2005
  20. Jun 18, 2004
  21. Mar 23, 2004
  22. Nov 29, 2003
    • PostgreSQL Daemon's avatar
      · 969685ad
      PostgreSQL Daemon authored
      $Header: -> $PostgreSQL Changes ...
      969685ad
  23. Sep 13, 2003
  24. Sep 12, 2003
  25. Aug 31, 2003
  26. May 26, 2003
  27. Mar 24, 2003
  28. Mar 18, 2003
  29. Oct 12, 2002
  30. Sep 21, 2002
  31. Aug 10, 2002
  32. Jul 28, 2002
  33. Apr 21, 2002
    • Thomas G. Lockhart's avatar
      Augment the date/time examples in the User's Guide to reflect the newer · c05f29e8
      Thomas G. Lockhart authored
       capabilities of specifying time zones as intervals per SQL9x.
      Put refentrytitle contents on the same line as the tag.
       Otherwise, leading whitespace is propagated into the product, which
       (at least) messes up the ToC layout.
      Remove (some) docinfo tags containing dates. Best to omit if the dates
       are not accurate; maybe use CVS dates instead or leave them out.
      c05f29e8
  34. Feb 25, 2002
  35. Jan 20, 2002
  36. Dec 08, 2001
  37. Nov 28, 2001
  38. Nov 18, 2001
Loading