public inbox for [email protected]  
help / color / mirror / Atom feed
TODO build rule
6+ messages / 3 participants
[nested] [flat]

* TODO build rule
@ 2008-08-12 10:00 Peter Eisentraut <[email protected]>
  2008-08-16 00:22 ` Re: TODO build rule Bruce Momjian <[email protected]>
  0 siblings, 1 reply; 6+ messages in thread

From: Peter Eisentraut @ 2008-08-12 10:00 UTC (permalink / raw)
  To: pgsql-docs

I tried building TODO.html from TODO according to the description in
doc/src/FAQ/README, but saw the following kind of difference repeating:

@@ -24,7 +24,7 @@
 <h1><a name="section_2">Administration</a></h1>

 <ul>
-  <li>-<em>Allow administrators to safely terminate individual sessions either</em>
+  <li>-Allow administrators to safely terminate individual sessions either
   via an SQL function or SIGTERM
   </li><li>Check for unreferenced table files created by transactions that were
   in-progress when the server terminated abruptly

Apparently, there is a piece of code missing that adds these <em> tags around
the done items.  Bruce, do you have this code, and can you add it to the README?



^ permalink  raw  reply  [nested|flat] 6+ messages in thread

* Re: TODO build rule
  2008-08-12 10:00 TODO build rule Peter Eisentraut <[email protected]>
@ 2008-08-16 00:22 ` Bruce Momjian <[email protected]>
  2008-08-16 18:04   ` Re: TODO build rule Peter Eisentraut <[email protected]>
  0 siblings, 1 reply; 6+ messages in thread

From: Bruce Momjian @ 2008-08-16 00:22 UTC (permalink / raw)
  To: Peter Eisentraut <[email protected]>; +Cc: pgsql-docs

Peter Eisentraut wrote:
> I tried building TODO.html from TODO according to the description in
> doc/src/FAQ/README, but saw the following kind of difference repeating:
> 
> @@ -24,7 +24,7 @@
>  <h1><a name="section_2">Administration</a></h1>
> 
>  <ul>
> -  <li>-<em>Allow administrators to safely terminate individual sessions either</em>
> +  <li>-Allow administrators to safely terminate individual sessions either
>    via an SQL function or SIGTERM
>    </li><li>Check for unreferenced table files created by transactions that were
>    in-progress when the server terminated abruptly
> 
> Apparently, there is a piece of code missing that adds these <em> tags around
> the done items.  Bruce, do you have this code, and can you add it to the README?

These two lines in pgsql/src/tools/TODO2html should be adding "*"s which
is then interpreted as "<em>":

	sed 's/^\(\* -\)\(.*\)$/\1*\2*/' |
	sed 's/^\([     ][      ]*o -\)\(.*\)$/\1*\2*/' |

Is there some 'sed' incompatibility there?

-- 
  Bruce Momjian  <[email protected]>        http://momjian.us
  EnterpriseDB                             http://enterprisedb.com

  + If your life is a hard drive, Christ can be your backup. +



^ permalink  raw  reply  [nested|flat] 6+ messages in thread

* Re: TODO build rule
  2008-08-12 10:00 TODO build rule Peter Eisentraut <[email protected]>
  2008-08-16 00:22 ` Re: TODO build rule Bruce Momjian <[email protected]>
@ 2008-08-16 18:04   ` Peter Eisentraut <[email protected]>
  2008-08-16 19:39     ` Re: TODO build rule Bruce Momjian <[email protected]>
  0 siblings, 1 reply; 6+ messages in thread

From: Peter Eisentraut @ 2008-08-16 18:04 UTC (permalink / raw)
  To: pgsql-docs; +Cc: Bruce Momjian <[email protected]>

On Saturday 16 August 2008 03:22:09 Bruce Momjian wrote:
> Peter Eisentraut wrote:
> > I tried building TODO.html from TODO according to the description in
> > doc/src/FAQ/README, but saw the following kind of difference repeating:

> > Apparently, there is a piece of code missing that adds these <em> tags
> > around the done items.  Bruce, do you have this code, and can you add it
> > to the README?
>
> These two lines in pgsql/src/tools/TODO2html should be adding "*"s which
> is then interpreted as "<em>":

So there are two inconsistent sets of instructions for creating TODO.html, one 
in doc/src/FAQ/README and one in src/tools/TODO2html.  Which one is being 
used?

I want to convert the real one to a makefile, btw.



^ permalink  raw  reply  [nested|flat] 6+ messages in thread

* Re: TODO build rule
  2008-08-12 10:00 TODO build rule Peter Eisentraut <[email protected]>
  2008-08-16 00:22 ` Re: TODO build rule Bruce Momjian <[email protected]>
  2008-08-16 18:04   ` Re: TODO build rule Peter Eisentraut <[email protected]>
@ 2008-08-16 19:39     ` Bruce Momjian <[email protected]>
  2008-08-17 17:54       ` Re: TODO build rule David Fetter <[email protected]>
  0 siblings, 1 reply; 6+ messages in thread

From: Bruce Momjian @ 2008-08-16 19:39 UTC (permalink / raw)
  To: Peter Eisentraut <[email protected]>; +Cc: pgsql-docs

Peter Eisentraut wrote:
> On Saturday 16 August 2008 03:22:09 Bruce Momjian wrote:
> > Peter Eisentraut wrote:
> > > I tried building TODO.html from TODO according to the description in
> > > doc/src/FAQ/README, but saw the following kind of difference repeating:
> 
> > > Apparently, there is a piece of code missing that adds these <em> tags
> > > around the done items.  Bruce, do you have this code, and can you add it
> > > to the README?
> >
> > These two lines in pgsql/src/tools/TODO2html should be adding "*"s which
> > is then interpreted as "<em>":
> 
> So there are two inconsistent sets of instructions for creating TODO.html, one 
> in doc/src/FAQ/README and one in src/tools/TODO2html.  Which one is being 
> used?
> 
> I want to convert the real one to a makefile, btw.

Oh, I forgot that README talked about making TODO.html.  I have updated
the README to suggest using pgsql/src/tools/TODO2html.

-- 
  Bruce Momjian  <[email protected]>        http://momjian.us
  EnterpriseDB                             http://enterprisedb.com

  + If your life is a hard drive, Christ can be your backup. +



^ permalink  raw  reply  [nested|flat] 6+ messages in thread

* Re: TODO build rule
  2008-08-12 10:00 TODO build rule Peter Eisentraut <[email protected]>
  2008-08-16 00:22 ` Re: TODO build rule Bruce Momjian <[email protected]>
  2008-08-16 18:04   ` Re: TODO build rule Peter Eisentraut <[email protected]>
  2008-08-16 19:39     ` Re: TODO build rule Bruce Momjian <[email protected]>
@ 2008-08-17 17:54       ` David Fetter <[email protected]>
  2008-08-18 14:31         ` Re: TODO build rule Bruce Momjian <[email protected]>
  0 siblings, 1 reply; 6+ messages in thread

From: David Fetter @ 2008-08-17 17:54 UTC (permalink / raw)
  To: Bruce Momjian <[email protected]>; +Cc: Peter Eisentraut <[email protected]>; pgsql-docs

On Sat, Aug 16, 2008 at 03:39:59PM -0400, Bruce Momjian wrote:
> Peter Eisentraut wrote:
> > On Saturday 16 August 2008 03:22:09 Bruce Momjian wrote:
> > > Peter Eisentraut wrote:
> > > These two lines in pgsql/src/tools/TODO2html should be adding
> > > "*"s which is then interpreted as "<em>":
> > 
> > So there are two inconsistent sets of instructions for creating
> > TODO.html, one in doc/src/FAQ/README and one in
> > src/tools/TODO2html.  Which one is being used?
> > 
> > I want to convert the real one to a makefile, btw.
> 
> Oh, I forgot that README talked about making TODO.html.  I have
> updated the README to suggest using pgsql/src/tools/TODO2html.

I thought this was going onto the wiki so Bruce doesn't have to be the
sole maintainer :)

Cheers,
David.
-- 
David Fetter <[email protected]> http://fetter.org/
Phone: +1 415 235 3778  AIM: dfetter666  Yahoo!: dfetter
Skype: davidfetter      XMPP: [email protected]

Remember to vote!
Consider donating to Postgres: http://www.postgresql.org/about/donate



^ permalink  raw  reply  [nested|flat] 6+ messages in thread

* Re: TODO build rule
  2008-08-12 10:00 TODO build rule Peter Eisentraut <[email protected]>
  2008-08-16 00:22 ` Re: TODO build rule Bruce Momjian <[email protected]>
  2008-08-16 18:04   ` Re: TODO build rule Peter Eisentraut <[email protected]>
  2008-08-16 19:39     ` Re: TODO build rule Bruce Momjian <[email protected]>
  2008-08-17 17:54       ` Re: TODO build rule David Fetter <[email protected]>
@ 2008-08-18 14:31         ` Bruce Momjian <[email protected]>
  0 siblings, 0 replies; 6+ messages in thread

From: Bruce Momjian @ 2008-08-18 14:31 UTC (permalink / raw)
  To: David Fetter <[email protected]>; +Cc: Peter Eisentraut <[email protected]>; pgsql-docs

David Fetter wrote:
> On Sat, Aug 16, 2008 at 03:39:59PM -0400, Bruce Momjian wrote:
> > Peter Eisentraut wrote:
> > > On Saturday 16 August 2008 03:22:09 Bruce Momjian wrote:
> > > > Peter Eisentraut wrote:
> > > > These two lines in pgsql/src/tools/TODO2html should be adding
> > > > "*"s which is then interpreted as "<em>":
> > > 
> > > So there are two inconsistent sets of instructions for creating
> > > TODO.html, one in doc/src/FAQ/README and one in
> > > src/tools/TODO2html.  Which one is being used?
> > > 
> > > I want to convert the real one to a makefile, btw.
> > 
> > Oh, I forgot that README talked about making TODO.html.  I have
> > updated the README to suggest using pgsql/src/tools/TODO2html.
> 
> I thought this was going onto the wiki so Bruce doesn't have to be the
> sole maintainer :)

We have discussed the idea and Magnus did a wiki version for testing.  I
am not sure where are in moving that forward.  Anyone with CVS access
can modify it now and you can send in patches for it too.

-- 
  Bruce Momjian  <[email protected]>        http://momjian.us
  EnterpriseDB                             http://enterprisedb.com

  + If your life is a hard drive, Christ can be your backup. +




^ permalink  raw  reply  [nested|flat] 6+ messages in thread


end of thread, other threads:[~2008-08-18 14:31 UTC | newest]

Thread overview: 6+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2008-08-12 10:00 TODO build rule Peter Eisentraut <[email protected]>
2008-08-16 00:22 ` Bruce Momjian <[email protected]>
2008-08-16 18:04   ` Peter Eisentraut <[email protected]>
2008-08-16 19:39     ` Bruce Momjian <[email protected]>
2008-08-17 17:54       ` David Fetter <[email protected]>
2008-08-18 14:31         ` 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