dbTalk Databases Forums  

Re: [BUGS] [pgsql-www] Likely typo in FAQ_DEV.html

mailing.database.pgsql-bugs mailing.database.pgsql-bugs


Discuss Re: [BUGS] [pgsql-www] Likely typo in FAQ_DEV.html in the mailing.database.pgsql-bugs forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Robert Treat
 
Posts: n/a

Default Re: [BUGS] [pgsql-www] Likely typo in FAQ_DEV.html - 03-07-2005 , 05:29 PM






--Boundary-00=_vYMLCkUCOxtNm0+
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

On Sunday 06 March 2005 15:25, Hashem Masoud wrote:
Quote:
Hi,

I think this is a typo in:
http://www.postgresql.org/files/docu...s/FAQ_DEV.html


lfirst(i), lfirst_int(i), lfirst_oid(i)
return the data (a point, inteter and OID
respectively) at list element i.


(inteter) should be (integer)

Thanks for the report! Attached patch fixes this and 3-4 other typos as well.

--
Robert Treat
Build A Brighter Lamp :: Linux Apache {middleware} PostgreSQL

--Boundary-00=_vYMLCkUCOxtNm0+
Content-Type: text/x-diff;
charset="iso-8859-1";
name="FAQ_DEV.html.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
filename="FAQ_DEV.html.patch"

Index: FAQ_DEV.html
================================================== =================
RCS file: /projects/cvsroot/pgsql/doc/src/FAQ/FAQ_DEV.html,v
retrieving revision 1.85
diff -c -r1.85 FAQ_DEV.html
*** FAQ_DEV.html 5 Jan 2005 22:37:28 -0000 1.85
--- FAQ_DEV.html 7 Mar 2005 21:19:39 -0000
***************
*** 192,198 ****
<P><B>Basic system testing</B></P>

<P>The easiest way to test your code is to ensure that it builds
! against the latest verion of the code and that it does not generate
compiler warnings.</P>

<P>It is worth advised that you pass --enable-cassert to
--- 192,198 ----
<P><B>Basic system testing</B></P>

<P>The easiest way to test your code is to ensure that it builds
! against the latest version of the code and that it does not generate
compiler warnings.</P>

<P>It is worth advised that you pass --enable-cassert to
***************
*** 210,216 ****
directory of the source tree. If any tests failure,
investigate.</P>

! <P>If you've deliberately changed existing behaviour, this change
may cause a regression test failure but not any actual regression.
If so, you should also patch the regression test suite.</P>

--- 210,216 ----
directory of the source tree. If any tests failure,
investigate.</P>

! <P>If you've deliberately changed existing behavior, this change
may cause a regression test failure but not any actual regression.
If so, you should also patch the regression test suite.</P>

***************
*** 472,478 ****

<LI>The initscript;</LI>

! <LI>Any other ancilliary scripts and files;</LI>

<LI>A README.rpm-dist document that tries to adequately document
both the differences between the RPM build and the WHY of the
--- 472,478 ----

<LI>The initscript;</LI>

! <LI>Any other ancillary scripts and files;</LI>

<LI>A README.rpm-dist document that tries to adequately document
both the differences between the RPM build and the WHY of the
***************
*** 601,607 ****
cvs ... checkout pgsql
</PRE>

! <P>To get a past branch, you cd to whereever you want it and
say</P>
<PRE>
cvs ... checkout -r BRANCHNAME pgsql
--- 601,607 ----
cvs ... checkout pgsql
</PRE>

! <P>To get a past branch, you cd to wherever you want it and
say</P>
<PRE>
cvs ... checkout -r BRANCHNAME pgsql
***************
*** 690,696 ****
the source code is available at <A href=
"http://gborg.postgresql.org/project/pgweb/projdisplay.php">http://gborg.postgresql.org/project/pgweb/projdisplay.php</A>
, the code for the next version of the website is under the
! "portal" module. You will al so find code for the "techdocs"
website if you would like to contribute to that. A temporary todo
list for current website development issues is available at <A
href=
--- 690,696 ----
the source code is available at <A href=
"http://gborg.postgresql.org/project/pgweb/projdisplay.php">http://gborg.postgresql.org/project/pgweb/projdisplay.php</A>
, the code for the next version of the website is under the
! "portal" module. You will also find code for the "techdocs"
website if you would like to contribute to that. A temporary todo
list for current website development issues is available at <A
href=
***************
*** 810,816 ****
<DL>
<DT>lfirst(i), lfirst_int(i), lfirst_oid(i)</DT>

! <DD>return the data (a point, inteter and OID respectively) at
list element <I>i.</I></DD>

<DT>lnext(i)</DT>
--- 810,816 ----
<DL>
<DT>lfirst(i), lfirst_int(i), lfirst_oid(i)</DT>

! <DD>return the data (a point, integer and OID respectively) at
list element <I>i.</I></DD>

<DT>lnext(i)</DT>

--Boundary-00=_vYMLCkUCOxtNm0+
Content-Type: text/plain
Content-Disposition: inline
Content-Transfer-Encoding: 8bit
MIME-Version: 1.0


---------------------------(end of broadcast)---------------------------
TIP 6: Have you searched our list archives?

http://archives.postgresql.org

--Boundary-00=_vYMLCkUCOxtNm0+--


Reply With Quote
  #2  
Old   
Robert Treat
 
Posts: n/a

Default Re: [BUGS] [pgsql-www] Likely typo in FAQ_DEV.html - 03-08-2005 , 07:33 AM






--Boundary-00=_HiaLCfKzU9cpeIz
Content-Type: text/plain;
charset="utf-8"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

On Monday 07 March 2005 16:22, Robert Treat wrote:
Quote:
On Sunday 06 March 2005 15:25, Hashem Masoud wrote:
Thanks for the report! Attached patch fixes this and 3-4 other typos as
well.
Hashem has kindly pointed out a few more typos in the FAQ that I have added
in, please apply this patch instead.

--
Robert Treat
Build A Brighter Lamp :: Linux Apache {middleware} PostgreSQL

--Boundary-00=_HiaLCfKzU9cpeIz
Content-Type: text/x-diff;
charset="utf-8";
name="FAQ_DEV.html.patch2"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
filename="FAQ_DEV.html.patch2"

Index: FAQ_DEV.html
================================================== =================
RCS file: /projects/cvsroot/pgsql/doc/src/FAQ/FAQ_DEV.html,v
retrieving revision 1.85
diff -c -r1.85 FAQ_DEV.html
*** FAQ_DEV.html 5 Jan 2005 22:37:28 -0000 1.85
--- FAQ_DEV.html 8 Mar 2005 13:25:45 -0000
***************
*** 83,89 ****
<H2>General Questions</H2>
</CENTER>

! <H3><A name="1.1">1.1</A>) How go I get involved in PostgreSQL
development?</H3>

<P>Download the code and have a look around. See <A href=
--- 83,89 ----
<H2>General Questions</H2>
</CENTER>

! <H3><A name="1.1">1.1</A>) How do I get involved in PostgreSQL
development?</H3>

<P>Download the code and have a look around. See <A href=
***************
*** 192,198 ****
<P><B>Basic system testing</B></P>

<P>The easiest way to test your code is to ensure that it builds
! against the latest verion of the code and that it does not generate
compiler warnings.</P>

<P>It is worth advised that you pass --enable-cassert to
--- 192,198 ----
<P><B>Basic system testing</B></P>

<P>The easiest way to test your code is to ensure that it builds
! against the latest version of the code and that it does not generate
compiler warnings.</P>

<P>It is worth advised that you pass --enable-cassert to
***************
*** 210,216 ****
directory of the source tree. If any tests failure,
investigate.</P>

! <P>If you've deliberately changed existing behaviour, this change
may cause a regression test failure but not any actual regression.
If so, you should also patch the regression test suite.</P>

--- 210,216 ----
directory of the source tree. If any tests failure,
investigate.</P>

! <P>If you've deliberately changed existing behavior, this change
may cause a regression test failure but not any actual regression.
If so, you should also patch the regression test suite.</P>

***************
*** 472,478 ****

<LI>The initscript;</LI>

! <LI>Any other ancilliary scripts and files;</LI>

<LI>A README.rpm-dist document that tries to adequately document
both the differences between the RPM build and the WHY of the
--- 472,478 ----

<LI>The initscript;</LI>

! <LI>Any other ancillary scripts and files;</LI>

<LI>A README.rpm-dist document that tries to adequately document
both the differences between the RPM build and the WHY of the
***************
*** 601,607 ****
cvs ... checkout pgsql
</PRE>

! <P>To get a past branch, you cd to whereever you want it and
say</P>
<PRE>
cvs ... checkout -r BRANCHNAME pgsql
--- 601,607 ----
cvs ... checkout pgsql
</PRE>

! <P>To get a past branch, you cd to wherever you want it and
say</P>
<PRE>
cvs ... checkout -r BRANCHNAME pgsql
***************
*** 682,688 ****
questions about development of new features, on IRC at
irc.freenode.net in the #postgresql channel.</P>

! <H3><A name="1.18">1.18</A>) How go I get involved in PostgreSQL
web site development?</H3>

<P>PostgreSQL website development is discussed on the
--- 682,688 ----
questions about development of new features, on IRC at
irc.freenode.net in the #postgresql channel.</P>

! <H3><A name="1.18">1.18</A>) How do I get involved in PostgreSQL
web site development?</H3>

<P>PostgreSQL website development is discussed on the
***************
*** 690,696 ****
the source code is available at <A href=
"http://gborg.postgresql.org/project/pgweb/projdisplay.php">http://gborg.postgresql.org/project/pgweb/projdisplay.php</A>
, the code for the next version of the website is under the
! "portal" module. You will al so find code for the "techdocs"
website if you would like to contribute to that. A temporary todo
list for current website development issues is available at <A
href=
--- 690,696 ----
the source code is available at <A href=
"http://gborg.postgresql.org/project/pgweb/projdisplay.php">http://gborg.postgresql.org/project/pgweb/projdisplay.php</A>
, the code for the next version of the website is under the
! "portal" module. You will also find code for the "techdocs"
website if you would like to contribute to that. A temporary todo
list for current website development issues is available at <A
href=
***************
*** 810,816 ****
<DL>
<DT>lfirst(i), lfirst_int(i), lfirst_oid(i)</DT>

! <DD>return the data (a point, inteter and OID respectively) at
list element <I>i.</I></DD>

<DT>lnext(i)</DT>
--- 810,816 ----
<DL>
<DT>lfirst(i), lfirst_int(i), lfirst_oid(i)</DT>

! <DD>return the data (a point, integer and OID respectively) at
list element <I>i.</I></DD>

<DT>lnext(i)</DT>

--Boundary-00=_HiaLCfKzU9cpeIz
Content-Type: text/plain
Content-Disposition: inline
Content-Transfer-Encoding: 8bit
MIME-Version: 1.0


---------------------------(end of broadcast)---------------------------
TIP 8: explain analyze is your friend

--Boundary-00=_HiaLCfKzU9cpeIz--


Reply With Quote
  #3  
Old   
Bruce Momjian
 
Posts: n/a

Default Re: [BUGS] [pgsql-www] Likely typo in FAQ_DEV.html - 03-11-2005 , 05:46 AM



Robert Treat wrote:
Quote:
On Sunday 06 March 2005 15:25, Hashem Masoud wrote:
Hi,

I think this is a typo in:
http://www.postgresql.org/files/docu...s/FAQ_DEV.html


lfirst(i), lfirst_int(i), lfirst_oid(i)
return the data (a point, inteter and OID
respectively) at list element i.


(inteter) should be (integer)


Thanks for the report! Attached patch fixes this and 3-4 other typos as well.
Thanks. Applied.

--
Bruce Momjian | http://candle.pha.pa.us
pgman (AT) candle (DOT) pha.pa.us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073

---------------------------(end of broadcast)---------------------------
TIP 7: don't forget to increase your free space map settings


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.