Re: [PATCHES] doc patch - archive/restore_command on windows

2008-07-18 Thread Bruce Momjian
This is the patch version I applied. Thanks again. --- ITAGAKI Takahiro wrote: > Sorry, this is a correct patch. > > Index: doc/src/sgml/backup.sgml > === > -

Re: [PATCHES] doc patch - archive/restore_command on windows

2008-07-18 Thread Bruce Momjian
Patch applied to CVS HEAD and 8.3.X. Not sure how this was overlooked in the past. Thanks. --- ITAGAKI Takahiro wrote: > I found the examples of documentation about archive_command and > restore_command for Windows are inc

Re: [PATCHES] doc patch - archive/restore_command on windows

2008-06-20 Thread Andrew Dunstan
ITAGAKI Takahiro wrote: I found the examples of documentation about archive_command and restore_command for Windows are incorrect or improper. - "copy" doesn't accept / (slash) as a path separator. We should use \\ (double backslash) for the purpose. - Windows path is typically starts wit

Re: [PATCHES] doc patch - archive/restore_command on windows

2008-06-20 Thread ITAGAKI Takahiro
Sorry, this is a correct patch. Index: doc/src/sgml/backup.sgml === --- doc/src/sgml/backup.sgml(HEAD) +++ doc/src/sgml/backup.sgml(working copy) @@ -1122,7 +1122,7 @@ when so asked. Examples: restore_command = 'c

[PATCHES] doc patch - archive/restore_command on windows

2008-06-20 Thread ITAGAKI Takahiro
I found the examples of documentation about archive_command and restore_command for Windows are incorrect or improper. - "copy" doesn't accept / (slash) as a path separator. We should use \\ (double backslash) for the purpose. - Windows path is typically starts with a drive letter (C:\\). -