public inbox for [email protected]help / color / mirror / Atom feed
On patching without write access to CVS 4+ messages / 4 participants [nested] [flat]
* On patching without write access to CVS @ 2007-05-14 01:56 David Fetter <[email protected]> 0 siblings, 1 reply; 4+ messages in thread From: David Fetter @ 2007-05-14 01:56 UTC (permalink / raw) To: pgsql-docs; PostgreSQL Patches <[email protected]> Folks, Thanks to Andrew Dunstan for pointing me toward cvsutils. As not everybody knows about them, here's a small patch which lets people know at least in theory where they are. Cheers, D -- David Fetter <[email protected]> http://fetter.org/ phone: +1 415 235 3778 AIM: dfetter666 Skype: davidfetter Remember to vote! Consider donating to PostgreSQL: http://www.postgresql.org/about/donate Index: doc/FAQ_DEV =================================================================== RCS file: /projects/cvsroot/pgsql/doc/FAQ_DEV,v retrieving revision 1.135 diff -c -r1.135 FAQ_DEV *** doc/FAQ_DEV 5 May 2007 14:33:55 -0000 1.135 --- doc/FAQ_DEV 14 May 2007 01:56:11 -0000 *************** *** 108,114 **** work. Failure to do so might mean your patch is rejected. If your work is being sponsored by a company, read this article for tips on being more effective. ! A web site is maintained for patches awaiting review, http://momjian.postgresql.org/cgi-bin/pgpatches, and those that are being kept for the next release, --- 108,120 ---- work. Failure to do so might mean your patch is rejected. If your work is being sponsored by a company, read this article for tips on being more effective. ! ! To create patches which would otherwise require that you have write ! access to the CVS repository, for example ones that add or remove ! files, you can use cvsutils. The cvsutils toolchain is packaged ! for many operating systems and available in source form at ! http://www.red-bean.com/cvsutils/ ! A web site is maintained for patches awaiting review, http://momjian.postgresql.org/cgi-bin/pgpatches, and those that are being kept for the next release, Index: doc/src/sgml/cvs.sgml =================================================================== RCS file: /projects/cvsroot/pgsql/doc/src/sgml/cvs.sgml,v retrieving revision 1.42 diff -c -r1.42 cvs.sgml *** doc/src/sgml/cvs.sgml 27 Mar 2007 01:45:22 -0000 1.42 --- doc/src/sgml/cvs.sgml 14 May 2007 01:56:11 -0000 *************** *** 15,20 **** --- 15,24 ---- <firstname>Thomas</firstname> <surname>Lockhart</surname> </author> + <author> + <firstname>David</firstname> + <surname>Fetter</surname> + </author> </authorgroup> <date>1999-05-20</date> </appendixinfo> *************** *** 150,155 **** --- 154,166 ---- comes with <productname>CVS</productname>, or see the online documentation at <ulink url="http://www.nongnu.org/cvs/"></ulink;. </para> + <para> + For those things which <productname>CVS</productname> does not do + by itself, such as letting you create patches without write access, + you can use <productname>cvsutils</productname>, which is packaged + for many operating systems, or available in source form at <ulink + url="http://www.red-bean.com/cvsutils/"></ulink;. + </para> </sect1> <sect1 id="cvs-tree"> Attachments: [text/plain] cvsutils.diff (2.5K, 2-cvsutils.diff) download | inline diff: Index: doc/FAQ_DEV =================================================================== RCS file: /projects/cvsroot/pgsql/doc/FAQ_DEV,v retrieving revision 1.135 diff -c -r1.135 FAQ_DEV *** doc/FAQ_DEV 5 May 2007 14:33:55 -0000 1.135 --- doc/FAQ_DEV 14 May 2007 01:56:11 -0000 *************** *** 108,114 **** work. Failure to do so might mean your patch is rejected. If your work is being sponsored by a company, read this article for tips on being more effective. ! A web site is maintained for patches awaiting review, http://momjian.postgresql.org/cgi-bin/pgpatches, and those that are being kept for the next release, --- 108,120 ---- work. Failure to do so might mean your patch is rejected. If your work is being sponsored by a company, read this article for tips on being more effective. ! ! To create patches which would otherwise require that you have write ! access to the CVS repository, for example ones that add or remove ! files, you can use cvsutils. The cvsutils toolchain is packaged ! for many operating systems and available in source form at ! http://www.red-bean.com/cvsutils/ ! A web site is maintained for patches awaiting review, http://momjian.postgresql.org/cgi-bin/pgpatches, and those that are being kept for the next release, Index: doc/src/sgml/cvs.sgml =================================================================== RCS file: /projects/cvsroot/pgsql/doc/src/sgml/cvs.sgml,v retrieving revision 1.42 diff -c -r1.42 cvs.sgml *** doc/src/sgml/cvs.sgml 27 Mar 2007 01:45:22 -0000 1.42 --- doc/src/sgml/cvs.sgml 14 May 2007 01:56:11 -0000 *************** *** 15,20 **** --- 15,24 ---- <firstname>Thomas</firstname> <surname>Lockhart</surname> </author> + <author> + <firstname>David</firstname> + <surname>Fetter</surname> + </author> </authorgroup> <date>1999-05-20</date> </appendixinfo> *************** *** 150,155 **** --- 154,166 ---- comes with <productname>CVS</productname>, or see the online documentation at <ulink url="http://www.nongnu.org/cvs/"></ulink>. </para> + <para> + For those things which <productname>CVS</productname> does not do + by itself, such as letting you create patches without write access, + you can use <productname>cvsutils</productname>, which is packaged + for many operating systems, or available in source form at <ulink + url="http://www.red-bean.com/cvsutils/"></ulink>. + </para> </sect1> <sect1 id="cvs-tree"> ^ permalink raw reply [nested|flat] 4+ messages in thread
* Re: [PATCHES] On patching without write access to CVS @ 2007-05-14 07:57 Peter Eisentraut <[email protected]> parent: David Fetter <[email protected]> 0 siblings, 1 reply; 4+ messages in thread From: Peter Eisentraut @ 2007-05-14 07:57 UTC (permalink / raw) To: [email protected]; +Cc: David Fetter <[email protected]>; pgsql-docs Am Montag, 14. Mai 2007 03:56 schrieb David Fetter: > + For those things which <productname>CVS</productname> does not do > + by itself, such as letting you create patches without write access, I don't think that is accurate. -- Peter Eisentraut http://developer.postgresql.org/~petere/ ^ permalink raw reply [nested|flat] 4+ messages in thread
* Re: On patching without write access to CVS @ 2007-05-14 17:56 Andrew Hammond <[email protected]> parent: Peter Eisentraut <[email protected]> 0 siblings, 1 reply; 4+ messages in thread From: Andrew Hammond @ 2007-05-14 17:56 UTC (permalink / raw) To: [email protected] On May 14, 12:57 am, [email protected] (Peter Eisentraut) wrote: > Am Montag, 14. Mai 2007 03:56 schrieb David Fetter: > > > + For those things which <productname>CVS</productname> does not do > > + by itself, such as letting you create patches without write access, s/such as letting you create patches/specifically creating patches which either create or delete files/ ? > > I don't think that is accurate. > > -- > Peter Eisentrauthttp://developer.postgresql.org/~petere/ > > ---------------------------(end of broadcast)--------------------------- > TIP 1: if posting/reading through Usenet, please send an appropriate > subscribe-nomail command to [email protected] so that your > message can get through to the mailing list cleanly ^ permalink raw reply [nested|flat] 4+ messages in thread
* Re: On patching without write access to CVS @ 2007-05-30 17:41 Bruce Momjian <[email protected]> parent: Andrew Hammond <[email protected]> 0 siblings, 0 replies; 4+ messages in thread From: Bruce Momjian @ 2007-05-30 17:41 UTC (permalink / raw) To: Andrew Hammond <[email protected]>; +Cc: [email protected] Updated patch with suggested wording applied, attached. I did not modify FAQ_DEV.html because this doesn't seem to be an FAQ-level issue. --------------------------------------------------------------------------- Andrew Hammond wrote: > On May 14, 12:57 am, [email protected] (Peter Eisentraut) wrote: > > Am Montag, 14. Mai 2007 03:56 schrieb David Fetter: > > > > > + For those things which <productname>CVS</productname> does not do > > > + by itself, such as letting you create patches without write access, > > s/such as letting you create patches/specifically creating patches > which either create or delete files/ > > ? > > > > > I don't think that is accurate. > > > > -- > > Peter Eisentrauthttp://developer.postgresql.org/~petere/ > > > > ---------------------------(end of broadcast)--------------------------- > > TIP 1: if posting/reading through Usenet, please send an appropriate > > subscribe-nomail command to [email protected] so that your > > message can get through to the mailing list cleanly > > > > ---------------------------(end of broadcast)--------------------------- > TIP 6: explain analyze is your friend -- Bruce Momjian <[email protected]> http://momjian.us EnterpriseDB http://www.enterprisedb.com + If your life is a hard drive, Christ can be your backup. + Attachments: [text/x-diff] /rtmp/diff (1.2K, 2-%2Frtmp%2Fdiff) download | inline diff: Index: doc/src/sgml/cvs.sgml =================================================================== RCS file: /cvsroot/pgsql/doc/src/sgml/cvs.sgml,v retrieving revision 1.42 diff -c -c -r1.42 cvs.sgml *** doc/src/sgml/cvs.sgml 27 Mar 2007 01:45:22 -0000 1.42 --- doc/src/sgml/cvs.sgml 30 May 2007 17:35:54 -0000 *************** *** 15,20 **** --- 15,24 ---- <firstname>Thomas</firstname> <surname>Lockhart</surname> </author> + <author> + <firstname>David</firstname> + <surname>Fetter</surname> + </author> </authorgroup> <date>1999-05-20</date> </appendixinfo> *************** *** 150,155 **** --- 154,166 ---- comes with <productname>CVS</productname>, or see the online documentation at <ulink url="http://www.nongnu.org/cvs/"></ulink>. </para> + <para> + For those things which <productname>CVS</productname> does not do by + itself, for example ones that add or remove files, you can use + <productname>cvsutils</productname>, which is packaged for many + operating systems, or available in source form at <ulink + url="http://www.red-bean.com/cvsutils/"></ulink>. + </para> </sect1> <sect1 id="cvs-tree"> ^ permalink raw reply [nested|flat] 4+ messages in thread
end of thread, other threads:[~2007-05-30 17:41 UTC | newest] Thread overview: 4+ messages (download: mbox mbox.gz follow: Atom feed) -- links below jump to the message on this page -- 2007-05-14 01:56 On patching without write access to CVS David Fetter <[email protected]> 2007-05-14 07:57 ` Peter Eisentraut <[email protected]> 2007-05-14 17:56 ` Andrew Hammond <[email protected]> 2007-05-30 17:41 ` Bruce Momjian <[email protected]>
This inbox is served by agora; see mirroring instructions for how to clone and mirror all data and code used for this inbox