Commit 7da8623a authored by Tom Lane's avatar Tom Lane

Last batch of updates in response to 7.4 interactive docs comments.

parent 7bbdb078
<!-- <!--
$PostgreSQL: pgsql/doc/src/sgml/datetime.sgml,v 2.44 2004/12/28 15:25:55 tgl Exp $ $PostgreSQL: pgsql/doc/src/sgml/datetime.sgml,v 2.45 2005/01/09 18:58:10 tgl Exp $
--> -->
<appendix id="datetime-appendix"> <appendix id="datetime-appendix">
...@@ -190,11 +190,11 @@ $PostgreSQL: pgsql/doc/src/sgml/datetime.sgml,v 2.44 2004/12/28 15:25:55 tgl Exp ...@@ -190,11 +190,11 @@ $PostgreSQL: pgsql/doc/src/sgml/datetime.sgml,v 2.44 2004/12/28 15:25:55 tgl Exp
<para> <para>
<xref linkend="datetime-month-table"> shows the tokens that are <xref linkend="datetime-month-table"> shows the tokens that are
permissible as abbreviations for the names of the month. recognized as names of months.
</para> </para>
<table id="datetime-month-table"> <table id="datetime-month-table">
<title>Month Abbreviations</title> <title>Month Names</title>
<tgroup cols="2"> <tgroup cols="2">
<thead> <thead>
<row> <row>
...@@ -204,72 +204,69 @@ $PostgreSQL: pgsql/doc/src/sgml/datetime.sgml,v 2.44 2004/12/28 15:25:55 tgl Exp ...@@ -204,72 +204,69 @@ $PostgreSQL: pgsql/doc/src/sgml/datetime.sgml,v 2.44 2004/12/28 15:25:55 tgl Exp
</thead> </thead>
<tbody> <tbody>
<row> <row>
<entry>April</entry> <entry>January</entry>
<entry>Apr</entry> <entry>Jan</entry>
</row>
<row>
<entry>August</entry>
<entry>Aug</entry>
</row>
<row>
<entry>December</entry>
<entry>Dec</entry>
</row> </row>
<row> <row>
<entry>February</entry> <entry>February</entry>
<entry>Feb</entry> <entry>Feb</entry>
</row> </row>
<row> <row>
<entry>January</entry> <entry>March</entry>
<entry>Jan</entry> <entry>Mar</entry>
</row> </row>
<row> <row>
<entry>July</entry> <entry>April</entry>
<entry>Jul</entry> <entry>Apr</entry>
</row>
<row>
<entry>May</entry>
<entry></entry>
</row> </row>
<row> <row>
<entry>June</entry> <entry>June</entry>
<entry>Jun</entry> <entry>Jun</entry>
</row> </row>
<row> <row>
<entry>March</entry> <entry>July</entry>
<entry>Mar</entry> <entry>Jul</entry>
</row> </row>
<row> <row>
<entry>November</entry> <entry>August</entry>
<entry>Nov</entry> <entry>Aug</entry>
</row>
<row>
<entry>September</entry>
<entry>Sep, Sept</entry>
</row> </row>
<row> <row>
<entry>October</entry> <entry>October</entry>
<entry>Oct</entry> <entry>Oct</entry>
</row> </row>
<row> <row>
<entry>September</entry> <entry>November</entry>
<entry>Sep, Sept</entry> <entry>Nov</entry>
</row>
<row>
<entry>December</entry>
<entry>Dec</entry>
</row> </row>
</tbody> </tbody>
</tgroup> </tgroup>
</table> </table>
<note>
<para>
The month May has no explicit abbreviation, for obvious reasons.
</para>
</note>
<para> <para>
<xref linkend="datetime-dow-table"> shows the tokens that are <xref linkend="datetime-dow-table"> shows the tokens that are
permissible as abbreviations for the names of the days of the recognized as names of days of the week.
week.
</para> </para>
<table id="datetime-dow-table"> <table id="datetime-dow-table">
<title>Day of the Week Abbreviations</title> <title>Day of the Week Names</title>
<tgroup cols="2"> <tgroup cols="2">
<thead> <thead>
<row> <row>
<entry>Day</entry> <entry>Day</entry>
<entry>Abbreviation</entry> <entry>Abbreviations</entry>
</row> </row>
</thead> </thead>
<tbody> <tbody>
...@@ -322,7 +319,7 @@ $PostgreSQL: pgsql/doc/src/sgml/datetime.sgml,v 2.44 2004/12/28 15:25:55 tgl Exp ...@@ -322,7 +319,7 @@ $PostgreSQL: pgsql/doc/src/sgml/datetime.sgml,v 2.44 2004/12/28 15:25:55 tgl Exp
<tbody> <tbody>
<row> <row>
<entry><literal>ABSTIME</literal></entry> <entry><literal>ABSTIME</literal></entry>
<entry>Key word ignored</entry> <entry>Ignored</entry>
</row> </row>
<row> <row>
<entry><literal>AM</literal></entry> <entry><literal>AM</literal></entry>
...@@ -330,7 +327,7 @@ $PostgreSQL: pgsql/doc/src/sgml/datetime.sgml,v 2.44 2004/12/28 15:25:55 tgl Exp ...@@ -330,7 +327,7 @@ $PostgreSQL: pgsql/doc/src/sgml/datetime.sgml,v 2.44 2004/12/28 15:25:55 tgl Exp
</row> </row>
<row> <row>
<entry><literal>AT</literal></entry> <entry><literal>AT</literal></entry>
<entry>Key word ignored</entry> <entry>Ignored</entry>
</row> </row>
<row> <row>
<entry><literal>JULIAN</>, <literal>JD</>, <literal>J</></entry> <entry><literal>JULIAN</>, <literal>JD</>, <literal>J</></entry>
...@@ -338,7 +335,7 @@ $PostgreSQL: pgsql/doc/src/sgml/datetime.sgml,v 2.44 2004/12/28 15:25:55 tgl Exp ...@@ -338,7 +335,7 @@ $PostgreSQL: pgsql/doc/src/sgml/datetime.sgml,v 2.44 2004/12/28 15:25:55 tgl Exp
</row> </row>
<row> <row>
<entry><literal>ON</literal></entry> <entry><literal>ON</literal></entry>
<entry>Key word ignored</entry> <entry>Ignored</entry>
</row> </row>
<row> <row>
<entry><literal>PM</literal></entry> <entry><literal>PM</literal></entry>
...@@ -370,8 +367,9 @@ $PostgreSQL: pgsql/doc/src/sgml/datetime.sgml,v 2.44 2004/12/28 15:25:55 tgl Exp ...@@ -370,8 +367,9 @@ $PostgreSQL: pgsql/doc/src/sgml/datetime.sgml,v 2.44 2004/12/28 15:25:55 tgl Exp
<xref linkend="datetime-timezone-input-table"> shows the time zone <xref linkend="datetime-timezone-input-table"> shows the time zone
abbreviations recognized by <productname>PostgreSQL</productname> abbreviations recognized by <productname>PostgreSQL</productname>
in date/time input values. Note that these names are <emphasis>not</> in date/time input values. Note that these names are <emphasis>not</>
used for date/time output &mdash; display is driven by the currently necessarily used for date/time output &mdash; output is driven by the
selected <xref linkend="guc-timezone"> parameter setting. (It is official timezone abbreviation(s) associated with the currently selected
<xref linkend="guc-timezone"> parameter setting. (It is
likely that future releases will make some use of <varname>timezone</> likely that future releases will make some use of <varname>timezone</>
for input as well.) for input as well.)
</para> </para>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment