[DOCS] Suspicious description of track_io_timing

2016-05-31 Thread exclusion
The following documentation comment has been logged on the website: Page: https://www.postgresql.org/docs/9.6/static/runtime-config-statistics.html Description: There is the following sentence in description of the track_io_timing parameter: I/O timing information is displayed in

Re: [DOCS] Update "screenshot" in Tutorial

2016-05-31 Thread Peter Eisentraut
On 5/26/16 5:10 AM, mike2.schnei...@gmail.com wrote: https://www.postgresql.org/docs/9.6/static/tutorial-accessdb.html the version() is "PostgreSQL 9.6beta1 on i586-pc-linux-gnu, compiled by GCC 2.96, 32-bit" and SELECT current_date returns a date from 2002 This is clearly not what a "normal

Re: [DOCS] Docbook 5.x

2016-05-31 Thread Peter Eisentraut
On 5/22/16 3:48 PM, Jürgen Purtz wrote: We maintain two css files: docs.css (for online, complex) and stylesheet.css (local, simple). Why do we need stylesheet.css? So you can read the documentation locally without referencing online files. -- Peter Eisentraut http://www.2ndQuadra

Re: [DOCS] Typo in Create Database Synopsis

2016-05-31 Thread Tom Lane
"David G. Johnston" writes: > The second closing bracket after "connlimit" should be moved after > "istemplate ]" Hm, yeah, somebody fat-fingered that. Will fix, thanks. regards, tom lane -- Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org) To make changes

[DOCS] Typo in Create Database Synopsis

2016-05-31 Thread David G. Johnston
The second closing bracket after "connlimit" should be moved after "istemplate ]" The IS_TEMPLATE option can be prefixed by "WITH" when used alone. i.e., create database newdb with is_template false; David J.